1c66ac9dbSNicholas Bellinger /*******************************************************************************
2c66ac9dbSNicholas Bellinger  * Filename:  target_core_pr.c
3c66ac9dbSNicholas Bellinger  *
4c66ac9dbSNicholas Bellinger  * This file contains SPC-3 compliant persistent reservations and
5c66ac9dbSNicholas Bellinger  * legacy SPC-2 reservations with compatible reservation handling (CRH=1)
6c66ac9dbSNicholas Bellinger  *
7fd9a11d7SNicholas Bellinger  * (c) Copyright 2009-2012 RisingTide Systems LLC.
8c66ac9dbSNicholas Bellinger  *
9c66ac9dbSNicholas Bellinger  * Nicholas A. Bellinger <nab@kernel.org>
10c66ac9dbSNicholas Bellinger  *
11c66ac9dbSNicholas Bellinger  * This program is free software; you can redistribute it and/or modify
12c66ac9dbSNicholas Bellinger  * it under the terms of the GNU General Public License as published by
13c66ac9dbSNicholas Bellinger  * the Free Software Foundation; either version 2 of the License, or
14c66ac9dbSNicholas Bellinger  * (at your option) any later version.
15c66ac9dbSNicholas Bellinger  *
16c66ac9dbSNicholas Bellinger  * This program is distributed in the hope that it will be useful,
17c66ac9dbSNicholas Bellinger  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18c66ac9dbSNicholas Bellinger  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19c66ac9dbSNicholas Bellinger  * GNU General Public License for more details.
20c66ac9dbSNicholas Bellinger  *
21c66ac9dbSNicholas Bellinger  * You should have received a copy of the GNU General Public License
22c66ac9dbSNicholas Bellinger  * along with this program; if not, write to the Free Software
23c66ac9dbSNicholas Bellinger  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24c66ac9dbSNicholas Bellinger  *
25c66ac9dbSNicholas Bellinger  ******************************************************************************/
26c66ac9dbSNicholas Bellinger 
27c66ac9dbSNicholas Bellinger #include <linux/slab.h>
28c66ac9dbSNicholas Bellinger #include <linux/spinlock.h>
29c66ac9dbSNicholas Bellinger #include <linux/list.h>
300e9b10a9SAl Viro #include <linux/file.h>
31c66ac9dbSNicholas Bellinger #include <scsi/scsi.h>
32c66ac9dbSNicholas Bellinger #include <scsi/scsi_cmnd.h>
33c66ac9dbSNicholas Bellinger #include <asm/unaligned.h>
34c66ac9dbSNicholas Bellinger 
35c66ac9dbSNicholas Bellinger #include <target/target_core_base.h>
36c4795fb2SChristoph Hellwig #include <target/target_core_backend.h>
37c4795fb2SChristoph Hellwig #include <target/target_core_fabric.h>
38c66ac9dbSNicholas Bellinger #include <target/target_core_configfs.h>
39c66ac9dbSNicholas Bellinger 
40e26d99aeSChristoph Hellwig #include "target_core_internal.h"
41c66ac9dbSNicholas Bellinger #include "target_core_pr.h"
42c66ac9dbSNicholas Bellinger #include "target_core_ua.h"
43c66ac9dbSNicholas Bellinger 
44c66ac9dbSNicholas Bellinger /*
45c66ac9dbSNicholas Bellinger  * Used for Specify Initiator Ports Capable Bit (SPEC_I_PT)
46c66ac9dbSNicholas Bellinger  */
47c66ac9dbSNicholas Bellinger struct pr_transport_id_holder {
48c66ac9dbSNicholas Bellinger 	int dest_local_nexus;
49c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *dest_pr_reg;
50c66ac9dbSNicholas Bellinger 	struct se_portal_group *dest_tpg;
51c66ac9dbSNicholas Bellinger 	struct se_node_acl *dest_node_acl;
52c66ac9dbSNicholas Bellinger 	struct se_dev_entry *dest_se_deve;
53c66ac9dbSNicholas Bellinger 	struct list_head dest_list;
54c66ac9dbSNicholas Bellinger };
55c66ac9dbSNicholas Bellinger 
56d2843c17SAndy Grover void core_pr_dump_initiator_port(
57c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg,
58c66ac9dbSNicholas Bellinger 	char *buf,
59c66ac9dbSNicholas Bellinger 	u32 size)
60c66ac9dbSNicholas Bellinger {
616708bb27SAndy Grover 	if (!pr_reg->isid_present_at_reg)
62d2843c17SAndy Grover 		buf[0] = '\0';
63c66ac9dbSNicholas Bellinger 
64d2843c17SAndy Grover 	snprintf(buf, size, ",i,0x%s", pr_reg->pr_reg_isid);
65c66ac9dbSNicholas Bellinger }
66c66ac9dbSNicholas Bellinger 
6733ce6a87SAndy Grover enum register_type {
6833ce6a87SAndy Grover 	REGISTER,
6933ce6a87SAndy Grover 	REGISTER_AND_IGNORE_EXISTING_KEY,
7033ce6a87SAndy Grover 	REGISTER_AND_MOVE,
7133ce6a87SAndy Grover };
7233ce6a87SAndy Grover 
7333ce6a87SAndy Grover enum preempt_type {
7433ce6a87SAndy Grover 	PREEMPT,
7533ce6a87SAndy Grover 	PREEMPT_AND_ABORT,
7633ce6a87SAndy Grover };
7733ce6a87SAndy Grover 
78c66ac9dbSNicholas Bellinger static void __core_scsi3_complete_pro_release(struct se_device *, struct se_node_acl *,
79c66ac9dbSNicholas Bellinger 			struct t10_pr_registration *, int);
80c66ac9dbSNicholas Bellinger 
81de103c93SChristoph Hellwig static sense_reason_t
82de103c93SChristoph Hellwig target_scsi2_reservation_check(struct se_cmd *cmd)
83c66ac9dbSNicholas Bellinger {
84d977f437SChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
85d977f437SChristoph Hellwig 	struct se_session *sess = cmd->se_sess;
86d977f437SChristoph Hellwig 
87d977f437SChristoph Hellwig 	switch (cmd->t_task_cdb[0]) {
88c66ac9dbSNicholas Bellinger 	case INQUIRY:
89c66ac9dbSNicholas Bellinger 	case RELEASE:
90c66ac9dbSNicholas Bellinger 	case RELEASE_10:
91c66ac9dbSNicholas Bellinger 		return 0;
92c66ac9dbSNicholas Bellinger 	default:
93d977f437SChristoph Hellwig 		break;
94c66ac9dbSNicholas Bellinger 	}
95c66ac9dbSNicholas Bellinger 
96d977f437SChristoph Hellwig 	if (!dev->dev_reserved_node_acl || !sess)
97c66ac9dbSNicholas Bellinger 		return 0;
98c66ac9dbSNicholas Bellinger 
99d977f437SChristoph Hellwig 	if (dev->dev_reserved_node_acl != sess->se_node_acl)
100de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
101c66ac9dbSNicholas Bellinger 
102d977f437SChristoph Hellwig 	if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS_WITH_ISID) {
103d977f437SChristoph Hellwig 		if (dev->dev_res_bin_isid != sess->sess_bin_isid)
104de103c93SChristoph Hellwig 			return TCM_RESERVATION_CONFLICT;
105d977f437SChristoph Hellwig 	}
106d977f437SChristoph Hellwig 
107d977f437SChristoph Hellwig 	return 0;
108c66ac9dbSNicholas Bellinger }
109c66ac9dbSNicholas Bellinger 
110eacac00cSChristoph Hellwig static struct t10_pr_registration *core_scsi3_locate_pr_reg(struct se_device *,
111eacac00cSChristoph Hellwig 					struct se_node_acl *, struct se_session *);
112eacac00cSChristoph Hellwig static void core_scsi3_put_pr_reg(struct t10_pr_registration *);
113eacac00cSChristoph Hellwig 
114087a03b3SNicholas Bellinger static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd)
115eacac00cSChristoph Hellwig {
116eacac00cSChristoph Hellwig 	struct se_session *se_sess = cmd->se_sess;
1170fd97ccfSChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
118eacac00cSChristoph Hellwig 	struct t10_pr_registration *pr_reg;
1190fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
120eacac00cSChristoph Hellwig 	int conflict = 0;
121eacac00cSChristoph Hellwig 
122eacac00cSChristoph Hellwig 	pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
123eacac00cSChristoph Hellwig 			se_sess);
124eacac00cSChristoph Hellwig 	if (pr_reg) {
125eacac00cSChristoph Hellwig 		/*
126eacac00cSChristoph Hellwig 		 * From spc4r17 5.7.3 Exceptions to SPC-2 RESERVE and RELEASE
127eacac00cSChristoph Hellwig 		 * behavior
128eacac00cSChristoph Hellwig 		 *
129eacac00cSChristoph Hellwig 		 * A RESERVE(6) or RESERVE(10) command shall complete with GOOD
130eacac00cSChristoph Hellwig 		 * status, but no reservation shall be established and the
131eacac00cSChristoph Hellwig 		 * persistent reservation shall not be changed, if the command
132eacac00cSChristoph Hellwig 		 * is received from a) and b) below.
133eacac00cSChristoph Hellwig 		 *
134eacac00cSChristoph Hellwig 		 * A RELEASE(6) or RELEASE(10) command shall complete with GOOD
135eacac00cSChristoph Hellwig 		 * status, but the persistent reservation shall not be released,
136eacac00cSChristoph Hellwig 		 * if the command is received from a) and b)
137eacac00cSChristoph Hellwig 		 *
138eacac00cSChristoph Hellwig 		 * a) An I_T nexus that is a persistent reservation holder; or
139eacac00cSChristoph Hellwig 		 * b) An I_T nexus that is registered if a registrants only or
140eacac00cSChristoph Hellwig 		 *    all registrants type persistent reservation is present.
141eacac00cSChristoph Hellwig 		 *
142eacac00cSChristoph Hellwig 		 * In all other cases, a RESERVE(6) command, RESERVE(10) command,
143eacac00cSChristoph Hellwig 		 * RELEASE(6) command, or RELEASE(10) command shall be processed
144eacac00cSChristoph Hellwig 		 * as defined in SPC-2.
145eacac00cSChristoph Hellwig 		 */
146eacac00cSChristoph Hellwig 		if (pr_reg->pr_res_holder) {
147eacac00cSChristoph Hellwig 			core_scsi3_put_pr_reg(pr_reg);
148087a03b3SNicholas Bellinger 			return 1;
149eacac00cSChristoph Hellwig 		}
150eacac00cSChristoph Hellwig 		if ((pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_REGONLY) ||
151eacac00cSChristoph Hellwig 		    (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_REGONLY) ||
152eacac00cSChristoph Hellwig 		    (pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
153eacac00cSChristoph Hellwig 		    (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
154eacac00cSChristoph Hellwig 			core_scsi3_put_pr_reg(pr_reg);
155087a03b3SNicholas Bellinger 			return 1;
156eacac00cSChristoph Hellwig 		}
157eacac00cSChristoph Hellwig 		core_scsi3_put_pr_reg(pr_reg);
158eacac00cSChristoph Hellwig 		conflict = 1;
159eacac00cSChristoph Hellwig 	} else {
160eacac00cSChristoph Hellwig 		/*
161eacac00cSChristoph Hellwig 		 * Following spc2r20 5.5.1 Reservations overview:
162eacac00cSChristoph Hellwig 		 *
163eacac00cSChristoph Hellwig 		 * If a logical unit has executed a PERSISTENT RESERVE OUT
164eacac00cSChristoph Hellwig 		 * command with the REGISTER or the REGISTER AND IGNORE
165eacac00cSChristoph Hellwig 		 * EXISTING KEY service action and is still registered by any
166eacac00cSChristoph Hellwig 		 * initiator, all RESERVE commands and all RELEASE commands
167eacac00cSChristoph Hellwig 		 * regardless of initiator shall conflict and shall terminate
168eacac00cSChristoph Hellwig 		 * with a RESERVATION CONFLICT status.
169eacac00cSChristoph Hellwig 		 */
170eacac00cSChristoph Hellwig 		spin_lock(&pr_tmpl->registration_lock);
171eacac00cSChristoph Hellwig 		conflict = (list_empty(&pr_tmpl->registration_list)) ? 0 : 1;
172eacac00cSChristoph Hellwig 		spin_unlock(&pr_tmpl->registration_lock);
173eacac00cSChristoph Hellwig 	}
174eacac00cSChristoph Hellwig 
175eacac00cSChristoph Hellwig 	if (conflict) {
176eacac00cSChristoph Hellwig 		pr_err("Received legacy SPC-2 RESERVE/RELEASE"
177eacac00cSChristoph Hellwig 			" while active SPC-3 registrations exist,"
178eacac00cSChristoph Hellwig 			" returning RESERVATION_CONFLICT\n");
179087a03b3SNicholas Bellinger 		return -EBUSY;
180eacac00cSChristoph Hellwig 	}
181eacac00cSChristoph Hellwig 
182087a03b3SNicholas Bellinger 	return 0;
183eacac00cSChristoph Hellwig }
184eacac00cSChristoph Hellwig 
185de103c93SChristoph Hellwig sense_reason_t
186de103c93SChristoph Hellwig target_scsi2_reservation_release(struct se_cmd *cmd)
187c66ac9dbSNicholas Bellinger {
188c66ac9dbSNicholas Bellinger 	struct se_device *dev = cmd->se_dev;
189c66ac9dbSNicholas Bellinger 	struct se_session *sess = cmd->se_sess;
190609234e3SWei Yongjun 	struct se_portal_group *tpg;
191de103c93SChristoph Hellwig 	int rc;
192c66ac9dbSNicholas Bellinger 
193609234e3SWei Yongjun 	if (!sess || !sess->se_tpg)
194d29a5b6aSChristoph Hellwig 		goto out;
195087a03b3SNicholas Bellinger 	rc = target_check_scsi2_reservation_conflict(cmd);
196087a03b3SNicholas Bellinger 	if (rc == 1)
197d29a5b6aSChristoph Hellwig 		goto out;
198de103c93SChristoph Hellwig 	if (rc < 0)
199de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
200c66ac9dbSNicholas Bellinger 
201c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
202d29a5b6aSChristoph Hellwig 	if (!dev->dev_reserved_node_acl || !sess)
203d29a5b6aSChristoph Hellwig 		goto out_unlock;
204c66ac9dbSNicholas Bellinger 
205d29a5b6aSChristoph Hellwig 	if (dev->dev_reserved_node_acl != sess->se_node_acl)
206d29a5b6aSChristoph Hellwig 		goto out_unlock;
207d29a5b6aSChristoph Hellwig 
208edc318d9SBernhard Kohl 	if (dev->dev_res_bin_isid != sess->sess_bin_isid)
209edc318d9SBernhard Kohl 		goto out_unlock;
210edc318d9SBernhard Kohl 
211c66ac9dbSNicholas Bellinger 	dev->dev_reserved_node_acl = NULL;
2120fd97ccfSChristoph Hellwig 	dev->dev_reservation_flags &= ~DRF_SPC2_RESERVATIONS;
2130fd97ccfSChristoph Hellwig 	if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS_WITH_ISID) {
214c66ac9dbSNicholas Bellinger 		dev->dev_res_bin_isid = 0;
2150fd97ccfSChristoph Hellwig 		dev->dev_reservation_flags &= ~DRF_SPC2_RESERVATIONS_WITH_ISID;
216c66ac9dbSNicholas Bellinger 	}
217609234e3SWei Yongjun 	tpg = sess->se_tpg;
2186708bb27SAndy Grover 	pr_debug("SCSI-2 Released reservation for %s LUN: %u ->"
219e3d6f909SAndy Grover 		" MAPPED LUN: %u for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
220e3d6f909SAndy Grover 		cmd->se_lun->unpacked_lun, cmd->se_deve->mapped_lun,
221c66ac9dbSNicholas Bellinger 		sess->se_node_acl->initiatorname);
222c66ac9dbSNicholas Bellinger 
223d29a5b6aSChristoph Hellwig out_unlock:
224d29a5b6aSChristoph Hellwig 	spin_unlock(&dev->dev_reservation_lock);
225d29a5b6aSChristoph Hellwig out:
2266bb35e00SChristoph Hellwig 	target_complete_cmd(cmd, GOOD);
227de103c93SChristoph Hellwig 	return 0;
228c66ac9dbSNicholas Bellinger }
229c66ac9dbSNicholas Bellinger 
230de103c93SChristoph Hellwig sense_reason_t
231de103c93SChristoph Hellwig target_scsi2_reservation_reserve(struct se_cmd *cmd)
232c66ac9dbSNicholas Bellinger {
233c66ac9dbSNicholas Bellinger 	struct se_device *dev = cmd->se_dev;
234c66ac9dbSNicholas Bellinger 	struct se_session *sess = cmd->se_sess;
235609234e3SWei Yongjun 	struct se_portal_group *tpg;
236de103c93SChristoph Hellwig 	sense_reason_t ret = 0;
237de103c93SChristoph Hellwig 	int rc;
238c66ac9dbSNicholas Bellinger 
239a1d8b49aSAndy Grover 	if ((cmd->t_task_cdb[1] & 0x01) &&
240a1d8b49aSAndy Grover 	    (cmd->t_task_cdb[1] & 0x02)) {
2416708bb27SAndy Grover 		pr_err("LongIO and Obselete Bits set, returning"
242c66ac9dbSNicholas Bellinger 				" ILLEGAL_REQUEST\n");
243de103c93SChristoph Hellwig 		return TCM_UNSUPPORTED_SCSI_OPCODE;
244c66ac9dbSNicholas Bellinger 	}
245c66ac9dbSNicholas Bellinger 	/*
246c66ac9dbSNicholas Bellinger 	 * This is currently the case for target_core_mod passthrough struct se_cmd
247c66ac9dbSNicholas Bellinger 	 * ops
248c66ac9dbSNicholas Bellinger 	 */
249609234e3SWei Yongjun 	if (!sess || !sess->se_tpg)
250d29a5b6aSChristoph Hellwig 		goto out;
251087a03b3SNicholas Bellinger 	rc = target_check_scsi2_reservation_conflict(cmd);
252087a03b3SNicholas Bellinger 	if (rc == 1)
253d29a5b6aSChristoph Hellwig 		goto out;
254c66ac9dbSNicholas Bellinger 
255de103c93SChristoph Hellwig 	if (rc < 0)
256de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
257de103c93SChristoph Hellwig 
258609234e3SWei Yongjun 	tpg = sess->se_tpg;
259c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
260c66ac9dbSNicholas Bellinger 	if (dev->dev_reserved_node_acl &&
261c66ac9dbSNicholas Bellinger 	   (dev->dev_reserved_node_acl != sess->se_node_acl)) {
2626708bb27SAndy Grover 		pr_err("SCSI-2 RESERVATION CONFLIFT for %s fabric\n",
263e3d6f909SAndy Grover 			tpg->se_tpg_tfo->get_fabric_name());
2646708bb27SAndy Grover 		pr_err("Original reserver LUN: %u %s\n",
265e3d6f909SAndy Grover 			cmd->se_lun->unpacked_lun,
266c66ac9dbSNicholas Bellinger 			dev->dev_reserved_node_acl->initiatorname);
2676708bb27SAndy Grover 		pr_err("Current attempt - LUN: %u -> MAPPED LUN: %u"
268e3d6f909SAndy Grover 			" from %s \n", cmd->se_lun->unpacked_lun,
269c66ac9dbSNicholas Bellinger 			cmd->se_deve->mapped_lun,
270c66ac9dbSNicholas Bellinger 			sess->se_node_acl->initiatorname);
271de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
272d29a5b6aSChristoph Hellwig 		goto out_unlock;
273c66ac9dbSNicholas Bellinger 	}
274c66ac9dbSNicholas Bellinger 
275c66ac9dbSNicholas Bellinger 	dev->dev_reserved_node_acl = sess->se_node_acl;
2760fd97ccfSChristoph Hellwig 	dev->dev_reservation_flags |= DRF_SPC2_RESERVATIONS;
277c66ac9dbSNicholas Bellinger 	if (sess->sess_bin_isid != 0) {
278c66ac9dbSNicholas Bellinger 		dev->dev_res_bin_isid = sess->sess_bin_isid;
2790fd97ccfSChristoph Hellwig 		dev->dev_reservation_flags |= DRF_SPC2_RESERVATIONS_WITH_ISID;
280c66ac9dbSNicholas Bellinger 	}
2816708bb27SAndy Grover 	pr_debug("SCSI-2 Reserved %s LUN: %u -> MAPPED LUN: %u"
282e3d6f909SAndy Grover 		" for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
283e3d6f909SAndy Grover 		cmd->se_lun->unpacked_lun, cmd->se_deve->mapped_lun,
284c66ac9dbSNicholas Bellinger 		sess->se_node_acl->initiatorname);
285c66ac9dbSNicholas Bellinger 
286d29a5b6aSChristoph Hellwig out_unlock:
287d29a5b6aSChristoph Hellwig 	spin_unlock(&dev->dev_reservation_lock);
288d29a5b6aSChristoph Hellwig out:
2896bb35e00SChristoph Hellwig 	if (!ret)
2906bb35e00SChristoph Hellwig 		target_complete_cmd(cmd, GOOD);
291d29a5b6aSChristoph Hellwig 	return ret;
292c66ac9dbSNicholas Bellinger }
293c66ac9dbSNicholas Bellinger 
294c66ac9dbSNicholas Bellinger 
295c66ac9dbSNicholas Bellinger /*
296c66ac9dbSNicholas Bellinger  * Begin SPC-3/SPC-4 Persistent Reservations emulation support
297c66ac9dbSNicholas Bellinger  *
298c66ac9dbSNicholas Bellinger  * This function is called by those initiator ports who are *NOT*
299c66ac9dbSNicholas Bellinger  * the active PR reservation holder when a reservation is present.
300c66ac9dbSNicholas Bellinger  */
301c66ac9dbSNicholas Bellinger static int core_scsi3_pr_seq_non_holder(
302c66ac9dbSNicholas Bellinger 	struct se_cmd *cmd,
303c66ac9dbSNicholas Bellinger 	u32 pr_reg_type)
304c66ac9dbSNicholas Bellinger {
305d977f437SChristoph Hellwig 	unsigned char *cdb = cmd->t_task_cdb;
306c66ac9dbSNicholas Bellinger 	struct se_dev_entry *se_deve;
307e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
308c66ac9dbSNicholas Bellinger 	int other_cdb = 0, ignore_reg;
309c66ac9dbSNicholas Bellinger 	int registered_nexus = 0, ret = 1; /* Conflict by default */
310c66ac9dbSNicholas Bellinger 	int all_reg = 0, reg_only = 0; /* ALL_REG, REG_ONLY */
311c66ac9dbSNicholas Bellinger 	int we = 0; /* Write Exclusive */
312c66ac9dbSNicholas Bellinger 	int legacy = 0; /* Act like a legacy device and return
313c66ac9dbSNicholas Bellinger 			 * RESERVATION CONFLICT on some CDBs */
314c66ac9dbSNicholas Bellinger 
315f2083241SJörn Engel 	se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
316c66ac9dbSNicholas Bellinger 	/*
317c66ac9dbSNicholas Bellinger 	 * Determine if the registration should be ignored due to
318d977f437SChristoph Hellwig 	 * non-matching ISIDs in target_scsi3_pr_reservation_check().
319c66ac9dbSNicholas Bellinger 	 */
320c66ac9dbSNicholas Bellinger 	ignore_reg = (pr_reg_type & 0x80000000);
321c66ac9dbSNicholas Bellinger 	if (ignore_reg)
322c66ac9dbSNicholas Bellinger 		pr_reg_type &= ~0x80000000;
323c66ac9dbSNicholas Bellinger 
324c66ac9dbSNicholas Bellinger 	switch (pr_reg_type) {
325c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE:
326c66ac9dbSNicholas Bellinger 		we = 1;
327c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS:
328c66ac9dbSNicholas Bellinger 		/*
329c66ac9dbSNicholas Bellinger 		 * Some commands are only allowed for the persistent reservation
330c66ac9dbSNicholas Bellinger 		 * holder.
331c66ac9dbSNicholas Bellinger 		 */
332c66ac9dbSNicholas Bellinger 		if ((se_deve->def_pr_registered) && !(ignore_reg))
333c66ac9dbSNicholas Bellinger 			registered_nexus = 1;
334c66ac9dbSNicholas Bellinger 		break;
335c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
336c66ac9dbSNicholas Bellinger 		we = 1;
337c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
338c66ac9dbSNicholas Bellinger 		/*
339c66ac9dbSNicholas Bellinger 		 * Some commands are only allowed for registered I_T Nexuses.
340c66ac9dbSNicholas Bellinger 		 */
341c66ac9dbSNicholas Bellinger 		reg_only = 1;
342c66ac9dbSNicholas Bellinger 		if ((se_deve->def_pr_registered) && !(ignore_reg))
343c66ac9dbSNicholas Bellinger 			registered_nexus = 1;
344c66ac9dbSNicholas Bellinger 		break;
345c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
346c66ac9dbSNicholas Bellinger 		we = 1;
347c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
348c66ac9dbSNicholas Bellinger 		/*
349c66ac9dbSNicholas Bellinger 		 * Each registered I_T Nexus is a reservation holder.
350c66ac9dbSNicholas Bellinger 		 */
351c66ac9dbSNicholas Bellinger 		all_reg = 1;
352c66ac9dbSNicholas Bellinger 		if ((se_deve->def_pr_registered) && !(ignore_reg))
353c66ac9dbSNicholas Bellinger 			registered_nexus = 1;
354c66ac9dbSNicholas Bellinger 		break;
355c66ac9dbSNicholas Bellinger 	default:
356e3d6f909SAndy Grover 		return -EINVAL;
357c66ac9dbSNicholas Bellinger 	}
358c66ac9dbSNicholas Bellinger 	/*
359c66ac9dbSNicholas Bellinger 	 * Referenced from spc4r17 table 45 for *NON* PR holder access
360c66ac9dbSNicholas Bellinger 	 */
361c66ac9dbSNicholas Bellinger 	switch (cdb[0]) {
362c66ac9dbSNicholas Bellinger 	case SECURITY_PROTOCOL_IN:
363c66ac9dbSNicholas Bellinger 		if (registered_nexus)
364c66ac9dbSNicholas Bellinger 			return 0;
365c66ac9dbSNicholas Bellinger 		ret = (we) ? 0 : 1;
366c66ac9dbSNicholas Bellinger 		break;
367c66ac9dbSNicholas Bellinger 	case MODE_SENSE:
368c66ac9dbSNicholas Bellinger 	case MODE_SENSE_10:
369c66ac9dbSNicholas Bellinger 	case READ_ATTRIBUTE:
370c66ac9dbSNicholas Bellinger 	case READ_BUFFER:
371c66ac9dbSNicholas Bellinger 	case RECEIVE_DIAGNOSTIC:
372c66ac9dbSNicholas Bellinger 		if (legacy) {
373c66ac9dbSNicholas Bellinger 			ret = 1;
374c66ac9dbSNicholas Bellinger 			break;
375c66ac9dbSNicholas Bellinger 		}
376c66ac9dbSNicholas Bellinger 		if (registered_nexus) {
377c66ac9dbSNicholas Bellinger 			ret = 0;
378c66ac9dbSNicholas Bellinger 			break;
379c66ac9dbSNicholas Bellinger 		}
380c66ac9dbSNicholas Bellinger 		ret = (we) ? 0 : 1; /* Allowed Write Exclusive */
381c66ac9dbSNicholas Bellinger 		break;
382c66ac9dbSNicholas Bellinger 	case PERSISTENT_RESERVE_OUT:
383c66ac9dbSNicholas Bellinger 		/*
384c66ac9dbSNicholas Bellinger 		 * This follows PERSISTENT_RESERVE_OUT service actions that
385c66ac9dbSNicholas Bellinger 		 * are allowed in the presence of various reservations.
386c66ac9dbSNicholas Bellinger 		 * See spc4r17, table 46
387c66ac9dbSNicholas Bellinger 		 */
388c66ac9dbSNicholas Bellinger 		switch (cdb[1] & 0x1f) {
389c66ac9dbSNicholas Bellinger 		case PRO_CLEAR:
390c66ac9dbSNicholas Bellinger 		case PRO_PREEMPT:
391c66ac9dbSNicholas Bellinger 		case PRO_PREEMPT_AND_ABORT:
392c66ac9dbSNicholas Bellinger 			ret = (registered_nexus) ? 0 : 1;
393c66ac9dbSNicholas Bellinger 			break;
394c66ac9dbSNicholas Bellinger 		case PRO_REGISTER:
395c66ac9dbSNicholas Bellinger 		case PRO_REGISTER_AND_IGNORE_EXISTING_KEY:
396c66ac9dbSNicholas Bellinger 			ret = 0;
397c66ac9dbSNicholas Bellinger 			break;
398c66ac9dbSNicholas Bellinger 		case PRO_REGISTER_AND_MOVE:
399c66ac9dbSNicholas Bellinger 		case PRO_RESERVE:
400c66ac9dbSNicholas Bellinger 			ret = 1;
401c66ac9dbSNicholas Bellinger 			break;
402c66ac9dbSNicholas Bellinger 		case PRO_RELEASE:
403c66ac9dbSNicholas Bellinger 			ret = (registered_nexus) ? 0 : 1;
404c66ac9dbSNicholas Bellinger 			break;
405c66ac9dbSNicholas Bellinger 		default:
4066708bb27SAndy Grover 			pr_err("Unknown PERSISTENT_RESERVE_OUT service"
407c66ac9dbSNicholas Bellinger 				" action: 0x%02x\n", cdb[1] & 0x1f);
408e3d6f909SAndy Grover 			return -EINVAL;
409c66ac9dbSNicholas Bellinger 		}
410c66ac9dbSNicholas Bellinger 		break;
411c66ac9dbSNicholas Bellinger 	case RELEASE:
412c66ac9dbSNicholas Bellinger 	case RELEASE_10:
413eacac00cSChristoph Hellwig 		/* Handled by CRH=1 in target_scsi2_reservation_release() */
414c66ac9dbSNicholas Bellinger 		ret = 0;
415c66ac9dbSNicholas Bellinger 		break;
416c66ac9dbSNicholas Bellinger 	case RESERVE:
417c66ac9dbSNicholas Bellinger 	case RESERVE_10:
418eacac00cSChristoph Hellwig 		/* Handled by CRH=1 in target_scsi2_reservation_reserve() */
419c66ac9dbSNicholas Bellinger 		ret = 0;
420c66ac9dbSNicholas Bellinger 		break;
421c66ac9dbSNicholas Bellinger 	case TEST_UNIT_READY:
422c66ac9dbSNicholas Bellinger 		ret = (legacy) ? 1 : 0; /* Conflict for legacy */
423c66ac9dbSNicholas Bellinger 		break;
424c66ac9dbSNicholas Bellinger 	case MAINTENANCE_IN:
425c66ac9dbSNicholas Bellinger 		switch (cdb[1] & 0x1f) {
426c66ac9dbSNicholas Bellinger 		case MI_MANAGEMENT_PROTOCOL_IN:
427c66ac9dbSNicholas Bellinger 			if (registered_nexus) {
428c66ac9dbSNicholas Bellinger 				ret = 0;
429c66ac9dbSNicholas Bellinger 				break;
430c66ac9dbSNicholas Bellinger 			}
431c66ac9dbSNicholas Bellinger 			ret = (we) ? 0 : 1; /* Allowed Write Exclusive */
432c66ac9dbSNicholas Bellinger 			break;
433c66ac9dbSNicholas Bellinger 		case MI_REPORT_SUPPORTED_OPERATION_CODES:
434c66ac9dbSNicholas Bellinger 		case MI_REPORT_SUPPORTED_TASK_MANAGEMENT_FUNCTIONS:
435c66ac9dbSNicholas Bellinger 			if (legacy) {
436c66ac9dbSNicholas Bellinger 				ret = 1;
437c66ac9dbSNicholas Bellinger 				break;
438c66ac9dbSNicholas Bellinger 			}
439c66ac9dbSNicholas Bellinger 			if (registered_nexus) {
440c66ac9dbSNicholas Bellinger 				ret = 0;
441c66ac9dbSNicholas Bellinger 				break;
442c66ac9dbSNicholas Bellinger 			}
443c66ac9dbSNicholas Bellinger 			ret = (we) ? 0 : 1; /* Allowed Write Exclusive */
444c66ac9dbSNicholas Bellinger 			break;
445c66ac9dbSNicholas Bellinger 		case MI_REPORT_ALIASES:
446c66ac9dbSNicholas Bellinger 		case MI_REPORT_IDENTIFYING_INFORMATION:
447c66ac9dbSNicholas Bellinger 		case MI_REPORT_PRIORITY:
448c66ac9dbSNicholas Bellinger 		case MI_REPORT_TARGET_PGS:
449c66ac9dbSNicholas Bellinger 		case MI_REPORT_TIMESTAMP:
450c66ac9dbSNicholas Bellinger 			ret = 0; /* Allowed */
451c66ac9dbSNicholas Bellinger 			break;
452c66ac9dbSNicholas Bellinger 		default:
4536708bb27SAndy Grover 			pr_err("Unknown MI Service Action: 0x%02x\n",
454c66ac9dbSNicholas Bellinger 				(cdb[1] & 0x1f));
455e3d6f909SAndy Grover 			return -EINVAL;
456c66ac9dbSNicholas Bellinger 		}
457c66ac9dbSNicholas Bellinger 		break;
458c66ac9dbSNicholas Bellinger 	case ACCESS_CONTROL_IN:
459c66ac9dbSNicholas Bellinger 	case ACCESS_CONTROL_OUT:
460c66ac9dbSNicholas Bellinger 	case INQUIRY:
461c66ac9dbSNicholas Bellinger 	case LOG_SENSE:
462c66ac9dbSNicholas Bellinger 	case READ_MEDIA_SERIAL_NUMBER:
463c66ac9dbSNicholas Bellinger 	case REPORT_LUNS:
464c66ac9dbSNicholas Bellinger 	case REQUEST_SENSE:
4656816966aSMarco Sanvido 	case PERSISTENT_RESERVE_IN:
466c66ac9dbSNicholas Bellinger 		ret = 0; /*/ Allowed CDBs */
467c66ac9dbSNicholas Bellinger 		break;
468c66ac9dbSNicholas Bellinger 	default:
469c66ac9dbSNicholas Bellinger 		other_cdb = 1;
470c66ac9dbSNicholas Bellinger 		break;
471c66ac9dbSNicholas Bellinger 	}
472c66ac9dbSNicholas Bellinger 	/*
47325985edcSLucas De Marchi 	 * Case where the CDB is explicitly allowed in the above switch
474c66ac9dbSNicholas Bellinger 	 * statement.
475c66ac9dbSNicholas Bellinger 	 */
4766708bb27SAndy Grover 	if (!ret && !other_cdb) {
4776708bb27SAndy Grover 		pr_debug("Allowing explict CDB: 0x%02x for %s"
478c66ac9dbSNicholas Bellinger 			" reservation holder\n", cdb[0],
479c66ac9dbSNicholas Bellinger 			core_scsi3_pr_dump_type(pr_reg_type));
4808b1e1244SAndy Grover 
481c66ac9dbSNicholas Bellinger 		return ret;
482c66ac9dbSNicholas Bellinger 	}
483c66ac9dbSNicholas Bellinger 	/*
484c66ac9dbSNicholas Bellinger 	 * Check if write exclusive initiator ports *NOT* holding the
485c66ac9dbSNicholas Bellinger 	 * WRITE_EXCLUSIVE_* reservation.
486c66ac9dbSNicholas Bellinger 	 */
487ee1b1b9cSAndy Grover 	if (we && !registered_nexus) {
488c66ac9dbSNicholas Bellinger 		if (cmd->data_direction == DMA_TO_DEVICE) {
489c66ac9dbSNicholas Bellinger 			/*
490c66ac9dbSNicholas Bellinger 			 * Conflict for write exclusive
491c66ac9dbSNicholas Bellinger 			 */
4926708bb27SAndy Grover 			pr_debug("%s Conflict for unregistered nexus"
493c66ac9dbSNicholas Bellinger 				" %s CDB: 0x%02x to %s reservation\n",
494c66ac9dbSNicholas Bellinger 				transport_dump_cmd_direction(cmd),
495c66ac9dbSNicholas Bellinger 				se_sess->se_node_acl->initiatorname, cdb[0],
496c66ac9dbSNicholas Bellinger 				core_scsi3_pr_dump_type(pr_reg_type));
497c66ac9dbSNicholas Bellinger 			return 1;
498c66ac9dbSNicholas Bellinger 		} else {
499c66ac9dbSNicholas Bellinger 			/*
500c66ac9dbSNicholas Bellinger 			 * Allow non WRITE CDBs for all Write Exclusive
501c66ac9dbSNicholas Bellinger 			 * PR TYPEs to pass for registered and
502c66ac9dbSNicholas Bellinger 			 * non-registered_nexuxes NOT holding the reservation.
503c66ac9dbSNicholas Bellinger 			 *
504c66ac9dbSNicholas Bellinger 			 * We only make noise for the unregisterd nexuses,
505c66ac9dbSNicholas Bellinger 			 * as we expect registered non-reservation holding
506c66ac9dbSNicholas Bellinger 			 * nexuses to issue CDBs.
507c66ac9dbSNicholas Bellinger 			 */
5088b1e1244SAndy Grover 
5096708bb27SAndy Grover 			if (!registered_nexus) {
5106708bb27SAndy Grover 				pr_debug("Allowing implict CDB: 0x%02x"
511c66ac9dbSNicholas Bellinger 					" for %s reservation on unregistered"
512c66ac9dbSNicholas Bellinger 					" nexus\n", cdb[0],
513c66ac9dbSNicholas Bellinger 					core_scsi3_pr_dump_type(pr_reg_type));
514c66ac9dbSNicholas Bellinger 			}
5158b1e1244SAndy Grover 
516c66ac9dbSNicholas Bellinger 			return 0;
517c66ac9dbSNicholas Bellinger 		}
518c66ac9dbSNicholas Bellinger 	} else if ((reg_only) || (all_reg)) {
519c66ac9dbSNicholas Bellinger 		if (registered_nexus) {
520c66ac9dbSNicholas Bellinger 			/*
521c66ac9dbSNicholas Bellinger 			 * For PR_*_REG_ONLY and PR_*_ALL_REG reservations,
522c66ac9dbSNicholas Bellinger 			 * allow commands from registered nexuses.
523c66ac9dbSNicholas Bellinger 			 */
5248b1e1244SAndy Grover 
5256708bb27SAndy Grover 			pr_debug("Allowing implict CDB: 0x%02x for %s"
526c66ac9dbSNicholas Bellinger 				" reservation\n", cdb[0],
527c66ac9dbSNicholas Bellinger 				core_scsi3_pr_dump_type(pr_reg_type));
5288b1e1244SAndy Grover 
529c66ac9dbSNicholas Bellinger 			return 0;
530c66ac9dbSNicholas Bellinger 		}
531c66ac9dbSNicholas Bellinger 	}
5326708bb27SAndy Grover 	pr_debug("%s Conflict for %sregistered nexus %s CDB: 0x%2x"
533c66ac9dbSNicholas Bellinger 		" for %s reservation\n", transport_dump_cmd_direction(cmd),
534c66ac9dbSNicholas Bellinger 		(registered_nexus) ? "" : "un",
535c66ac9dbSNicholas Bellinger 		se_sess->se_node_acl->initiatorname, cdb[0],
536c66ac9dbSNicholas Bellinger 		core_scsi3_pr_dump_type(pr_reg_type));
537c66ac9dbSNicholas Bellinger 
538c66ac9dbSNicholas Bellinger 	return 1; /* Conflict by default */
539c66ac9dbSNicholas Bellinger }
540c66ac9dbSNicholas Bellinger 
541de103c93SChristoph Hellwig static sense_reason_t
542de103c93SChristoph Hellwig target_scsi3_pr_reservation_check(struct se_cmd *cmd)
543d977f437SChristoph Hellwig {
544d977f437SChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
545d977f437SChristoph Hellwig 	struct se_session *sess = cmd->se_sess;
546d977f437SChristoph Hellwig 	u32 pr_reg_type;
547d977f437SChristoph Hellwig 
548d977f437SChristoph Hellwig 	if (!dev->dev_pr_res_holder)
549d977f437SChristoph Hellwig 		return 0;
550d977f437SChristoph Hellwig 
551d977f437SChristoph Hellwig 	pr_reg_type = dev->dev_pr_res_holder->pr_res_type;
552d977f437SChristoph Hellwig 	cmd->pr_res_key = dev->dev_pr_res_holder->pr_res_key;
553d977f437SChristoph Hellwig 	if (dev->dev_pr_res_holder->pr_reg_nacl != sess->se_node_acl)
554d977f437SChristoph Hellwig 		goto check_nonholder;
555d977f437SChristoph Hellwig 
556d977f437SChristoph Hellwig 	if (dev->dev_pr_res_holder->isid_present_at_reg) {
557d977f437SChristoph Hellwig 		if (dev->dev_pr_res_holder->pr_reg_bin_isid !=
558d977f437SChristoph Hellwig 		    sess->sess_bin_isid) {
559d977f437SChristoph Hellwig 			pr_reg_type |= 0x80000000;
560d977f437SChristoph Hellwig 			goto check_nonholder;
561d977f437SChristoph Hellwig 		}
562d977f437SChristoph Hellwig 	}
563d977f437SChristoph Hellwig 
564d977f437SChristoph Hellwig 	return 0;
565d977f437SChristoph Hellwig 
566d977f437SChristoph Hellwig check_nonholder:
567d977f437SChristoph Hellwig 	if (core_scsi3_pr_seq_non_holder(cmd, pr_reg_type))
568de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
569d977f437SChristoph Hellwig 	return 0;
570d977f437SChristoph Hellwig }
571d977f437SChristoph Hellwig 
572c66ac9dbSNicholas Bellinger static u32 core_scsi3_pr_generation(struct se_device *dev)
573c66ac9dbSNicholas Bellinger {
574c66ac9dbSNicholas Bellinger 	u32 prg;
5750fd97ccfSChristoph Hellwig 
576c66ac9dbSNicholas Bellinger 	/*
577c66ac9dbSNicholas Bellinger 	 * PRGeneration field shall contain the value of a 32-bit wrapping
578c66ac9dbSNicholas Bellinger 	 * counter mainted by the device server.
579c66ac9dbSNicholas Bellinger 	 *
580c66ac9dbSNicholas Bellinger 	 * Note that this is done regardless of Active Persist across
581c66ac9dbSNicholas Bellinger 	 * Target PowerLoss (APTPL)
582c66ac9dbSNicholas Bellinger 	 *
583c66ac9dbSNicholas Bellinger 	 * See spc4r17 section 6.3.12 READ_KEYS service action
584c66ac9dbSNicholas Bellinger 	 */
585c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
5860fd97ccfSChristoph Hellwig 	prg = dev->t10_pr.pr_generation++;
587c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
588c66ac9dbSNicholas Bellinger 
589c66ac9dbSNicholas Bellinger 	return prg;
590c66ac9dbSNicholas Bellinger }
591c66ac9dbSNicholas Bellinger 
592c66ac9dbSNicholas Bellinger static struct t10_pr_registration *__core_scsi3_do_alloc_registration(
593c66ac9dbSNicholas Bellinger 	struct se_device *dev,
594c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
595c66ac9dbSNicholas Bellinger 	struct se_dev_entry *deve,
596c66ac9dbSNicholas Bellinger 	unsigned char *isid,
597c66ac9dbSNicholas Bellinger 	u64 sa_res_key,
598c66ac9dbSNicholas Bellinger 	int all_tg_pt,
599c66ac9dbSNicholas Bellinger 	int aptpl)
600c66ac9dbSNicholas Bellinger {
601c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg;
602c66ac9dbSNicholas Bellinger 
603c66ac9dbSNicholas Bellinger 	pr_reg = kmem_cache_zalloc(t10_pr_reg_cache, GFP_ATOMIC);
6046708bb27SAndy Grover 	if (!pr_reg) {
6056708bb27SAndy Grover 		pr_err("Unable to allocate struct t10_pr_registration\n");
606c66ac9dbSNicholas Bellinger 		return NULL;
607c66ac9dbSNicholas Bellinger 	}
608c66ac9dbSNicholas Bellinger 
609c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_list);
610c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_abort_list);
611c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_aptpl_list);
612c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_atp_list);
613c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_atp_mem_list);
614c66ac9dbSNicholas Bellinger 	atomic_set(&pr_reg->pr_res_holders, 0);
615c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_nacl = nacl;
616c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_deve = deve;
617c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_mapped_lun = deve->mapped_lun;
618c66ac9dbSNicholas Bellinger 	pr_reg->pr_aptpl_target_lun = deve->se_lun->unpacked_lun;
619c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_key = sa_res_key;
620c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_all_tg_pt = all_tg_pt;
621c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_aptpl = aptpl;
622c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_tg_pt_lun = deve->se_lun;
623c66ac9dbSNicholas Bellinger 	/*
624c66ac9dbSNicholas Bellinger 	 * If an ISID value for this SCSI Initiator Port exists,
625c66ac9dbSNicholas Bellinger 	 * save it to the registration now.
626c66ac9dbSNicholas Bellinger 	 */
627c66ac9dbSNicholas Bellinger 	if (isid != NULL) {
628c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_bin_isid = get_unaligned_be64(isid);
629c66ac9dbSNicholas Bellinger 		snprintf(pr_reg->pr_reg_isid, PR_REG_ISID_LEN, "%s", isid);
630c66ac9dbSNicholas Bellinger 		pr_reg->isid_present_at_reg = 1;
631c66ac9dbSNicholas Bellinger 	}
632c66ac9dbSNicholas Bellinger 
633c66ac9dbSNicholas Bellinger 	return pr_reg;
634c66ac9dbSNicholas Bellinger }
635c66ac9dbSNicholas Bellinger 
636c66ac9dbSNicholas Bellinger static int core_scsi3_lunacl_depend_item(struct se_dev_entry *);
637c66ac9dbSNicholas Bellinger static void core_scsi3_lunacl_undepend_item(struct se_dev_entry *);
638c66ac9dbSNicholas Bellinger 
639c66ac9dbSNicholas Bellinger /*
640c66ac9dbSNicholas Bellinger  * Function used for handling PR registrations for ALL_TG_PT=1 and ALL_TG_PT=0
641c66ac9dbSNicholas Bellinger  * modes.
642c66ac9dbSNicholas Bellinger  */
643c66ac9dbSNicholas Bellinger static struct t10_pr_registration *__core_scsi3_alloc_registration(
644c66ac9dbSNicholas Bellinger 	struct se_device *dev,
645c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
646c66ac9dbSNicholas Bellinger 	struct se_dev_entry *deve,
647c66ac9dbSNicholas Bellinger 	unsigned char *isid,
648c66ac9dbSNicholas Bellinger 	u64 sa_res_key,
649c66ac9dbSNicholas Bellinger 	int all_tg_pt,
650c66ac9dbSNicholas Bellinger 	int aptpl)
651c66ac9dbSNicholas Bellinger {
652c66ac9dbSNicholas Bellinger 	struct se_dev_entry *deve_tmp;
653c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl_tmp;
654c66ac9dbSNicholas Bellinger 	struct se_port *port, *port_tmp;
655c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
656c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_atp, *pr_reg_tmp, *pr_reg_tmp_safe;
657c66ac9dbSNicholas Bellinger 	int ret;
658c66ac9dbSNicholas Bellinger 	/*
659c66ac9dbSNicholas Bellinger 	 * Create a registration for the I_T Nexus upon which the
660c66ac9dbSNicholas Bellinger 	 * PROUT REGISTER was received.
661c66ac9dbSNicholas Bellinger 	 */
662c66ac9dbSNicholas Bellinger 	pr_reg = __core_scsi3_do_alloc_registration(dev, nacl, deve, isid,
663c66ac9dbSNicholas Bellinger 			sa_res_key, all_tg_pt, aptpl);
6646708bb27SAndy Grover 	if (!pr_reg)
665c66ac9dbSNicholas Bellinger 		return NULL;
666c66ac9dbSNicholas Bellinger 	/*
667c66ac9dbSNicholas Bellinger 	 * Return pointer to pr_reg for ALL_TG_PT=0
668c66ac9dbSNicholas Bellinger 	 */
6696708bb27SAndy Grover 	if (!all_tg_pt)
670c66ac9dbSNicholas Bellinger 		return pr_reg;
671c66ac9dbSNicholas Bellinger 	/*
672c66ac9dbSNicholas Bellinger 	 * Create list of matching SCSI Initiator Port registrations
673c66ac9dbSNicholas Bellinger 	 * for ALL_TG_PT=1
674c66ac9dbSNicholas Bellinger 	 */
675c66ac9dbSNicholas Bellinger 	spin_lock(&dev->se_port_lock);
676c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(port, port_tmp, &dev->dev_sep_list, sep_list) {
677c66ac9dbSNicholas Bellinger 		atomic_inc(&port->sep_tg_pt_ref_cnt);
678c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_inc();
679c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->se_port_lock);
680c66ac9dbSNicholas Bellinger 
681c66ac9dbSNicholas Bellinger 		spin_lock_bh(&port->sep_alua_lock);
682c66ac9dbSNicholas Bellinger 		list_for_each_entry(deve_tmp, &port->sep_alua_list,
683c66ac9dbSNicholas Bellinger 					alua_port_list) {
684c66ac9dbSNicholas Bellinger 			/*
685c66ac9dbSNicholas Bellinger 			 * This pointer will be NULL for demo mode MappedLUNs
686c66ac9dbSNicholas Bellinger 			 * that have not been make explict via a ConfigFS
687c66ac9dbSNicholas Bellinger 			 * MappedLUN group for the SCSI Initiator Node ACL.
688c66ac9dbSNicholas Bellinger 			 */
6896708bb27SAndy Grover 			if (!deve_tmp->se_lun_acl)
690c66ac9dbSNicholas Bellinger 				continue;
691c66ac9dbSNicholas Bellinger 
692c66ac9dbSNicholas Bellinger 			nacl_tmp = deve_tmp->se_lun_acl->se_lun_nacl;
693c66ac9dbSNicholas Bellinger 			/*
694c66ac9dbSNicholas Bellinger 			 * Skip the matching struct se_node_acl that is allocated
695c66ac9dbSNicholas Bellinger 			 * above..
696c66ac9dbSNicholas Bellinger 			 */
697c66ac9dbSNicholas Bellinger 			if (nacl == nacl_tmp)
698c66ac9dbSNicholas Bellinger 				continue;
699c66ac9dbSNicholas Bellinger 			/*
700c66ac9dbSNicholas Bellinger 			 * Only perform PR registrations for target ports on
701c66ac9dbSNicholas Bellinger 			 * the same fabric module as the REGISTER w/ ALL_TG_PT=1
702c66ac9dbSNicholas Bellinger 			 * arrived.
703c66ac9dbSNicholas Bellinger 			 */
704c66ac9dbSNicholas Bellinger 			if (tfo != nacl_tmp->se_tpg->se_tpg_tfo)
705c66ac9dbSNicholas Bellinger 				continue;
706c66ac9dbSNicholas Bellinger 			/*
707c66ac9dbSNicholas Bellinger 			 * Look for a matching Initiator Node ACL in ASCII format
708c66ac9dbSNicholas Bellinger 			 */
709c66ac9dbSNicholas Bellinger 			if (strcmp(nacl->initiatorname, nacl_tmp->initiatorname))
710c66ac9dbSNicholas Bellinger 				continue;
711c66ac9dbSNicholas Bellinger 
712c66ac9dbSNicholas Bellinger 			atomic_inc(&deve_tmp->pr_ref_count);
713c66ac9dbSNicholas Bellinger 			smp_mb__after_atomic_inc();
714c66ac9dbSNicholas Bellinger 			spin_unlock_bh(&port->sep_alua_lock);
715c66ac9dbSNicholas Bellinger 			/*
716c66ac9dbSNicholas Bellinger 			 * Grab a configfs group dependency that is released
717c66ac9dbSNicholas Bellinger 			 * for the exception path at label out: below, or upon
718c66ac9dbSNicholas Bellinger 			 * completion of adding ALL_TG_PT=1 registrations in
719c66ac9dbSNicholas Bellinger 			 * __core_scsi3_add_registration()
720c66ac9dbSNicholas Bellinger 			 */
721c66ac9dbSNicholas Bellinger 			ret = core_scsi3_lunacl_depend_item(deve_tmp);
722c66ac9dbSNicholas Bellinger 			if (ret < 0) {
7236708bb27SAndy Grover 				pr_err("core_scsi3_lunacl_depend"
724c66ac9dbSNicholas Bellinger 						"_item() failed\n");
725c66ac9dbSNicholas Bellinger 				atomic_dec(&port->sep_tg_pt_ref_cnt);
726c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_dec();
727c66ac9dbSNicholas Bellinger 				atomic_dec(&deve_tmp->pr_ref_count);
728c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_dec();
729c66ac9dbSNicholas Bellinger 				goto out;
730c66ac9dbSNicholas Bellinger 			}
731c66ac9dbSNicholas Bellinger 			/*
732c66ac9dbSNicholas Bellinger 			 * Located a matching SCSI Initiator Port on a different
733c66ac9dbSNicholas Bellinger 			 * port, allocate the pr_reg_atp and attach it to the
734c66ac9dbSNicholas Bellinger 			 * pr_reg->pr_reg_atp_list that will be processed once
735c66ac9dbSNicholas Bellinger 			 * the original *pr_reg is processed in
736c66ac9dbSNicholas Bellinger 			 * __core_scsi3_add_registration()
737c66ac9dbSNicholas Bellinger 			 */
738c66ac9dbSNicholas Bellinger 			pr_reg_atp = __core_scsi3_do_alloc_registration(dev,
739c66ac9dbSNicholas Bellinger 						nacl_tmp, deve_tmp, NULL,
740c66ac9dbSNicholas Bellinger 						sa_res_key, all_tg_pt, aptpl);
7416708bb27SAndy Grover 			if (!pr_reg_atp) {
742c66ac9dbSNicholas Bellinger 				atomic_dec(&port->sep_tg_pt_ref_cnt);
743c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_dec();
744c66ac9dbSNicholas Bellinger 				atomic_dec(&deve_tmp->pr_ref_count);
745c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_dec();
746c66ac9dbSNicholas Bellinger 				core_scsi3_lunacl_undepend_item(deve_tmp);
747c66ac9dbSNicholas Bellinger 				goto out;
748c66ac9dbSNicholas Bellinger 			}
749c66ac9dbSNicholas Bellinger 
750c66ac9dbSNicholas Bellinger 			list_add_tail(&pr_reg_atp->pr_reg_atp_mem_list,
751c66ac9dbSNicholas Bellinger 				      &pr_reg->pr_reg_atp_list);
752c66ac9dbSNicholas Bellinger 			spin_lock_bh(&port->sep_alua_lock);
753c66ac9dbSNicholas Bellinger 		}
754c66ac9dbSNicholas Bellinger 		spin_unlock_bh(&port->sep_alua_lock);
755c66ac9dbSNicholas Bellinger 
756c66ac9dbSNicholas Bellinger 		spin_lock(&dev->se_port_lock);
757c66ac9dbSNicholas Bellinger 		atomic_dec(&port->sep_tg_pt_ref_cnt);
758c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_dec();
759c66ac9dbSNicholas Bellinger 	}
760c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->se_port_lock);
761c66ac9dbSNicholas Bellinger 
762c66ac9dbSNicholas Bellinger 	return pr_reg;
763c66ac9dbSNicholas Bellinger out:
764c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
765c66ac9dbSNicholas Bellinger 			&pr_reg->pr_reg_atp_list, pr_reg_atp_mem_list) {
766c66ac9dbSNicholas Bellinger 		list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
767c66ac9dbSNicholas Bellinger 		core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
768c66ac9dbSNicholas Bellinger 		kmem_cache_free(t10_pr_reg_cache, pr_reg_tmp);
769c66ac9dbSNicholas Bellinger 	}
770c66ac9dbSNicholas Bellinger 	kmem_cache_free(t10_pr_reg_cache, pr_reg);
771c66ac9dbSNicholas Bellinger 	return NULL;
772c66ac9dbSNicholas Bellinger }
773c66ac9dbSNicholas Bellinger 
774c66ac9dbSNicholas Bellinger int core_scsi3_alloc_aptpl_registration(
775e3d6f909SAndy Grover 	struct t10_reservation *pr_tmpl,
776c66ac9dbSNicholas Bellinger 	u64 sa_res_key,
777c66ac9dbSNicholas Bellinger 	unsigned char *i_port,
778c66ac9dbSNicholas Bellinger 	unsigned char *isid,
779c66ac9dbSNicholas Bellinger 	u32 mapped_lun,
780c66ac9dbSNicholas Bellinger 	unsigned char *t_port,
781c66ac9dbSNicholas Bellinger 	u16 tpgt,
782c66ac9dbSNicholas Bellinger 	u32 target_lun,
783c66ac9dbSNicholas Bellinger 	int res_holder,
784c66ac9dbSNicholas Bellinger 	int all_tg_pt,
785c66ac9dbSNicholas Bellinger 	u8 type)
786c66ac9dbSNicholas Bellinger {
787c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg;
788c66ac9dbSNicholas Bellinger 
7896708bb27SAndy Grover 	if (!i_port || !t_port || !sa_res_key) {
7906708bb27SAndy Grover 		pr_err("Illegal parameters for APTPL registration\n");
791e3d6f909SAndy Grover 		return -EINVAL;
792c66ac9dbSNicholas Bellinger 	}
793c66ac9dbSNicholas Bellinger 
794c66ac9dbSNicholas Bellinger 	pr_reg = kmem_cache_zalloc(t10_pr_reg_cache, GFP_KERNEL);
7956708bb27SAndy Grover 	if (!pr_reg) {
7966708bb27SAndy Grover 		pr_err("Unable to allocate struct t10_pr_registration\n");
797e3d6f909SAndy Grover 		return -ENOMEM;
798c66ac9dbSNicholas Bellinger 	}
799c66ac9dbSNicholas Bellinger 
800c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_list);
801c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_abort_list);
802c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_aptpl_list);
803c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_atp_list);
804c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&pr_reg->pr_reg_atp_mem_list);
805c66ac9dbSNicholas Bellinger 	atomic_set(&pr_reg->pr_res_holders, 0);
806c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_nacl = NULL;
807c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_deve = NULL;
808c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_mapped_lun = mapped_lun;
809c66ac9dbSNicholas Bellinger 	pr_reg->pr_aptpl_target_lun = target_lun;
810c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_key = sa_res_key;
811c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_all_tg_pt = all_tg_pt;
812c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_aptpl = 1;
813c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_tg_pt_lun = NULL;
814c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_scope = 0; /* Always LUN_SCOPE */
815c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_type = type;
816c66ac9dbSNicholas Bellinger 	/*
817c66ac9dbSNicholas Bellinger 	 * If an ISID value had been saved in APTPL metadata for this
818c66ac9dbSNicholas Bellinger 	 * SCSI Initiator Port, restore it now.
819c66ac9dbSNicholas Bellinger 	 */
820c66ac9dbSNicholas Bellinger 	if (isid != NULL) {
821c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_bin_isid = get_unaligned_be64(isid);
822c66ac9dbSNicholas Bellinger 		snprintf(pr_reg->pr_reg_isid, PR_REG_ISID_LEN, "%s", isid);
823c66ac9dbSNicholas Bellinger 		pr_reg->isid_present_at_reg = 1;
824c66ac9dbSNicholas Bellinger 	}
825c66ac9dbSNicholas Bellinger 	/*
826c66ac9dbSNicholas Bellinger 	 * Copy the i_port and t_port information from caller.
827c66ac9dbSNicholas Bellinger 	 */
828c66ac9dbSNicholas Bellinger 	snprintf(pr_reg->pr_iport, PR_APTPL_MAX_IPORT_LEN, "%s", i_port);
829c66ac9dbSNicholas Bellinger 	snprintf(pr_reg->pr_tport, PR_APTPL_MAX_TPORT_LEN, "%s", t_port);
830c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_tpgt = tpgt;
831c66ac9dbSNicholas Bellinger 	/*
832c66ac9dbSNicholas Bellinger 	 * Set pr_res_holder from caller, the pr_reg who is the reservation
833c66ac9dbSNicholas Bellinger 	 * holder will get it's pointer set in core_scsi3_aptpl_reserve() once
834c66ac9dbSNicholas Bellinger 	 * the Initiator Node LUN ACL from the fabric module is created for
835c66ac9dbSNicholas Bellinger 	 * this registration.
836c66ac9dbSNicholas Bellinger 	 */
837c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_holder = res_holder;
838c66ac9dbSNicholas Bellinger 
839c66ac9dbSNicholas Bellinger 	list_add_tail(&pr_reg->pr_reg_aptpl_list, &pr_tmpl->aptpl_reg_list);
8406708bb27SAndy Grover 	pr_debug("SPC-3 PR APTPL Successfully added registration%s from"
841c66ac9dbSNicholas Bellinger 			" metadata\n", (res_holder) ? "+reservation" : "");
842c66ac9dbSNicholas Bellinger 	return 0;
843c66ac9dbSNicholas Bellinger }
844c66ac9dbSNicholas Bellinger 
845c66ac9dbSNicholas Bellinger static void core_scsi3_aptpl_reserve(
846c66ac9dbSNicholas Bellinger 	struct se_device *dev,
847c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg,
848c66ac9dbSNicholas Bellinger 	struct se_node_acl *node_acl,
849c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg)
850c66ac9dbSNicholas Bellinger {
851c66ac9dbSNicholas Bellinger 	char i_buf[PR_REG_ISID_ID_LEN];
852c66ac9dbSNicholas Bellinger 
853c66ac9dbSNicholas Bellinger 	memset(i_buf, 0, PR_REG_ISID_ID_LEN);
854d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
855c66ac9dbSNicholas Bellinger 
856c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
857c66ac9dbSNicholas Bellinger 	dev->dev_pr_res_holder = pr_reg;
858c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
859c66ac9dbSNicholas Bellinger 
8606708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: APTPL RESERVE created"
861c66ac9dbSNicholas Bellinger 		" new reservation holder TYPE: %s ALL_TG_PT: %d\n",
862e3d6f909SAndy Grover 		tpg->se_tpg_tfo->get_fabric_name(),
863c66ac9dbSNicholas Bellinger 		core_scsi3_pr_dump_type(pr_reg->pr_res_type),
864c66ac9dbSNicholas Bellinger 		(pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
8656708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
866e3d6f909SAndy Grover 		tpg->se_tpg_tfo->get_fabric_name(), node_acl->initiatorname,
867d2843c17SAndy Grover 		i_buf);
868c66ac9dbSNicholas Bellinger }
869c66ac9dbSNicholas Bellinger 
870c66ac9dbSNicholas Bellinger static void __core_scsi3_add_registration(struct se_device *, struct se_node_acl *,
87133ce6a87SAndy Grover 				struct t10_pr_registration *, enum register_type, int);
872c66ac9dbSNicholas Bellinger 
873c66ac9dbSNicholas Bellinger static int __core_scsi3_check_aptpl_registration(
874c66ac9dbSNicholas Bellinger 	struct se_device *dev,
875c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg,
876c66ac9dbSNicholas Bellinger 	struct se_lun *lun,
877c66ac9dbSNicholas Bellinger 	u32 target_lun,
878c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
879c66ac9dbSNicholas Bellinger 	struct se_dev_entry *deve)
880c66ac9dbSNicholas Bellinger {
881c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp;
8820fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
883c66ac9dbSNicholas Bellinger 	unsigned char i_port[PR_APTPL_MAX_IPORT_LEN];
884c66ac9dbSNicholas Bellinger 	unsigned char t_port[PR_APTPL_MAX_TPORT_LEN];
885c66ac9dbSNicholas Bellinger 	u16 tpgt;
886c66ac9dbSNicholas Bellinger 
887c66ac9dbSNicholas Bellinger 	memset(i_port, 0, PR_APTPL_MAX_IPORT_LEN);
888c66ac9dbSNicholas Bellinger 	memset(t_port, 0, PR_APTPL_MAX_TPORT_LEN);
889c66ac9dbSNicholas Bellinger 	/*
890c66ac9dbSNicholas Bellinger 	 * Copy Initiator Port information from struct se_node_acl
891c66ac9dbSNicholas Bellinger 	 */
892c66ac9dbSNicholas Bellinger 	snprintf(i_port, PR_APTPL_MAX_IPORT_LEN, "%s", nacl->initiatorname);
893c66ac9dbSNicholas Bellinger 	snprintf(t_port, PR_APTPL_MAX_TPORT_LEN, "%s",
894e3d6f909SAndy Grover 			tpg->se_tpg_tfo->tpg_get_wwn(tpg));
895e3d6f909SAndy Grover 	tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg);
896c66ac9dbSNicholas Bellinger 	/*
897c66ac9dbSNicholas Bellinger 	 * Look for the matching registrations+reservation from those
898c66ac9dbSNicholas Bellinger 	 * created from APTPL metadata.  Note that multiple registrations
899c66ac9dbSNicholas Bellinger 	 * may exist for fabrics that use ISIDs in their SCSI Initiator Port
900c66ac9dbSNicholas Bellinger 	 * TransportIDs.
901c66ac9dbSNicholas Bellinger 	 */
902c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->aptpl_reg_lock);
903c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp, &pr_tmpl->aptpl_reg_list,
904c66ac9dbSNicholas Bellinger 				pr_reg_aptpl_list) {
9056708bb27SAndy Grover 		if (!strcmp(pr_reg->pr_iport, i_port) &&
906c66ac9dbSNicholas Bellinger 		     (pr_reg->pr_res_mapped_lun == deve->mapped_lun) &&
907c66ac9dbSNicholas Bellinger 		    !(strcmp(pr_reg->pr_tport, t_port)) &&
908c66ac9dbSNicholas Bellinger 		     (pr_reg->pr_reg_tpgt == tpgt) &&
909c66ac9dbSNicholas Bellinger 		     (pr_reg->pr_aptpl_target_lun == target_lun)) {
910c66ac9dbSNicholas Bellinger 
911c66ac9dbSNicholas Bellinger 			pr_reg->pr_reg_nacl = nacl;
912c66ac9dbSNicholas Bellinger 			pr_reg->pr_reg_deve = deve;
913c66ac9dbSNicholas Bellinger 			pr_reg->pr_reg_tg_pt_lun = lun;
914c66ac9dbSNicholas Bellinger 
915c66ac9dbSNicholas Bellinger 			list_del(&pr_reg->pr_reg_aptpl_list);
916c66ac9dbSNicholas Bellinger 			spin_unlock(&pr_tmpl->aptpl_reg_lock);
917c66ac9dbSNicholas Bellinger 			/*
918c66ac9dbSNicholas Bellinger 			 * At this point all of the pointers in *pr_reg will
919c66ac9dbSNicholas Bellinger 			 * be setup, so go ahead and add the registration.
920c66ac9dbSNicholas Bellinger 			 */
921c66ac9dbSNicholas Bellinger 
922c66ac9dbSNicholas Bellinger 			__core_scsi3_add_registration(dev, nacl, pr_reg, 0, 0);
923c66ac9dbSNicholas Bellinger 			/*
924c66ac9dbSNicholas Bellinger 			 * If this registration is the reservation holder,
925c66ac9dbSNicholas Bellinger 			 * make that happen now..
926c66ac9dbSNicholas Bellinger 			 */
927c66ac9dbSNicholas Bellinger 			if (pr_reg->pr_res_holder)
928c66ac9dbSNicholas Bellinger 				core_scsi3_aptpl_reserve(dev, tpg,
929c66ac9dbSNicholas Bellinger 						nacl, pr_reg);
930c66ac9dbSNicholas Bellinger 			/*
931c66ac9dbSNicholas Bellinger 			 * Reenable pr_aptpl_active to accept new metadata
932c66ac9dbSNicholas Bellinger 			 * updates once the SCSI device is active again..
933c66ac9dbSNicholas Bellinger 			 */
934c66ac9dbSNicholas Bellinger 			spin_lock(&pr_tmpl->aptpl_reg_lock);
935c66ac9dbSNicholas Bellinger 			pr_tmpl->pr_aptpl_active = 1;
936c66ac9dbSNicholas Bellinger 		}
937c66ac9dbSNicholas Bellinger 	}
938c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->aptpl_reg_lock);
939c66ac9dbSNicholas Bellinger 
940c66ac9dbSNicholas Bellinger 	return 0;
941c66ac9dbSNicholas Bellinger }
942c66ac9dbSNicholas Bellinger 
943c66ac9dbSNicholas Bellinger int core_scsi3_check_aptpl_registration(
944c66ac9dbSNicholas Bellinger 	struct se_device *dev,
945c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg,
946c66ac9dbSNicholas Bellinger 	struct se_lun *lun,
947c66ac9dbSNicholas Bellinger 	struct se_lun_acl *lun_acl)
948c66ac9dbSNicholas Bellinger {
949c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl = lun_acl->se_lun_nacl;
950f2083241SJörn Engel 	struct se_dev_entry *deve = nacl->device_list[lun_acl->mapped_lun];
951c66ac9dbSNicholas Bellinger 
952d977f437SChristoph Hellwig 	if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
953c66ac9dbSNicholas Bellinger 		return 0;
954c66ac9dbSNicholas Bellinger 
955c66ac9dbSNicholas Bellinger 	return __core_scsi3_check_aptpl_registration(dev, tpg, lun,
956c66ac9dbSNicholas Bellinger 				lun->unpacked_lun, nacl, deve);
957c66ac9dbSNicholas Bellinger }
958c66ac9dbSNicholas Bellinger 
959c66ac9dbSNicholas Bellinger static void __core_scsi3_dump_registration(
960c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tfo,
961c66ac9dbSNicholas Bellinger 	struct se_device *dev,
962c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
963c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg,
96433ce6a87SAndy Grover 	enum register_type register_type)
965c66ac9dbSNicholas Bellinger {
966c66ac9dbSNicholas Bellinger 	struct se_portal_group *se_tpg = nacl->se_tpg;
967c66ac9dbSNicholas Bellinger 	char i_buf[PR_REG_ISID_ID_LEN];
968c66ac9dbSNicholas Bellinger 
969c66ac9dbSNicholas Bellinger 	memset(&i_buf[0], 0, PR_REG_ISID_ID_LEN);
970d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
971c66ac9dbSNicholas Bellinger 
9726708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: REGISTER%s Initiator"
97333ce6a87SAndy Grover 		" Node: %s%s\n", tfo->get_fabric_name(), (register_type == REGISTER_AND_MOVE) ?
97433ce6a87SAndy Grover 		"_AND_MOVE" : (register_type == REGISTER_AND_IGNORE_EXISTING_KEY) ?
975c66ac9dbSNicholas Bellinger 		"_AND_IGNORE_EXISTING_KEY" : "", nacl->initiatorname,
976d2843c17SAndy Grover 		i_buf);
9776708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] registration on Target Port: %s,0x%04x\n",
978c66ac9dbSNicholas Bellinger 		 tfo->get_fabric_name(), tfo->tpg_get_wwn(se_tpg),
979c66ac9dbSNicholas Bellinger 		tfo->tpg_get_tag(se_tpg));
9806708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
981c66ac9dbSNicholas Bellinger 		" Port(s)\n",  tfo->get_fabric_name(),
982c66ac9dbSNicholas Bellinger 		(pr_reg->pr_reg_all_tg_pt) ? "ALL" : "SINGLE",
983e3d6f909SAndy Grover 		dev->transport->name);
9846708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
985c66ac9dbSNicholas Bellinger 		" 0x%08x  APTPL: %d\n", tfo->get_fabric_name(),
986c66ac9dbSNicholas Bellinger 		pr_reg->pr_res_key, pr_reg->pr_res_generation,
987c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_aptpl);
988c66ac9dbSNicholas Bellinger }
989c66ac9dbSNicholas Bellinger 
990c66ac9dbSNicholas Bellinger /*
991c66ac9dbSNicholas Bellinger  * this function can be called with struct se_device->dev_reservation_lock
992c66ac9dbSNicholas Bellinger  * when register_move = 1
993c66ac9dbSNicholas Bellinger  */
994c66ac9dbSNicholas Bellinger static void __core_scsi3_add_registration(
995c66ac9dbSNicholas Bellinger 	struct se_device *dev,
996c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
997c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg,
99833ce6a87SAndy Grover 	enum register_type register_type,
999c66ac9dbSNicholas Bellinger 	int register_move)
1000c66ac9dbSNicholas Bellinger {
1001c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
1002c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg_tmp, *pr_reg_tmp_safe;
10030fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
1004c66ac9dbSNicholas Bellinger 
1005c66ac9dbSNicholas Bellinger 	/*
1006c66ac9dbSNicholas Bellinger 	 * Increment PRgeneration counter for struct se_device upon a successful
1007c66ac9dbSNicholas Bellinger 	 * REGISTER, see spc4r17 section 6.3.2 READ_KEYS service action
1008c66ac9dbSNicholas Bellinger 	 *
1009c66ac9dbSNicholas Bellinger 	 * Also, when register_move = 1 for PROUT REGISTER_AND_MOVE service
1010c66ac9dbSNicholas Bellinger 	 * action, the struct se_device->dev_reservation_lock will already be held,
1011c66ac9dbSNicholas Bellinger 	 * so we do not call core_scsi3_pr_generation() which grabs the lock
1012c66ac9dbSNicholas Bellinger 	 * for the REGISTER.
1013c66ac9dbSNicholas Bellinger 	 */
1014c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_generation = (register_move) ?
10150fd97ccfSChristoph Hellwig 			dev->t10_pr.pr_generation++ :
1016c66ac9dbSNicholas Bellinger 			core_scsi3_pr_generation(dev);
1017c66ac9dbSNicholas Bellinger 
1018c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
1019c66ac9dbSNicholas Bellinger 	list_add_tail(&pr_reg->pr_reg_list, &pr_tmpl->registration_list);
1020c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_deve->def_pr_registered = 1;
1021c66ac9dbSNicholas Bellinger 
1022c66ac9dbSNicholas Bellinger 	__core_scsi3_dump_registration(tfo, dev, nacl, pr_reg, register_type);
1023c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
1024c66ac9dbSNicholas Bellinger 	/*
1025c66ac9dbSNicholas Bellinger 	 * Skip extra processing for ALL_TG_PT=0 or REGISTER_AND_MOVE.
1026c66ac9dbSNicholas Bellinger 	 */
10276708bb27SAndy Grover 	if (!pr_reg->pr_reg_all_tg_pt || register_move)
1028c66ac9dbSNicholas Bellinger 		return;
1029c66ac9dbSNicholas Bellinger 	/*
1030c66ac9dbSNicholas Bellinger 	 * Walk pr_reg->pr_reg_atp_list and add registrations for ALL_TG_PT=1
1031c66ac9dbSNicholas Bellinger 	 * allocated in __core_scsi3_alloc_registration()
1032c66ac9dbSNicholas Bellinger 	 */
1033c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
1034c66ac9dbSNicholas Bellinger 			&pr_reg->pr_reg_atp_list, pr_reg_atp_mem_list) {
1035c66ac9dbSNicholas Bellinger 		list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
1036c66ac9dbSNicholas Bellinger 
1037c66ac9dbSNicholas Bellinger 		pr_reg_tmp->pr_res_generation = core_scsi3_pr_generation(dev);
1038c66ac9dbSNicholas Bellinger 
1039c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
1040c66ac9dbSNicholas Bellinger 		list_add_tail(&pr_reg_tmp->pr_reg_list,
1041c66ac9dbSNicholas Bellinger 			      &pr_tmpl->registration_list);
1042c66ac9dbSNicholas Bellinger 		pr_reg_tmp->pr_reg_deve->def_pr_registered = 1;
1043c66ac9dbSNicholas Bellinger 
1044c66ac9dbSNicholas Bellinger 		__core_scsi3_dump_registration(tfo, dev,
1045c66ac9dbSNicholas Bellinger 				pr_reg_tmp->pr_reg_nacl, pr_reg_tmp,
1046c66ac9dbSNicholas Bellinger 				register_type);
1047c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
1048c66ac9dbSNicholas Bellinger 		/*
1049c66ac9dbSNicholas Bellinger 		 * Drop configfs group dependency reference from
1050c66ac9dbSNicholas Bellinger 		 * __core_scsi3_alloc_registration()
1051c66ac9dbSNicholas Bellinger 		 */
1052c66ac9dbSNicholas Bellinger 		core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
1053c66ac9dbSNicholas Bellinger 	}
1054c66ac9dbSNicholas Bellinger }
1055c66ac9dbSNicholas Bellinger 
1056c66ac9dbSNicholas Bellinger static int core_scsi3_alloc_registration(
1057c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1058c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
1059c66ac9dbSNicholas Bellinger 	struct se_dev_entry *deve,
1060c66ac9dbSNicholas Bellinger 	unsigned char *isid,
1061c66ac9dbSNicholas Bellinger 	u64 sa_res_key,
1062c66ac9dbSNicholas Bellinger 	int all_tg_pt,
1063c66ac9dbSNicholas Bellinger 	int aptpl,
106433ce6a87SAndy Grover 	enum register_type register_type,
1065c66ac9dbSNicholas Bellinger 	int register_move)
1066c66ac9dbSNicholas Bellinger {
1067c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg;
1068c66ac9dbSNicholas Bellinger 
1069c66ac9dbSNicholas Bellinger 	pr_reg = __core_scsi3_alloc_registration(dev, nacl, deve, isid,
1070c66ac9dbSNicholas Bellinger 			sa_res_key, all_tg_pt, aptpl);
10716708bb27SAndy Grover 	if (!pr_reg)
1072e3d6f909SAndy Grover 		return -EPERM;
1073c66ac9dbSNicholas Bellinger 
1074c66ac9dbSNicholas Bellinger 	__core_scsi3_add_registration(dev, nacl, pr_reg,
1075c66ac9dbSNicholas Bellinger 			register_type, register_move);
1076c66ac9dbSNicholas Bellinger 	return 0;
1077c66ac9dbSNicholas Bellinger }
1078c66ac9dbSNicholas Bellinger 
1079c66ac9dbSNicholas Bellinger static struct t10_pr_registration *__core_scsi3_locate_pr_reg(
1080c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1081c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
1082c66ac9dbSNicholas Bellinger 	unsigned char *isid)
1083c66ac9dbSNicholas Bellinger {
10840fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
1085c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp;
1086c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg;
1087c66ac9dbSNicholas Bellinger 
1088c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
1089c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1090c66ac9dbSNicholas Bellinger 			&pr_tmpl->registration_list, pr_reg_list) {
1091c66ac9dbSNicholas Bellinger 		/*
1092c66ac9dbSNicholas Bellinger 		 * First look for a matching struct se_node_acl
1093c66ac9dbSNicholas Bellinger 		 */
1094c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_reg_nacl != nacl)
1095c66ac9dbSNicholas Bellinger 			continue;
1096c66ac9dbSNicholas Bellinger 
1097c66ac9dbSNicholas Bellinger 		tpg = pr_reg->pr_reg_nacl->se_tpg;
1098c66ac9dbSNicholas Bellinger 		/*
1099c66ac9dbSNicholas Bellinger 		 * If this registration does NOT contain a fabric provided
1100c66ac9dbSNicholas Bellinger 		 * ISID, then we have found a match.
1101c66ac9dbSNicholas Bellinger 		 */
11026708bb27SAndy Grover 		if (!pr_reg->isid_present_at_reg) {
1103c66ac9dbSNicholas Bellinger 			/*
1104c66ac9dbSNicholas Bellinger 			 * Determine if this SCSI device server requires that
1105c66ac9dbSNicholas Bellinger 			 * SCSI Intiatior TransportID w/ ISIDs is enforced
1106c66ac9dbSNicholas Bellinger 			 * for fabric modules (iSCSI) requiring them.
1107c66ac9dbSNicholas Bellinger 			 */
1108e3d6f909SAndy Grover 			if (tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
11090fd97ccfSChristoph Hellwig 				if (dev->dev_attrib.enforce_pr_isids)
1110c66ac9dbSNicholas Bellinger 					continue;
1111c66ac9dbSNicholas Bellinger 			}
1112c66ac9dbSNicholas Bellinger 			atomic_inc(&pr_reg->pr_res_holders);
1113c66ac9dbSNicholas Bellinger 			smp_mb__after_atomic_inc();
1114c66ac9dbSNicholas Bellinger 			spin_unlock(&pr_tmpl->registration_lock);
1115c66ac9dbSNicholas Bellinger 			return pr_reg;
1116c66ac9dbSNicholas Bellinger 		}
1117c66ac9dbSNicholas Bellinger 		/*
1118c66ac9dbSNicholas Bellinger 		 * If the *pr_reg contains a fabric defined ISID for multi-value
1119c66ac9dbSNicholas Bellinger 		 * SCSI Initiator Port TransportIDs, then we expect a valid
1120c66ac9dbSNicholas Bellinger 		 * matching ISID to be provided by the local SCSI Initiator Port.
1121c66ac9dbSNicholas Bellinger 		 */
11226708bb27SAndy Grover 		if (!isid)
1123c66ac9dbSNicholas Bellinger 			continue;
1124c66ac9dbSNicholas Bellinger 		if (strcmp(isid, pr_reg->pr_reg_isid))
1125c66ac9dbSNicholas Bellinger 			continue;
1126c66ac9dbSNicholas Bellinger 
1127c66ac9dbSNicholas Bellinger 		atomic_inc(&pr_reg->pr_res_holders);
1128c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_inc();
1129c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
1130c66ac9dbSNicholas Bellinger 		return pr_reg;
1131c66ac9dbSNicholas Bellinger 	}
1132c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
1133c66ac9dbSNicholas Bellinger 
1134c66ac9dbSNicholas Bellinger 	return NULL;
1135c66ac9dbSNicholas Bellinger }
1136c66ac9dbSNicholas Bellinger 
1137c66ac9dbSNicholas Bellinger static struct t10_pr_registration *core_scsi3_locate_pr_reg(
1138c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1139c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl,
1140c66ac9dbSNicholas Bellinger 	struct se_session *sess)
1141c66ac9dbSNicholas Bellinger {
1142c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg = nacl->se_tpg;
1143c66ac9dbSNicholas Bellinger 	unsigned char buf[PR_REG_ISID_LEN], *isid_ptr = NULL;
1144c66ac9dbSNicholas Bellinger 
1145e3d6f909SAndy Grover 	if (tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
1146c66ac9dbSNicholas Bellinger 		memset(&buf[0], 0, PR_REG_ISID_LEN);
1147e3d6f909SAndy Grover 		tpg->se_tpg_tfo->sess_get_initiator_sid(sess, &buf[0],
1148c66ac9dbSNicholas Bellinger 					PR_REG_ISID_LEN);
1149c66ac9dbSNicholas Bellinger 		isid_ptr = &buf[0];
1150c66ac9dbSNicholas Bellinger 	}
1151c66ac9dbSNicholas Bellinger 
1152c66ac9dbSNicholas Bellinger 	return __core_scsi3_locate_pr_reg(dev, nacl, isid_ptr);
1153c66ac9dbSNicholas Bellinger }
1154c66ac9dbSNicholas Bellinger 
1155c66ac9dbSNicholas Bellinger static void core_scsi3_put_pr_reg(struct t10_pr_registration *pr_reg)
1156c66ac9dbSNicholas Bellinger {
1157c66ac9dbSNicholas Bellinger 	atomic_dec(&pr_reg->pr_res_holders);
1158c66ac9dbSNicholas Bellinger 	smp_mb__after_atomic_dec();
1159c66ac9dbSNicholas Bellinger }
1160c66ac9dbSNicholas Bellinger 
1161c66ac9dbSNicholas Bellinger static int core_scsi3_check_implict_release(
1162c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1163c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg)
1164c66ac9dbSNicholas Bellinger {
1165c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl = pr_reg->pr_reg_nacl;
1166c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_res_holder;
1167c66ac9dbSNicholas Bellinger 	int ret = 0;
1168c66ac9dbSNicholas Bellinger 
1169c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
1170c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
11716708bb27SAndy Grover 	if (!pr_res_holder) {
1172c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
1173c66ac9dbSNicholas Bellinger 		return ret;
1174c66ac9dbSNicholas Bellinger 	}
1175c66ac9dbSNicholas Bellinger 	if (pr_res_holder == pr_reg) {
1176c66ac9dbSNicholas Bellinger 		/*
1177c66ac9dbSNicholas Bellinger 		 * Perform an implict RELEASE if the registration that
1178c66ac9dbSNicholas Bellinger 		 * is being released is holding the reservation.
1179c66ac9dbSNicholas Bellinger 		 *
1180c66ac9dbSNicholas Bellinger 		 * From spc4r17, section 5.7.11.1:
1181c66ac9dbSNicholas Bellinger 		 *
1182c66ac9dbSNicholas Bellinger 		 * e) If the I_T nexus is the persistent reservation holder
1183c66ac9dbSNicholas Bellinger 		 *    and the persistent reservation is not an all registrants
1184c66ac9dbSNicholas Bellinger 		 *    type, then a PERSISTENT RESERVE OUT command with REGISTER
1185c66ac9dbSNicholas Bellinger 		 *    service action or REGISTER AND  IGNORE EXISTING KEY
1186c66ac9dbSNicholas Bellinger 		 *    service action with the SERVICE ACTION RESERVATION KEY
1187c66ac9dbSNicholas Bellinger 		 *    field set to zero (see 5.7.11.3).
1188c66ac9dbSNicholas Bellinger 		 */
1189c66ac9dbSNicholas Bellinger 		__core_scsi3_complete_pro_release(dev, nacl, pr_reg, 0);
1190c66ac9dbSNicholas Bellinger 		ret = 1;
1191c66ac9dbSNicholas Bellinger 		/*
1192c66ac9dbSNicholas Bellinger 		 * For 'All Registrants' reservation types, all existing
1193c66ac9dbSNicholas Bellinger 		 * registrations are still processed as reservation holders
1194c66ac9dbSNicholas Bellinger 		 * in core_scsi3_pr_seq_non_holder() after the initial
1195c66ac9dbSNicholas Bellinger 		 * reservation holder is implictly released here.
1196c66ac9dbSNicholas Bellinger 		 */
1197c66ac9dbSNicholas Bellinger 	} else if (pr_reg->pr_reg_all_tg_pt &&
1198c66ac9dbSNicholas Bellinger 		  (!strcmp(pr_res_holder->pr_reg_nacl->initiatorname,
1199c66ac9dbSNicholas Bellinger 			  pr_reg->pr_reg_nacl->initiatorname)) &&
1200c66ac9dbSNicholas Bellinger 		  (pr_res_holder->pr_res_key == pr_reg->pr_res_key)) {
12016708bb27SAndy Grover 		pr_err("SPC-3 PR: Unable to perform ALL_TG_PT=1"
1202c66ac9dbSNicholas Bellinger 			" UNREGISTER while existing reservation with matching"
1203c66ac9dbSNicholas Bellinger 			" key 0x%016Lx is present from another SCSI Initiator"
1204c66ac9dbSNicholas Bellinger 			" Port\n", pr_reg->pr_res_key);
1205e3d6f909SAndy Grover 		ret = -EPERM;
1206c66ac9dbSNicholas Bellinger 	}
1207c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
1208c66ac9dbSNicholas Bellinger 
1209c66ac9dbSNicholas Bellinger 	return ret;
1210c66ac9dbSNicholas Bellinger }
1211c66ac9dbSNicholas Bellinger 
1212c66ac9dbSNicholas Bellinger /*
1213e3d6f909SAndy Grover  * Called with struct t10_reservation->registration_lock held.
1214c66ac9dbSNicholas Bellinger  */
1215c66ac9dbSNicholas Bellinger static void __core_scsi3_free_registration(
1216c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1217c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg,
1218c66ac9dbSNicholas Bellinger 	struct list_head *preempt_and_abort_list,
1219c66ac9dbSNicholas Bellinger 	int dec_holders)
1220c66ac9dbSNicholas Bellinger {
1221c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tfo =
1222c66ac9dbSNicholas Bellinger 			pr_reg->pr_reg_nacl->se_tpg->se_tpg_tfo;
12230fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
1224c66ac9dbSNicholas Bellinger 	char i_buf[PR_REG_ISID_ID_LEN];
1225c66ac9dbSNicholas Bellinger 
1226c66ac9dbSNicholas Bellinger 	memset(i_buf, 0, PR_REG_ISID_ID_LEN);
1227d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
1228c66ac9dbSNicholas Bellinger 
1229c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_deve->def_pr_registered = 0;
1230c66ac9dbSNicholas Bellinger 	pr_reg->pr_reg_deve->pr_res_key = 0;
1231c66ac9dbSNicholas Bellinger 	list_del(&pr_reg->pr_reg_list);
1232c66ac9dbSNicholas Bellinger 	/*
1233c66ac9dbSNicholas Bellinger 	 * Caller accessing *pr_reg using core_scsi3_locate_pr_reg(),
1234c66ac9dbSNicholas Bellinger 	 * so call core_scsi3_put_pr_reg() to decrement our reference.
1235c66ac9dbSNicholas Bellinger 	 */
1236c66ac9dbSNicholas Bellinger 	if (dec_holders)
1237c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg);
1238c66ac9dbSNicholas Bellinger 	/*
1239c66ac9dbSNicholas Bellinger 	 * Wait until all reference from any other I_T nexuses for this
1240c66ac9dbSNicholas Bellinger 	 * *pr_reg have been released.  Because list_del() is called above,
1241c66ac9dbSNicholas Bellinger 	 * the last core_scsi3_put_pr_reg(pr_reg) will release this reference
1242c66ac9dbSNicholas Bellinger 	 * count back to zero, and we release *pr_reg.
1243c66ac9dbSNicholas Bellinger 	 */
1244c66ac9dbSNicholas Bellinger 	while (atomic_read(&pr_reg->pr_res_holders) != 0) {
1245c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
12466708bb27SAndy Grover 		pr_debug("SPC-3 PR [%s] waiting for pr_res_holders\n",
1247c66ac9dbSNicholas Bellinger 				tfo->get_fabric_name());
1248c66ac9dbSNicholas Bellinger 		cpu_relax();
1249c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
1250c66ac9dbSNicholas Bellinger 	}
1251c66ac9dbSNicholas Bellinger 
12526708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: UNREGISTER Initiator"
1253c66ac9dbSNicholas Bellinger 		" Node: %s%s\n", tfo->get_fabric_name(),
1254c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_nacl->initiatorname,
1255d2843c17SAndy Grover 		i_buf);
12566708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
1257c66ac9dbSNicholas Bellinger 		" Port(s)\n", tfo->get_fabric_name(),
1258c66ac9dbSNicholas Bellinger 		(pr_reg->pr_reg_all_tg_pt) ? "ALL" : "SINGLE",
1259e3d6f909SAndy Grover 		dev->transport->name);
12606708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
1261c66ac9dbSNicholas Bellinger 		" 0x%08x\n", tfo->get_fabric_name(), pr_reg->pr_res_key,
1262c66ac9dbSNicholas Bellinger 		pr_reg->pr_res_generation);
1263c66ac9dbSNicholas Bellinger 
12646708bb27SAndy Grover 	if (!preempt_and_abort_list) {
1265c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_deve = NULL;
1266c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_nacl = NULL;
1267c66ac9dbSNicholas Bellinger 		kmem_cache_free(t10_pr_reg_cache, pr_reg);
1268c66ac9dbSNicholas Bellinger 		return;
1269c66ac9dbSNicholas Bellinger 	}
1270c66ac9dbSNicholas Bellinger 	/*
1271c66ac9dbSNicholas Bellinger 	 * For PREEMPT_AND_ABORT, the list of *pr_reg in preempt_and_abort_list
1272c66ac9dbSNicholas Bellinger 	 * are released once the ABORT_TASK_SET has completed..
1273c66ac9dbSNicholas Bellinger 	 */
1274c66ac9dbSNicholas Bellinger 	list_add_tail(&pr_reg->pr_reg_abort_list, preempt_and_abort_list);
1275c66ac9dbSNicholas Bellinger }
1276c66ac9dbSNicholas Bellinger 
1277c66ac9dbSNicholas Bellinger void core_scsi3_free_pr_reg_from_nacl(
1278c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1279c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl)
1280c66ac9dbSNicholas Bellinger {
12810fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
1282c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_res_holder;
1283c66ac9dbSNicholas Bellinger 	/*
1284c66ac9dbSNicholas Bellinger 	 * If the passed se_node_acl matches the reservation holder,
1285c66ac9dbSNicholas Bellinger 	 * release the reservation.
1286c66ac9dbSNicholas Bellinger 	 */
1287c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
1288c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
1289c66ac9dbSNicholas Bellinger 	if ((pr_res_holder != NULL) &&
1290c66ac9dbSNicholas Bellinger 	    (pr_res_holder->pr_reg_nacl == nacl))
1291c66ac9dbSNicholas Bellinger 		__core_scsi3_complete_pro_release(dev, nacl, pr_res_holder, 0);
1292c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
1293c66ac9dbSNicholas Bellinger 	/*
1294c66ac9dbSNicholas Bellinger 	 * Release any registration associated with the struct se_node_acl.
1295c66ac9dbSNicholas Bellinger 	 */
1296c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
1297c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1298c66ac9dbSNicholas Bellinger 			&pr_tmpl->registration_list, pr_reg_list) {
1299c66ac9dbSNicholas Bellinger 
1300c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_reg_nacl != nacl)
1301c66ac9dbSNicholas Bellinger 			continue;
1302c66ac9dbSNicholas Bellinger 
1303c66ac9dbSNicholas Bellinger 		__core_scsi3_free_registration(dev, pr_reg, NULL, 0);
1304c66ac9dbSNicholas Bellinger 	}
1305c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
1306c66ac9dbSNicholas Bellinger }
1307c66ac9dbSNicholas Bellinger 
1308c66ac9dbSNicholas Bellinger void core_scsi3_free_all_registrations(
1309c66ac9dbSNicholas Bellinger 	struct se_device *dev)
1310c66ac9dbSNicholas Bellinger {
13110fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
1312c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_res_holder;
1313c66ac9dbSNicholas Bellinger 
1314c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
1315c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
1316c66ac9dbSNicholas Bellinger 	if (pr_res_holder != NULL) {
1317c66ac9dbSNicholas Bellinger 		struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
1318c66ac9dbSNicholas Bellinger 		__core_scsi3_complete_pro_release(dev, pr_res_nacl,
1319c66ac9dbSNicholas Bellinger 				pr_res_holder, 0);
1320c66ac9dbSNicholas Bellinger 	}
1321c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
1322c66ac9dbSNicholas Bellinger 
1323c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
1324c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1325c66ac9dbSNicholas Bellinger 			&pr_tmpl->registration_list, pr_reg_list) {
1326c66ac9dbSNicholas Bellinger 
1327c66ac9dbSNicholas Bellinger 		__core_scsi3_free_registration(dev, pr_reg, NULL, 0);
1328c66ac9dbSNicholas Bellinger 	}
1329c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
1330c66ac9dbSNicholas Bellinger 
1331c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->aptpl_reg_lock);
1332c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp, &pr_tmpl->aptpl_reg_list,
1333c66ac9dbSNicholas Bellinger 				pr_reg_aptpl_list) {
1334c66ac9dbSNicholas Bellinger 		list_del(&pr_reg->pr_reg_aptpl_list);
1335c66ac9dbSNicholas Bellinger 		kmem_cache_free(t10_pr_reg_cache, pr_reg);
1336c66ac9dbSNicholas Bellinger 	}
1337c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->aptpl_reg_lock);
1338c66ac9dbSNicholas Bellinger }
1339c66ac9dbSNicholas Bellinger 
1340c66ac9dbSNicholas Bellinger static int core_scsi3_tpg_depend_item(struct se_portal_group *tpg)
1341c66ac9dbSNicholas Bellinger {
1342e3d6f909SAndy Grover 	return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
1343c66ac9dbSNicholas Bellinger 			&tpg->tpg_group.cg_item);
1344c66ac9dbSNicholas Bellinger }
1345c66ac9dbSNicholas Bellinger 
1346c66ac9dbSNicholas Bellinger static void core_scsi3_tpg_undepend_item(struct se_portal_group *tpg)
1347c66ac9dbSNicholas Bellinger {
1348e3d6f909SAndy Grover 	configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
1349c66ac9dbSNicholas Bellinger 			&tpg->tpg_group.cg_item);
1350c66ac9dbSNicholas Bellinger 
1351c66ac9dbSNicholas Bellinger 	atomic_dec(&tpg->tpg_pr_ref_count);
1352c66ac9dbSNicholas Bellinger 	smp_mb__after_atomic_dec();
1353c66ac9dbSNicholas Bellinger }
1354c66ac9dbSNicholas Bellinger 
1355c66ac9dbSNicholas Bellinger static int core_scsi3_nodeacl_depend_item(struct se_node_acl *nacl)
1356c66ac9dbSNicholas Bellinger {
1357c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg = nacl->se_tpg;
1358c66ac9dbSNicholas Bellinger 
1359c66ac9dbSNicholas Bellinger 	if (nacl->dynamic_node_acl)
1360c66ac9dbSNicholas Bellinger 		return 0;
1361c66ac9dbSNicholas Bellinger 
1362e3d6f909SAndy Grover 	return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
1363c66ac9dbSNicholas Bellinger 			&nacl->acl_group.cg_item);
1364c66ac9dbSNicholas Bellinger }
1365c66ac9dbSNicholas Bellinger 
1366c66ac9dbSNicholas Bellinger static void core_scsi3_nodeacl_undepend_item(struct se_node_acl *nacl)
1367c66ac9dbSNicholas Bellinger {
1368c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg = nacl->se_tpg;
1369c66ac9dbSNicholas Bellinger 
1370c66ac9dbSNicholas Bellinger 	if (nacl->dynamic_node_acl) {
1371c66ac9dbSNicholas Bellinger 		atomic_dec(&nacl->acl_pr_ref_count);
1372c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_dec();
1373c66ac9dbSNicholas Bellinger 		return;
1374c66ac9dbSNicholas Bellinger 	}
1375c66ac9dbSNicholas Bellinger 
1376e3d6f909SAndy Grover 	configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
1377c66ac9dbSNicholas Bellinger 			&nacl->acl_group.cg_item);
1378c66ac9dbSNicholas Bellinger 
1379c66ac9dbSNicholas Bellinger 	atomic_dec(&nacl->acl_pr_ref_count);
1380c66ac9dbSNicholas Bellinger 	smp_mb__after_atomic_dec();
1381c66ac9dbSNicholas Bellinger }
1382c66ac9dbSNicholas Bellinger 
1383c66ac9dbSNicholas Bellinger static int core_scsi3_lunacl_depend_item(struct se_dev_entry *se_deve)
1384c66ac9dbSNicholas Bellinger {
1385c66ac9dbSNicholas Bellinger 	struct se_lun_acl *lun_acl = se_deve->se_lun_acl;
1386c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl;
1387c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg;
1388c66ac9dbSNicholas Bellinger 	/*
1389c66ac9dbSNicholas Bellinger 	 * For nacl->dynamic_node_acl=1
1390c66ac9dbSNicholas Bellinger 	 */
13916708bb27SAndy Grover 	if (!lun_acl)
1392c66ac9dbSNicholas Bellinger 		return 0;
1393c66ac9dbSNicholas Bellinger 
1394c66ac9dbSNicholas Bellinger 	nacl = lun_acl->se_lun_nacl;
1395c66ac9dbSNicholas Bellinger 	tpg = nacl->se_tpg;
1396c66ac9dbSNicholas Bellinger 
1397e3d6f909SAndy Grover 	return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
1398c66ac9dbSNicholas Bellinger 			&lun_acl->se_lun_group.cg_item);
1399c66ac9dbSNicholas Bellinger }
1400c66ac9dbSNicholas Bellinger 
1401c66ac9dbSNicholas Bellinger static void core_scsi3_lunacl_undepend_item(struct se_dev_entry *se_deve)
1402c66ac9dbSNicholas Bellinger {
1403c66ac9dbSNicholas Bellinger 	struct se_lun_acl *lun_acl = se_deve->se_lun_acl;
1404c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl;
1405c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg;
1406c66ac9dbSNicholas Bellinger 	/*
1407c66ac9dbSNicholas Bellinger 	 * For nacl->dynamic_node_acl=1
1408c66ac9dbSNicholas Bellinger 	 */
14096708bb27SAndy Grover 	if (!lun_acl) {
1410c66ac9dbSNicholas Bellinger 		atomic_dec(&se_deve->pr_ref_count);
1411c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_dec();
1412c66ac9dbSNicholas Bellinger 		return;
1413c66ac9dbSNicholas Bellinger 	}
1414c66ac9dbSNicholas Bellinger 	nacl = lun_acl->se_lun_nacl;
1415c66ac9dbSNicholas Bellinger 	tpg = nacl->se_tpg;
1416c66ac9dbSNicholas Bellinger 
1417e3d6f909SAndy Grover 	configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
1418c66ac9dbSNicholas Bellinger 			&lun_acl->se_lun_group.cg_item);
1419c66ac9dbSNicholas Bellinger 
1420c66ac9dbSNicholas Bellinger 	atomic_dec(&se_deve->pr_ref_count);
1421c66ac9dbSNicholas Bellinger 	smp_mb__after_atomic_dec();
1422c66ac9dbSNicholas Bellinger }
1423c66ac9dbSNicholas Bellinger 
1424de103c93SChristoph Hellwig static sense_reason_t
1425de103c93SChristoph Hellwig core_scsi3_decode_spec_i_port(
1426c66ac9dbSNicholas Bellinger 	struct se_cmd *cmd,
1427c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg,
1428c66ac9dbSNicholas Bellinger 	unsigned char *l_isid,
1429c66ac9dbSNicholas Bellinger 	u64 sa_res_key,
1430c66ac9dbSNicholas Bellinger 	int all_tg_pt,
1431c66ac9dbSNicholas Bellinger 	int aptpl)
1432c66ac9dbSNicholas Bellinger {
14335951146dSAndy Grover 	struct se_device *dev = cmd->se_dev;
1434c66ac9dbSNicholas Bellinger 	struct se_port *tmp_port;
1435c66ac9dbSNicholas Bellinger 	struct se_portal_group *dest_tpg = NULL, *tmp_tpg;
1436e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
1437c66ac9dbSNicholas Bellinger 	struct se_node_acl *dest_node_acl = NULL;
1438c66ac9dbSNicholas Bellinger 	struct se_dev_entry *dest_se_deve = NULL, *local_se_deve;
1439c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *dest_pr_reg, *local_pr_reg, *pr_reg_e;
1440c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg_tmp, *pr_reg_tmp_safe;
1441d0f474e5SRoland Dreier 	LIST_HEAD(tid_dest_list);
1442c66ac9dbSNicholas Bellinger 	struct pr_transport_id_holder *tidh_new, *tidh, *tidh_tmp;
1443c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tmp_tf_ops;
144405d1c7c0SAndy Grover 	unsigned char *buf;
1445c66ac9dbSNicholas Bellinger 	unsigned char *ptr, *i_str = NULL, proto_ident, tmp_proto_ident;
1446c66ac9dbSNicholas Bellinger 	char *iport_ptr = NULL, dest_iport[64], i_buf[PR_REG_ISID_ID_LEN];
1447de103c93SChristoph Hellwig 	sense_reason_t ret;
1448c66ac9dbSNicholas Bellinger 	u32 tpdl, tid_len = 0;
1449d2843c17SAndy Grover 	int dest_local_nexus;
1450c66ac9dbSNicholas Bellinger 	u32 dest_rtpi = 0;
1451c66ac9dbSNicholas Bellinger 
1452c66ac9dbSNicholas Bellinger 	memset(dest_iport, 0, 64);
1453c66ac9dbSNicholas Bellinger 
1454f2083241SJörn Engel 	local_se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
1455c66ac9dbSNicholas Bellinger 	/*
1456c66ac9dbSNicholas Bellinger 	 * Allocate a struct pr_transport_id_holder and setup the
1457c66ac9dbSNicholas Bellinger 	 * local_node_acl and local_se_deve pointers and add to
1458c66ac9dbSNicholas Bellinger 	 * struct list_head tid_dest_list for add registration
1459c66ac9dbSNicholas Bellinger 	 * processing in the loop of tid_dest_list below.
1460c66ac9dbSNicholas Bellinger 	 */
1461c66ac9dbSNicholas Bellinger 	tidh_new = kzalloc(sizeof(struct pr_transport_id_holder), GFP_KERNEL);
14626708bb27SAndy Grover 	if (!tidh_new) {
14636708bb27SAndy Grover 		pr_err("Unable to allocate tidh_new\n");
1464de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1465c66ac9dbSNicholas Bellinger 	}
1466c66ac9dbSNicholas Bellinger 	INIT_LIST_HEAD(&tidh_new->dest_list);
1467c66ac9dbSNicholas Bellinger 	tidh_new->dest_tpg = tpg;
1468c66ac9dbSNicholas Bellinger 	tidh_new->dest_node_acl = se_sess->se_node_acl;
1469c66ac9dbSNicholas Bellinger 	tidh_new->dest_se_deve = local_se_deve;
1470c66ac9dbSNicholas Bellinger 
14715951146dSAndy Grover 	local_pr_reg = __core_scsi3_alloc_registration(cmd->se_dev,
1472c66ac9dbSNicholas Bellinger 				se_sess->se_node_acl, local_se_deve, l_isid,
1473c66ac9dbSNicholas Bellinger 				sa_res_key, all_tg_pt, aptpl);
14746708bb27SAndy Grover 	if (!local_pr_reg) {
1475c66ac9dbSNicholas Bellinger 		kfree(tidh_new);
1476de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1477c66ac9dbSNicholas Bellinger 	}
1478c66ac9dbSNicholas Bellinger 	tidh_new->dest_pr_reg = local_pr_reg;
1479c66ac9dbSNicholas Bellinger 	/*
1480c66ac9dbSNicholas Bellinger 	 * The local I_T nexus does not hold any configfs dependances,
1481c66ac9dbSNicholas Bellinger 	 * so we set tid_h->dest_local_nexus=1 to prevent the
1482c66ac9dbSNicholas Bellinger 	 * configfs_undepend_item() calls in the tid_dest_list loops below.
1483c66ac9dbSNicholas Bellinger 	 */
1484c66ac9dbSNicholas Bellinger 	tidh_new->dest_local_nexus = 1;
1485c66ac9dbSNicholas Bellinger 	list_add_tail(&tidh_new->dest_list, &tid_dest_list);
148605d1c7c0SAndy Grover 
14870d7f1299SPaolo Bonzini 	if (cmd->data_length < 28) {
14880d7f1299SPaolo Bonzini 		pr_warn("SPC-PR: Received PR OUT parameter list"
14890d7f1299SPaolo Bonzini 			" length too small: %u\n", cmd->data_length);
1490de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
14910d7f1299SPaolo Bonzini 		goto out;
14920d7f1299SPaolo Bonzini 	}
14930d7f1299SPaolo Bonzini 
14944949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
1495de103c93SChristoph Hellwig 	if (!buf) {
1496de103c93SChristoph Hellwig 		ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1497de103c93SChristoph Hellwig 		goto out;
1498de103c93SChristoph Hellwig 	}
1499de103c93SChristoph Hellwig 
1500c66ac9dbSNicholas Bellinger 	/*
1501c66ac9dbSNicholas Bellinger 	 * For a PERSISTENT RESERVE OUT specify initiator ports payload,
1502c66ac9dbSNicholas Bellinger 	 * first extract TransportID Parameter Data Length, and make sure
1503c66ac9dbSNicholas Bellinger 	 * the value matches up to the SCSI expected data transfer length.
1504c66ac9dbSNicholas Bellinger 	 */
1505c66ac9dbSNicholas Bellinger 	tpdl = (buf[24] & 0xff) << 24;
1506c66ac9dbSNicholas Bellinger 	tpdl |= (buf[25] & 0xff) << 16;
1507c66ac9dbSNicholas Bellinger 	tpdl |= (buf[26] & 0xff) << 8;
1508c66ac9dbSNicholas Bellinger 	tpdl |= buf[27] & 0xff;
1509c66ac9dbSNicholas Bellinger 
1510c66ac9dbSNicholas Bellinger 	if ((tpdl + 28) != cmd->data_length) {
15116708bb27SAndy Grover 		pr_err("SPC-3 PR: Illegal tpdl: %u + 28 byte header"
1512c66ac9dbSNicholas Bellinger 			" does not equal CDB data_length: %u\n", tpdl,
1513c66ac9dbSNicholas Bellinger 			cmd->data_length);
1514de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
1515de103c93SChristoph Hellwig 		goto out_unmap;
1516c66ac9dbSNicholas Bellinger 	}
1517c66ac9dbSNicholas Bellinger 	/*
1518c66ac9dbSNicholas Bellinger 	 * Start processing the received transport IDs using the
1519c66ac9dbSNicholas Bellinger 	 * receiving I_T Nexus portal's fabric dependent methods to
1520c66ac9dbSNicholas Bellinger 	 * obtain the SCSI Initiator Port/Device Identifiers.
1521c66ac9dbSNicholas Bellinger 	 */
1522c66ac9dbSNicholas Bellinger 	ptr = &buf[28];
1523c66ac9dbSNicholas Bellinger 
1524c66ac9dbSNicholas Bellinger 	while (tpdl > 0) {
1525c66ac9dbSNicholas Bellinger 		proto_ident = (ptr[0] & 0x0f);
1526c66ac9dbSNicholas Bellinger 		dest_tpg = NULL;
1527c66ac9dbSNicholas Bellinger 
1528c66ac9dbSNicholas Bellinger 		spin_lock(&dev->se_port_lock);
1529c66ac9dbSNicholas Bellinger 		list_for_each_entry(tmp_port, &dev->dev_sep_list, sep_list) {
1530c66ac9dbSNicholas Bellinger 			tmp_tpg = tmp_port->sep_tpg;
15316708bb27SAndy Grover 			if (!tmp_tpg)
1532c66ac9dbSNicholas Bellinger 				continue;
1533e3d6f909SAndy Grover 			tmp_tf_ops = tmp_tpg->se_tpg_tfo;
15346708bb27SAndy Grover 			if (!tmp_tf_ops)
1535c66ac9dbSNicholas Bellinger 				continue;
15366708bb27SAndy Grover 			if (!tmp_tf_ops->get_fabric_proto_ident ||
15376708bb27SAndy Grover 			    !tmp_tf_ops->tpg_parse_pr_out_transport_id)
1538c66ac9dbSNicholas Bellinger 				continue;
1539c66ac9dbSNicholas Bellinger 			/*
1540c66ac9dbSNicholas Bellinger 			 * Look for the matching proto_ident provided by
1541c66ac9dbSNicholas Bellinger 			 * the received TransportID
1542c66ac9dbSNicholas Bellinger 			 */
1543c66ac9dbSNicholas Bellinger 			tmp_proto_ident = tmp_tf_ops->get_fabric_proto_ident(tmp_tpg);
1544c66ac9dbSNicholas Bellinger 			if (tmp_proto_ident != proto_ident)
1545c66ac9dbSNicholas Bellinger 				continue;
1546c66ac9dbSNicholas Bellinger 			dest_rtpi = tmp_port->sep_rtpi;
1547c66ac9dbSNicholas Bellinger 
1548c66ac9dbSNicholas Bellinger 			i_str = tmp_tf_ops->tpg_parse_pr_out_transport_id(
1549c66ac9dbSNicholas Bellinger 					tmp_tpg, (const char *)ptr, &tid_len,
1550c66ac9dbSNicholas Bellinger 					&iport_ptr);
15516708bb27SAndy Grover 			if (!i_str)
1552c66ac9dbSNicholas Bellinger 				continue;
1553c66ac9dbSNicholas Bellinger 
1554c66ac9dbSNicholas Bellinger 			atomic_inc(&tmp_tpg->tpg_pr_ref_count);
1555c66ac9dbSNicholas Bellinger 			smp_mb__after_atomic_inc();
1556c66ac9dbSNicholas Bellinger 			spin_unlock(&dev->se_port_lock);
1557c66ac9dbSNicholas Bellinger 
1558de103c93SChristoph Hellwig 			if (core_scsi3_tpg_depend_item(tmp_tpg)) {
15596708bb27SAndy Grover 				pr_err(" core_scsi3_tpg_depend_item()"
1560c66ac9dbSNicholas Bellinger 					" for tmp_tpg\n");
1561c66ac9dbSNicholas Bellinger 				atomic_dec(&tmp_tpg->tpg_pr_ref_count);
1562c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_dec();
1563de103c93SChristoph Hellwig 				ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1564de103c93SChristoph Hellwig 				goto out_unmap;
1565c66ac9dbSNicholas Bellinger 			}
1566c66ac9dbSNicholas Bellinger 			/*
156735d1efe8SMasanari Iida 			 * Locate the destination initiator ACL to be registered
1568c66ac9dbSNicholas Bellinger 			 * from the decoded fabric module specific TransportID
1569c66ac9dbSNicholas Bellinger 			 * at *i_str.
1570c66ac9dbSNicholas Bellinger 			 */
157128638887SRoland Dreier 			spin_lock_irq(&tmp_tpg->acl_node_lock);
1572c66ac9dbSNicholas Bellinger 			dest_node_acl = __core_tpg_get_initiator_node_acl(
1573c66ac9dbSNicholas Bellinger 						tmp_tpg, i_str);
1574c66ac9dbSNicholas Bellinger 			if (dest_node_acl) {
1575c66ac9dbSNicholas Bellinger 				atomic_inc(&dest_node_acl->acl_pr_ref_count);
1576c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_inc();
1577c66ac9dbSNicholas Bellinger 			}
157828638887SRoland Dreier 			spin_unlock_irq(&tmp_tpg->acl_node_lock);
1579c66ac9dbSNicholas Bellinger 
15806708bb27SAndy Grover 			if (!dest_node_acl) {
1581c66ac9dbSNicholas Bellinger 				core_scsi3_tpg_undepend_item(tmp_tpg);
1582c66ac9dbSNicholas Bellinger 				spin_lock(&dev->se_port_lock);
1583c66ac9dbSNicholas Bellinger 				continue;
1584c66ac9dbSNicholas Bellinger 			}
1585c66ac9dbSNicholas Bellinger 
1586de103c93SChristoph Hellwig 			if (core_scsi3_nodeacl_depend_item(dest_node_acl)) {
15876708bb27SAndy Grover 				pr_err("configfs_depend_item() failed"
1588c66ac9dbSNicholas Bellinger 					" for dest_node_acl->acl_group\n");
1589c66ac9dbSNicholas Bellinger 				atomic_dec(&dest_node_acl->acl_pr_ref_count);
1590c66ac9dbSNicholas Bellinger 				smp_mb__after_atomic_dec();
1591c66ac9dbSNicholas Bellinger 				core_scsi3_tpg_undepend_item(tmp_tpg);
1592de103c93SChristoph Hellwig 				ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1593de103c93SChristoph Hellwig 				goto out_unmap;
1594c66ac9dbSNicholas Bellinger 			}
1595c66ac9dbSNicholas Bellinger 
1596c66ac9dbSNicholas Bellinger 			dest_tpg = tmp_tpg;
15976708bb27SAndy Grover 			pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node:"
1598c66ac9dbSNicholas Bellinger 				" %s Port RTPI: %hu\n",
1599e3d6f909SAndy Grover 				dest_tpg->se_tpg_tfo->get_fabric_name(),
1600c66ac9dbSNicholas Bellinger 				dest_node_acl->initiatorname, dest_rtpi);
1601c66ac9dbSNicholas Bellinger 
1602c66ac9dbSNicholas Bellinger 			spin_lock(&dev->se_port_lock);
1603c66ac9dbSNicholas Bellinger 			break;
1604c66ac9dbSNicholas Bellinger 		}
1605c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->se_port_lock);
1606c66ac9dbSNicholas Bellinger 
16076708bb27SAndy Grover 		if (!dest_tpg) {
16086708bb27SAndy Grover 			pr_err("SPC-3 PR SPEC_I_PT: Unable to locate"
1609c66ac9dbSNicholas Bellinger 					" dest_tpg\n");
1610de103c93SChristoph Hellwig 			ret = TCM_INVALID_PARAMETER_LIST;
1611de103c93SChristoph Hellwig 			goto out_unmap;
1612c66ac9dbSNicholas Bellinger 		}
16138b1e1244SAndy Grover 
16146708bb27SAndy Grover 		pr_debug("SPC-3 PR SPEC_I_PT: Got %s data_length: %u tpdl: %u"
1615c66ac9dbSNicholas Bellinger 			" tid_len: %d for %s + %s\n",
1616e3d6f909SAndy Grover 			dest_tpg->se_tpg_tfo->get_fabric_name(), cmd->data_length,
1617c66ac9dbSNicholas Bellinger 			tpdl, tid_len, i_str, iport_ptr);
16188b1e1244SAndy Grover 
1619c66ac9dbSNicholas Bellinger 		if (tid_len > tpdl) {
16206708bb27SAndy Grover 			pr_err("SPC-3 PR SPEC_I_PT: Illegal tid_len:"
1621c66ac9dbSNicholas Bellinger 				" %u for Transport ID: %s\n", tid_len, ptr);
1622c66ac9dbSNicholas Bellinger 			core_scsi3_nodeacl_undepend_item(dest_node_acl);
1623c66ac9dbSNicholas Bellinger 			core_scsi3_tpg_undepend_item(dest_tpg);
1624de103c93SChristoph Hellwig 			ret = TCM_INVALID_PARAMETER_LIST;
1625de103c93SChristoph Hellwig 			goto out_unmap;
1626c66ac9dbSNicholas Bellinger 		}
1627c66ac9dbSNicholas Bellinger 		/*
1628c66ac9dbSNicholas Bellinger 		 * Locate the desintation struct se_dev_entry pointer for matching
1629c66ac9dbSNicholas Bellinger 		 * RELATIVE TARGET PORT IDENTIFIER on the receiving I_T Nexus
1630c66ac9dbSNicholas Bellinger 		 * Target Port.
1631c66ac9dbSNicholas Bellinger 		 */
1632c66ac9dbSNicholas Bellinger 		dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl,
1633c66ac9dbSNicholas Bellinger 					dest_rtpi);
16346708bb27SAndy Grover 		if (!dest_se_deve) {
16356708bb27SAndy Grover 			pr_err("Unable to locate %s dest_se_deve"
1636c66ac9dbSNicholas Bellinger 				" from destination RTPI: %hu\n",
1637e3d6f909SAndy Grover 				dest_tpg->se_tpg_tfo->get_fabric_name(),
1638c66ac9dbSNicholas Bellinger 				dest_rtpi);
1639c66ac9dbSNicholas Bellinger 
1640c66ac9dbSNicholas Bellinger 			core_scsi3_nodeacl_undepend_item(dest_node_acl);
1641c66ac9dbSNicholas Bellinger 			core_scsi3_tpg_undepend_item(dest_tpg);
1642de103c93SChristoph Hellwig 			ret = TCM_INVALID_PARAMETER_LIST;
1643de103c93SChristoph Hellwig 			goto out_unmap;
1644c66ac9dbSNicholas Bellinger 		}
1645c66ac9dbSNicholas Bellinger 
1646de103c93SChristoph Hellwig 		if (core_scsi3_lunacl_depend_item(dest_se_deve)) {
16476708bb27SAndy Grover 			pr_err("core_scsi3_lunacl_depend_item()"
1648c66ac9dbSNicholas Bellinger 					" failed\n");
1649c66ac9dbSNicholas Bellinger 			atomic_dec(&dest_se_deve->pr_ref_count);
1650c66ac9dbSNicholas Bellinger 			smp_mb__after_atomic_dec();
1651c66ac9dbSNicholas Bellinger 			core_scsi3_nodeacl_undepend_item(dest_node_acl);
1652c66ac9dbSNicholas Bellinger 			core_scsi3_tpg_undepend_item(dest_tpg);
1653de103c93SChristoph Hellwig 			ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1654de103c93SChristoph Hellwig 			goto out_unmap;
1655c66ac9dbSNicholas Bellinger 		}
16568b1e1244SAndy Grover 
16576708bb27SAndy Grover 		pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node: %s"
1658c66ac9dbSNicholas Bellinger 			" dest_se_deve mapped_lun: %u\n",
1659e3d6f909SAndy Grover 			dest_tpg->se_tpg_tfo->get_fabric_name(),
1660c66ac9dbSNicholas Bellinger 			dest_node_acl->initiatorname, dest_se_deve->mapped_lun);
16618b1e1244SAndy Grover 
1662c66ac9dbSNicholas Bellinger 		/*
1663c66ac9dbSNicholas Bellinger 		 * Skip any TransportIDs that already have a registration for
1664c66ac9dbSNicholas Bellinger 		 * this target port.
1665c66ac9dbSNicholas Bellinger 		 */
1666c66ac9dbSNicholas Bellinger 		pr_reg_e = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
1667c66ac9dbSNicholas Bellinger 					iport_ptr);
1668c66ac9dbSNicholas Bellinger 		if (pr_reg_e) {
1669c66ac9dbSNicholas Bellinger 			core_scsi3_put_pr_reg(pr_reg_e);
1670c66ac9dbSNicholas Bellinger 			core_scsi3_lunacl_undepend_item(dest_se_deve);
1671c66ac9dbSNicholas Bellinger 			core_scsi3_nodeacl_undepend_item(dest_node_acl);
1672c66ac9dbSNicholas Bellinger 			core_scsi3_tpg_undepend_item(dest_tpg);
1673c66ac9dbSNicholas Bellinger 			ptr += tid_len;
1674c66ac9dbSNicholas Bellinger 			tpdl -= tid_len;
1675c66ac9dbSNicholas Bellinger 			tid_len = 0;
1676c66ac9dbSNicholas Bellinger 			continue;
1677c66ac9dbSNicholas Bellinger 		}
1678c66ac9dbSNicholas Bellinger 		/*
1679c66ac9dbSNicholas Bellinger 		 * Allocate a struct pr_transport_id_holder and setup
1680c66ac9dbSNicholas Bellinger 		 * the dest_node_acl and dest_se_deve pointers for the
1681c66ac9dbSNicholas Bellinger 		 * loop below.
1682c66ac9dbSNicholas Bellinger 		 */
1683c66ac9dbSNicholas Bellinger 		tidh_new = kzalloc(sizeof(struct pr_transport_id_holder),
1684c66ac9dbSNicholas Bellinger 				GFP_KERNEL);
16856708bb27SAndy Grover 		if (!tidh_new) {
16866708bb27SAndy Grover 			pr_err("Unable to allocate tidh_new\n");
1687c66ac9dbSNicholas Bellinger 			core_scsi3_lunacl_undepend_item(dest_se_deve);
1688c66ac9dbSNicholas Bellinger 			core_scsi3_nodeacl_undepend_item(dest_node_acl);
1689c66ac9dbSNicholas Bellinger 			core_scsi3_tpg_undepend_item(dest_tpg);
1690de103c93SChristoph Hellwig 			ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1691de103c93SChristoph Hellwig 			goto out_unmap;
1692c66ac9dbSNicholas Bellinger 		}
1693c66ac9dbSNicholas Bellinger 		INIT_LIST_HEAD(&tidh_new->dest_list);
1694c66ac9dbSNicholas Bellinger 		tidh_new->dest_tpg = dest_tpg;
1695c66ac9dbSNicholas Bellinger 		tidh_new->dest_node_acl = dest_node_acl;
1696c66ac9dbSNicholas Bellinger 		tidh_new->dest_se_deve = dest_se_deve;
1697c66ac9dbSNicholas Bellinger 
1698c66ac9dbSNicholas Bellinger 		/*
1699c66ac9dbSNicholas Bellinger 		 * Allocate, but do NOT add the registration for the
1700c66ac9dbSNicholas Bellinger 		 * TransportID referenced SCSI Initiator port.  This
1701c66ac9dbSNicholas Bellinger 		 * done because of the following from spc4r17 in section
1702c66ac9dbSNicholas Bellinger 		 * 6.14.3 wrt SPEC_I_PT:
1703c66ac9dbSNicholas Bellinger 		 *
1704c66ac9dbSNicholas Bellinger 		 * "If a registration fails for any initiator port (e.g., if th
1705c66ac9dbSNicholas Bellinger 		 * logical unit does not have enough resources available to
1706c66ac9dbSNicholas Bellinger 		 * hold the registration information), no registrations shall be
1707c66ac9dbSNicholas Bellinger 		 * made, and the command shall be terminated with
1708c66ac9dbSNicholas Bellinger 		 * CHECK CONDITION status."
1709c66ac9dbSNicholas Bellinger 		 *
1710c66ac9dbSNicholas Bellinger 		 * That means we call __core_scsi3_alloc_registration() here,
1711c66ac9dbSNicholas Bellinger 		 * and then call __core_scsi3_add_registration() in the
1712c66ac9dbSNicholas Bellinger 		 * 2nd loop which will never fail.
1713c66ac9dbSNicholas Bellinger 		 */
17145951146dSAndy Grover 		dest_pr_reg = __core_scsi3_alloc_registration(cmd->se_dev,
1715c66ac9dbSNicholas Bellinger 				dest_node_acl, dest_se_deve, iport_ptr,
1716c66ac9dbSNicholas Bellinger 				sa_res_key, all_tg_pt, aptpl);
17176708bb27SAndy Grover 		if (!dest_pr_reg) {
1718c66ac9dbSNicholas Bellinger 			core_scsi3_lunacl_undepend_item(dest_se_deve);
1719c66ac9dbSNicholas Bellinger 			core_scsi3_nodeacl_undepend_item(dest_node_acl);
1720c66ac9dbSNicholas Bellinger 			core_scsi3_tpg_undepend_item(dest_tpg);
1721c66ac9dbSNicholas Bellinger 			kfree(tidh_new);
1722de103c93SChristoph Hellwig 			ret = TCM_INVALID_PARAMETER_LIST;
1723de103c93SChristoph Hellwig 			goto out_unmap;
1724c66ac9dbSNicholas Bellinger 		}
1725c66ac9dbSNicholas Bellinger 		tidh_new->dest_pr_reg = dest_pr_reg;
1726c66ac9dbSNicholas Bellinger 		list_add_tail(&tidh_new->dest_list, &tid_dest_list);
1727c66ac9dbSNicholas Bellinger 
1728c66ac9dbSNicholas Bellinger 		ptr += tid_len;
1729c66ac9dbSNicholas Bellinger 		tpdl -= tid_len;
1730c66ac9dbSNicholas Bellinger 		tid_len = 0;
1731c66ac9dbSNicholas Bellinger 
1732c66ac9dbSNicholas Bellinger 	}
173305d1c7c0SAndy Grover 
17344949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
173505d1c7c0SAndy Grover 
1736c66ac9dbSNicholas Bellinger 	/*
1737c66ac9dbSNicholas Bellinger 	 * Go ahead and create a registrations from tid_dest_list for the
1738c66ac9dbSNicholas Bellinger 	 * SPEC_I_PT provided TransportID for the *tidh referenced dest_node_acl
1739c66ac9dbSNicholas Bellinger 	 * and dest_se_deve.
1740c66ac9dbSNicholas Bellinger 	 *
1741c66ac9dbSNicholas Bellinger 	 * The SA Reservation Key from the PROUT is set for the
1742c66ac9dbSNicholas Bellinger 	 * registration, and ALL_TG_PT is also passed.  ALL_TG_PT=1
1743c66ac9dbSNicholas Bellinger 	 * means that the TransportID Initiator port will be
1744c66ac9dbSNicholas Bellinger 	 * registered on all of the target ports in the SCSI target device
1745c66ac9dbSNicholas Bellinger 	 * ALL_TG_PT=0 means the registration will only be for the
1746c66ac9dbSNicholas Bellinger 	 * SCSI target port the PROUT REGISTER with SPEC_I_PT=1
1747c66ac9dbSNicholas Bellinger 	 * was received.
1748c66ac9dbSNicholas Bellinger 	 */
1749c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(tidh, tidh_tmp, &tid_dest_list, dest_list) {
1750c66ac9dbSNicholas Bellinger 		dest_tpg = tidh->dest_tpg;
1751c66ac9dbSNicholas Bellinger 		dest_node_acl = tidh->dest_node_acl;
1752c66ac9dbSNicholas Bellinger 		dest_se_deve = tidh->dest_se_deve;
1753c66ac9dbSNicholas Bellinger 		dest_pr_reg = tidh->dest_pr_reg;
1754c66ac9dbSNicholas Bellinger 		dest_local_nexus = tidh->dest_local_nexus;
1755c66ac9dbSNicholas Bellinger 
1756c66ac9dbSNicholas Bellinger 		list_del(&tidh->dest_list);
1757c66ac9dbSNicholas Bellinger 		kfree(tidh);
1758c66ac9dbSNicholas Bellinger 
1759c66ac9dbSNicholas Bellinger 		memset(i_buf, 0, PR_REG_ISID_ID_LEN);
1760d2843c17SAndy Grover 		core_pr_dump_initiator_port(dest_pr_reg, i_buf, PR_REG_ISID_ID_LEN);
1761c66ac9dbSNicholas Bellinger 
17625951146dSAndy Grover 		__core_scsi3_add_registration(cmd->se_dev, dest_node_acl,
1763c66ac9dbSNicholas Bellinger 					dest_pr_reg, 0, 0);
1764c66ac9dbSNicholas Bellinger 
17656708bb27SAndy Grover 		pr_debug("SPC-3 PR [%s] SPEC_I_PT: Successfully"
1766c66ac9dbSNicholas Bellinger 			" registered Transport ID for Node: %s%s Mapped LUN:"
1767e3d6f909SAndy Grover 			" %u\n", dest_tpg->se_tpg_tfo->get_fabric_name(),
1768d2843c17SAndy Grover 			dest_node_acl->initiatorname, i_buf, dest_se_deve->mapped_lun);
1769c66ac9dbSNicholas Bellinger 
1770c66ac9dbSNicholas Bellinger 		if (dest_local_nexus)
1771c66ac9dbSNicholas Bellinger 			continue;
1772c66ac9dbSNicholas Bellinger 
1773c66ac9dbSNicholas Bellinger 		core_scsi3_lunacl_undepend_item(dest_se_deve);
1774c66ac9dbSNicholas Bellinger 		core_scsi3_nodeacl_undepend_item(dest_node_acl);
1775c66ac9dbSNicholas Bellinger 		core_scsi3_tpg_undepend_item(dest_tpg);
1776c66ac9dbSNicholas Bellinger 	}
1777c66ac9dbSNicholas Bellinger 
1778c66ac9dbSNicholas Bellinger 	return 0;
1779de103c93SChristoph Hellwig out_unmap:
17804949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
1781de103c93SChristoph Hellwig out:
1782c66ac9dbSNicholas Bellinger 	/*
1783c66ac9dbSNicholas Bellinger 	 * For the failure case, release everything from tid_dest_list
1784c66ac9dbSNicholas Bellinger 	 * including *dest_pr_reg and the configfs dependances..
1785c66ac9dbSNicholas Bellinger 	 */
1786c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(tidh, tidh_tmp, &tid_dest_list, dest_list) {
1787c66ac9dbSNicholas Bellinger 		dest_tpg = tidh->dest_tpg;
1788c66ac9dbSNicholas Bellinger 		dest_node_acl = tidh->dest_node_acl;
1789c66ac9dbSNicholas Bellinger 		dest_se_deve = tidh->dest_se_deve;
1790c66ac9dbSNicholas Bellinger 		dest_pr_reg = tidh->dest_pr_reg;
1791c66ac9dbSNicholas Bellinger 		dest_local_nexus = tidh->dest_local_nexus;
1792c66ac9dbSNicholas Bellinger 
1793c66ac9dbSNicholas Bellinger 		list_del(&tidh->dest_list);
1794c66ac9dbSNicholas Bellinger 		kfree(tidh);
1795c66ac9dbSNicholas Bellinger 		/*
1796c66ac9dbSNicholas Bellinger 		 * Release any extra ALL_TG_PT=1 registrations for
1797c66ac9dbSNicholas Bellinger 		 * the SPEC_I_PT=1 case.
1798c66ac9dbSNicholas Bellinger 		 */
1799c66ac9dbSNicholas Bellinger 		list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
1800c66ac9dbSNicholas Bellinger 				&dest_pr_reg->pr_reg_atp_list,
1801c66ac9dbSNicholas Bellinger 				pr_reg_atp_mem_list) {
1802c66ac9dbSNicholas Bellinger 			list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
1803c66ac9dbSNicholas Bellinger 			core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
1804c66ac9dbSNicholas Bellinger 			kmem_cache_free(t10_pr_reg_cache, pr_reg_tmp);
1805c66ac9dbSNicholas Bellinger 		}
1806c66ac9dbSNicholas Bellinger 
1807c66ac9dbSNicholas Bellinger 		kmem_cache_free(t10_pr_reg_cache, dest_pr_reg);
1808c66ac9dbSNicholas Bellinger 
1809c66ac9dbSNicholas Bellinger 		if (dest_local_nexus)
1810c66ac9dbSNicholas Bellinger 			continue;
1811c66ac9dbSNicholas Bellinger 
1812c66ac9dbSNicholas Bellinger 		core_scsi3_lunacl_undepend_item(dest_se_deve);
1813c66ac9dbSNicholas Bellinger 		core_scsi3_nodeacl_undepend_item(dest_node_acl);
1814c66ac9dbSNicholas Bellinger 		core_scsi3_tpg_undepend_item(dest_tpg);
1815c66ac9dbSNicholas Bellinger 	}
1816c66ac9dbSNicholas Bellinger 	return ret;
1817c66ac9dbSNicholas Bellinger }
1818c66ac9dbSNicholas Bellinger 
18193c8a6228SAndy Grover static int core_scsi3_update_aptpl_buf(
1820c66ac9dbSNicholas Bellinger 	struct se_device *dev,
1821c66ac9dbSNicholas Bellinger 	unsigned char *buf,
18220607decdSAndy Grover 	u32 pr_aptpl_buf_len)
1823c66ac9dbSNicholas Bellinger {
1824c66ac9dbSNicholas Bellinger 	struct se_lun *lun;
1825c66ac9dbSNicholas Bellinger 	struct se_portal_group *tpg;
1826c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg;
1827c66ac9dbSNicholas Bellinger 	unsigned char tmp[512], isid_buf[32];
1828c66ac9dbSNicholas Bellinger 	ssize_t len = 0;
1829c66ac9dbSNicholas Bellinger 	int reg_count = 0;
18303c8a6228SAndy Grover 	int ret = 0;
1831c66ac9dbSNicholas Bellinger 
18323c8a6228SAndy Grover 	spin_lock(&dev->dev_reservation_lock);
18333c8a6228SAndy Grover 	spin_lock(&dev->t10_pr.registration_lock);
1834c66ac9dbSNicholas Bellinger 	/*
1835c66ac9dbSNicholas Bellinger 	 * Walk the registration list..
1836c66ac9dbSNicholas Bellinger 	 */
18370fd97ccfSChristoph Hellwig 	list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
1838c66ac9dbSNicholas Bellinger 			pr_reg_list) {
1839c66ac9dbSNicholas Bellinger 
1840c66ac9dbSNicholas Bellinger 		tmp[0] = '\0';
1841c66ac9dbSNicholas Bellinger 		isid_buf[0] = '\0';
1842c66ac9dbSNicholas Bellinger 		tpg = pr_reg->pr_reg_nacl->se_tpg;
1843c66ac9dbSNicholas Bellinger 		lun = pr_reg->pr_reg_tg_pt_lun;
1844c66ac9dbSNicholas Bellinger 		/*
1845c66ac9dbSNicholas Bellinger 		 * Write out any ISID value to APTPL metadata that was included
1846c66ac9dbSNicholas Bellinger 		 * in the original registration.
1847c66ac9dbSNicholas Bellinger 		 */
1848c66ac9dbSNicholas Bellinger 		if (pr_reg->isid_present_at_reg)
1849c66ac9dbSNicholas Bellinger 			snprintf(isid_buf, 32, "initiator_sid=%s\n",
1850c66ac9dbSNicholas Bellinger 					pr_reg->pr_reg_isid);
1851c66ac9dbSNicholas Bellinger 		/*
1852c66ac9dbSNicholas Bellinger 		 * Include special metadata if the pr_reg matches the
1853c66ac9dbSNicholas Bellinger 		 * reservation holder.
1854c66ac9dbSNicholas Bellinger 		 */
1855c66ac9dbSNicholas Bellinger 		if (dev->dev_pr_res_holder == pr_reg) {
1856c66ac9dbSNicholas Bellinger 			snprintf(tmp, 512, "PR_REG_START: %d"
1857c66ac9dbSNicholas Bellinger 				"\ninitiator_fabric=%s\n"
1858c66ac9dbSNicholas Bellinger 				"initiator_node=%s\n%s"
1859c66ac9dbSNicholas Bellinger 				"sa_res_key=%llu\n"
1860c66ac9dbSNicholas Bellinger 				"res_holder=1\nres_type=%02x\n"
1861c66ac9dbSNicholas Bellinger 				"res_scope=%02x\nres_all_tg_pt=%d\n"
1862c66ac9dbSNicholas Bellinger 				"mapped_lun=%u\n", reg_count,
1863e3d6f909SAndy Grover 				tpg->se_tpg_tfo->get_fabric_name(),
1864c66ac9dbSNicholas Bellinger 				pr_reg->pr_reg_nacl->initiatorname, isid_buf,
1865c66ac9dbSNicholas Bellinger 				pr_reg->pr_res_key, pr_reg->pr_res_type,
1866c66ac9dbSNicholas Bellinger 				pr_reg->pr_res_scope, pr_reg->pr_reg_all_tg_pt,
1867c66ac9dbSNicholas Bellinger 				pr_reg->pr_res_mapped_lun);
1868c66ac9dbSNicholas Bellinger 		} else {
1869c66ac9dbSNicholas Bellinger 			snprintf(tmp, 512, "PR_REG_START: %d\n"
1870c66ac9dbSNicholas Bellinger 				"initiator_fabric=%s\ninitiator_node=%s\n%s"
1871c66ac9dbSNicholas Bellinger 				"sa_res_key=%llu\nres_holder=0\n"
1872c66ac9dbSNicholas Bellinger 				"res_all_tg_pt=%d\nmapped_lun=%u\n",
1873e3d6f909SAndy Grover 				reg_count, tpg->se_tpg_tfo->get_fabric_name(),
1874c66ac9dbSNicholas Bellinger 				pr_reg->pr_reg_nacl->initiatorname, isid_buf,
1875c66ac9dbSNicholas Bellinger 				pr_reg->pr_res_key, pr_reg->pr_reg_all_tg_pt,
1876c66ac9dbSNicholas Bellinger 				pr_reg->pr_res_mapped_lun);
1877c66ac9dbSNicholas Bellinger 		}
1878c66ac9dbSNicholas Bellinger 
187960d645a4SDan Carpenter 		if ((len + strlen(tmp) >= pr_aptpl_buf_len)) {
18806708bb27SAndy Grover 			pr_err("Unable to update renaming"
1881c66ac9dbSNicholas Bellinger 				" APTPL metadata\n");
18823c8a6228SAndy Grover 			ret = -EMSGSIZE;
18833c8a6228SAndy Grover 			goto out;
1884c66ac9dbSNicholas Bellinger 		}
1885c66ac9dbSNicholas Bellinger 		len += sprintf(buf+len, "%s", tmp);
1886c66ac9dbSNicholas Bellinger 
1887c66ac9dbSNicholas Bellinger 		/*
1888c66ac9dbSNicholas Bellinger 		 * Include information about the associated SCSI target port.
1889c66ac9dbSNicholas Bellinger 		 */
1890c66ac9dbSNicholas Bellinger 		snprintf(tmp, 512, "target_fabric=%s\ntarget_node=%s\n"
1891c66ac9dbSNicholas Bellinger 			"tpgt=%hu\nport_rtpi=%hu\ntarget_lun=%u\nPR_REG_END:"
1892e3d6f909SAndy Grover 			" %d\n", tpg->se_tpg_tfo->get_fabric_name(),
1893e3d6f909SAndy Grover 			tpg->se_tpg_tfo->tpg_get_wwn(tpg),
1894e3d6f909SAndy Grover 			tpg->se_tpg_tfo->tpg_get_tag(tpg),
1895c66ac9dbSNicholas Bellinger 			lun->lun_sep->sep_rtpi, lun->unpacked_lun, reg_count);
1896c66ac9dbSNicholas Bellinger 
189760d645a4SDan Carpenter 		if ((len + strlen(tmp) >= pr_aptpl_buf_len)) {
18986708bb27SAndy Grover 			pr_err("Unable to update renaming"
1899c66ac9dbSNicholas Bellinger 				" APTPL metadata\n");
19003c8a6228SAndy Grover 			ret = -EMSGSIZE;
19013c8a6228SAndy Grover 			goto out;
1902c66ac9dbSNicholas Bellinger 		}
1903c66ac9dbSNicholas Bellinger 		len += sprintf(buf+len, "%s", tmp);
1904c66ac9dbSNicholas Bellinger 		reg_count++;
1905c66ac9dbSNicholas Bellinger 	}
1906c66ac9dbSNicholas Bellinger 
19076708bb27SAndy Grover 	if (!reg_count)
1908c66ac9dbSNicholas Bellinger 		len += sprintf(buf+len, "No Registrations or Reservations");
1909c66ac9dbSNicholas Bellinger 
19103c8a6228SAndy Grover out:
19113c8a6228SAndy Grover 	spin_unlock(&dev->t10_pr.registration_lock);
1912c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
1913c66ac9dbSNicholas Bellinger 
1914c66ac9dbSNicholas Bellinger 	return ret;
1915c66ac9dbSNicholas Bellinger }
1916c66ac9dbSNicholas Bellinger 
1917c66ac9dbSNicholas Bellinger static int __core_scsi3_write_aptpl_to_file(
1918c66ac9dbSNicholas Bellinger 	struct se_device *dev,
19194dee96fbSAndy Grover 	unsigned char *buf)
1920c66ac9dbSNicholas Bellinger {
19210fd97ccfSChristoph Hellwig 	struct t10_wwn *wwn = &dev->t10_wwn;
1922c66ac9dbSNicholas Bellinger 	struct file *file;
1923c66ac9dbSNicholas Bellinger 	int flags = O_RDWR | O_CREAT | O_TRUNC;
1924c66ac9dbSNicholas Bellinger 	char path[512];
19254dee96fbSAndy Grover 	u32 pr_aptpl_buf_len;
1926c66ac9dbSNicholas Bellinger 	int ret;
1927c66ac9dbSNicholas Bellinger 
1928c66ac9dbSNicholas Bellinger 	memset(path, 0, 512);
1929c66ac9dbSNicholas Bellinger 
193060d645a4SDan Carpenter 	if (strlen(&wwn->unit_serial[0]) >= 512) {
19316708bb27SAndy Grover 		pr_err("WWN value for struct se_device does not fit"
1932c66ac9dbSNicholas Bellinger 			" into path buffer\n");
1933e3d6f909SAndy Grover 		return -EMSGSIZE;
1934c66ac9dbSNicholas Bellinger 	}
1935c66ac9dbSNicholas Bellinger 
1936c66ac9dbSNicholas Bellinger 	snprintf(path, 512, "/var/target/pr/aptpl_%s", &wwn->unit_serial[0]);
1937c66ac9dbSNicholas Bellinger 	file = filp_open(path, flags, 0600);
19380e9b10a9SAl Viro 	if (IS_ERR(file)) {
19396708bb27SAndy Grover 		pr_err("filp_open(%s) for APTPL metadata"
1940c66ac9dbSNicholas Bellinger 			" failed\n", path);
19410e9b10a9SAl Viro 		return PTR_ERR(file);
1942c66ac9dbSNicholas Bellinger 	}
1943c66ac9dbSNicholas Bellinger 
19444dee96fbSAndy Grover 	pr_aptpl_buf_len = (strlen(buf) + 1); /* Add extra for NULL */
1945c66ac9dbSNicholas Bellinger 
19460e9b10a9SAl Viro 	ret = kernel_write(file, buf, pr_aptpl_buf_len, 0);
1947c66ac9dbSNicholas Bellinger 
19480e9b10a9SAl Viro 	if (ret < 0)
19496708bb27SAndy Grover 		pr_debug("Error writing APTPL metadata file: %s\n", path);
19500e9b10a9SAl Viro 	fput(file);
1951c66ac9dbSNicholas Bellinger 
19520e9b10a9SAl Viro 	return ret ? -EIO : 0;
1953c66ac9dbSNicholas Bellinger }
1954c66ac9dbSNicholas Bellinger 
1955c66ac9dbSNicholas Bellinger /*
1956459f213bSAndy Grover  * Clear the APTPL metadata if APTPL has been disabled, otherwise
1957459f213bSAndy Grover  * write out the updated metadata to struct file for this SCSI device.
1958c66ac9dbSNicholas Bellinger  */
19598a391857SNicholas Bellinger static sense_reason_t core_scsi3_update_and_write_aptpl(struct se_device *dev, bool aptpl)
1960459f213bSAndy Grover {
19618a391857SNicholas Bellinger 	unsigned char *buf;
19628a391857SNicholas Bellinger 	int rc;
1963459f213bSAndy Grover 
1964459f213bSAndy Grover 	if (!aptpl) {
1965459f213bSAndy Grover 		char *null_buf = "No Registrations or Reservations\n";
1966459f213bSAndy Grover 
19678a391857SNicholas Bellinger 		rc = __core_scsi3_write_aptpl_to_file(dev, null_buf);
1968459f213bSAndy Grover 		dev->t10_pr.pr_aptpl_active = 0;
1969459f213bSAndy Grover 		pr_debug("SPC-3 PR: Set APTPL Bit Deactivated\n");
19708a391857SNicholas Bellinger 
19718a391857SNicholas Bellinger 		if (rc)
19728a391857SNicholas Bellinger 			return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
19738a391857SNicholas Bellinger 
19748a391857SNicholas Bellinger 		return 0;
19758a391857SNicholas Bellinger 	}
1976459f213bSAndy Grover 
1977459f213bSAndy Grover 	buf = kzalloc(PR_APTPL_BUF_LEN, GFP_KERNEL);
1978459f213bSAndy Grover 	if (!buf)
19798a391857SNicholas Bellinger 		return TCM_OUT_OF_RESOURCES;
1980459f213bSAndy Grover 
19818a391857SNicholas Bellinger 	rc = core_scsi3_update_aptpl_buf(dev, buf, PR_APTPL_BUF_LEN);
19828a391857SNicholas Bellinger 	if (rc < 0) {
1983459f213bSAndy Grover 		kfree(buf);
19848a391857SNicholas Bellinger 		return TCM_OUT_OF_RESOURCES;
19850607decdSAndy Grover 	}
1986de103c93SChristoph Hellwig 
19878a391857SNicholas Bellinger 	rc = __core_scsi3_write_aptpl_to_file(dev, buf);
19888a391857SNicholas Bellinger 	if (rc != 0) {
1989459f213bSAndy Grover 		pr_err("SPC-3 PR: Could not update APTPL\n");
1990459f213bSAndy Grover 		kfree(buf);
19918a391857SNicholas Bellinger 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1992459f213bSAndy Grover 	}
19938a391857SNicholas Bellinger 	dev->t10_pr.pr_aptpl_active = 1;
19948a391857SNicholas Bellinger 	kfree(buf);
19958a391857SNicholas Bellinger 	pr_debug("SPC-3 PR: Set APTPL Bit Activated\n");
19968a391857SNicholas Bellinger 	return 0;
1997c66ac9dbSNicholas Bellinger }
1998c66ac9dbSNicholas Bellinger 
1999de103c93SChristoph Hellwig static sense_reason_t
2000de103c93SChristoph Hellwig core_scsi3_emulate_pro_register(struct se_cmd *cmd, u64 res_key, u64 sa_res_key,
2001bc118fe4SAndy Grover 		bool aptpl, bool all_tg_pt, bool spec_i_pt, enum register_type register_type)
2002c66ac9dbSNicholas Bellinger {
2003e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
20045951146dSAndy Grover 	struct se_device *dev = cmd->se_dev;
2005c66ac9dbSNicholas Bellinger 	struct se_dev_entry *se_deve;
2006e3d6f909SAndy Grover 	struct se_lun *se_lun = cmd->se_lun;
2007c66ac9dbSNicholas Bellinger 	struct se_portal_group *se_tpg;
2008bc118fe4SAndy Grover 	struct t10_pr_registration *pr_reg, *pr_reg_p, *pr_reg_tmp;
20090fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
2010c66ac9dbSNicholas Bellinger 	unsigned char isid_buf[PR_REG_ISID_LEN], *isid_ptr = NULL;
2011a0d50f62SHannes Reinecke 	sense_reason_t ret = TCM_NO_SENSE;
2012bc118fe4SAndy Grover 	int pr_holder = 0;
2013c66ac9dbSNicholas Bellinger 
20146708bb27SAndy Grover 	if (!se_sess || !se_lun) {
20156708bb27SAndy Grover 		pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2016de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2017c66ac9dbSNicholas Bellinger 	}
2018c66ac9dbSNicholas Bellinger 	se_tpg = se_sess->se_tpg;
2019f2083241SJörn Engel 	se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
2020c66ac9dbSNicholas Bellinger 
2021e3d6f909SAndy Grover 	if (se_tpg->se_tpg_tfo->sess_get_initiator_sid) {
2022c66ac9dbSNicholas Bellinger 		memset(&isid_buf[0], 0, PR_REG_ISID_LEN);
2023e3d6f909SAndy Grover 		se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess, &isid_buf[0],
2024c66ac9dbSNicholas Bellinger 				PR_REG_ISID_LEN);
2025c66ac9dbSNicholas Bellinger 		isid_ptr = &isid_buf[0];
2026c66ac9dbSNicholas Bellinger 	}
2027c66ac9dbSNicholas Bellinger 	/*
2028c66ac9dbSNicholas Bellinger 	 * Follow logic from spc4r17 Section 5.7.7, Register Behaviors Table 47
2029c66ac9dbSNicholas Bellinger 	 */
2030bc118fe4SAndy Grover 	pr_reg = core_scsi3_locate_pr_reg(dev, se_sess->se_node_acl, se_sess);
2031bc118fe4SAndy Grover 	if (!pr_reg) {
2032c66ac9dbSNicholas Bellinger 		if (res_key) {
20336708bb27SAndy Grover 			pr_warn("SPC-3 PR: Reservation Key non-zero"
2034c66ac9dbSNicholas Bellinger 				" for SA REGISTER, returning CONFLICT\n");
2035de103c93SChristoph Hellwig 			return TCM_RESERVATION_CONFLICT;
2036c66ac9dbSNicholas Bellinger 		}
2037c66ac9dbSNicholas Bellinger 		/*
2038c66ac9dbSNicholas Bellinger 		 * Do nothing but return GOOD status.
2039c66ac9dbSNicholas Bellinger 		 */
20406708bb27SAndy Grover 		if (!sa_res_key)
204103e98c9eSNicholas Bellinger 			return 0;
2042c66ac9dbSNicholas Bellinger 
20436708bb27SAndy Grover 		if (!spec_i_pt) {
2044c66ac9dbSNicholas Bellinger 			/*
2045c66ac9dbSNicholas Bellinger 			 * Perform the Service Action REGISTER on the Initiator
2046c66ac9dbSNicholas Bellinger 			 * Port Endpoint that the PRO was received from on the
2047c66ac9dbSNicholas Bellinger 			 * Logical Unit of the SCSI device server.
2048c66ac9dbSNicholas Bellinger 			 */
2049de103c93SChristoph Hellwig 			if (core_scsi3_alloc_registration(cmd->se_dev,
2050c66ac9dbSNicholas Bellinger 					se_sess->se_node_acl, se_deve, isid_ptr,
2051c66ac9dbSNicholas Bellinger 					sa_res_key, all_tg_pt, aptpl,
205233ce6a87SAndy Grover 					register_type, 0)) {
20536708bb27SAndy Grover 				pr_err("Unable to allocate"
2054c66ac9dbSNicholas Bellinger 					" struct t10_pr_registration\n");
2055de103c93SChristoph Hellwig 				return TCM_INVALID_PARAMETER_LIST;
2056c66ac9dbSNicholas Bellinger 			}
2057c66ac9dbSNicholas Bellinger 		} else {
2058c66ac9dbSNicholas Bellinger 			/*
2059c66ac9dbSNicholas Bellinger 			 * Register both the Initiator port that received
2060c66ac9dbSNicholas Bellinger 			 * PROUT SA REGISTER + SPEC_I_PT=1 and extract SCSI
2061c66ac9dbSNicholas Bellinger 			 * TransportID from Parameter list and loop through
2062c66ac9dbSNicholas Bellinger 			 * fabric dependent parameter list while calling
2063c66ac9dbSNicholas Bellinger 			 * logic from of core_scsi3_alloc_registration() for
2064c66ac9dbSNicholas Bellinger 			 * each TransportID provided SCSI Initiator Port/Device
2065c66ac9dbSNicholas Bellinger 			 */
2066c66ac9dbSNicholas Bellinger 			ret = core_scsi3_decode_spec_i_port(cmd, se_tpg,
2067c66ac9dbSNicholas Bellinger 					isid_ptr, sa_res_key, all_tg_pt, aptpl);
2068c66ac9dbSNicholas Bellinger 			if (ret != 0)
2069c66ac9dbSNicholas Bellinger 				return ret;
2070c66ac9dbSNicholas Bellinger 		}
2071c66ac9dbSNicholas Bellinger 
2072459f213bSAndy Grover 		return core_scsi3_update_and_write_aptpl(dev, aptpl);
2073de103c93SChristoph Hellwig 	}
2074de103c93SChristoph Hellwig 
2075bc118fe4SAndy Grover 	/* ok, existing registration */
2076c66ac9dbSNicholas Bellinger 
2077bc118fe4SAndy Grover 	if ((register_type == REGISTER) && (res_key != pr_reg->pr_res_key)) {
20786708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER: Received"
2079c66ac9dbSNicholas Bellinger 		       " res_key: 0x%016Lx does not match"
2080c66ac9dbSNicholas Bellinger 		       " existing SA REGISTER res_key:"
2081c66ac9dbSNicholas Bellinger 		       " 0x%016Lx\n", res_key,
2082c66ac9dbSNicholas Bellinger 		       pr_reg->pr_res_key);
2083de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
2084bc118fe4SAndy Grover 		goto out;
2085c66ac9dbSNicholas Bellinger 	}
2086de103c93SChristoph Hellwig 
2087c66ac9dbSNicholas Bellinger 	if (spec_i_pt) {
20881f070cc2SAndy Grover 		pr_err("SPC-3 PR REGISTER: SPEC_I_PT"
20891f070cc2SAndy Grover 			" set on a registered nexus\n");
2090de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
2091bc118fe4SAndy Grover 		goto out;
2092c66ac9dbSNicholas Bellinger 	}
2093de103c93SChristoph Hellwig 
2094c66ac9dbSNicholas Bellinger 	/*
2095c66ac9dbSNicholas Bellinger 	 * An existing ALL_TG_PT=1 registration being released
2096c66ac9dbSNicholas Bellinger 	 * must also set ALL_TG_PT=1 in the incoming PROUT.
2097c66ac9dbSNicholas Bellinger 	 */
20981f070cc2SAndy Grover 	if (pr_reg->pr_reg_all_tg_pt && !all_tg_pt) {
20991f070cc2SAndy Grover 		pr_err("SPC-3 PR REGISTER: ALL_TG_PT=1"
2100c66ac9dbSNicholas Bellinger 			" registration exists, but ALL_TG_PT=1 bit not"
2101c66ac9dbSNicholas Bellinger 			" present in received PROUT\n");
2102de103c93SChristoph Hellwig 		ret = TCM_INVALID_CDB_FIELD;
2103bc118fe4SAndy Grover 		goto out;
2104c66ac9dbSNicholas Bellinger 	}
2105de103c93SChristoph Hellwig 
2106c66ac9dbSNicholas Bellinger 	/*
210751d9c41dSAndy Grover 	 * sa_res_key=1 Change Reservation Key for registered I_T Nexus.
2108c66ac9dbSNicholas Bellinger 	 */
210951d9c41dSAndy Grover 	if (sa_res_key) {
211051d9c41dSAndy Grover 		/*
211151d9c41dSAndy Grover 		 * Increment PRgeneration counter for struct se_device"
211251d9c41dSAndy Grover 		 * upon a successful REGISTER, see spc4r17 section 6.3.2
211351d9c41dSAndy Grover 		 * READ_KEYS service action.
211451d9c41dSAndy Grover 		 */
211551d9c41dSAndy Grover 		pr_reg->pr_res_generation = core_scsi3_pr_generation(cmd->se_dev);
211651d9c41dSAndy Grover 		pr_reg->pr_res_key = sa_res_key;
211751d9c41dSAndy Grover 		pr_debug("SPC-3 PR [%s] REGISTER%s: Changed Reservation"
211851d9c41dSAndy Grover 			 " Key for %s to: 0x%016Lx PRgeneration:"
211951d9c41dSAndy Grover 			 " 0x%08x\n", cmd->se_tfo->get_fabric_name(),
212051d9c41dSAndy Grover 			 (register_type == REGISTER_AND_IGNORE_EXISTING_KEY) ? "_AND_IGNORE_EXISTING_KEY" : "",
212151d9c41dSAndy Grover 			 pr_reg->pr_reg_nacl->initiatorname,
212251d9c41dSAndy Grover 			 pr_reg->pr_res_key, pr_reg->pr_res_generation);
212351d9c41dSAndy Grover 
212451d9c41dSAndy Grover 	} else {
212551d9c41dSAndy Grover 		/*
212651d9c41dSAndy Grover 		 * sa_res_key=0 Unregister Reservation Key for registered I_T Nexus.
212751d9c41dSAndy Grover 		 */
2128c66ac9dbSNicholas Bellinger 		pr_holder = core_scsi3_check_implict_release(
21295951146dSAndy Grover 				cmd->se_dev, pr_reg);
2130c66ac9dbSNicholas Bellinger 		if (pr_holder < 0) {
2131de103c93SChristoph Hellwig 			ret = TCM_RESERVATION_CONFLICT;
2132bc118fe4SAndy Grover 			goto out;
2133c66ac9dbSNicholas Bellinger 		}
2134c66ac9dbSNicholas Bellinger 
2135c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
2136c66ac9dbSNicholas Bellinger 		/*
2137c66ac9dbSNicholas Bellinger 		 * Release all ALL_TG_PT=1 for the matching SCSI Initiator Port
2138c66ac9dbSNicholas Bellinger 		 * and matching pr_res_key.
2139c66ac9dbSNicholas Bellinger 		 */
2140c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_reg_all_tg_pt) {
2141c66ac9dbSNicholas Bellinger 			list_for_each_entry_safe(pr_reg_p, pr_reg_tmp,
2142c66ac9dbSNicholas Bellinger 					&pr_tmpl->registration_list,
2143c66ac9dbSNicholas Bellinger 					pr_reg_list) {
2144c66ac9dbSNicholas Bellinger 
21456708bb27SAndy Grover 				if (!pr_reg_p->pr_reg_all_tg_pt)
2146c66ac9dbSNicholas Bellinger 					continue;
2147c66ac9dbSNicholas Bellinger 				if (pr_reg_p->pr_res_key != res_key)
2148c66ac9dbSNicholas Bellinger 					continue;
2149c66ac9dbSNicholas Bellinger 				if (pr_reg == pr_reg_p)
2150c66ac9dbSNicholas Bellinger 					continue;
2151c66ac9dbSNicholas Bellinger 				if (strcmp(pr_reg->pr_reg_nacl->initiatorname,
2152c66ac9dbSNicholas Bellinger 					   pr_reg_p->pr_reg_nacl->initiatorname))
2153c66ac9dbSNicholas Bellinger 					continue;
2154c66ac9dbSNicholas Bellinger 
2155c66ac9dbSNicholas Bellinger 				__core_scsi3_free_registration(dev,
2156c66ac9dbSNicholas Bellinger 						pr_reg_p, NULL, 0);
2157c66ac9dbSNicholas Bellinger 			}
2158c66ac9dbSNicholas Bellinger 		}
2159de103c93SChristoph Hellwig 
2160c66ac9dbSNicholas Bellinger 		/*
2161c66ac9dbSNicholas Bellinger 		 * Release the calling I_T Nexus registration now..
2162c66ac9dbSNicholas Bellinger 		 */
2163de103c93SChristoph Hellwig 		__core_scsi3_free_registration(cmd->se_dev, pr_reg, NULL, 1);
2164de103c93SChristoph Hellwig 
2165c66ac9dbSNicholas Bellinger 		/*
2166c66ac9dbSNicholas Bellinger 		 * From spc4r17, section 5.7.11.3 Unregistering
2167c66ac9dbSNicholas Bellinger 		 *
2168c66ac9dbSNicholas Bellinger 		 * If the persistent reservation is a registrants only
2169c66ac9dbSNicholas Bellinger 		 * type, the device server shall establish a unit
2170c66ac9dbSNicholas Bellinger 		 * attention condition for the initiator port associated
2171c66ac9dbSNicholas Bellinger 		 * with every registered I_T nexus except for the I_T
2172c66ac9dbSNicholas Bellinger 		 * nexus on which the PERSISTENT RESERVE OUT command was
2173c66ac9dbSNicholas Bellinger 		 * received, with the additional sense code set to
2174c66ac9dbSNicholas Bellinger 		 * RESERVATIONS RELEASED.
2175c66ac9dbSNicholas Bellinger 		 */
2176c66ac9dbSNicholas Bellinger 		if (pr_holder &&
2177bc118fe4SAndy Grover 		    (pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_REGONLY ||
2178bc118fe4SAndy Grover 		     pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_REGONLY)) {
2179c66ac9dbSNicholas Bellinger 			list_for_each_entry(pr_reg_p,
2180c66ac9dbSNicholas Bellinger 					&pr_tmpl->registration_list,
2181c66ac9dbSNicholas Bellinger 					pr_reg_list) {
2182c66ac9dbSNicholas Bellinger 
2183c66ac9dbSNicholas Bellinger 				core_scsi3_ua_allocate(
2184c66ac9dbSNicholas Bellinger 					pr_reg_p->pr_reg_nacl,
2185c66ac9dbSNicholas Bellinger 					pr_reg_p->pr_res_mapped_lun,
2186c66ac9dbSNicholas Bellinger 					0x2A,
2187c66ac9dbSNicholas Bellinger 					ASCQ_2AH_RESERVATIONS_RELEASED);
2188c66ac9dbSNicholas Bellinger 			}
2189c66ac9dbSNicholas Bellinger 		}
219051d9c41dSAndy Grover 
2191c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
2192de103c93SChristoph Hellwig 	}
2193de103c93SChristoph Hellwig 
2194459f213bSAndy Grover 	ret = core_scsi3_update_and_write_aptpl(dev, aptpl);
2195c66ac9dbSNicholas Bellinger 
2196bc118fe4SAndy Grover out:
2197c66ac9dbSNicholas Bellinger 	core_scsi3_put_pr_reg(pr_reg);
2198de103c93SChristoph Hellwig 	return ret;
2199c66ac9dbSNicholas Bellinger }
2200c66ac9dbSNicholas Bellinger 
2201c66ac9dbSNicholas Bellinger unsigned char *core_scsi3_pr_dump_type(int type)
2202c66ac9dbSNicholas Bellinger {
2203c66ac9dbSNicholas Bellinger 	switch (type) {
2204c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE:
2205c66ac9dbSNicholas Bellinger 		return "Write Exclusive Access";
2206c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS:
2207c66ac9dbSNicholas Bellinger 		return "Exclusive Access";
2208c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
2209c66ac9dbSNicholas Bellinger 		return "Write Exclusive Access, Registrants Only";
2210c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
2211c66ac9dbSNicholas Bellinger 		return "Exclusive Access, Registrants Only";
2212c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
2213c66ac9dbSNicholas Bellinger 		return "Write Exclusive Access, All Registrants";
2214c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
2215c66ac9dbSNicholas Bellinger 		return "Exclusive Access, All Registrants";
2216c66ac9dbSNicholas Bellinger 	default:
2217c66ac9dbSNicholas Bellinger 		break;
2218c66ac9dbSNicholas Bellinger 	}
2219c66ac9dbSNicholas Bellinger 
2220c66ac9dbSNicholas Bellinger 	return "Unknown SPC-3 PR Type";
2221c66ac9dbSNicholas Bellinger }
2222c66ac9dbSNicholas Bellinger 
2223de103c93SChristoph Hellwig static sense_reason_t
2224de103c93SChristoph Hellwig core_scsi3_pro_reserve(struct se_cmd *cmd, int type, int scope, u64 res_key)
2225c66ac9dbSNicholas Bellinger {
2226de103c93SChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
2227e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
2228e3d6f909SAndy Grover 	struct se_lun *se_lun = cmd->se_lun;
2229c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_res_holder;
22300fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
2231c66ac9dbSNicholas Bellinger 	char i_buf[PR_REG_ISID_ID_LEN];
2232de103c93SChristoph Hellwig 	sense_reason_t ret;
2233c66ac9dbSNicholas Bellinger 
2234c66ac9dbSNicholas Bellinger 	memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2235c66ac9dbSNicholas Bellinger 
22366708bb27SAndy Grover 	if (!se_sess || !se_lun) {
22376708bb27SAndy Grover 		pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2238de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2239c66ac9dbSNicholas Bellinger 	}
2240c66ac9dbSNicholas Bellinger 	/*
2241c66ac9dbSNicholas Bellinger 	 * Locate the existing *pr_reg via struct se_node_acl pointers
2242c66ac9dbSNicholas Bellinger 	 */
22435951146dSAndy Grover 	pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
2244c66ac9dbSNicholas Bellinger 				se_sess);
22456708bb27SAndy Grover 	if (!pr_reg) {
22466708bb27SAndy Grover 		pr_err("SPC-3 PR: Unable to locate"
2247c66ac9dbSNicholas Bellinger 			" PR_REGISTERED *pr_reg for RESERVE\n");
2248de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2249c66ac9dbSNicholas Bellinger 	}
2250c66ac9dbSNicholas Bellinger 	/*
2251c66ac9dbSNicholas Bellinger 	 * From spc4r17 Section 5.7.9: Reserving:
2252c66ac9dbSNicholas Bellinger 	 *
2253c66ac9dbSNicholas Bellinger 	 * An application client creates a persistent reservation by issuing
2254c66ac9dbSNicholas Bellinger 	 * a PERSISTENT RESERVE OUT command with RESERVE service action through
2255c66ac9dbSNicholas Bellinger 	 * a registered I_T nexus with the following parameters:
2256c66ac9dbSNicholas Bellinger 	 *    a) RESERVATION KEY set to the value of the reservation key that is
2257c66ac9dbSNicholas Bellinger 	 * 	 registered with the logical unit for the I_T nexus; and
2258c66ac9dbSNicholas Bellinger 	 */
2259c66ac9dbSNicholas Bellinger 	if (res_key != pr_reg->pr_res_key) {
22606708bb27SAndy Grover 		pr_err("SPC-3 PR RESERVE: Received res_key: 0x%016Lx"
2261c66ac9dbSNicholas Bellinger 			" does not match existing SA REGISTER res_key:"
2262c66ac9dbSNicholas Bellinger 			" 0x%016Lx\n", res_key, pr_reg->pr_res_key);
2263de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
2264de103c93SChristoph Hellwig 		goto out_put_pr_reg;
2265c66ac9dbSNicholas Bellinger 	}
2266c66ac9dbSNicholas Bellinger 	/*
2267c66ac9dbSNicholas Bellinger 	 * From spc4r17 Section 5.7.9: Reserving:
2268c66ac9dbSNicholas Bellinger 	 *
2269c66ac9dbSNicholas Bellinger 	 * From above:
2270c66ac9dbSNicholas Bellinger 	 *  b) TYPE field and SCOPE field set to the persistent reservation
2271c66ac9dbSNicholas Bellinger 	 *     being created.
2272c66ac9dbSNicholas Bellinger 	 *
2273c66ac9dbSNicholas Bellinger 	 * Only one persistent reservation is allowed at a time per logical unit
2274c66ac9dbSNicholas Bellinger 	 * and that persistent reservation has a scope of LU_SCOPE.
2275c66ac9dbSNicholas Bellinger 	 */
2276c66ac9dbSNicholas Bellinger 	if (scope != PR_SCOPE_LU_SCOPE) {
22776708bb27SAndy Grover 		pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope);
2278de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
2279de103c93SChristoph Hellwig 		goto out_put_pr_reg;
2280c66ac9dbSNicholas Bellinger 	}
2281c66ac9dbSNicholas Bellinger 	/*
2282c66ac9dbSNicholas Bellinger 	 * See if we have an existing PR reservation holder pointer at
2283c66ac9dbSNicholas Bellinger 	 * struct se_device->dev_pr_res_holder in the form struct t10_pr_registration
2284c66ac9dbSNicholas Bellinger 	 * *pr_res_holder.
2285c66ac9dbSNicholas Bellinger 	 */
2286c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
2287c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
2288ee1b1b9cSAndy Grover 	if (pr_res_holder) {
2289c66ac9dbSNicholas Bellinger 		/*
2290c66ac9dbSNicholas Bellinger 		 * From spc4r17 Section 5.7.9: Reserving:
2291c66ac9dbSNicholas Bellinger 		 *
2292c66ac9dbSNicholas Bellinger 		 * If the device server receives a PERSISTENT RESERVE OUT
2293c66ac9dbSNicholas Bellinger 		 * command from an I_T nexus other than a persistent reservation
2294c66ac9dbSNicholas Bellinger 		 * holder (see 5.7.10) that attempts to create a persistent
2295c66ac9dbSNicholas Bellinger 		 * reservation when a persistent reservation already exists for
2296c66ac9dbSNicholas Bellinger 		 * the logical unit, then the command shall be completed with
2297c66ac9dbSNicholas Bellinger 		 * RESERVATION CONFLICT status.
2298c66ac9dbSNicholas Bellinger 		 */
2299c66ac9dbSNicholas Bellinger 		if (pr_res_holder != pr_reg) {
2300c66ac9dbSNicholas Bellinger 			struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
23016708bb27SAndy Grover 			pr_err("SPC-3 PR: Attempted RESERVE from"
2302c66ac9dbSNicholas Bellinger 				" [%s]: %s while reservation already held by"
2303c66ac9dbSNicholas Bellinger 				" [%s]: %s, returning RESERVATION_CONFLICT\n",
2304e3d6f909SAndy Grover 				cmd->se_tfo->get_fabric_name(),
2305c66ac9dbSNicholas Bellinger 				se_sess->se_node_acl->initiatorname,
2306e3d6f909SAndy Grover 				pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
2307c66ac9dbSNicholas Bellinger 				pr_res_holder->pr_reg_nacl->initiatorname);
2308c66ac9dbSNicholas Bellinger 
2309c66ac9dbSNicholas Bellinger 			spin_unlock(&dev->dev_reservation_lock);
2310de103c93SChristoph Hellwig 			ret = TCM_RESERVATION_CONFLICT;
2311de103c93SChristoph Hellwig 			goto out_put_pr_reg;
2312c66ac9dbSNicholas Bellinger 		}
2313c66ac9dbSNicholas Bellinger 		/*
2314c66ac9dbSNicholas Bellinger 		 * From spc4r17 Section 5.7.9: Reserving:
2315c66ac9dbSNicholas Bellinger 		 *
2316c66ac9dbSNicholas Bellinger 		 * If a persistent reservation holder attempts to modify the
2317c66ac9dbSNicholas Bellinger 		 * type or scope of an existing persistent reservation, the
2318c66ac9dbSNicholas Bellinger 		 * command shall be completed with RESERVATION CONFLICT status.
2319c66ac9dbSNicholas Bellinger 		 */
2320c66ac9dbSNicholas Bellinger 		if ((pr_res_holder->pr_res_type != type) ||
2321c66ac9dbSNicholas Bellinger 		    (pr_res_holder->pr_res_scope != scope)) {
2322c66ac9dbSNicholas Bellinger 			struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
23236708bb27SAndy Grover 			pr_err("SPC-3 PR: Attempted RESERVE from"
2324c66ac9dbSNicholas Bellinger 				" [%s]: %s trying to change TYPE and/or SCOPE,"
2325c66ac9dbSNicholas Bellinger 				" while reservation already held by [%s]: %s,"
2326c66ac9dbSNicholas Bellinger 				" returning RESERVATION_CONFLICT\n",
2327e3d6f909SAndy Grover 				cmd->se_tfo->get_fabric_name(),
2328c66ac9dbSNicholas Bellinger 				se_sess->se_node_acl->initiatorname,
2329e3d6f909SAndy Grover 				pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
2330c66ac9dbSNicholas Bellinger 				pr_res_holder->pr_reg_nacl->initiatorname);
2331c66ac9dbSNicholas Bellinger 
2332c66ac9dbSNicholas Bellinger 			spin_unlock(&dev->dev_reservation_lock);
2333de103c93SChristoph Hellwig 			ret = TCM_RESERVATION_CONFLICT;
2334de103c93SChristoph Hellwig 			goto out_put_pr_reg;
2335c66ac9dbSNicholas Bellinger 		}
2336c66ac9dbSNicholas Bellinger 		/*
2337c66ac9dbSNicholas Bellinger 		 * From spc4r17 Section 5.7.9: Reserving:
2338c66ac9dbSNicholas Bellinger 		 *
2339c66ac9dbSNicholas Bellinger 		 * If the device server receives a PERSISTENT RESERVE OUT
2340c66ac9dbSNicholas Bellinger 		 * command with RESERVE service action where the TYPE field and
2341c66ac9dbSNicholas Bellinger 		 * the SCOPE field contain the same values as the existing type
2342c66ac9dbSNicholas Bellinger 		 * and scope from a persistent reservation holder, it shall not
2343c66ac9dbSNicholas Bellinger 		 * make any change to the existing persistent reservation and
2344c66ac9dbSNicholas Bellinger 		 * shall completethe command with GOOD status.
2345c66ac9dbSNicholas Bellinger 		 */
2346c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2347de103c93SChristoph Hellwig 		ret = 0;
2348de103c93SChristoph Hellwig 		goto out_put_pr_reg;
2349c66ac9dbSNicholas Bellinger 	}
2350c66ac9dbSNicholas Bellinger 	/*
2351c66ac9dbSNicholas Bellinger 	 * Otherwise, our *pr_reg becomes the PR reservation holder for said
2352c66ac9dbSNicholas Bellinger 	 * TYPE/SCOPE.  Also set the received scope and type in *pr_reg.
2353c66ac9dbSNicholas Bellinger 	 */
2354c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_scope = scope;
2355c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_type = type;
2356c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_holder = 1;
2357c66ac9dbSNicholas Bellinger 	dev->dev_pr_res_holder = pr_reg;
2358d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
2359c66ac9dbSNicholas Bellinger 
23606708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: RESERVE created new"
2361c66ac9dbSNicholas Bellinger 		" reservation holder TYPE: %s ALL_TG_PT: %d\n",
2362e3d6f909SAndy Grover 		cmd->se_tfo->get_fabric_name(), core_scsi3_pr_dump_type(type),
2363c66ac9dbSNicholas Bellinger 		(pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
23646708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
2365e3d6f909SAndy Grover 			cmd->se_tfo->get_fabric_name(),
2366c66ac9dbSNicholas Bellinger 			se_sess->se_node_acl->initiatorname,
2367d2843c17SAndy Grover 			i_buf);
2368c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
2369c66ac9dbSNicholas Bellinger 
2370459f213bSAndy Grover 	if (pr_tmpl->pr_aptpl_active)
2371459f213bSAndy Grover 		core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2372c66ac9dbSNicholas Bellinger 
2373de103c93SChristoph Hellwig 	ret = 0;
2374de103c93SChristoph Hellwig out_put_pr_reg:
2375de103c93SChristoph Hellwig 	core_scsi3_put_pr_reg(pr_reg);
2376de103c93SChristoph Hellwig 	return ret;
2377de103c93SChristoph Hellwig }
2378de103c93SChristoph Hellwig 
2379de103c93SChristoph Hellwig static sense_reason_t
2380de103c93SChristoph Hellwig core_scsi3_emulate_pro_reserve(struct se_cmd *cmd, int type, int scope,
2381c66ac9dbSNicholas Bellinger 		u64 res_key)
2382c66ac9dbSNicholas Bellinger {
2383c66ac9dbSNicholas Bellinger 	switch (type) {
2384c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE:
2385c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS:
2386c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
2387c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
2388c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
2389c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
2390de103c93SChristoph Hellwig 		return core_scsi3_pro_reserve(cmd, type, scope, res_key);
2391c66ac9dbSNicholas Bellinger 	default:
23926708bb27SAndy Grover 		pr_err("SPC-3 PR: Unknown Service Action RESERVE Type:"
2393c66ac9dbSNicholas Bellinger 			" 0x%02x\n", type);
2394de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
2395c66ac9dbSNicholas Bellinger 	}
2396c66ac9dbSNicholas Bellinger }
2397c66ac9dbSNicholas Bellinger 
2398c66ac9dbSNicholas Bellinger /*
2399c66ac9dbSNicholas Bellinger  * Called with struct se_device->dev_reservation_lock held.
2400c66ac9dbSNicholas Bellinger  */
2401c66ac9dbSNicholas Bellinger static void __core_scsi3_complete_pro_release(
2402c66ac9dbSNicholas Bellinger 	struct se_device *dev,
2403c66ac9dbSNicholas Bellinger 	struct se_node_acl *se_nacl,
2404c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg,
2405c66ac9dbSNicholas Bellinger 	int explict)
2406c66ac9dbSNicholas Bellinger {
2407c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tfo = se_nacl->se_tpg->se_tpg_tfo;
2408c66ac9dbSNicholas Bellinger 	char i_buf[PR_REG_ISID_ID_LEN];
2409c66ac9dbSNicholas Bellinger 
2410c66ac9dbSNicholas Bellinger 	memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2411d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
2412c66ac9dbSNicholas Bellinger 	/*
2413c66ac9dbSNicholas Bellinger 	 * Go ahead and release the current PR reservation holder.
2414c66ac9dbSNicholas Bellinger 	 */
2415c66ac9dbSNicholas Bellinger 	dev->dev_pr_res_holder = NULL;
2416c66ac9dbSNicholas Bellinger 
24176708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared"
2418c66ac9dbSNicholas Bellinger 		" reservation holder TYPE: %s ALL_TG_PT: %d\n",
2419c66ac9dbSNicholas Bellinger 		tfo->get_fabric_name(), (explict) ? "explict" : "implict",
2420c66ac9dbSNicholas Bellinger 		core_scsi3_pr_dump_type(pr_reg->pr_res_type),
2421c66ac9dbSNicholas Bellinger 		(pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
24226708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n",
2423c66ac9dbSNicholas Bellinger 		tfo->get_fabric_name(), se_nacl->initiatorname,
2424d2843c17SAndy Grover 		i_buf);
2425c66ac9dbSNicholas Bellinger 	/*
2426c66ac9dbSNicholas Bellinger 	 * Clear TYPE and SCOPE for the next PROUT Service Action: RESERVE
2427c66ac9dbSNicholas Bellinger 	 */
2428c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_holder = pr_reg->pr_res_type = pr_reg->pr_res_scope = 0;
2429c66ac9dbSNicholas Bellinger }
2430c66ac9dbSNicholas Bellinger 
2431de103c93SChristoph Hellwig static sense_reason_t
2432de103c93SChristoph Hellwig core_scsi3_emulate_pro_release(struct se_cmd *cmd, int type, int scope,
2433c66ac9dbSNicholas Bellinger 		u64 res_key)
2434c66ac9dbSNicholas Bellinger {
2435c66ac9dbSNicholas Bellinger 	struct se_device *dev = cmd->se_dev;
2436e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
2437e3d6f909SAndy Grover 	struct se_lun *se_lun = cmd->se_lun;
2438c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_p, *pr_res_holder;
24390fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
2440de103c93SChristoph Hellwig 	int all_reg = 0;
2441de103c93SChristoph Hellwig 	sense_reason_t ret = 0;
2442c66ac9dbSNicholas Bellinger 
24436708bb27SAndy Grover 	if (!se_sess || !se_lun) {
24446708bb27SAndy Grover 		pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2445de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2446c66ac9dbSNicholas Bellinger 	}
2447c66ac9dbSNicholas Bellinger 	/*
2448c66ac9dbSNicholas Bellinger 	 * Locate the existing *pr_reg via struct se_node_acl pointers
2449c66ac9dbSNicholas Bellinger 	 */
2450c66ac9dbSNicholas Bellinger 	pr_reg = core_scsi3_locate_pr_reg(dev, se_sess->se_node_acl, se_sess);
24516708bb27SAndy Grover 	if (!pr_reg) {
24526708bb27SAndy Grover 		pr_err("SPC-3 PR: Unable to locate"
2453c66ac9dbSNicholas Bellinger 			" PR_REGISTERED *pr_reg for RELEASE\n");
2454de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2455c66ac9dbSNicholas Bellinger 	}
2456c66ac9dbSNicholas Bellinger 	/*
2457c66ac9dbSNicholas Bellinger 	 * From spc4r17 Section 5.7.11.2 Releasing:
2458c66ac9dbSNicholas Bellinger 	 *
2459c66ac9dbSNicholas Bellinger 	 * If there is no persistent reservation or in response to a persistent
2460c66ac9dbSNicholas Bellinger 	 * reservation release request from a registered I_T nexus that is not a
2461c66ac9dbSNicholas Bellinger 	 * persistent reservation holder (see 5.7.10), the device server shall
2462c66ac9dbSNicholas Bellinger 	 * do the following:
2463c66ac9dbSNicholas Bellinger 	 *
2464c66ac9dbSNicholas Bellinger 	 *     a) Not release the persistent reservation, if any;
2465c66ac9dbSNicholas Bellinger 	 *     b) Not remove any registrations; and
2466c66ac9dbSNicholas Bellinger 	 *     c) Complete the command with GOOD status.
2467c66ac9dbSNicholas Bellinger 	 */
2468c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
2469c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
24706708bb27SAndy Grover 	if (!pr_res_holder) {
2471c66ac9dbSNicholas Bellinger 		/*
2472c66ac9dbSNicholas Bellinger 		 * No persistent reservation, return GOOD status.
2473c66ac9dbSNicholas Bellinger 		 */
2474c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2475bb7a8c8eSNicholas Bellinger 		goto out_put_pr_reg;
2476c66ac9dbSNicholas Bellinger 	}
2477c66ac9dbSNicholas Bellinger 	if ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
2478c66ac9dbSNicholas Bellinger 	    (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG))
2479c66ac9dbSNicholas Bellinger 		all_reg = 1;
2480c66ac9dbSNicholas Bellinger 
2481c66ac9dbSNicholas Bellinger 	if ((all_reg == 0) && (pr_res_holder != pr_reg)) {
2482c66ac9dbSNicholas Bellinger 		/*
2483c66ac9dbSNicholas Bellinger 		 * Non 'All Registrants' PR Type cases..
2484c66ac9dbSNicholas Bellinger 		 * Release request from a registered I_T nexus that is not a
2485c66ac9dbSNicholas Bellinger 		 * persistent reservation holder. return GOOD status.
2486c66ac9dbSNicholas Bellinger 		 */
2487c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2488de103c93SChristoph Hellwig 		goto out_put_pr_reg;
2489c66ac9dbSNicholas Bellinger 	}
2490de103c93SChristoph Hellwig 
2491c66ac9dbSNicholas Bellinger 	/*
2492c66ac9dbSNicholas Bellinger 	 * From spc4r17 Section 5.7.11.2 Releasing:
2493c66ac9dbSNicholas Bellinger 	 *
2494c66ac9dbSNicholas Bellinger 	 * Only the persistent reservation holder (see 5.7.10) is allowed to
2495c66ac9dbSNicholas Bellinger 	 * release a persistent reservation.
2496c66ac9dbSNicholas Bellinger 	 *
2497c66ac9dbSNicholas Bellinger 	 * An application client releases the persistent reservation by issuing
2498c66ac9dbSNicholas Bellinger 	 * a PERSISTENT RESERVE OUT command with RELEASE service action through
2499c66ac9dbSNicholas Bellinger 	 * an I_T nexus that is a persistent reservation holder with the
2500c66ac9dbSNicholas Bellinger 	 * following parameters:
2501c66ac9dbSNicholas Bellinger 	 *
2502c66ac9dbSNicholas Bellinger 	 *     a) RESERVATION KEY field set to the value of the reservation key
2503c66ac9dbSNicholas Bellinger 	 *	  that is registered with the logical unit for the I_T nexus;
2504c66ac9dbSNicholas Bellinger 	 */
2505c66ac9dbSNicholas Bellinger 	if (res_key != pr_reg->pr_res_key) {
25066708bb27SAndy Grover 		pr_err("SPC-3 PR RELEASE: Received res_key: 0x%016Lx"
2507c66ac9dbSNicholas Bellinger 			" does not match existing SA REGISTER res_key:"
2508c66ac9dbSNicholas Bellinger 			" 0x%016Lx\n", res_key, pr_reg->pr_res_key);
2509c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2510de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
2511de103c93SChristoph Hellwig 		goto out_put_pr_reg;
2512c66ac9dbSNicholas Bellinger 	}
2513c66ac9dbSNicholas Bellinger 	/*
2514c66ac9dbSNicholas Bellinger 	 * From spc4r17 Section 5.7.11.2 Releasing and above:
2515c66ac9dbSNicholas Bellinger 	 *
2516c66ac9dbSNicholas Bellinger 	 * b) TYPE field and SCOPE field set to match the persistent
2517c66ac9dbSNicholas Bellinger 	 *    reservation being released.
2518c66ac9dbSNicholas Bellinger 	 */
2519c66ac9dbSNicholas Bellinger 	if ((pr_res_holder->pr_res_type != type) ||
2520c66ac9dbSNicholas Bellinger 	    (pr_res_holder->pr_res_scope != scope)) {
2521c66ac9dbSNicholas Bellinger 		struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
25226708bb27SAndy Grover 		pr_err("SPC-3 PR RELEASE: Attempted to release"
2523c66ac9dbSNicholas Bellinger 			" reservation from [%s]: %s with different TYPE "
2524c66ac9dbSNicholas Bellinger 			"and/or SCOPE  while reservation already held by"
2525c66ac9dbSNicholas Bellinger 			" [%s]: %s, returning RESERVATION_CONFLICT\n",
2526e3d6f909SAndy Grover 			cmd->se_tfo->get_fabric_name(),
2527c66ac9dbSNicholas Bellinger 			se_sess->se_node_acl->initiatorname,
2528e3d6f909SAndy Grover 			pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
2529c66ac9dbSNicholas Bellinger 			pr_res_holder->pr_reg_nacl->initiatorname);
2530c66ac9dbSNicholas Bellinger 
2531c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2532de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
2533de103c93SChristoph Hellwig 		goto out_put_pr_reg;
2534c66ac9dbSNicholas Bellinger 	}
2535c66ac9dbSNicholas Bellinger 	/*
2536c66ac9dbSNicholas Bellinger 	 * In response to a persistent reservation release request from the
2537c66ac9dbSNicholas Bellinger 	 * persistent reservation holder the device server shall perform a
2538c66ac9dbSNicholas Bellinger 	 * release by doing the following as an uninterrupted series of actions:
2539c66ac9dbSNicholas Bellinger 	 * a) Release the persistent reservation;
2540c66ac9dbSNicholas Bellinger 	 * b) Not remove any registration(s);
2541c66ac9dbSNicholas Bellinger 	 * c) If the released persistent reservation is a registrants only type
2542c66ac9dbSNicholas Bellinger 	 * or all registrants type persistent reservation,
2543c66ac9dbSNicholas Bellinger 	 *    the device server shall establish a unit attention condition for
2544c66ac9dbSNicholas Bellinger 	 *    the initiator port associated with every regis-
2545c66ac9dbSNicholas Bellinger 	 *    tered I_T nexus other than I_T nexus on which the PERSISTENT
2546c66ac9dbSNicholas Bellinger 	 *    RESERVE OUT command with RELEASE service action was received,
2547c66ac9dbSNicholas Bellinger 	 *    with the additional sense code set to RESERVATIONS RELEASED; and
2548c66ac9dbSNicholas Bellinger 	 * d) If the persistent reservation is of any other type, the device
2549c66ac9dbSNicholas Bellinger 	 *    server shall not establish a unit attention condition.
2550c66ac9dbSNicholas Bellinger 	 */
2551c66ac9dbSNicholas Bellinger 	__core_scsi3_complete_pro_release(dev, se_sess->se_node_acl,
2552c66ac9dbSNicholas Bellinger 			pr_reg, 1);
2553c66ac9dbSNicholas Bellinger 
2554c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
2555c66ac9dbSNicholas Bellinger 
2556c66ac9dbSNicholas Bellinger 	if ((type != PR_TYPE_WRITE_EXCLUSIVE_REGONLY) &&
2557c66ac9dbSNicholas Bellinger 	    (type != PR_TYPE_EXCLUSIVE_ACCESS_REGONLY) &&
2558c66ac9dbSNicholas Bellinger 	    (type != PR_TYPE_WRITE_EXCLUSIVE_ALLREG) &&
2559c66ac9dbSNicholas Bellinger 	    (type != PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
2560c66ac9dbSNicholas Bellinger 		/*
2561c66ac9dbSNicholas Bellinger 		 * If no UNIT ATTENTION conditions will be established for
2562c66ac9dbSNicholas Bellinger 		 * PR_TYPE_WRITE_EXCLUSIVE or PR_TYPE_EXCLUSIVE_ACCESS
2563c66ac9dbSNicholas Bellinger 		 * go ahead and check for APTPL=1 update+write below
2564c66ac9dbSNicholas Bellinger 		 */
2565c66ac9dbSNicholas Bellinger 		goto write_aptpl;
2566c66ac9dbSNicholas Bellinger 	}
2567c66ac9dbSNicholas Bellinger 
2568c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
2569c66ac9dbSNicholas Bellinger 	list_for_each_entry(pr_reg_p, &pr_tmpl->registration_list,
2570c66ac9dbSNicholas Bellinger 			pr_reg_list) {
2571c66ac9dbSNicholas Bellinger 		/*
2572c66ac9dbSNicholas Bellinger 		 * Do not establish a UNIT ATTENTION condition
2573c66ac9dbSNicholas Bellinger 		 * for the calling I_T Nexus
2574c66ac9dbSNicholas Bellinger 		 */
2575c66ac9dbSNicholas Bellinger 		if (pr_reg_p == pr_reg)
2576c66ac9dbSNicholas Bellinger 			continue;
2577c66ac9dbSNicholas Bellinger 
2578c66ac9dbSNicholas Bellinger 		core_scsi3_ua_allocate(pr_reg_p->pr_reg_nacl,
2579c66ac9dbSNicholas Bellinger 				pr_reg_p->pr_res_mapped_lun,
2580c66ac9dbSNicholas Bellinger 				0x2A, ASCQ_2AH_RESERVATIONS_RELEASED);
2581c66ac9dbSNicholas Bellinger 	}
2582c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
2583c66ac9dbSNicholas Bellinger 
2584c66ac9dbSNicholas Bellinger write_aptpl:
2585459f213bSAndy Grover 	if (pr_tmpl->pr_aptpl_active)
2586459f213bSAndy Grover 		core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2587459f213bSAndy Grover 
2588de103c93SChristoph Hellwig out_put_pr_reg:
2589c66ac9dbSNicholas Bellinger 	core_scsi3_put_pr_reg(pr_reg);
2590de103c93SChristoph Hellwig 	return ret;
2591c66ac9dbSNicholas Bellinger }
2592c66ac9dbSNicholas Bellinger 
2593de103c93SChristoph Hellwig static sense_reason_t
2594de103c93SChristoph Hellwig core_scsi3_emulate_pro_clear(struct se_cmd *cmd, u64 res_key)
2595c66ac9dbSNicholas Bellinger {
2596c66ac9dbSNicholas Bellinger 	struct se_device *dev = cmd->se_dev;
2597c66ac9dbSNicholas Bellinger 	struct se_node_acl *pr_reg_nacl;
2598e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
25990fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
2600c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_reg_n, *pr_res_holder;
2601c66ac9dbSNicholas Bellinger 	u32 pr_res_mapped_lun = 0;
2602c66ac9dbSNicholas Bellinger 	int calling_it_nexus = 0;
2603c66ac9dbSNicholas Bellinger 	/*
2604c66ac9dbSNicholas Bellinger 	 * Locate the existing *pr_reg via struct se_node_acl pointers
2605c66ac9dbSNicholas Bellinger 	 */
26065951146dSAndy Grover 	pr_reg_n = core_scsi3_locate_pr_reg(cmd->se_dev,
2607c66ac9dbSNicholas Bellinger 			se_sess->se_node_acl, se_sess);
26086708bb27SAndy Grover 	if (!pr_reg_n) {
26096708bb27SAndy Grover 		pr_err("SPC-3 PR: Unable to locate"
2610c66ac9dbSNicholas Bellinger 			" PR_REGISTERED *pr_reg for CLEAR\n");
2611de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2612c66ac9dbSNicholas Bellinger 	}
2613c66ac9dbSNicholas Bellinger 	/*
2614c66ac9dbSNicholas Bellinger 	 * From spc4r17 section 5.7.11.6, Clearing:
2615c66ac9dbSNicholas Bellinger 	 *
2616c66ac9dbSNicholas Bellinger 	 * Any application client may release the persistent reservation and
2617c66ac9dbSNicholas Bellinger 	 * remove all registrations from a device server by issuing a
2618c66ac9dbSNicholas Bellinger 	 * PERSISTENT RESERVE OUT command with CLEAR service action through a
2619c66ac9dbSNicholas Bellinger 	 * registered I_T nexus with the following parameter:
2620c66ac9dbSNicholas Bellinger 	 *
2621c66ac9dbSNicholas Bellinger 	 *	a) RESERVATION KEY field set to the value of the reservation key
2622c66ac9dbSNicholas Bellinger 	 * 	   that is registered with the logical unit for the I_T nexus.
2623c66ac9dbSNicholas Bellinger 	 */
2624c66ac9dbSNicholas Bellinger 	if (res_key != pr_reg_n->pr_res_key) {
26256708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER: Received"
2626c66ac9dbSNicholas Bellinger 			" res_key: 0x%016Lx does not match"
2627c66ac9dbSNicholas Bellinger 			" existing SA REGISTER res_key:"
2628c66ac9dbSNicholas Bellinger 			" 0x%016Lx\n", res_key, pr_reg_n->pr_res_key);
2629c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg_n);
2630de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
2631c66ac9dbSNicholas Bellinger 	}
2632c66ac9dbSNicholas Bellinger 	/*
2633c66ac9dbSNicholas Bellinger 	 * a) Release the persistent reservation, if any;
2634c66ac9dbSNicholas Bellinger 	 */
2635c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
2636c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
2637c66ac9dbSNicholas Bellinger 	if (pr_res_holder) {
2638c66ac9dbSNicholas Bellinger 		struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2639c66ac9dbSNicholas Bellinger 		__core_scsi3_complete_pro_release(dev, pr_res_nacl,
2640c66ac9dbSNicholas Bellinger 			pr_res_holder, 0);
2641c66ac9dbSNicholas Bellinger 	}
2642c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
2643c66ac9dbSNicholas Bellinger 	/*
2644c66ac9dbSNicholas Bellinger 	 * b) Remove all registration(s) (see spc4r17 5.7.7);
2645c66ac9dbSNicholas Bellinger 	 */
2646c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
2647c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2648c66ac9dbSNicholas Bellinger 			&pr_tmpl->registration_list, pr_reg_list) {
2649c66ac9dbSNicholas Bellinger 
2650c66ac9dbSNicholas Bellinger 		calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2651c66ac9dbSNicholas Bellinger 		pr_reg_nacl = pr_reg->pr_reg_nacl;
2652c66ac9dbSNicholas Bellinger 		pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2653c66ac9dbSNicholas Bellinger 		__core_scsi3_free_registration(dev, pr_reg, NULL,
2654c66ac9dbSNicholas Bellinger 					calling_it_nexus);
2655c66ac9dbSNicholas Bellinger 		/*
2656c66ac9dbSNicholas Bellinger 		 * e) Establish a unit attention condition for the initiator
2657c66ac9dbSNicholas Bellinger 		 *    port associated with every registered I_T nexus other
2658c66ac9dbSNicholas Bellinger 		 *    than the I_T nexus on which the PERSISTENT RESERVE OUT
2659c66ac9dbSNicholas Bellinger 		 *    command with CLEAR service action was received, with the
2660c66ac9dbSNicholas Bellinger 		 *    additional sense code set to RESERVATIONS PREEMPTED.
2661c66ac9dbSNicholas Bellinger 		 */
26626708bb27SAndy Grover 		if (!calling_it_nexus)
2663c66ac9dbSNicholas Bellinger 			core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun,
2664c66ac9dbSNicholas Bellinger 				0x2A, ASCQ_2AH_RESERVATIONS_PREEMPTED);
2665c66ac9dbSNicholas Bellinger 	}
2666c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
2667c66ac9dbSNicholas Bellinger 
26686708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: CLEAR complete\n",
2669e3d6f909SAndy Grover 		cmd->se_tfo->get_fabric_name());
2670c66ac9dbSNicholas Bellinger 
2671459f213bSAndy Grover 	core_scsi3_update_and_write_aptpl(cmd->se_dev, false);
2672c66ac9dbSNicholas Bellinger 
2673c66ac9dbSNicholas Bellinger 	core_scsi3_pr_generation(dev);
2674c66ac9dbSNicholas Bellinger 	return 0;
2675c66ac9dbSNicholas Bellinger }
2676c66ac9dbSNicholas Bellinger 
2677c66ac9dbSNicholas Bellinger /*
2678c66ac9dbSNicholas Bellinger  * Called with struct se_device->dev_reservation_lock held.
2679c66ac9dbSNicholas Bellinger  */
2680c66ac9dbSNicholas Bellinger static void __core_scsi3_complete_pro_preempt(
2681c66ac9dbSNicholas Bellinger 	struct se_device *dev,
2682c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg,
2683c66ac9dbSNicholas Bellinger 	struct list_head *preempt_and_abort_list,
2684c66ac9dbSNicholas Bellinger 	int type,
2685c66ac9dbSNicholas Bellinger 	int scope,
268633ce6a87SAndy Grover 	enum preempt_type preempt_type)
2687c66ac9dbSNicholas Bellinger {
2688c66ac9dbSNicholas Bellinger 	struct se_node_acl *nacl = pr_reg->pr_reg_nacl;
2689c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
2690c66ac9dbSNicholas Bellinger 	char i_buf[PR_REG_ISID_ID_LEN];
2691c66ac9dbSNicholas Bellinger 
2692c66ac9dbSNicholas Bellinger 	memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2693d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
2694c66ac9dbSNicholas Bellinger 	/*
2695c66ac9dbSNicholas Bellinger 	 * Do an implict RELEASE of the existing reservation.
2696c66ac9dbSNicholas Bellinger 	 */
2697c66ac9dbSNicholas Bellinger 	if (dev->dev_pr_res_holder)
2698c66ac9dbSNicholas Bellinger 		__core_scsi3_complete_pro_release(dev, nacl,
2699c66ac9dbSNicholas Bellinger 				dev->dev_pr_res_holder, 0);
2700c66ac9dbSNicholas Bellinger 
2701c66ac9dbSNicholas Bellinger 	dev->dev_pr_res_holder = pr_reg;
2702c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_holder = 1;
2703c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_type = type;
2704c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_scope = scope;
2705c66ac9dbSNicholas Bellinger 
27066708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: PREEMPT%s created new"
2707c66ac9dbSNicholas Bellinger 		" reservation holder TYPE: %s ALL_TG_PT: %d\n",
270833ce6a87SAndy Grover 		tfo->get_fabric_name(), (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "",
2709c66ac9dbSNicholas Bellinger 		core_scsi3_pr_dump_type(type),
2710c66ac9dbSNicholas Bellinger 		(pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
27116708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] PREEMPT%s from Node: %s%s\n",
271233ce6a87SAndy Grover 		tfo->get_fabric_name(), (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "",
2713d2843c17SAndy Grover 		nacl->initiatorname, i_buf);
2714c66ac9dbSNicholas Bellinger 	/*
2715c66ac9dbSNicholas Bellinger 	 * For PREEMPT_AND_ABORT, add the preempting reservation's
2716c66ac9dbSNicholas Bellinger 	 * struct t10_pr_registration to the list that will be compared
2717c66ac9dbSNicholas Bellinger 	 * against received CDBs..
2718c66ac9dbSNicholas Bellinger 	 */
2719c66ac9dbSNicholas Bellinger 	if (preempt_and_abort_list)
2720c66ac9dbSNicholas Bellinger 		list_add_tail(&pr_reg->pr_reg_abort_list,
2721c66ac9dbSNicholas Bellinger 				preempt_and_abort_list);
2722c66ac9dbSNicholas Bellinger }
2723c66ac9dbSNicholas Bellinger 
2724c66ac9dbSNicholas Bellinger static void core_scsi3_release_preempt_and_abort(
2725c66ac9dbSNicholas Bellinger 	struct list_head *preempt_and_abort_list,
2726c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg_holder)
2727c66ac9dbSNicholas Bellinger {
2728c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp;
2729c66ac9dbSNicholas Bellinger 
2730c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp, preempt_and_abort_list,
2731c66ac9dbSNicholas Bellinger 				pr_reg_abort_list) {
2732c66ac9dbSNicholas Bellinger 
2733c66ac9dbSNicholas Bellinger 		list_del(&pr_reg->pr_reg_abort_list);
2734c66ac9dbSNicholas Bellinger 		if (pr_reg_holder == pr_reg)
2735c66ac9dbSNicholas Bellinger 			continue;
2736c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_res_holder) {
27376708bb27SAndy Grover 			pr_warn("pr_reg->pr_res_holder still set\n");
2738c66ac9dbSNicholas Bellinger 			continue;
2739c66ac9dbSNicholas Bellinger 		}
2740c66ac9dbSNicholas Bellinger 
2741c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_deve = NULL;
2742c66ac9dbSNicholas Bellinger 		pr_reg->pr_reg_nacl = NULL;
2743c66ac9dbSNicholas Bellinger 		kmem_cache_free(t10_pr_reg_cache, pr_reg);
2744c66ac9dbSNicholas Bellinger 	}
2745c66ac9dbSNicholas Bellinger }
2746c66ac9dbSNicholas Bellinger 
2747de103c93SChristoph Hellwig static sense_reason_t
2748de103c93SChristoph Hellwig core_scsi3_pro_preempt(struct se_cmd *cmd, int type, int scope, u64 res_key,
274933ce6a87SAndy Grover 		u64 sa_res_key, enum preempt_type preempt_type)
2750c66ac9dbSNicholas Bellinger {
27515951146dSAndy Grover 	struct se_device *dev = cmd->se_dev;
2752c66ac9dbSNicholas Bellinger 	struct se_node_acl *pr_reg_nacl;
2753e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
2754d0f474e5SRoland Dreier 	LIST_HEAD(preempt_and_abort_list);
2755c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_reg_n, *pr_res_holder;
27560fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
2757c66ac9dbSNicholas Bellinger 	u32 pr_res_mapped_lun = 0;
2758c66ac9dbSNicholas Bellinger 	int all_reg = 0, calling_it_nexus = 0, released_regs = 0;
2759de103c93SChristoph Hellwig 	int prh_type = 0, prh_scope = 0;
2760c66ac9dbSNicholas Bellinger 
2761de103c93SChristoph Hellwig 	if (!se_sess)
2762de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2763c66ac9dbSNicholas Bellinger 
27645951146dSAndy Grover 	pr_reg_n = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
2765c66ac9dbSNicholas Bellinger 				se_sess);
27666708bb27SAndy Grover 	if (!pr_reg_n) {
27676708bb27SAndy Grover 		pr_err("SPC-3 PR: Unable to locate"
2768c66ac9dbSNicholas Bellinger 			" PR_REGISTERED *pr_reg for PREEMPT%s\n",
276933ce6a87SAndy Grover 			(preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "");
2770de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
2771c66ac9dbSNicholas Bellinger 	}
2772c66ac9dbSNicholas Bellinger 	if (pr_reg_n->pr_res_key != res_key) {
2773c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg_n);
2774de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
2775c66ac9dbSNicholas Bellinger 	}
2776c66ac9dbSNicholas Bellinger 	if (scope != PR_SCOPE_LU_SCOPE) {
27776708bb27SAndy Grover 		pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope);
2778c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg_n);
2779de103c93SChristoph Hellwig 		return TCM_INVALID_PARAMETER_LIST;
2780c66ac9dbSNicholas Bellinger 	}
2781c66ac9dbSNicholas Bellinger 
2782c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
2783c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
2784c66ac9dbSNicholas Bellinger 	if (pr_res_holder &&
2785c66ac9dbSNicholas Bellinger 	   ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
2786c66ac9dbSNicholas Bellinger 	    (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)))
2787c66ac9dbSNicholas Bellinger 		all_reg = 1;
2788c66ac9dbSNicholas Bellinger 
27896708bb27SAndy Grover 	if (!all_reg && !sa_res_key) {
2790c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2791c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg_n);
2792de103c93SChristoph Hellwig 		return TCM_INVALID_PARAMETER_LIST;
2793c66ac9dbSNicholas Bellinger 	}
2794c66ac9dbSNicholas Bellinger 	/*
2795c66ac9dbSNicholas Bellinger 	 * From spc4r17, section 5.7.11.4.4 Removing Registrations:
2796c66ac9dbSNicholas Bellinger 	 *
2797c66ac9dbSNicholas Bellinger 	 * If the SERVICE ACTION RESERVATION KEY field does not identify a
2798c66ac9dbSNicholas Bellinger 	 * persistent reservation holder or there is no persistent reservation
2799c66ac9dbSNicholas Bellinger 	 * holder (i.e., there is no persistent reservation), then the device
2800c66ac9dbSNicholas Bellinger 	 * server shall perform a preempt by doing the following in an
2801c66ac9dbSNicholas Bellinger 	 * uninterrupted series of actions. (See below..)
2802c66ac9dbSNicholas Bellinger 	 */
28036708bb27SAndy Grover 	if (!pr_res_holder || (pr_res_holder->pr_res_key != sa_res_key)) {
2804c66ac9dbSNicholas Bellinger 		/*
2805c66ac9dbSNicholas Bellinger 		 * No existing or SA Reservation Key matching reservations..
2806c66ac9dbSNicholas Bellinger 		 *
2807c66ac9dbSNicholas Bellinger 		 * PROUT SA PREEMPT with All Registrant type reservations are
2808c66ac9dbSNicholas Bellinger 		 * allowed to be processed without a matching SA Reservation Key
2809c66ac9dbSNicholas Bellinger 		 */
2810c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
2811c66ac9dbSNicholas Bellinger 		list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2812c66ac9dbSNicholas Bellinger 				&pr_tmpl->registration_list, pr_reg_list) {
2813c66ac9dbSNicholas Bellinger 			/*
2814c66ac9dbSNicholas Bellinger 			 * Removing of registrations in non all registrants
2815c66ac9dbSNicholas Bellinger 			 * type reservations without a matching SA reservation
2816c66ac9dbSNicholas Bellinger 			 * key.
2817c66ac9dbSNicholas Bellinger 			 *
2818c66ac9dbSNicholas Bellinger 			 * a) Remove the registrations for all I_T nexuses
2819c66ac9dbSNicholas Bellinger 			 *    specified by the SERVICE ACTION RESERVATION KEY
2820c66ac9dbSNicholas Bellinger 			 *    field;
2821c66ac9dbSNicholas Bellinger 			 * b) Ignore the contents of the SCOPE and TYPE fields;
2822c66ac9dbSNicholas Bellinger 			 * c) Process tasks as defined in 5.7.1; and
2823c66ac9dbSNicholas Bellinger 			 * d) Establish a unit attention condition for the
2824c66ac9dbSNicholas Bellinger 			 *    initiator port associated with every I_T nexus
2825c66ac9dbSNicholas Bellinger 			 *    that lost its registration other than the I_T
2826c66ac9dbSNicholas Bellinger 			 *    nexus on which the PERSISTENT RESERVE OUT command
2827c66ac9dbSNicholas Bellinger 			 *    was received, with the additional sense code set
2828c66ac9dbSNicholas Bellinger 			 *    to REGISTRATIONS PREEMPTED.
2829c66ac9dbSNicholas Bellinger 			 */
28306708bb27SAndy Grover 			if (!all_reg) {
2831c66ac9dbSNicholas Bellinger 				if (pr_reg->pr_res_key != sa_res_key)
2832c66ac9dbSNicholas Bellinger 					continue;
2833c66ac9dbSNicholas Bellinger 
2834c66ac9dbSNicholas Bellinger 				calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2835c66ac9dbSNicholas Bellinger 				pr_reg_nacl = pr_reg->pr_reg_nacl;
2836c66ac9dbSNicholas Bellinger 				pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2837c66ac9dbSNicholas Bellinger 				__core_scsi3_free_registration(dev, pr_reg,
283833ce6a87SAndy Grover 					(preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list :
2839c66ac9dbSNicholas Bellinger 						NULL, calling_it_nexus);
2840c66ac9dbSNicholas Bellinger 				released_regs++;
2841c66ac9dbSNicholas Bellinger 			} else {
2842c66ac9dbSNicholas Bellinger 				/*
2843c66ac9dbSNicholas Bellinger 				 * Case for any existing all registrants type
2844c66ac9dbSNicholas Bellinger 				 * reservation, follow logic in spc4r17 section
2845c66ac9dbSNicholas Bellinger 				 * 5.7.11.4 Preempting, Table 52 and Figure 7.
2846c66ac9dbSNicholas Bellinger 				 *
2847c66ac9dbSNicholas Bellinger 				 * For a ZERO SA Reservation key, release
2848c66ac9dbSNicholas Bellinger 				 * all other registrations and do an implict
2849c66ac9dbSNicholas Bellinger 				 * release of active persistent reservation.
2850c66ac9dbSNicholas Bellinger 				 *
2851c66ac9dbSNicholas Bellinger 				 * For a non-ZERO SA Reservation key, only
2852c66ac9dbSNicholas Bellinger 				 * release the matching reservation key from
2853c66ac9dbSNicholas Bellinger 				 * registrations.
2854c66ac9dbSNicholas Bellinger 				 */
2855c66ac9dbSNicholas Bellinger 				if ((sa_res_key) &&
2856c66ac9dbSNicholas Bellinger 				     (pr_reg->pr_res_key != sa_res_key))
2857c66ac9dbSNicholas Bellinger 					continue;
2858c66ac9dbSNicholas Bellinger 
2859c66ac9dbSNicholas Bellinger 				calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2860c66ac9dbSNicholas Bellinger 				if (calling_it_nexus)
2861c66ac9dbSNicholas Bellinger 					continue;
2862c66ac9dbSNicholas Bellinger 
2863c66ac9dbSNicholas Bellinger 				pr_reg_nacl = pr_reg->pr_reg_nacl;
2864c66ac9dbSNicholas Bellinger 				pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2865c66ac9dbSNicholas Bellinger 				__core_scsi3_free_registration(dev, pr_reg,
286633ce6a87SAndy Grover 					(preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list :
2867c66ac9dbSNicholas Bellinger 						NULL, 0);
2868c66ac9dbSNicholas Bellinger 				released_regs++;
2869c66ac9dbSNicholas Bellinger 			}
28706708bb27SAndy Grover 			if (!calling_it_nexus)
2871c66ac9dbSNicholas Bellinger 				core_scsi3_ua_allocate(pr_reg_nacl,
2872c66ac9dbSNicholas Bellinger 					pr_res_mapped_lun, 0x2A,
28739e08e34eSMarco Sanvido 					ASCQ_2AH_REGISTRATIONS_PREEMPTED);
2874c66ac9dbSNicholas Bellinger 		}
2875c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
2876c66ac9dbSNicholas Bellinger 		/*
2877c66ac9dbSNicholas Bellinger 		 * If a PERSISTENT RESERVE OUT with a PREEMPT service action or
2878c66ac9dbSNicholas Bellinger 		 * a PREEMPT AND ABORT service action sets the SERVICE ACTION
2879c66ac9dbSNicholas Bellinger 		 * RESERVATION KEY field to a value that does not match any
2880c66ac9dbSNicholas Bellinger 		 * registered reservation key, then the device server shall
2881c66ac9dbSNicholas Bellinger 		 * complete the command with RESERVATION CONFLICT status.
2882c66ac9dbSNicholas Bellinger 		 */
28836708bb27SAndy Grover 		if (!released_regs) {
2884c66ac9dbSNicholas Bellinger 			spin_unlock(&dev->dev_reservation_lock);
2885c66ac9dbSNicholas Bellinger 			core_scsi3_put_pr_reg(pr_reg_n);
2886de103c93SChristoph Hellwig 			return TCM_RESERVATION_CONFLICT;
2887c66ac9dbSNicholas Bellinger 		}
2888c66ac9dbSNicholas Bellinger 		/*
2889c66ac9dbSNicholas Bellinger 		 * For an existing all registrants type reservation
2890c66ac9dbSNicholas Bellinger 		 * with a zero SA rservation key, preempt the existing
2891c66ac9dbSNicholas Bellinger 		 * reservation with the new PR type and scope.
2892c66ac9dbSNicholas Bellinger 		 */
2893c66ac9dbSNicholas Bellinger 		if (pr_res_holder && all_reg && !(sa_res_key)) {
2894c66ac9dbSNicholas Bellinger 			__core_scsi3_complete_pro_preempt(dev, pr_reg_n,
289533ce6a87SAndy Grover 				(preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
289633ce6a87SAndy Grover 				type, scope, preempt_type);
2897c66ac9dbSNicholas Bellinger 
289833ce6a87SAndy Grover 			if (preempt_type == PREEMPT_AND_ABORT)
2899c66ac9dbSNicholas Bellinger 				core_scsi3_release_preempt_and_abort(
2900c66ac9dbSNicholas Bellinger 					&preempt_and_abort_list, pr_reg_n);
2901c66ac9dbSNicholas Bellinger 		}
2902c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
2903c66ac9dbSNicholas Bellinger 
2904459f213bSAndy Grover 		if (pr_tmpl->pr_aptpl_active)
2905459f213bSAndy Grover 			core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2906c66ac9dbSNicholas Bellinger 
2907c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg_n);
29085951146dSAndy Grover 		core_scsi3_pr_generation(cmd->se_dev);
2909c66ac9dbSNicholas Bellinger 		return 0;
2910c66ac9dbSNicholas Bellinger 	}
2911c66ac9dbSNicholas Bellinger 	/*
2912c66ac9dbSNicholas Bellinger 	 * The PREEMPTing SA reservation key matches that of the
2913c66ac9dbSNicholas Bellinger 	 * existing persistent reservation, first, we check if
2914c66ac9dbSNicholas Bellinger 	 * we are preempting our own reservation.
2915c66ac9dbSNicholas Bellinger 	 * From spc4r17, section 5.7.11.4.3 Preempting
2916c66ac9dbSNicholas Bellinger 	 * persistent reservations and registration handling
2917c66ac9dbSNicholas Bellinger 	 *
2918c66ac9dbSNicholas Bellinger 	 * If an all registrants persistent reservation is not
2919c66ac9dbSNicholas Bellinger 	 * present, it is not an error for the persistent
2920c66ac9dbSNicholas Bellinger 	 * reservation holder to preempt itself (i.e., a
2921c66ac9dbSNicholas Bellinger 	 * PERSISTENT RESERVE OUT with a PREEMPT service action
2922c66ac9dbSNicholas Bellinger 	 * or a PREEMPT AND ABORT service action with the
2923c66ac9dbSNicholas Bellinger 	 * SERVICE ACTION RESERVATION KEY value equal to the
2924c66ac9dbSNicholas Bellinger 	 * persistent reservation holder's reservation key that
2925c66ac9dbSNicholas Bellinger 	 * is received from the persistent reservation holder).
2926c66ac9dbSNicholas Bellinger 	 * In that case, the device server shall establish the
2927c66ac9dbSNicholas Bellinger 	 * new persistent reservation and maintain the
2928c66ac9dbSNicholas Bellinger 	 * registration.
2929c66ac9dbSNicholas Bellinger 	 */
2930c66ac9dbSNicholas Bellinger 	prh_type = pr_res_holder->pr_res_type;
2931c66ac9dbSNicholas Bellinger 	prh_scope = pr_res_holder->pr_res_scope;
2932c66ac9dbSNicholas Bellinger 	/*
2933c66ac9dbSNicholas Bellinger 	 * If the SERVICE ACTION RESERVATION KEY field identifies a
2934c66ac9dbSNicholas Bellinger 	 * persistent reservation holder (see 5.7.10), the device
2935c66ac9dbSNicholas Bellinger 	 * server shall perform a preempt by doing the following as
2936c66ac9dbSNicholas Bellinger 	 * an uninterrupted series of actions:
2937c66ac9dbSNicholas Bellinger 	 *
2938c66ac9dbSNicholas Bellinger 	 * a) Release the persistent reservation for the holder
2939c66ac9dbSNicholas Bellinger 	 *    identified by the SERVICE ACTION RESERVATION KEY field;
2940c66ac9dbSNicholas Bellinger 	 */
2941c66ac9dbSNicholas Bellinger 	if (pr_reg_n != pr_res_holder)
2942c66ac9dbSNicholas Bellinger 		__core_scsi3_complete_pro_release(dev,
2943c66ac9dbSNicholas Bellinger 				pr_res_holder->pr_reg_nacl,
2944c66ac9dbSNicholas Bellinger 				dev->dev_pr_res_holder, 0);
2945c66ac9dbSNicholas Bellinger 	/*
2946c66ac9dbSNicholas Bellinger 	 * b) Remove the registrations for all I_T nexuses identified
2947c66ac9dbSNicholas Bellinger 	 *    by the SERVICE ACTION RESERVATION KEY field, except the
2948c66ac9dbSNicholas Bellinger 	 *    I_T nexus that is being used for the PERSISTENT RESERVE
2949c66ac9dbSNicholas Bellinger 	 *    OUT command. If an all registrants persistent reservation
2950c66ac9dbSNicholas Bellinger 	 *    is present and the SERVICE ACTION RESERVATION KEY field
2951c66ac9dbSNicholas Bellinger 	 *    is set to zero, then all registrations shall be removed
2952c66ac9dbSNicholas Bellinger 	 *    except for that of the I_T nexus that is being used for
2953c66ac9dbSNicholas Bellinger 	 *    the PERSISTENT RESERVE OUT command;
2954c66ac9dbSNicholas Bellinger 	 */
2955c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
2956c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2957c66ac9dbSNicholas Bellinger 			&pr_tmpl->registration_list, pr_reg_list) {
2958c66ac9dbSNicholas Bellinger 
2959c66ac9dbSNicholas Bellinger 		calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2960c66ac9dbSNicholas Bellinger 		if (calling_it_nexus)
2961c66ac9dbSNicholas Bellinger 			continue;
2962c66ac9dbSNicholas Bellinger 
2963c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_res_key != sa_res_key)
2964c66ac9dbSNicholas Bellinger 			continue;
2965c66ac9dbSNicholas Bellinger 
2966c66ac9dbSNicholas Bellinger 		pr_reg_nacl = pr_reg->pr_reg_nacl;
2967c66ac9dbSNicholas Bellinger 		pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2968c66ac9dbSNicholas Bellinger 		__core_scsi3_free_registration(dev, pr_reg,
296933ce6a87SAndy Grover 				(preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
2970c66ac9dbSNicholas Bellinger 				calling_it_nexus);
2971c66ac9dbSNicholas Bellinger 		/*
2972c66ac9dbSNicholas Bellinger 		 * e) Establish a unit attention condition for the initiator
2973c66ac9dbSNicholas Bellinger 		 *    port associated with every I_T nexus that lost its
2974c66ac9dbSNicholas Bellinger 		 *    persistent reservation and/or registration, with the
2975c66ac9dbSNicholas Bellinger 		 *    additional sense code set to REGISTRATIONS PREEMPTED;
2976c66ac9dbSNicholas Bellinger 		 */
2977c66ac9dbSNicholas Bellinger 		core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun, 0x2A,
29789e08e34eSMarco Sanvido 				ASCQ_2AH_REGISTRATIONS_PREEMPTED);
2979c66ac9dbSNicholas Bellinger 	}
2980c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
2981c66ac9dbSNicholas Bellinger 	/*
2982c66ac9dbSNicholas Bellinger 	 * c) Establish a persistent reservation for the preempting
2983c66ac9dbSNicholas Bellinger 	 *    I_T nexus using the contents of the SCOPE and TYPE fields;
2984c66ac9dbSNicholas Bellinger 	 */
2985c66ac9dbSNicholas Bellinger 	__core_scsi3_complete_pro_preempt(dev, pr_reg_n,
298633ce6a87SAndy Grover 			(preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
298733ce6a87SAndy Grover 			type, scope, preempt_type);
2988c66ac9dbSNicholas Bellinger 	/*
2989c66ac9dbSNicholas Bellinger 	 * d) Process tasks as defined in 5.7.1;
2990c66ac9dbSNicholas Bellinger 	 * e) See above..
2991c66ac9dbSNicholas Bellinger 	 * f) If the type or scope has changed, then for every I_T nexus
2992c66ac9dbSNicholas Bellinger 	 *    whose reservation key was not removed, except for the I_T
2993c66ac9dbSNicholas Bellinger 	 *    nexus on which the PERSISTENT RESERVE OUT command was
2994c66ac9dbSNicholas Bellinger 	 *    received, the device server shall establish a unit
2995c66ac9dbSNicholas Bellinger 	 *    attention condition for the initiator port associated with
2996c66ac9dbSNicholas Bellinger 	 *    that I_T nexus, with the additional sense code set to
2997c66ac9dbSNicholas Bellinger 	 *    RESERVATIONS RELEASED. If the type or scope have not
2998c66ac9dbSNicholas Bellinger 	 *    changed, then no unit attention condition(s) shall be
2999c66ac9dbSNicholas Bellinger 	 *    established for this reason.
3000c66ac9dbSNicholas Bellinger 	 */
3001c66ac9dbSNicholas Bellinger 	if ((prh_type != type) || (prh_scope != scope)) {
3002c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
3003c66ac9dbSNicholas Bellinger 		list_for_each_entry_safe(pr_reg, pr_reg_tmp,
3004c66ac9dbSNicholas Bellinger 				&pr_tmpl->registration_list, pr_reg_list) {
3005c66ac9dbSNicholas Bellinger 
3006c66ac9dbSNicholas Bellinger 			calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
3007c66ac9dbSNicholas Bellinger 			if (calling_it_nexus)
3008c66ac9dbSNicholas Bellinger 				continue;
3009c66ac9dbSNicholas Bellinger 
3010c66ac9dbSNicholas Bellinger 			core_scsi3_ua_allocate(pr_reg->pr_reg_nacl,
3011c66ac9dbSNicholas Bellinger 					pr_reg->pr_res_mapped_lun, 0x2A,
3012c66ac9dbSNicholas Bellinger 					ASCQ_2AH_RESERVATIONS_RELEASED);
3013c66ac9dbSNicholas Bellinger 		}
3014c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
3015c66ac9dbSNicholas Bellinger 	}
3016c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
3017c66ac9dbSNicholas Bellinger 	/*
3018c66ac9dbSNicholas Bellinger 	 * Call LUN_RESET logic upon list of struct t10_pr_registration,
3019c66ac9dbSNicholas Bellinger 	 * All received CDBs for the matching existing reservation and
3020c66ac9dbSNicholas Bellinger 	 * registrations undergo ABORT_TASK logic.
3021c66ac9dbSNicholas Bellinger 	 *
3022c66ac9dbSNicholas Bellinger 	 * From there, core_scsi3_release_preempt_and_abort() will
3023c66ac9dbSNicholas Bellinger 	 * release every registration in the list (which have already
3024c66ac9dbSNicholas Bellinger 	 * been removed from the primary pr_reg list), except the
3025c66ac9dbSNicholas Bellinger 	 * new persistent reservation holder, the calling Initiator Port.
3026c66ac9dbSNicholas Bellinger 	 */
302733ce6a87SAndy Grover 	if (preempt_type == PREEMPT_AND_ABORT) {
3028c66ac9dbSNicholas Bellinger 		core_tmr_lun_reset(dev, NULL, &preempt_and_abort_list, cmd);
3029c66ac9dbSNicholas Bellinger 		core_scsi3_release_preempt_and_abort(&preempt_and_abort_list,
3030c66ac9dbSNicholas Bellinger 						pr_reg_n);
3031c66ac9dbSNicholas Bellinger 	}
3032c66ac9dbSNicholas Bellinger 
3033459f213bSAndy Grover 	if (pr_tmpl->pr_aptpl_active)
3034459f213bSAndy Grover 		core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
3035c66ac9dbSNicholas Bellinger 
3036c66ac9dbSNicholas Bellinger 	core_scsi3_put_pr_reg(pr_reg_n);
30375951146dSAndy Grover 	core_scsi3_pr_generation(cmd->se_dev);
3038c66ac9dbSNicholas Bellinger 	return 0;
3039c66ac9dbSNicholas Bellinger }
3040c66ac9dbSNicholas Bellinger 
3041de103c93SChristoph Hellwig static sense_reason_t
3042de103c93SChristoph Hellwig core_scsi3_emulate_pro_preempt(struct se_cmd *cmd, int type, int scope,
304333ce6a87SAndy Grover 		u64 res_key, u64 sa_res_key, enum preempt_type preempt_type)
3044c66ac9dbSNicholas Bellinger {
3045c66ac9dbSNicholas Bellinger 	switch (type) {
3046c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE:
3047c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS:
3048c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
3049c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
3050c66ac9dbSNicholas Bellinger 	case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
3051c66ac9dbSNicholas Bellinger 	case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
3052de103c93SChristoph Hellwig 		return core_scsi3_pro_preempt(cmd, type, scope, res_key,
305333ce6a87SAndy Grover 					      sa_res_key, preempt_type);
3054c66ac9dbSNicholas Bellinger 	default:
30556708bb27SAndy Grover 		pr_err("SPC-3 PR: Unknown Service Action PREEMPT%s"
305633ce6a87SAndy Grover 			" Type: 0x%02x\n", (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "", type);
3057de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
3058c66ac9dbSNicholas Bellinger 	}
3059c66ac9dbSNicholas Bellinger }
3060c66ac9dbSNicholas Bellinger 
3061c66ac9dbSNicholas Bellinger 
3062de103c93SChristoph Hellwig static sense_reason_t
3063de103c93SChristoph Hellwig core_scsi3_emulate_pro_register_and_move(struct se_cmd *cmd, u64 res_key,
3064de103c93SChristoph Hellwig 		u64 sa_res_key, int aptpl, int unreg)
3065c66ac9dbSNicholas Bellinger {
3066e3d6f909SAndy Grover 	struct se_session *se_sess = cmd->se_sess;
30675951146dSAndy Grover 	struct se_device *dev = cmd->se_dev;
306828168905SJörn Engel 	struct se_dev_entry *dest_se_deve = NULL;
3069e3d6f909SAndy Grover 	struct se_lun *se_lun = cmd->se_lun;
3070c66ac9dbSNicholas Bellinger 	struct se_node_acl *pr_res_nacl, *pr_reg_nacl, *dest_node_acl = NULL;
3071c66ac9dbSNicholas Bellinger 	struct se_port *se_port;
3072c66ac9dbSNicholas Bellinger 	struct se_portal_group *se_tpg, *dest_se_tpg = NULL;
3073c66ac9dbSNicholas Bellinger 	struct target_core_fabric_ops *dest_tf_ops = NULL, *tf_ops;
3074c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_res_holder, *dest_pr_reg;
30750fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
307605d1c7c0SAndy Grover 	unsigned char *buf;
3077c66ac9dbSNicholas Bellinger 	unsigned char *initiator_str;
3078c66ac9dbSNicholas Bellinger 	char *iport_ptr = NULL, dest_iport[64], i_buf[PR_REG_ISID_ID_LEN];
3079c66ac9dbSNicholas Bellinger 	u32 tid_len, tmp_tid_len;
3080d2843c17SAndy Grover 	int new_reg = 0, type, scope, matching_iname;
3081de103c93SChristoph Hellwig 	sense_reason_t ret;
3082c66ac9dbSNicholas Bellinger 	unsigned short rtpi;
3083c66ac9dbSNicholas Bellinger 	unsigned char proto_ident;
3084c66ac9dbSNicholas Bellinger 
30856708bb27SAndy Grover 	if (!se_sess || !se_lun) {
30866708bb27SAndy Grover 		pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
3087de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3088c66ac9dbSNicholas Bellinger 	}
3089de103c93SChristoph Hellwig 
3090c66ac9dbSNicholas Bellinger 	memset(dest_iport, 0, 64);
3091c66ac9dbSNicholas Bellinger 	memset(i_buf, 0, PR_REG_ISID_ID_LEN);
3092c66ac9dbSNicholas Bellinger 	se_tpg = se_sess->se_tpg;
3093e3d6f909SAndy Grover 	tf_ops = se_tpg->se_tpg_tfo;
3094c66ac9dbSNicholas Bellinger 	/*
3095c66ac9dbSNicholas Bellinger 	 * Follow logic from spc4r17 Section 5.7.8, Table 50 --
3096c66ac9dbSNicholas Bellinger 	 *	Register behaviors for a REGISTER AND MOVE service action
3097c66ac9dbSNicholas Bellinger 	 *
3098c66ac9dbSNicholas Bellinger 	 * Locate the existing *pr_reg via struct se_node_acl pointers
3099c66ac9dbSNicholas Bellinger 	 */
31005951146dSAndy Grover 	pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
3101c66ac9dbSNicholas Bellinger 				se_sess);
31026708bb27SAndy Grover 	if (!pr_reg) {
31036708bb27SAndy Grover 		pr_err("SPC-3 PR: Unable to locate PR_REGISTERED"
3104c66ac9dbSNicholas Bellinger 			" *pr_reg for REGISTER_AND_MOVE\n");
3105de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3106c66ac9dbSNicholas Bellinger 	}
3107c66ac9dbSNicholas Bellinger 	/*
3108c66ac9dbSNicholas Bellinger 	 * The provided reservation key much match the existing reservation key
3109c66ac9dbSNicholas Bellinger 	 * provided during this initiator's I_T nexus registration.
3110c66ac9dbSNicholas Bellinger 	 */
3111c66ac9dbSNicholas Bellinger 	if (res_key != pr_reg->pr_res_key) {
31126708bb27SAndy Grover 		pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received"
3113c66ac9dbSNicholas Bellinger 			" res_key: 0x%016Lx does not match existing SA REGISTER"
3114c66ac9dbSNicholas Bellinger 			" res_key: 0x%016Lx\n", res_key, pr_reg->pr_res_key);
3115de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
3116de103c93SChristoph Hellwig 		goto out_put_pr_reg;
3117c66ac9dbSNicholas Bellinger 	}
3118c66ac9dbSNicholas Bellinger 	/*
3119c66ac9dbSNicholas Bellinger 	 * The service active reservation key needs to be non zero
3120c66ac9dbSNicholas Bellinger 	 */
31216708bb27SAndy Grover 	if (!sa_res_key) {
31226708bb27SAndy Grover 		pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received zero"
3123c66ac9dbSNicholas Bellinger 			" sa_res_key\n");
3124de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3125de103c93SChristoph Hellwig 		goto out_put_pr_reg;
3126c66ac9dbSNicholas Bellinger 	}
312705d1c7c0SAndy Grover 
3128c66ac9dbSNicholas Bellinger 	/*
3129c66ac9dbSNicholas Bellinger 	 * Determine the Relative Target Port Identifier where the reservation
3130c66ac9dbSNicholas Bellinger 	 * will be moved to for the TransportID containing SCSI initiator WWN
3131c66ac9dbSNicholas Bellinger 	 * information.
3132c66ac9dbSNicholas Bellinger 	 */
31334949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3134de103c93SChristoph Hellwig 	if (!buf) {
3135de103c93SChristoph Hellwig 		ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3136de103c93SChristoph Hellwig 		goto out_put_pr_reg;
3137de103c93SChristoph Hellwig 	}
3138de103c93SChristoph Hellwig 
3139c66ac9dbSNicholas Bellinger 	rtpi = (buf[18] & 0xff) << 8;
3140c66ac9dbSNicholas Bellinger 	rtpi |= buf[19] & 0xff;
3141c66ac9dbSNicholas Bellinger 	tid_len = (buf[20] & 0xff) << 24;
3142c66ac9dbSNicholas Bellinger 	tid_len |= (buf[21] & 0xff) << 16;
3143c66ac9dbSNicholas Bellinger 	tid_len |= (buf[22] & 0xff) << 8;
3144c66ac9dbSNicholas Bellinger 	tid_len |= buf[23] & 0xff;
31454949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
314605d1c7c0SAndy Grover 	buf = NULL;
3147c66ac9dbSNicholas Bellinger 
3148c66ac9dbSNicholas Bellinger 	if ((tid_len + 24) != cmd->data_length) {
31496708bb27SAndy Grover 		pr_err("SPC-3 PR: Illegal tid_len: %u + 24 byte header"
3150c66ac9dbSNicholas Bellinger 			" does not equal CDB data_length: %u\n", tid_len,
3151c66ac9dbSNicholas Bellinger 			cmd->data_length);
3152de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3153de103c93SChristoph Hellwig 		goto out_put_pr_reg;
3154c66ac9dbSNicholas Bellinger 	}
3155c66ac9dbSNicholas Bellinger 
3156c66ac9dbSNicholas Bellinger 	spin_lock(&dev->se_port_lock);
3157c66ac9dbSNicholas Bellinger 	list_for_each_entry(se_port, &dev->dev_sep_list, sep_list) {
3158c66ac9dbSNicholas Bellinger 		if (se_port->sep_rtpi != rtpi)
3159c66ac9dbSNicholas Bellinger 			continue;
3160c66ac9dbSNicholas Bellinger 		dest_se_tpg = se_port->sep_tpg;
31616708bb27SAndy Grover 		if (!dest_se_tpg)
3162c66ac9dbSNicholas Bellinger 			continue;
3163e3d6f909SAndy Grover 		dest_tf_ops = dest_se_tpg->se_tpg_tfo;
31646708bb27SAndy Grover 		if (!dest_tf_ops)
3165c66ac9dbSNicholas Bellinger 			continue;
3166c66ac9dbSNicholas Bellinger 
3167c66ac9dbSNicholas Bellinger 		atomic_inc(&dest_se_tpg->tpg_pr_ref_count);
3168c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_inc();
3169c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->se_port_lock);
3170c66ac9dbSNicholas Bellinger 
3171de103c93SChristoph Hellwig 		if (core_scsi3_tpg_depend_item(dest_se_tpg)) {
31726708bb27SAndy Grover 			pr_err("core_scsi3_tpg_depend_item() failed"
3173c66ac9dbSNicholas Bellinger 				" for dest_se_tpg\n");
3174c66ac9dbSNicholas Bellinger 			atomic_dec(&dest_se_tpg->tpg_pr_ref_count);
3175c66ac9dbSNicholas Bellinger 			smp_mb__after_atomic_dec();
3176de103c93SChristoph Hellwig 			ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3177de103c93SChristoph Hellwig 			goto out_put_pr_reg;
3178c66ac9dbSNicholas Bellinger 		}
3179c66ac9dbSNicholas Bellinger 
3180c66ac9dbSNicholas Bellinger 		spin_lock(&dev->se_port_lock);
3181c66ac9dbSNicholas Bellinger 		break;
3182c66ac9dbSNicholas Bellinger 	}
3183c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->se_port_lock);
3184c66ac9dbSNicholas Bellinger 
31856708bb27SAndy Grover 	if (!dest_se_tpg || !dest_tf_ops) {
31866708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3187c66ac9dbSNicholas Bellinger 			" fabric ops from Relative Target Port Identifier:"
3188c66ac9dbSNicholas Bellinger 			" %hu\n", rtpi);
3189de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3190de103c93SChristoph Hellwig 		goto out_put_pr_reg;
3191c66ac9dbSNicholas Bellinger 	}
319205d1c7c0SAndy Grover 
31934949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3194de103c93SChristoph Hellwig 	if (!buf) {
3195de103c93SChristoph Hellwig 		ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3196de103c93SChristoph Hellwig 		goto out_put_pr_reg;
3197de103c93SChristoph Hellwig 	}
3198c66ac9dbSNicholas Bellinger 	proto_ident = (buf[24] & 0x0f);
31998b1e1244SAndy Grover 
32006708bb27SAndy Grover 	pr_debug("SPC-3 PR REGISTER_AND_MOVE: Extracted Protocol Identifier:"
3201c66ac9dbSNicholas Bellinger 			" 0x%02x\n", proto_ident);
32028b1e1244SAndy Grover 
3203c66ac9dbSNicholas Bellinger 	if (proto_ident != dest_tf_ops->get_fabric_proto_ident(dest_se_tpg)) {
32046708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER_AND_MOVE: Received"
3205c66ac9dbSNicholas Bellinger 			" proto_ident: 0x%02x does not match ident: 0x%02x"
3206c66ac9dbSNicholas Bellinger 			" from fabric: %s\n", proto_ident,
3207c66ac9dbSNicholas Bellinger 			dest_tf_ops->get_fabric_proto_ident(dest_se_tpg),
3208c66ac9dbSNicholas Bellinger 			dest_tf_ops->get_fabric_name());
3209de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3210c66ac9dbSNicholas Bellinger 		goto out;
3211c66ac9dbSNicholas Bellinger 	}
3212c66ac9dbSNicholas Bellinger 	if (dest_tf_ops->tpg_parse_pr_out_transport_id == NULL) {
32136708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER_AND_MOVE: Fabric does not"
3214c66ac9dbSNicholas Bellinger 			" containg a valid tpg_parse_pr_out_transport_id"
3215c66ac9dbSNicholas Bellinger 			" function pointer\n");
3216de103c93SChristoph Hellwig 		ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3217c66ac9dbSNicholas Bellinger 		goto out;
3218c66ac9dbSNicholas Bellinger 	}
3219c66ac9dbSNicholas Bellinger 	initiator_str = dest_tf_ops->tpg_parse_pr_out_transport_id(dest_se_tpg,
3220c66ac9dbSNicholas Bellinger 			(const char *)&buf[24], &tmp_tid_len, &iport_ptr);
32216708bb27SAndy Grover 	if (!initiator_str) {
32226708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3223c66ac9dbSNicholas Bellinger 			" initiator_str from Transport ID\n");
3224de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3225c66ac9dbSNicholas Bellinger 		goto out;
3226c66ac9dbSNicholas Bellinger 	}
3227c66ac9dbSNicholas Bellinger 
32284949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
322905d1c7c0SAndy Grover 	buf = NULL;
323005d1c7c0SAndy Grover 
32316708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Extracted initiator %s identifier: %s"
3232c66ac9dbSNicholas Bellinger 		" %s\n", dest_tf_ops->get_fabric_name(), (iport_ptr != NULL) ?
3233c66ac9dbSNicholas Bellinger 		"port" : "device", initiator_str, (iport_ptr != NULL) ?
3234c66ac9dbSNicholas Bellinger 		iport_ptr : "");
3235c66ac9dbSNicholas Bellinger 	/*
3236c66ac9dbSNicholas Bellinger 	 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3237c66ac9dbSNicholas Bellinger 	 * action specifies a TransportID that is the same as the initiator port
3238c66ac9dbSNicholas Bellinger 	 * of the I_T nexus for the command received, then the command shall
3239c66ac9dbSNicholas Bellinger 	 * be terminated with CHECK CONDITION status, with the sense key set to
3240c66ac9dbSNicholas Bellinger 	 * ILLEGAL REQUEST, and the additional sense code set to INVALID FIELD
3241c66ac9dbSNicholas Bellinger 	 * IN PARAMETER LIST.
3242c66ac9dbSNicholas Bellinger 	 */
3243c66ac9dbSNicholas Bellinger 	pr_reg_nacl = pr_reg->pr_reg_nacl;
3244c66ac9dbSNicholas Bellinger 	matching_iname = (!strcmp(initiator_str,
3245c66ac9dbSNicholas Bellinger 				  pr_reg_nacl->initiatorname)) ? 1 : 0;
32466708bb27SAndy Grover 	if (!matching_iname)
3247c66ac9dbSNicholas Bellinger 		goto after_iport_check;
3248c66ac9dbSNicholas Bellinger 
32496708bb27SAndy Grover 	if (!iport_ptr || !pr_reg->isid_present_at_reg) {
32506708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s"
3251c66ac9dbSNicholas Bellinger 			" matches: %s on received I_T Nexus\n", initiator_str,
3252c66ac9dbSNicholas Bellinger 			pr_reg_nacl->initiatorname);
3253de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3254c66ac9dbSNicholas Bellinger 		goto out;
3255c66ac9dbSNicholas Bellinger 	}
32566708bb27SAndy Grover 	if (!strcmp(iport_ptr, pr_reg->pr_reg_isid)) {
32576708bb27SAndy Grover 		pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s %s"
3258c66ac9dbSNicholas Bellinger 			" matches: %s %s on received I_T Nexus\n",
3259c66ac9dbSNicholas Bellinger 			initiator_str, iport_ptr, pr_reg_nacl->initiatorname,
3260c66ac9dbSNicholas Bellinger 			pr_reg->pr_reg_isid);
3261de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3262c66ac9dbSNicholas Bellinger 		goto out;
3263c66ac9dbSNicholas Bellinger 	}
3264c66ac9dbSNicholas Bellinger after_iport_check:
3265c66ac9dbSNicholas Bellinger 	/*
3266c66ac9dbSNicholas Bellinger 	 * Locate the destination struct se_node_acl from the received Transport ID
3267c66ac9dbSNicholas Bellinger 	 */
326828638887SRoland Dreier 	spin_lock_irq(&dest_se_tpg->acl_node_lock);
3269c66ac9dbSNicholas Bellinger 	dest_node_acl = __core_tpg_get_initiator_node_acl(dest_se_tpg,
3270c66ac9dbSNicholas Bellinger 				initiator_str);
3271c66ac9dbSNicholas Bellinger 	if (dest_node_acl) {
3272c66ac9dbSNicholas Bellinger 		atomic_inc(&dest_node_acl->acl_pr_ref_count);
3273c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_inc();
3274c66ac9dbSNicholas Bellinger 	}
327528638887SRoland Dreier 	spin_unlock_irq(&dest_se_tpg->acl_node_lock);
3276c66ac9dbSNicholas Bellinger 
32776708bb27SAndy Grover 	if (!dest_node_acl) {
32786708bb27SAndy Grover 		pr_err("Unable to locate %s dest_node_acl for"
3279c66ac9dbSNicholas Bellinger 			" TransportID%s\n", dest_tf_ops->get_fabric_name(),
3280c66ac9dbSNicholas Bellinger 			initiator_str);
3281de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3282c66ac9dbSNicholas Bellinger 		goto out;
3283c66ac9dbSNicholas Bellinger 	}
3284de103c93SChristoph Hellwig 
3285de103c93SChristoph Hellwig 	if (core_scsi3_nodeacl_depend_item(dest_node_acl)) {
32866708bb27SAndy Grover 		pr_err("core_scsi3_nodeacl_depend_item() for"
3287c66ac9dbSNicholas Bellinger 			" dest_node_acl\n");
3288c66ac9dbSNicholas Bellinger 		atomic_dec(&dest_node_acl->acl_pr_ref_count);
3289c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_dec();
3290c66ac9dbSNicholas Bellinger 		dest_node_acl = NULL;
3291de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3292c66ac9dbSNicholas Bellinger 		goto out;
3293c66ac9dbSNicholas Bellinger 	}
32948b1e1244SAndy Grover 
32956708bb27SAndy Grover 	pr_debug("SPC-3 PR REGISTER_AND_MOVE: Found %s dest_node_acl:"
3296c66ac9dbSNicholas Bellinger 		" %s from TransportID\n", dest_tf_ops->get_fabric_name(),
3297c66ac9dbSNicholas Bellinger 		dest_node_acl->initiatorname);
32988b1e1244SAndy Grover 
3299c66ac9dbSNicholas Bellinger 	/*
3300c66ac9dbSNicholas Bellinger 	 * Locate the struct se_dev_entry pointer for the matching RELATIVE TARGET
3301c66ac9dbSNicholas Bellinger 	 * PORT IDENTIFIER.
3302c66ac9dbSNicholas Bellinger 	 */
3303c66ac9dbSNicholas Bellinger 	dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl, rtpi);
33046708bb27SAndy Grover 	if (!dest_se_deve) {
33056708bb27SAndy Grover 		pr_err("Unable to locate %s dest_se_deve from RTPI:"
3306c66ac9dbSNicholas Bellinger 			" %hu\n",  dest_tf_ops->get_fabric_name(), rtpi);
3307de103c93SChristoph Hellwig 		ret = TCM_INVALID_PARAMETER_LIST;
3308c66ac9dbSNicholas Bellinger 		goto out;
3309c66ac9dbSNicholas Bellinger 	}
3310c66ac9dbSNicholas Bellinger 
3311de103c93SChristoph Hellwig 	if (core_scsi3_lunacl_depend_item(dest_se_deve)) {
33126708bb27SAndy Grover 		pr_err("core_scsi3_lunacl_depend_item() failed\n");
3313c66ac9dbSNicholas Bellinger 		atomic_dec(&dest_se_deve->pr_ref_count);
3314c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_dec();
3315c66ac9dbSNicholas Bellinger 		dest_se_deve = NULL;
3316de103c93SChristoph Hellwig 		ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3317c66ac9dbSNicholas Bellinger 		goto out;
3318c66ac9dbSNicholas Bellinger 	}
33198b1e1244SAndy Grover 
33206708bb27SAndy Grover 	pr_debug("SPC-3 PR REGISTER_AND_MOVE: Located %s node %s LUN"
3321c66ac9dbSNicholas Bellinger 		" ACL for dest_se_deve->mapped_lun: %u\n",
3322c66ac9dbSNicholas Bellinger 		dest_tf_ops->get_fabric_name(), dest_node_acl->initiatorname,
3323c66ac9dbSNicholas Bellinger 		dest_se_deve->mapped_lun);
33248b1e1244SAndy Grover 
3325c66ac9dbSNicholas Bellinger 	/*
3326c66ac9dbSNicholas Bellinger 	 * A persistent reservation needs to already existing in order to
3327c66ac9dbSNicholas Bellinger 	 * successfully complete the REGISTER_AND_MOVE service action..
3328c66ac9dbSNicholas Bellinger 	 */
3329c66ac9dbSNicholas Bellinger 	spin_lock(&dev->dev_reservation_lock);
3330c66ac9dbSNicholas Bellinger 	pr_res_holder = dev->dev_pr_res_holder;
33316708bb27SAndy Grover 	if (!pr_res_holder) {
33326708bb27SAndy Grover 		pr_warn("SPC-3 PR REGISTER_AND_MOVE: No reservation"
3333c66ac9dbSNicholas Bellinger 			" currently held\n");
3334c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
3335de103c93SChristoph Hellwig 		ret = TCM_INVALID_CDB_FIELD;
3336c66ac9dbSNicholas Bellinger 		goto out;
3337c66ac9dbSNicholas Bellinger 	}
3338c66ac9dbSNicholas Bellinger 	/*
3339c66ac9dbSNicholas Bellinger 	 * The received on I_T Nexus must be the reservation holder.
3340c66ac9dbSNicholas Bellinger 	 *
3341c66ac9dbSNicholas Bellinger 	 * From spc4r17 section 5.7.8  Table 50 --
3342c66ac9dbSNicholas Bellinger 	 * 	Register behaviors for a REGISTER AND MOVE service action
3343c66ac9dbSNicholas Bellinger 	 */
3344c66ac9dbSNicholas Bellinger 	if (pr_res_holder != pr_reg) {
33456708bb27SAndy Grover 		pr_warn("SPC-3 PR REGISTER_AND_MOVE: Calling I_T"
3346c66ac9dbSNicholas Bellinger 			" Nexus is not reservation holder\n");
3347c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
3348de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
3349c66ac9dbSNicholas Bellinger 		goto out;
3350c66ac9dbSNicholas Bellinger 	}
3351c66ac9dbSNicholas Bellinger 	/*
3352c66ac9dbSNicholas Bellinger 	 * From spc4r17 section 5.7.8: registering and moving reservation
3353c66ac9dbSNicholas Bellinger 	 *
3354c66ac9dbSNicholas Bellinger 	 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3355c66ac9dbSNicholas Bellinger 	 * action is received and the established persistent reservation is a
3356c66ac9dbSNicholas Bellinger 	 * Write Exclusive - All Registrants type or Exclusive Access -
3357c66ac9dbSNicholas Bellinger 	 * All Registrants type reservation, then the command shall be completed
3358c66ac9dbSNicholas Bellinger 	 * with RESERVATION CONFLICT status.
3359c66ac9dbSNicholas Bellinger 	 */
3360c66ac9dbSNicholas Bellinger 	if ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
3361c66ac9dbSNicholas Bellinger 	    (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
33626708bb27SAndy Grover 		pr_warn("SPC-3 PR REGISTER_AND_MOVE: Unable to move"
3363c66ac9dbSNicholas Bellinger 			" reservation for type: %s\n",
3364c66ac9dbSNicholas Bellinger 			core_scsi3_pr_dump_type(pr_res_holder->pr_res_type));
3365c66ac9dbSNicholas Bellinger 		spin_unlock(&dev->dev_reservation_lock);
3366de103c93SChristoph Hellwig 		ret = TCM_RESERVATION_CONFLICT;
3367c66ac9dbSNicholas Bellinger 		goto out;
3368c66ac9dbSNicholas Bellinger 	}
3369c66ac9dbSNicholas Bellinger 	pr_res_nacl = pr_res_holder->pr_reg_nacl;
3370c66ac9dbSNicholas Bellinger 	/*
3371c66ac9dbSNicholas Bellinger 	 * b) Ignore the contents of the (received) SCOPE and TYPE fields;
3372c66ac9dbSNicholas Bellinger 	 */
3373c66ac9dbSNicholas Bellinger 	type = pr_res_holder->pr_res_type;
3374c66ac9dbSNicholas Bellinger 	scope = pr_res_holder->pr_res_type;
3375c66ac9dbSNicholas Bellinger 	/*
3376c66ac9dbSNicholas Bellinger 	 * c) Associate the reservation key specified in the SERVICE ACTION
3377c66ac9dbSNicholas Bellinger 	 *    RESERVATION KEY field with the I_T nexus specified as the
3378c66ac9dbSNicholas Bellinger 	 *    destination of the register and move, where:
3379c66ac9dbSNicholas Bellinger 	 *    A) The I_T nexus is specified by the TransportID and the
3380c66ac9dbSNicholas Bellinger 	 *	 RELATIVE TARGET PORT IDENTIFIER field (see 6.14.4); and
3381c66ac9dbSNicholas Bellinger 	 *    B) Regardless of the TransportID format used, the association for
3382c66ac9dbSNicholas Bellinger 	 *       the initiator port is based on either the initiator port name
3383c66ac9dbSNicholas Bellinger 	 *       (see 3.1.71) on SCSI transport protocols where port names are
3384c66ac9dbSNicholas Bellinger 	 *       required or the initiator port identifier (see 3.1.70) on SCSI
3385c66ac9dbSNicholas Bellinger 	 *       transport protocols where port names are not required;
3386c66ac9dbSNicholas Bellinger 	 * d) Register the reservation key specified in the SERVICE ACTION
3387c66ac9dbSNicholas Bellinger 	 *    RESERVATION KEY field;
3388c66ac9dbSNicholas Bellinger 	 * e) Retain the reservation key specified in the SERVICE ACTION
3389c66ac9dbSNicholas Bellinger 	 *    RESERVATION KEY field and associated information;
3390c66ac9dbSNicholas Bellinger 	 *
3391c66ac9dbSNicholas Bellinger 	 * Also, It is not an error for a REGISTER AND MOVE service action to
3392c66ac9dbSNicholas Bellinger 	 * register an I_T nexus that is already registered with the same
3393c66ac9dbSNicholas Bellinger 	 * reservation key or a different reservation key.
3394c66ac9dbSNicholas Bellinger 	 */
3395c66ac9dbSNicholas Bellinger 	dest_pr_reg = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
3396c66ac9dbSNicholas Bellinger 					iport_ptr);
33976708bb27SAndy Grover 	if (!dest_pr_reg) {
3398de103c93SChristoph Hellwig 		if (core_scsi3_alloc_registration(cmd->se_dev,
3399c66ac9dbSNicholas Bellinger 				dest_node_acl, dest_se_deve, iport_ptr,
3400de103c93SChristoph Hellwig 				sa_res_key, 0, aptpl, 2, 1)) {
3401c66ac9dbSNicholas Bellinger 			spin_unlock(&dev->dev_reservation_lock);
3402de103c93SChristoph Hellwig 			ret = TCM_INVALID_PARAMETER_LIST;
3403c66ac9dbSNicholas Bellinger 			goto out;
3404c66ac9dbSNicholas Bellinger 		}
3405c66ac9dbSNicholas Bellinger 		dest_pr_reg = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
3406c66ac9dbSNicholas Bellinger 						iport_ptr);
3407c66ac9dbSNicholas Bellinger 		new_reg = 1;
3408c66ac9dbSNicholas Bellinger 	}
3409c66ac9dbSNicholas Bellinger 	/*
3410c66ac9dbSNicholas Bellinger 	 * f) Release the persistent reservation for the persistent reservation
3411c66ac9dbSNicholas Bellinger 	 *    holder (i.e., the I_T nexus on which the
3412c66ac9dbSNicholas Bellinger 	 */
3413c66ac9dbSNicholas Bellinger 	__core_scsi3_complete_pro_release(dev, pr_res_nacl,
3414c66ac9dbSNicholas Bellinger 			dev->dev_pr_res_holder, 0);
3415c66ac9dbSNicholas Bellinger 	/*
3416c66ac9dbSNicholas Bellinger 	 * g) Move the persistent reservation to the specified I_T nexus using
3417c66ac9dbSNicholas Bellinger 	 *    the same scope and type as the persistent reservation released in
3418c66ac9dbSNicholas Bellinger 	 *    item f); and
3419c66ac9dbSNicholas Bellinger 	 */
3420c66ac9dbSNicholas Bellinger 	dev->dev_pr_res_holder = dest_pr_reg;
3421c66ac9dbSNicholas Bellinger 	dest_pr_reg->pr_res_holder = 1;
3422c66ac9dbSNicholas Bellinger 	dest_pr_reg->pr_res_type = type;
3423c66ac9dbSNicholas Bellinger 	pr_reg->pr_res_scope = scope;
3424d2843c17SAndy Grover 	core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
3425c66ac9dbSNicholas Bellinger 	/*
3426c66ac9dbSNicholas Bellinger 	 * Increment PRGeneration for existing registrations..
3427c66ac9dbSNicholas Bellinger 	 */
34286708bb27SAndy Grover 	if (!new_reg)
3429c66ac9dbSNicholas Bellinger 		dest_pr_reg->pr_res_generation = pr_tmpl->pr_generation++;
3430c66ac9dbSNicholas Bellinger 	spin_unlock(&dev->dev_reservation_lock);
3431c66ac9dbSNicholas Bellinger 
34326708bb27SAndy Grover 	pr_debug("SPC-3 PR [%s] Service Action: REGISTER_AND_MOVE"
3433c66ac9dbSNicholas Bellinger 		" created new reservation holder TYPE: %s on object RTPI:"
3434c66ac9dbSNicholas Bellinger 		" %hu  PRGeneration: 0x%08x\n", dest_tf_ops->get_fabric_name(),
3435c66ac9dbSNicholas Bellinger 		core_scsi3_pr_dump_type(type), rtpi,
3436c66ac9dbSNicholas Bellinger 		dest_pr_reg->pr_res_generation);
34376708bb27SAndy Grover 	pr_debug("SPC-3 PR Successfully moved reservation from"
3438c66ac9dbSNicholas Bellinger 		" %s Fabric Node: %s%s -> %s Fabric Node: %s %s\n",
3439c66ac9dbSNicholas Bellinger 		tf_ops->get_fabric_name(), pr_reg_nacl->initiatorname,
3440d2843c17SAndy Grover 		i_buf, dest_tf_ops->get_fabric_name(),
3441c66ac9dbSNicholas Bellinger 		dest_node_acl->initiatorname, (iport_ptr != NULL) ?
3442c66ac9dbSNicholas Bellinger 		iport_ptr : "");
3443c66ac9dbSNicholas Bellinger 	/*
3444c66ac9dbSNicholas Bellinger 	 * It is now safe to release configfs group dependencies for destination
3445c66ac9dbSNicholas Bellinger 	 * of Transport ID Initiator Device/Port Identifier
3446c66ac9dbSNicholas Bellinger 	 */
3447c66ac9dbSNicholas Bellinger 	core_scsi3_lunacl_undepend_item(dest_se_deve);
3448c66ac9dbSNicholas Bellinger 	core_scsi3_nodeacl_undepend_item(dest_node_acl);
3449c66ac9dbSNicholas Bellinger 	core_scsi3_tpg_undepend_item(dest_se_tpg);
3450c66ac9dbSNicholas Bellinger 	/*
3451c66ac9dbSNicholas Bellinger 	 * h) If the UNREG bit is set to one, unregister (see 5.7.11.3) the I_T
3452c66ac9dbSNicholas Bellinger 	 * nexus on which PERSISTENT RESERVE OUT command was received.
3453c66ac9dbSNicholas Bellinger 	 */
3454c66ac9dbSNicholas Bellinger 	if (unreg) {
3455c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
3456c66ac9dbSNicholas Bellinger 		__core_scsi3_free_registration(dev, pr_reg, NULL, 1);
3457c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
3458c66ac9dbSNicholas Bellinger 	} else
3459c66ac9dbSNicholas Bellinger 		core_scsi3_put_pr_reg(pr_reg);
3460c66ac9dbSNicholas Bellinger 
3461459f213bSAndy Grover 	core_scsi3_update_and_write_aptpl(cmd->se_dev, aptpl);
3462c66ac9dbSNicholas Bellinger 
34634949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
346405d1c7c0SAndy Grover 
3465c66ac9dbSNicholas Bellinger 	core_scsi3_put_pr_reg(dest_pr_reg);
3466c66ac9dbSNicholas Bellinger 	return 0;
3467c66ac9dbSNicholas Bellinger out:
346805d1c7c0SAndy Grover 	if (buf)
34694949314cSAndy Grover 		transport_kunmap_data_sg(cmd);
3470c66ac9dbSNicholas Bellinger 	if (dest_se_deve)
3471c66ac9dbSNicholas Bellinger 		core_scsi3_lunacl_undepend_item(dest_se_deve);
3472c66ac9dbSNicholas Bellinger 	if (dest_node_acl)
3473c66ac9dbSNicholas Bellinger 		core_scsi3_nodeacl_undepend_item(dest_node_acl);
3474c66ac9dbSNicholas Bellinger 	core_scsi3_tpg_undepend_item(dest_se_tpg);
3475de103c93SChristoph Hellwig 
3476de103c93SChristoph Hellwig out_put_pr_reg:
3477c66ac9dbSNicholas Bellinger 	core_scsi3_put_pr_reg(pr_reg);
3478c66ac9dbSNicholas Bellinger 	return ret;
3479c66ac9dbSNicholas Bellinger }
3480c66ac9dbSNicholas Bellinger 
3481c66ac9dbSNicholas Bellinger static unsigned long long core_scsi3_extract_reservation_key(unsigned char *cdb)
3482c66ac9dbSNicholas Bellinger {
3483c66ac9dbSNicholas Bellinger 	unsigned int __v1, __v2;
3484c66ac9dbSNicholas Bellinger 
3485c66ac9dbSNicholas Bellinger 	__v1 = (cdb[0] << 24) | (cdb[1] << 16) | (cdb[2] << 8) | cdb[3];
3486c66ac9dbSNicholas Bellinger 	__v2 = (cdb[4] << 24) | (cdb[5] << 16) | (cdb[6] << 8) | cdb[7];
3487c66ac9dbSNicholas Bellinger 
3488c66ac9dbSNicholas Bellinger 	return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
3489c66ac9dbSNicholas Bellinger }
3490c66ac9dbSNicholas Bellinger 
3491c66ac9dbSNicholas Bellinger /*
3492c66ac9dbSNicholas Bellinger  * See spc4r17 section 6.14 Table 170
3493c66ac9dbSNicholas Bellinger  */
3494de103c93SChristoph Hellwig sense_reason_t
3495de103c93SChristoph Hellwig target_scsi3_emulate_pr_out(struct se_cmd *cmd)
3496c66ac9dbSNicholas Bellinger {
3497617c0e06SChristoph Hellwig 	unsigned char *cdb = &cmd->t_task_cdb[0];
349805d1c7c0SAndy Grover 	unsigned char *buf;
3499c66ac9dbSNicholas Bellinger 	u64 res_key, sa_res_key;
3500c66ac9dbSNicholas Bellinger 	int sa, scope, type, aptpl;
3501c66ac9dbSNicholas Bellinger 	int spec_i_pt = 0, all_tg_pt = 0, unreg = 0;
3502de103c93SChristoph Hellwig 	sense_reason_t ret;
3503617c0e06SChristoph Hellwig 
3504617c0e06SChristoph Hellwig 	/*
3505617c0e06SChristoph Hellwig 	 * Following spc2r20 5.5.1 Reservations overview:
3506617c0e06SChristoph Hellwig 	 *
3507617c0e06SChristoph Hellwig 	 * If a logical unit has been reserved by any RESERVE command and is
3508617c0e06SChristoph Hellwig 	 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
3509617c0e06SChristoph Hellwig 	 * PERSISTENT RESERVE OUT commands shall conflict regardless of
3510617c0e06SChristoph Hellwig 	 * initiator or service action and shall terminate with a RESERVATION
3511617c0e06SChristoph Hellwig 	 * CONFLICT status.
3512617c0e06SChristoph Hellwig 	 */
35130fd97ccfSChristoph Hellwig 	if (cmd->se_dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS) {
3514617c0e06SChristoph Hellwig 		pr_err("Received PERSISTENT_RESERVE CDB while legacy"
3515617c0e06SChristoph Hellwig 			" SPC-2 reservation is held, returning"
3516617c0e06SChristoph Hellwig 			" RESERVATION_CONFLICT\n");
3517de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
3518617c0e06SChristoph Hellwig 	}
3519617c0e06SChristoph Hellwig 
3520c66ac9dbSNicholas Bellinger 	/*
3521c66ac9dbSNicholas Bellinger 	 * FIXME: A NULL struct se_session pointer means an this is not coming from
3522c66ac9dbSNicholas Bellinger 	 * a $FABRIC_MOD's nexus, but from internal passthrough ops.
3523c66ac9dbSNicholas Bellinger 	 */
3524de103c93SChristoph Hellwig 	if (!cmd->se_sess)
3525de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3526c66ac9dbSNicholas Bellinger 
3527c66ac9dbSNicholas Bellinger 	if (cmd->data_length < 24) {
35286708bb27SAndy Grover 		pr_warn("SPC-PR: Received PR OUT parameter list"
3529c66ac9dbSNicholas Bellinger 			" length too small: %u\n", cmd->data_length);
3530de103c93SChristoph Hellwig 		return TCM_INVALID_PARAMETER_LIST;
3531c66ac9dbSNicholas Bellinger 	}
3532de103c93SChristoph Hellwig 
3533c66ac9dbSNicholas Bellinger 	/*
3534c66ac9dbSNicholas Bellinger 	 * From the PERSISTENT_RESERVE_OUT command descriptor block (CDB)
3535c66ac9dbSNicholas Bellinger 	 */
3536c66ac9dbSNicholas Bellinger 	sa = (cdb[1] & 0x1f);
3537c66ac9dbSNicholas Bellinger 	scope = (cdb[2] & 0xf0);
3538c66ac9dbSNicholas Bellinger 	type = (cdb[2] & 0x0f);
353905d1c7c0SAndy Grover 
35404949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3541de103c93SChristoph Hellwig 	if (!buf)
3542de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3543de103c93SChristoph Hellwig 
3544c66ac9dbSNicholas Bellinger 	/*
3545c66ac9dbSNicholas Bellinger 	 * From PERSISTENT_RESERVE_OUT parameter list (payload)
3546c66ac9dbSNicholas Bellinger 	 */
3547c66ac9dbSNicholas Bellinger 	res_key = core_scsi3_extract_reservation_key(&buf[0]);
3548c66ac9dbSNicholas Bellinger 	sa_res_key = core_scsi3_extract_reservation_key(&buf[8]);
3549c66ac9dbSNicholas Bellinger 	/*
3550c66ac9dbSNicholas Bellinger 	 * REGISTER_AND_MOVE uses a different SA parameter list containing
3551c66ac9dbSNicholas Bellinger 	 * SCSI TransportIDs.
3552c66ac9dbSNicholas Bellinger 	 */
3553c66ac9dbSNicholas Bellinger 	if (sa != PRO_REGISTER_AND_MOVE) {
3554c66ac9dbSNicholas Bellinger 		spec_i_pt = (buf[20] & 0x08);
3555c66ac9dbSNicholas Bellinger 		all_tg_pt = (buf[20] & 0x04);
3556c66ac9dbSNicholas Bellinger 		aptpl = (buf[20] & 0x01);
3557c66ac9dbSNicholas Bellinger 	} else {
3558c66ac9dbSNicholas Bellinger 		aptpl = (buf[17] & 0x01);
3559c66ac9dbSNicholas Bellinger 		unreg = (buf[17] & 0x02);
3560c66ac9dbSNicholas Bellinger 	}
35614949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
356205d1c7c0SAndy Grover 	buf = NULL;
356305d1c7c0SAndy Grover 
3564c66ac9dbSNicholas Bellinger 	/*
3565c66ac9dbSNicholas Bellinger 	 * SPEC_I_PT=1 is only valid for Service action: REGISTER
3566c66ac9dbSNicholas Bellinger 	 */
3567de103c93SChristoph Hellwig 	if (spec_i_pt && ((cdb[1] & 0x1f) != PRO_REGISTER))
3568de103c93SChristoph Hellwig 		return TCM_INVALID_PARAMETER_LIST;
3569d29a5b6aSChristoph Hellwig 
3570c66ac9dbSNicholas Bellinger 	/*
3571c66ac9dbSNicholas Bellinger 	 * From spc4r17 section 6.14:
3572c66ac9dbSNicholas Bellinger 	 *
3573c66ac9dbSNicholas Bellinger 	 * If the SPEC_I_PT bit is set to zero, the service action is not
3574c66ac9dbSNicholas Bellinger 	 * REGISTER AND MOVE, and the parameter list length is not 24, then
3575c66ac9dbSNicholas Bellinger 	 * the command shall be terminated with CHECK CONDITION status, with
3576c66ac9dbSNicholas Bellinger 	 * the sense key set to ILLEGAL REQUEST, and the additional sense
3577c66ac9dbSNicholas Bellinger 	 * code set to PARAMETER LIST LENGTH ERROR.
3578c66ac9dbSNicholas Bellinger 	 */
35796708bb27SAndy Grover 	if (!spec_i_pt && ((cdb[1] & 0x1f) != PRO_REGISTER_AND_MOVE) &&
3580c66ac9dbSNicholas Bellinger 	    (cmd->data_length != 24)) {
35816708bb27SAndy Grover 		pr_warn("SPC-PR: Received PR OUT illegal parameter"
3582c66ac9dbSNicholas Bellinger 			" list length: %u\n", cmd->data_length);
3583de103c93SChristoph Hellwig 		return TCM_INVALID_PARAMETER_LIST;
3584c66ac9dbSNicholas Bellinger 	}
3585de103c93SChristoph Hellwig 
3586c66ac9dbSNicholas Bellinger 	/*
3587c66ac9dbSNicholas Bellinger 	 * (core_scsi3_emulate_pro_* function parameters
3588c66ac9dbSNicholas Bellinger 	 * are defined by spc4r17 Table 174:
3589c66ac9dbSNicholas Bellinger 	 * PERSISTENT_RESERVE_OUT service actions and valid parameters.
3590c66ac9dbSNicholas Bellinger 	 */
3591c66ac9dbSNicholas Bellinger 	switch (sa) {
3592c66ac9dbSNicholas Bellinger 	case PRO_REGISTER:
3593d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_register(cmd,
359433ce6a87SAndy Grover 			res_key, sa_res_key, aptpl, all_tg_pt, spec_i_pt, REGISTER);
3595d29a5b6aSChristoph Hellwig 		break;
3596c66ac9dbSNicholas Bellinger 	case PRO_RESERVE:
3597d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_reserve(cmd, type, scope, res_key);
3598d29a5b6aSChristoph Hellwig 		break;
3599c66ac9dbSNicholas Bellinger 	case PRO_RELEASE:
3600d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_release(cmd, type, scope, res_key);
3601d29a5b6aSChristoph Hellwig 		break;
3602c66ac9dbSNicholas Bellinger 	case PRO_CLEAR:
3603d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_clear(cmd, res_key);
3604d29a5b6aSChristoph Hellwig 		break;
3605c66ac9dbSNicholas Bellinger 	case PRO_PREEMPT:
3606d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_preempt(cmd, type, scope,
360733ce6a87SAndy Grover 					res_key, sa_res_key, PREEMPT);
3608d29a5b6aSChristoph Hellwig 		break;
3609c66ac9dbSNicholas Bellinger 	case PRO_PREEMPT_AND_ABORT:
3610d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_preempt(cmd, type, scope,
361133ce6a87SAndy Grover 					res_key, sa_res_key, PREEMPT_AND_ABORT);
3612d29a5b6aSChristoph Hellwig 		break;
3613c66ac9dbSNicholas Bellinger 	case PRO_REGISTER_AND_IGNORE_EXISTING_KEY:
3614d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_register(cmd,
361533ce6a87SAndy Grover 			0, sa_res_key, aptpl, all_tg_pt, spec_i_pt, REGISTER_AND_IGNORE_EXISTING_KEY);
3616d29a5b6aSChristoph Hellwig 		break;
3617c66ac9dbSNicholas Bellinger 	case PRO_REGISTER_AND_MOVE:
3618d29a5b6aSChristoph Hellwig 		ret = core_scsi3_emulate_pro_register_and_move(cmd, res_key,
3619c66ac9dbSNicholas Bellinger 				sa_res_key, aptpl, unreg);
3620d29a5b6aSChristoph Hellwig 		break;
3621c66ac9dbSNicholas Bellinger 	default:
36226708bb27SAndy Grover 		pr_err("Unknown PERSISTENT_RESERVE_OUT service"
3623c66ac9dbSNicholas Bellinger 			" action: 0x%02x\n", cdb[1] & 0x1f);
3624de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
3625c66ac9dbSNicholas Bellinger 	}
3626c66ac9dbSNicholas Bellinger 
36276bb35e00SChristoph Hellwig 	if (!ret)
36286bb35e00SChristoph Hellwig 		target_complete_cmd(cmd, GOOD);
3629d29a5b6aSChristoph Hellwig 	return ret;
3630c66ac9dbSNicholas Bellinger }
3631c66ac9dbSNicholas Bellinger 
3632c66ac9dbSNicholas Bellinger /*
3633c66ac9dbSNicholas Bellinger  * PERSISTENT_RESERVE_IN Service Action READ_KEYS
3634c66ac9dbSNicholas Bellinger  *
3635c66ac9dbSNicholas Bellinger  * See spc4r17 section 5.7.6.2 and section 6.13.2, Table 160
3636c66ac9dbSNicholas Bellinger  */
3637de103c93SChristoph Hellwig static sense_reason_t
3638de103c93SChristoph Hellwig core_scsi3_pri_read_keys(struct se_cmd *cmd)
3639c66ac9dbSNicholas Bellinger {
36400fd97ccfSChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
3641c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg;
364205d1c7c0SAndy Grover 	unsigned char *buf;
3643c66ac9dbSNicholas Bellinger 	u32 add_len = 0, off = 8;
3644c66ac9dbSNicholas Bellinger 
3645c66ac9dbSNicholas Bellinger 	if (cmd->data_length < 8) {
36466708bb27SAndy Grover 		pr_err("PRIN SA READ_KEYS SCSI Data Length: %u"
3647c66ac9dbSNicholas Bellinger 			" too small\n", cmd->data_length);
3648de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
3649c66ac9dbSNicholas Bellinger 	}
3650c66ac9dbSNicholas Bellinger 
36514949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3652de103c93SChristoph Hellwig 	if (!buf)
3653de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3654de103c93SChristoph Hellwig 
36550fd97ccfSChristoph Hellwig 	buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
36560fd97ccfSChristoph Hellwig 	buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
36570fd97ccfSChristoph Hellwig 	buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
36580fd97ccfSChristoph Hellwig 	buf[3] = (dev->t10_pr.pr_generation & 0xff);
3659c66ac9dbSNicholas Bellinger 
36600fd97ccfSChristoph Hellwig 	spin_lock(&dev->t10_pr.registration_lock);
36610fd97ccfSChristoph Hellwig 	list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
3662c66ac9dbSNicholas Bellinger 			pr_reg_list) {
3663c66ac9dbSNicholas Bellinger 		/*
3664c66ac9dbSNicholas Bellinger 		 * Check for overflow of 8byte PRI READ_KEYS payload and
3665c66ac9dbSNicholas Bellinger 		 * next reservation key list descriptor.
3666c66ac9dbSNicholas Bellinger 		 */
3667c66ac9dbSNicholas Bellinger 		if ((add_len + 8) > (cmd->data_length - 8))
3668c66ac9dbSNicholas Bellinger 			break;
3669c66ac9dbSNicholas Bellinger 
3670c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 56) & 0xff);
3671c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 48) & 0xff);
3672c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 40) & 0xff);
3673c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 32) & 0xff);
3674c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 24) & 0xff);
3675c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 16) & 0xff);
3676c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 8) & 0xff);
3677c66ac9dbSNicholas Bellinger 		buf[off++] = (pr_reg->pr_res_key & 0xff);
3678c66ac9dbSNicholas Bellinger 
3679c66ac9dbSNicholas Bellinger 		add_len += 8;
3680c66ac9dbSNicholas Bellinger 	}
36810fd97ccfSChristoph Hellwig 	spin_unlock(&dev->t10_pr.registration_lock);
3682c66ac9dbSNicholas Bellinger 
3683c66ac9dbSNicholas Bellinger 	buf[4] = ((add_len >> 24) & 0xff);
3684c66ac9dbSNicholas Bellinger 	buf[5] = ((add_len >> 16) & 0xff);
3685c66ac9dbSNicholas Bellinger 	buf[6] = ((add_len >> 8) & 0xff);
3686c66ac9dbSNicholas Bellinger 	buf[7] = (add_len & 0xff);
3687c66ac9dbSNicholas Bellinger 
36884949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
368905d1c7c0SAndy Grover 
3690c66ac9dbSNicholas Bellinger 	return 0;
3691c66ac9dbSNicholas Bellinger }
3692c66ac9dbSNicholas Bellinger 
3693c66ac9dbSNicholas Bellinger /*
3694c66ac9dbSNicholas Bellinger  * PERSISTENT_RESERVE_IN Service Action READ_RESERVATION
3695c66ac9dbSNicholas Bellinger  *
3696c66ac9dbSNicholas Bellinger  * See spc4r17 section 5.7.6.3 and section 6.13.3.2 Table 161 and 162
3697c66ac9dbSNicholas Bellinger  */
3698de103c93SChristoph Hellwig static sense_reason_t
3699de103c93SChristoph Hellwig core_scsi3_pri_read_reservation(struct se_cmd *cmd)
3700c66ac9dbSNicholas Bellinger {
37010fd97ccfSChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
3702c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg;
370305d1c7c0SAndy Grover 	unsigned char *buf;
3704c66ac9dbSNicholas Bellinger 	u64 pr_res_key;
3705c66ac9dbSNicholas Bellinger 	u32 add_len = 16; /* Hardcoded to 16 when a reservation is held. */
3706c66ac9dbSNicholas Bellinger 
3707c66ac9dbSNicholas Bellinger 	if (cmd->data_length < 8) {
37086708bb27SAndy Grover 		pr_err("PRIN SA READ_RESERVATIONS SCSI Data Length: %u"
3709c66ac9dbSNicholas Bellinger 			" too small\n", cmd->data_length);
3710de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
3711c66ac9dbSNicholas Bellinger 	}
3712c66ac9dbSNicholas Bellinger 
37134949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3714de103c93SChristoph Hellwig 	if (!buf)
3715de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3716de103c93SChristoph Hellwig 
37170fd97ccfSChristoph Hellwig 	buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
37180fd97ccfSChristoph Hellwig 	buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
37190fd97ccfSChristoph Hellwig 	buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
37200fd97ccfSChristoph Hellwig 	buf[3] = (dev->t10_pr.pr_generation & 0xff);
3721c66ac9dbSNicholas Bellinger 
37220fd97ccfSChristoph Hellwig 	spin_lock(&dev->dev_reservation_lock);
37230fd97ccfSChristoph Hellwig 	pr_reg = dev->dev_pr_res_holder;
3724ee1b1b9cSAndy Grover 	if (pr_reg) {
3725c66ac9dbSNicholas Bellinger 		/*
3726c66ac9dbSNicholas Bellinger 		 * Set the hardcoded Additional Length
3727c66ac9dbSNicholas Bellinger 		 */
3728c66ac9dbSNicholas Bellinger 		buf[4] = ((add_len >> 24) & 0xff);
3729c66ac9dbSNicholas Bellinger 		buf[5] = ((add_len >> 16) & 0xff);
3730c66ac9dbSNicholas Bellinger 		buf[6] = ((add_len >> 8) & 0xff);
3731c66ac9dbSNicholas Bellinger 		buf[7] = (add_len & 0xff);
3732c66ac9dbSNicholas Bellinger 
373305d1c7c0SAndy Grover 		if (cmd->data_length < 22)
373405d1c7c0SAndy Grover 			goto err;
373505d1c7c0SAndy Grover 
3736c66ac9dbSNicholas Bellinger 		/*
3737c66ac9dbSNicholas Bellinger 		 * Set the Reservation key.
3738c66ac9dbSNicholas Bellinger 		 *
3739c66ac9dbSNicholas Bellinger 		 * From spc4r17, section 5.7.10:
3740c66ac9dbSNicholas Bellinger 		 * A persistent reservation holder has its reservation key
3741c66ac9dbSNicholas Bellinger 		 * returned in the parameter data from a PERSISTENT
3742c66ac9dbSNicholas Bellinger 		 * RESERVE IN command with READ RESERVATION service action as
3743c66ac9dbSNicholas Bellinger 		 * follows:
3744c66ac9dbSNicholas Bellinger 		 * a) For a persistent reservation of the type Write Exclusive
3745c66ac9dbSNicholas Bellinger 		 *    - All Registrants or Exclusive Access ­ All Regitrants,
3746c66ac9dbSNicholas Bellinger 		 *      the reservation key shall be set to zero; or
3747c66ac9dbSNicholas Bellinger 		 * b) For all other persistent reservation types, the
3748c66ac9dbSNicholas Bellinger 		 *    reservation key shall be set to the registered
3749c66ac9dbSNicholas Bellinger 		 *    reservation key for the I_T nexus that holds the
3750c66ac9dbSNicholas Bellinger 		 *    persistent reservation.
3751c66ac9dbSNicholas Bellinger 		 */
3752c66ac9dbSNicholas Bellinger 		if ((pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
3753c66ac9dbSNicholas Bellinger 		    (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG))
3754c66ac9dbSNicholas Bellinger 			pr_res_key = 0;
3755c66ac9dbSNicholas Bellinger 		else
3756c66ac9dbSNicholas Bellinger 			pr_res_key = pr_reg->pr_res_key;
3757c66ac9dbSNicholas Bellinger 
3758c66ac9dbSNicholas Bellinger 		buf[8] = ((pr_res_key >> 56) & 0xff);
3759c66ac9dbSNicholas Bellinger 		buf[9] = ((pr_res_key >> 48) & 0xff);
3760c66ac9dbSNicholas Bellinger 		buf[10] = ((pr_res_key >> 40) & 0xff);
3761c66ac9dbSNicholas Bellinger 		buf[11] = ((pr_res_key >> 32) & 0xff);
3762c66ac9dbSNicholas Bellinger 		buf[12] = ((pr_res_key >> 24) & 0xff);
3763c66ac9dbSNicholas Bellinger 		buf[13] = ((pr_res_key >> 16) & 0xff);
3764c66ac9dbSNicholas Bellinger 		buf[14] = ((pr_res_key >> 8) & 0xff);
3765c66ac9dbSNicholas Bellinger 		buf[15] = (pr_res_key & 0xff);
3766c66ac9dbSNicholas Bellinger 		/*
3767c66ac9dbSNicholas Bellinger 		 * Set the SCOPE and TYPE
3768c66ac9dbSNicholas Bellinger 		 */
3769c66ac9dbSNicholas Bellinger 		buf[21] = (pr_reg->pr_res_scope & 0xf0) |
3770c66ac9dbSNicholas Bellinger 			  (pr_reg->pr_res_type & 0x0f);
3771c66ac9dbSNicholas Bellinger 	}
377205d1c7c0SAndy Grover 
377305d1c7c0SAndy Grover err:
37740fd97ccfSChristoph Hellwig 	spin_unlock(&dev->dev_reservation_lock);
37754949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
3776c66ac9dbSNicholas Bellinger 
3777c66ac9dbSNicholas Bellinger 	return 0;
3778c66ac9dbSNicholas Bellinger }
3779c66ac9dbSNicholas Bellinger 
3780c66ac9dbSNicholas Bellinger /*
3781c66ac9dbSNicholas Bellinger  * PERSISTENT_RESERVE_IN Service Action REPORT_CAPABILITIES
3782c66ac9dbSNicholas Bellinger  *
3783c66ac9dbSNicholas Bellinger  * See spc4r17 section 6.13.4 Table 165
3784c66ac9dbSNicholas Bellinger  */
3785de103c93SChristoph Hellwig static sense_reason_t
3786de103c93SChristoph Hellwig core_scsi3_pri_report_capabilities(struct se_cmd *cmd)
3787c66ac9dbSNicholas Bellinger {
37885951146dSAndy Grover 	struct se_device *dev = cmd->se_dev;
37890fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
379005d1c7c0SAndy Grover 	unsigned char *buf;
3791c66ac9dbSNicholas Bellinger 	u16 add_len = 8; /* Hardcoded to 8. */
3792c66ac9dbSNicholas Bellinger 
3793c66ac9dbSNicholas Bellinger 	if (cmd->data_length < 6) {
37946708bb27SAndy Grover 		pr_err("PRIN SA REPORT_CAPABILITIES SCSI Data Length:"
3795c66ac9dbSNicholas Bellinger 			" %u too small\n", cmd->data_length);
3796de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
3797c66ac9dbSNicholas Bellinger 	}
3798c66ac9dbSNicholas Bellinger 
37994949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3800de103c93SChristoph Hellwig 	if (!buf)
3801de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
380205d1c7c0SAndy Grover 
3803c66ac9dbSNicholas Bellinger 	buf[0] = ((add_len << 8) & 0xff);
3804c66ac9dbSNicholas Bellinger 	buf[1] = (add_len & 0xff);
3805c66ac9dbSNicholas Bellinger 	buf[2] |= 0x10; /* CRH: Compatible Reservation Hanlding bit. */
3806c66ac9dbSNicholas Bellinger 	buf[2] |= 0x08; /* SIP_C: Specify Initiator Ports Capable bit */
3807c66ac9dbSNicholas Bellinger 	buf[2] |= 0x04; /* ATP_C: All Target Ports Capable bit */
3808c66ac9dbSNicholas Bellinger 	buf[2] |= 0x01; /* PTPL_C: Persistence across Target Power Loss bit */
3809c66ac9dbSNicholas Bellinger 	/*
3810c66ac9dbSNicholas Bellinger 	 * We are filling in the PERSISTENT RESERVATION TYPE MASK below, so
3811c66ac9dbSNicholas Bellinger 	 * set the TMV: Task Mask Valid bit.
3812c66ac9dbSNicholas Bellinger 	 */
3813c66ac9dbSNicholas Bellinger 	buf[3] |= 0x80;
3814c66ac9dbSNicholas Bellinger 	/*
3815c66ac9dbSNicholas Bellinger 	 * Change ALLOW COMMANDs to 0x20 or 0x40 later from Table 166
3816c66ac9dbSNicholas Bellinger 	 */
3817c66ac9dbSNicholas Bellinger 	buf[3] |= 0x10; /* ALLOW COMMANDs field 001b */
3818c66ac9dbSNicholas Bellinger 	/*
3819c66ac9dbSNicholas Bellinger 	 * PTPL_A: Persistence across Target Power Loss Active bit
3820c66ac9dbSNicholas Bellinger 	 */
3821c66ac9dbSNicholas Bellinger 	if (pr_tmpl->pr_aptpl_active)
3822c66ac9dbSNicholas Bellinger 		buf[3] |= 0x01;
3823c66ac9dbSNicholas Bellinger 	/*
3824c66ac9dbSNicholas Bellinger 	 * Setup the PERSISTENT RESERVATION TYPE MASK from Table 167
3825c66ac9dbSNicholas Bellinger 	 */
3826c66ac9dbSNicholas Bellinger 	buf[4] |= 0x80; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3827c66ac9dbSNicholas Bellinger 	buf[4] |= 0x40; /* PR_TYPE_EXCLUSIVE_ACCESS_REGONLY */
3828c66ac9dbSNicholas Bellinger 	buf[4] |= 0x20; /* PR_TYPE_WRITE_EXCLUSIVE_REGONLY */
3829c66ac9dbSNicholas Bellinger 	buf[4] |= 0x08; /* PR_TYPE_EXCLUSIVE_ACCESS */
3830c66ac9dbSNicholas Bellinger 	buf[4] |= 0x02; /* PR_TYPE_WRITE_EXCLUSIVE */
3831c66ac9dbSNicholas Bellinger 	buf[5] |= 0x01; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3832c66ac9dbSNicholas Bellinger 
38334949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
383405d1c7c0SAndy Grover 
3835c66ac9dbSNicholas Bellinger 	return 0;
3836c66ac9dbSNicholas Bellinger }
3837c66ac9dbSNicholas Bellinger 
3838c66ac9dbSNicholas Bellinger /*
3839c66ac9dbSNicholas Bellinger  * PERSISTENT_RESERVE_IN Service Action READ_FULL_STATUS
3840c66ac9dbSNicholas Bellinger  *
3841c66ac9dbSNicholas Bellinger  * See spc4r17 section 6.13.5 Table 168 and 169
3842c66ac9dbSNicholas Bellinger  */
3843de103c93SChristoph Hellwig static sense_reason_t
3844de103c93SChristoph Hellwig core_scsi3_pri_read_full_status(struct se_cmd *cmd)
3845c66ac9dbSNicholas Bellinger {
38460fd97ccfSChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
3847c66ac9dbSNicholas Bellinger 	struct se_node_acl *se_nacl;
3848c66ac9dbSNicholas Bellinger 	struct se_portal_group *se_tpg;
3849c66ac9dbSNicholas Bellinger 	struct t10_pr_registration *pr_reg, *pr_reg_tmp;
38500fd97ccfSChristoph Hellwig 	struct t10_reservation *pr_tmpl = &dev->t10_pr;
385105d1c7c0SAndy Grover 	unsigned char *buf;
3852c66ac9dbSNicholas Bellinger 	u32 add_desc_len = 0, add_len = 0, desc_len, exp_desc_len;
3853c66ac9dbSNicholas Bellinger 	u32 off = 8; /* off into first Full Status descriptor */
3854c66ac9dbSNicholas Bellinger 	int format_code = 0;
3855c66ac9dbSNicholas Bellinger 
3856c66ac9dbSNicholas Bellinger 	if (cmd->data_length < 8) {
38576708bb27SAndy Grover 		pr_err("PRIN SA READ_FULL_STATUS SCSI Data Length: %u"
3858c66ac9dbSNicholas Bellinger 			" too small\n", cmd->data_length);
3859de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
3860c66ac9dbSNicholas Bellinger 	}
3861c66ac9dbSNicholas Bellinger 
38624949314cSAndy Grover 	buf = transport_kmap_data_sg(cmd);
3863de103c93SChristoph Hellwig 	if (!buf)
3864de103c93SChristoph Hellwig 		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
386505d1c7c0SAndy Grover 
38660fd97ccfSChristoph Hellwig 	buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
38670fd97ccfSChristoph Hellwig 	buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
38680fd97ccfSChristoph Hellwig 	buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
38690fd97ccfSChristoph Hellwig 	buf[3] = (dev->t10_pr.pr_generation & 0xff);
3870c66ac9dbSNicholas Bellinger 
3871c66ac9dbSNicholas Bellinger 	spin_lock(&pr_tmpl->registration_lock);
3872c66ac9dbSNicholas Bellinger 	list_for_each_entry_safe(pr_reg, pr_reg_tmp,
3873c66ac9dbSNicholas Bellinger 			&pr_tmpl->registration_list, pr_reg_list) {
3874c66ac9dbSNicholas Bellinger 
3875c66ac9dbSNicholas Bellinger 		se_nacl = pr_reg->pr_reg_nacl;
3876c66ac9dbSNicholas Bellinger 		se_tpg = pr_reg->pr_reg_nacl->se_tpg;
3877c66ac9dbSNicholas Bellinger 		add_desc_len = 0;
3878c66ac9dbSNicholas Bellinger 
3879c66ac9dbSNicholas Bellinger 		atomic_inc(&pr_reg->pr_res_holders);
3880c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_inc();
3881c66ac9dbSNicholas Bellinger 		spin_unlock(&pr_tmpl->registration_lock);
3882c66ac9dbSNicholas Bellinger 		/*
3883c66ac9dbSNicholas Bellinger 		 * Determine expected length of $FABRIC_MOD specific
3884c66ac9dbSNicholas Bellinger 		 * TransportID full status descriptor..
3885c66ac9dbSNicholas Bellinger 		 */
3886e3d6f909SAndy Grover 		exp_desc_len = se_tpg->se_tpg_tfo->tpg_get_pr_transport_id_len(
3887c66ac9dbSNicholas Bellinger 				se_tpg, se_nacl, pr_reg, &format_code);
3888c66ac9dbSNicholas Bellinger 
3889c66ac9dbSNicholas Bellinger 		if ((exp_desc_len + add_len) > cmd->data_length) {
38906708bb27SAndy Grover 			pr_warn("SPC-3 PRIN READ_FULL_STATUS ran"
3891c66ac9dbSNicholas Bellinger 				" out of buffer: %d\n", cmd->data_length);
3892c66ac9dbSNicholas Bellinger 			spin_lock(&pr_tmpl->registration_lock);
3893c66ac9dbSNicholas Bellinger 			atomic_dec(&pr_reg->pr_res_holders);
3894c66ac9dbSNicholas Bellinger 			smp_mb__after_atomic_dec();
3895c66ac9dbSNicholas Bellinger 			break;
3896c66ac9dbSNicholas Bellinger 		}
3897c66ac9dbSNicholas Bellinger 		/*
3898c66ac9dbSNicholas Bellinger 		 * Set RESERVATION KEY
3899c66ac9dbSNicholas Bellinger 		 */
3900c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 56) & 0xff);
3901c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 48) & 0xff);
3902c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 40) & 0xff);
3903c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 32) & 0xff);
3904c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 24) & 0xff);
3905c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 16) & 0xff);
3906c66ac9dbSNicholas Bellinger 		buf[off++] = ((pr_reg->pr_res_key >> 8) & 0xff);
3907c66ac9dbSNicholas Bellinger 		buf[off++] = (pr_reg->pr_res_key & 0xff);
3908c66ac9dbSNicholas Bellinger 		off += 4; /* Skip Over Reserved area */
3909c66ac9dbSNicholas Bellinger 
3910c66ac9dbSNicholas Bellinger 		/*
3911c66ac9dbSNicholas Bellinger 		 * Set ALL_TG_PT bit if PROUT SA REGISTER had this set.
3912c66ac9dbSNicholas Bellinger 		 */
3913c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_reg_all_tg_pt)
3914c66ac9dbSNicholas Bellinger 			buf[off] = 0x02;
3915c66ac9dbSNicholas Bellinger 		/*
3916c66ac9dbSNicholas Bellinger 		 * The struct se_lun pointer will be present for the
3917c66ac9dbSNicholas Bellinger 		 * reservation holder for PR_HOLDER bit.
3918c66ac9dbSNicholas Bellinger 		 *
3919c66ac9dbSNicholas Bellinger 		 * Also, if this registration is the reservation
3920c66ac9dbSNicholas Bellinger 		 * holder, fill in SCOPE and TYPE in the next byte.
3921c66ac9dbSNicholas Bellinger 		 */
3922c66ac9dbSNicholas Bellinger 		if (pr_reg->pr_res_holder) {
3923c66ac9dbSNicholas Bellinger 			buf[off++] |= 0x01;
3924c66ac9dbSNicholas Bellinger 			buf[off++] = (pr_reg->pr_res_scope & 0xf0) |
3925c66ac9dbSNicholas Bellinger 				     (pr_reg->pr_res_type & 0x0f);
3926c66ac9dbSNicholas Bellinger 		} else
3927c66ac9dbSNicholas Bellinger 			off += 2;
3928c66ac9dbSNicholas Bellinger 
3929c66ac9dbSNicholas Bellinger 		off += 4; /* Skip over reserved area */
3930c66ac9dbSNicholas Bellinger 		/*
3931c66ac9dbSNicholas Bellinger 		 * From spc4r17 6.3.15:
3932c66ac9dbSNicholas Bellinger 		 *
3933c66ac9dbSNicholas Bellinger 		 * If the ALL_TG_PT bit set to zero, the RELATIVE TARGET PORT
3934c66ac9dbSNicholas Bellinger 		 * IDENTIFIER field contains the relative port identifier (see
3935c66ac9dbSNicholas Bellinger 		 * 3.1.120) of the target port that is part of the I_T nexus
3936c66ac9dbSNicholas Bellinger 		 * described by this full status descriptor. If the ALL_TG_PT
3937c66ac9dbSNicholas Bellinger 		 * bit is set to one, the contents of the RELATIVE TARGET PORT
3938c66ac9dbSNicholas Bellinger 		 * IDENTIFIER field are not defined by this standard.
3939c66ac9dbSNicholas Bellinger 		 */
39406708bb27SAndy Grover 		if (!pr_reg->pr_reg_all_tg_pt) {
3941c66ac9dbSNicholas Bellinger 			struct se_port *port = pr_reg->pr_reg_tg_pt_lun->lun_sep;
3942c66ac9dbSNicholas Bellinger 
3943c66ac9dbSNicholas Bellinger 			buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
3944c66ac9dbSNicholas Bellinger 			buf[off++] = (port->sep_rtpi & 0xff);
3945c66ac9dbSNicholas Bellinger 		} else
394635d1efe8SMasanari Iida 			off += 2; /* Skip over RELATIVE TARGET PORT IDENTIFIER */
3947c66ac9dbSNicholas Bellinger 
3948c66ac9dbSNicholas Bellinger 		/*
3949c66ac9dbSNicholas Bellinger 		 * Now, have the $FABRIC_MOD fill in the protocol identifier
3950c66ac9dbSNicholas Bellinger 		 */
3951e3d6f909SAndy Grover 		desc_len = se_tpg->se_tpg_tfo->tpg_get_pr_transport_id(se_tpg,
3952c66ac9dbSNicholas Bellinger 				se_nacl, pr_reg, &format_code, &buf[off+4]);
3953c66ac9dbSNicholas Bellinger 
3954c66ac9dbSNicholas Bellinger 		spin_lock(&pr_tmpl->registration_lock);
3955c66ac9dbSNicholas Bellinger 		atomic_dec(&pr_reg->pr_res_holders);
3956c66ac9dbSNicholas Bellinger 		smp_mb__after_atomic_dec();
3957c66ac9dbSNicholas Bellinger 		/*
3958c66ac9dbSNicholas Bellinger 		 * Set the ADDITIONAL DESCRIPTOR LENGTH
3959c66ac9dbSNicholas Bellinger 		 */
3960c66ac9dbSNicholas Bellinger 		buf[off++] = ((desc_len >> 24) & 0xff);
3961c66ac9dbSNicholas Bellinger 		buf[off++] = ((desc_len >> 16) & 0xff);
3962c66ac9dbSNicholas Bellinger 		buf[off++] = ((desc_len >> 8) & 0xff);
3963c66ac9dbSNicholas Bellinger 		buf[off++] = (desc_len & 0xff);
3964c66ac9dbSNicholas Bellinger 		/*
3965c66ac9dbSNicholas Bellinger 		 * Size of full desctipor header minus TransportID
3966c66ac9dbSNicholas Bellinger 		 * containing $FABRIC_MOD specific) initiator device/port
3967c66ac9dbSNicholas Bellinger 		 * WWN information.
3968c66ac9dbSNicholas Bellinger 		 *
3969c66ac9dbSNicholas Bellinger 		 *  See spc4r17 Section 6.13.5 Table 169
3970c66ac9dbSNicholas Bellinger 		 */
3971c66ac9dbSNicholas Bellinger 		add_desc_len = (24 + desc_len);
3972c66ac9dbSNicholas Bellinger 
3973c66ac9dbSNicholas Bellinger 		off += desc_len;
3974c66ac9dbSNicholas Bellinger 		add_len += add_desc_len;
3975c66ac9dbSNicholas Bellinger 	}
3976c66ac9dbSNicholas Bellinger 	spin_unlock(&pr_tmpl->registration_lock);
3977c66ac9dbSNicholas Bellinger 	/*
3978c66ac9dbSNicholas Bellinger 	 * Set ADDITIONAL_LENGTH
3979c66ac9dbSNicholas Bellinger 	 */
3980c66ac9dbSNicholas Bellinger 	buf[4] = ((add_len >> 24) & 0xff);
3981c66ac9dbSNicholas Bellinger 	buf[5] = ((add_len >> 16) & 0xff);
3982c66ac9dbSNicholas Bellinger 	buf[6] = ((add_len >> 8) & 0xff);
3983c66ac9dbSNicholas Bellinger 	buf[7] = (add_len & 0xff);
3984c66ac9dbSNicholas Bellinger 
39854949314cSAndy Grover 	transport_kunmap_data_sg(cmd);
398605d1c7c0SAndy Grover 
3987c66ac9dbSNicholas Bellinger 	return 0;
3988c66ac9dbSNicholas Bellinger }
3989c66ac9dbSNicholas Bellinger 
3990de103c93SChristoph Hellwig sense_reason_t
3991de103c93SChristoph Hellwig target_scsi3_emulate_pr_in(struct se_cmd *cmd)
3992c66ac9dbSNicholas Bellinger {
3993de103c93SChristoph Hellwig 	sense_reason_t ret;
3994e76a35d6SChristoph Hellwig 
3995617c0e06SChristoph Hellwig 	/*
3996617c0e06SChristoph Hellwig 	 * Following spc2r20 5.5.1 Reservations overview:
3997617c0e06SChristoph Hellwig 	 *
3998617c0e06SChristoph Hellwig 	 * If a logical unit has been reserved by any RESERVE command and is
3999617c0e06SChristoph Hellwig 	 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
4000617c0e06SChristoph Hellwig 	 * PERSISTENT RESERVE OUT commands shall conflict regardless of
4001617c0e06SChristoph Hellwig 	 * initiator or service action and shall terminate with a RESERVATION
4002617c0e06SChristoph Hellwig 	 * CONFLICT status.
4003617c0e06SChristoph Hellwig 	 */
40040fd97ccfSChristoph Hellwig 	if (cmd->se_dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS) {
4005617c0e06SChristoph Hellwig 		pr_err("Received PERSISTENT_RESERVE CDB while legacy"
4006617c0e06SChristoph Hellwig 			" SPC-2 reservation is held, returning"
4007617c0e06SChristoph Hellwig 			" RESERVATION_CONFLICT\n");
4008de103c93SChristoph Hellwig 		return TCM_RESERVATION_CONFLICT;
4009617c0e06SChristoph Hellwig 	}
4010617c0e06SChristoph Hellwig 
4011617c0e06SChristoph Hellwig 	switch (cmd->t_task_cdb[1] & 0x1f) {
4012c66ac9dbSNicholas Bellinger 	case PRI_READ_KEYS:
4013d29a5b6aSChristoph Hellwig 		ret = core_scsi3_pri_read_keys(cmd);
4014d29a5b6aSChristoph Hellwig 		break;
4015c66ac9dbSNicholas Bellinger 	case PRI_READ_RESERVATION:
4016d29a5b6aSChristoph Hellwig 		ret = core_scsi3_pri_read_reservation(cmd);
4017d29a5b6aSChristoph Hellwig 		break;
4018c66ac9dbSNicholas Bellinger 	case PRI_REPORT_CAPABILITIES:
4019d29a5b6aSChristoph Hellwig 		ret = core_scsi3_pri_report_capabilities(cmd);
4020d29a5b6aSChristoph Hellwig 		break;
4021c66ac9dbSNicholas Bellinger 	case PRI_READ_FULL_STATUS:
4022d29a5b6aSChristoph Hellwig 		ret = core_scsi3_pri_read_full_status(cmd);
4023d29a5b6aSChristoph Hellwig 		break;
4024c66ac9dbSNicholas Bellinger 	default:
40256708bb27SAndy Grover 		pr_err("Unknown PERSISTENT_RESERVE_IN service"
4026617c0e06SChristoph Hellwig 			" action: 0x%02x\n", cmd->t_task_cdb[1] & 0x1f);
4027de103c93SChristoph Hellwig 		return TCM_INVALID_CDB_FIELD;
4028c66ac9dbSNicholas Bellinger 	}
4029d29a5b6aSChristoph Hellwig 
40306bb35e00SChristoph Hellwig 	if (!ret)
40316bb35e00SChristoph Hellwig 		target_complete_cmd(cmd, GOOD);
4032d29a5b6aSChristoph Hellwig 	return ret;
4033c66ac9dbSNicholas Bellinger }
4034c66ac9dbSNicholas Bellinger 
4035de103c93SChristoph Hellwig sense_reason_t
4036de103c93SChristoph Hellwig target_check_reservation(struct se_cmd *cmd)
4037c66ac9dbSNicholas Bellinger {
4038d977f437SChristoph Hellwig 	struct se_device *dev = cmd->se_dev;
4039de103c93SChristoph Hellwig 	sense_reason_t ret;
4040d977f437SChristoph Hellwig 
4041d977f437SChristoph Hellwig 	if (!cmd->se_sess)
4042c66ac9dbSNicholas Bellinger 		return 0;
4043d977f437SChristoph Hellwig 	if (dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE)
4044c66ac9dbSNicholas Bellinger 		return 0;
4045d977f437SChristoph Hellwig 	if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
4046d977f437SChristoph Hellwig 		return 0;
4047c66ac9dbSNicholas Bellinger 
4048d977f437SChristoph Hellwig 	spin_lock(&dev->dev_reservation_lock);
4049d977f437SChristoph Hellwig 	if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
4050d977f437SChristoph Hellwig 		ret = target_scsi2_reservation_check(cmd);
4051d977f437SChristoph Hellwig 	else
4052d977f437SChristoph Hellwig 		ret = target_scsi3_pr_reservation_check(cmd);
4053d977f437SChristoph Hellwig 	spin_unlock(&dev->dev_reservation_lock);
40540fd97ccfSChristoph Hellwig 
4055d977f437SChristoph Hellwig 	return ret;
4056c66ac9dbSNicholas Bellinger }
4057