target: simplify target_xcopy_init_pt_lun
[deliverable/linux.git] / drivers / target / target_core_pr.c
CommitLineData
c66ac9db
NB
1/*******************************************************************************
2 * Filename: target_core_pr.c
3 *
4 * This file contains SPC-3 compliant persistent reservations and
5 * legacy SPC-2 reservations with compatible reservation handling (CRH=1)
6 *
4c76251e 7 * (c) Copyright 2009-2013 Datera, Inc.
c66ac9db
NB
8 *
9 * Nicholas A. Bellinger <nab@kernel.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 ******************************************************************************/
26
c66ac9db
NB
27#include <linux/slab.h>
28#include <linux/spinlock.h>
29#include <linux/list.h>
0e9b10a9 30#include <linux/file.h>
c66ac9db
NB
31#include <scsi/scsi.h>
32#include <scsi/scsi_cmnd.h>
33#include <asm/unaligned.h>
34
35#include <target/target_core_base.h>
c4795fb2
CH
36#include <target/target_core_backend.h>
37#include <target/target_core_fabric.h>
c66ac9db
NB
38#include <target/target_core_configfs.h>
39
e26d99ae 40#include "target_core_internal.h"
c66ac9db
NB
41#include "target_core_pr.h"
42#include "target_core_ua.h"
43
44/*
45 * Used for Specify Initiator Ports Capable Bit (SPEC_I_PT)
46 */
47struct pr_transport_id_holder {
48 int dest_local_nexus;
49 struct t10_pr_registration *dest_pr_reg;
50 struct se_portal_group *dest_tpg;
51 struct se_node_acl *dest_node_acl;
52 struct se_dev_entry *dest_se_deve;
53 struct list_head dest_list;
54};
55
d2843c17 56void core_pr_dump_initiator_port(
c66ac9db
NB
57 struct t10_pr_registration *pr_reg,
58 char *buf,
59 u32 size)
60{
6708bb27 61 if (!pr_reg->isid_present_at_reg)
d2843c17 62 buf[0] = '\0';
c66ac9db 63
d2843c17 64 snprintf(buf, size, ",i,0x%s", pr_reg->pr_reg_isid);
c66ac9db
NB
65}
66
33ce6a87
AG
67enum register_type {
68 REGISTER,
69 REGISTER_AND_IGNORE_EXISTING_KEY,
70 REGISTER_AND_MOVE,
71};
72
73enum preempt_type {
74 PREEMPT,
75 PREEMPT_AND_ABORT,
76};
77
c66ac9db 78static void __core_scsi3_complete_pro_release(struct se_device *, struct se_node_acl *,
6c3c9baa 79 struct t10_pr_registration *, int, int);
c66ac9db 80
e673dc92
IT
81static int is_reservation_holder(
82 struct t10_pr_registration *pr_res_holder,
83 struct t10_pr_registration *pr_reg)
84{
85 int pr_res_type;
86
87 if (pr_res_holder) {
88 pr_res_type = pr_res_holder->pr_res_type;
89
90 return pr_res_holder == pr_reg ||
91 pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG ||
92 pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG;
93 }
94 return 0;
95}
96
de103c93
CH
97static sense_reason_t
98target_scsi2_reservation_check(struct se_cmd *cmd)
c66ac9db 99{
d977f437
CH
100 struct se_device *dev = cmd->se_dev;
101 struct se_session *sess = cmd->se_sess;
102
103 switch (cmd->t_task_cdb[0]) {
c66ac9db
NB
104 case INQUIRY:
105 case RELEASE:
106 case RELEASE_10:
107 return 0;
108 default:
d977f437 109 break;
c66ac9db
NB
110 }
111
d977f437 112 if (!dev->dev_reserved_node_acl || !sess)
c66ac9db
NB
113 return 0;
114
d977f437 115 if (dev->dev_reserved_node_acl != sess->se_node_acl)
de103c93 116 return TCM_RESERVATION_CONFLICT;
d977f437
CH
117
118 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS_WITH_ISID) {
119 if (dev->dev_res_bin_isid != sess->sess_bin_isid)
de103c93 120 return TCM_RESERVATION_CONFLICT;
c66ac9db 121 }
c66ac9db 122
d977f437 123 return 0;
c66ac9db
NB
124}
125
eacac00c
CH
126static struct t10_pr_registration *core_scsi3_locate_pr_reg(struct se_device *,
127 struct se_node_acl *, struct se_session *);
128static void core_scsi3_put_pr_reg(struct t10_pr_registration *);
129
087a03b3 130static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd)
eacac00c
CH
131{
132 struct se_session *se_sess = cmd->se_sess;
0fd97ccf 133 struct se_device *dev = cmd->se_dev;
eacac00c 134 struct t10_pr_registration *pr_reg;
0fd97ccf 135 struct t10_reservation *pr_tmpl = &dev->t10_pr;
eacac00c
CH
136 int conflict = 0;
137
eacac00c
CH
138 pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
139 se_sess);
140 if (pr_reg) {
141 /*
142 * From spc4r17 5.7.3 Exceptions to SPC-2 RESERVE and RELEASE
143 * behavior
144 *
145 * A RESERVE(6) or RESERVE(10) command shall complete with GOOD
146 * status, but no reservation shall be established and the
147 * persistent reservation shall not be changed, if the command
148 * is received from a) and b) below.
149 *
150 * A RELEASE(6) or RELEASE(10) command shall complete with GOOD
151 * status, but the persistent reservation shall not be released,
152 * if the command is received from a) and b)
153 *
154 * a) An I_T nexus that is a persistent reservation holder; or
155 * b) An I_T nexus that is registered if a registrants only or
156 * all registrants type persistent reservation is present.
157 *
158 * In all other cases, a RESERVE(6) command, RESERVE(10) command,
159 * RELEASE(6) command, or RELEASE(10) command shall be processed
160 * as defined in SPC-2.
161 */
162 if (pr_reg->pr_res_holder) {
163 core_scsi3_put_pr_reg(pr_reg);
087a03b3 164 return 1;
eacac00c
CH
165 }
166 if ((pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_REGONLY) ||
167 (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_REGONLY) ||
168 (pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
169 (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
170 core_scsi3_put_pr_reg(pr_reg);
087a03b3 171 return 1;
eacac00c
CH
172 }
173 core_scsi3_put_pr_reg(pr_reg);
174 conflict = 1;
175 } else {
176 /*
177 * Following spc2r20 5.5.1 Reservations overview:
178 *
179 * If a logical unit has executed a PERSISTENT RESERVE OUT
180 * command with the REGISTER or the REGISTER AND IGNORE
181 * EXISTING KEY service action and is still registered by any
182 * initiator, all RESERVE commands and all RELEASE commands
183 * regardless of initiator shall conflict and shall terminate
184 * with a RESERVATION CONFLICT status.
185 */
186 spin_lock(&pr_tmpl->registration_lock);
187 conflict = (list_empty(&pr_tmpl->registration_list)) ? 0 : 1;
188 spin_unlock(&pr_tmpl->registration_lock);
189 }
190
191 if (conflict) {
192 pr_err("Received legacy SPC-2 RESERVE/RELEASE"
193 " while active SPC-3 registrations exist,"
194 " returning RESERVATION_CONFLICT\n");
087a03b3 195 return -EBUSY;
eacac00c
CH
196 }
197
087a03b3 198 return 0;
eacac00c
CH
199}
200
de103c93
CH
201sense_reason_t
202target_scsi2_reservation_release(struct se_cmd *cmd)
c66ac9db
NB
203{
204 struct se_device *dev = cmd->se_dev;
205 struct se_session *sess = cmd->se_sess;
609234e3 206 struct se_portal_group *tpg;
de103c93 207 int rc;
c66ac9db 208
609234e3 209 if (!sess || !sess->se_tpg)
d29a5b6a 210 goto out;
087a03b3
NB
211 rc = target_check_scsi2_reservation_conflict(cmd);
212 if (rc == 1)
d29a5b6a 213 goto out;
de103c93
CH
214 if (rc < 0)
215 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
216
217 spin_lock(&dev->dev_reservation_lock);
d29a5b6a
CH
218 if (!dev->dev_reserved_node_acl || !sess)
219 goto out_unlock;
220
221 if (dev->dev_reserved_node_acl != sess->se_node_acl)
222 goto out_unlock;
c66ac9db 223
edc318d9
BK
224 if (dev->dev_res_bin_isid != sess->sess_bin_isid)
225 goto out_unlock;
226
c66ac9db 227 dev->dev_reserved_node_acl = NULL;
0fd97ccf
CH
228 dev->dev_reservation_flags &= ~DRF_SPC2_RESERVATIONS;
229 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS_WITH_ISID) {
c66ac9db 230 dev->dev_res_bin_isid = 0;
0fd97ccf 231 dev->dev_reservation_flags &= ~DRF_SPC2_RESERVATIONS_WITH_ISID;
c66ac9db 232 }
609234e3 233 tpg = sess->se_tpg;
6708bb27 234 pr_debug("SCSI-2 Released reservation for %s LUN: %u ->"
e3d6f909
AG
235 " MAPPED LUN: %u for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
236 cmd->se_lun->unpacked_lun, cmd->se_deve->mapped_lun,
c66ac9db 237 sess->se_node_acl->initiatorname);
c66ac9db 238
d29a5b6a
CH
239out_unlock:
240 spin_unlock(&dev->dev_reservation_lock);
241out:
de103c93
CH
242 target_complete_cmd(cmd, GOOD);
243 return 0;
c66ac9db
NB
244}
245
de103c93
CH
246sense_reason_t
247target_scsi2_reservation_reserve(struct se_cmd *cmd)
c66ac9db
NB
248{
249 struct se_device *dev = cmd->se_dev;
250 struct se_session *sess = cmd->se_sess;
609234e3 251 struct se_portal_group *tpg;
de103c93
CH
252 sense_reason_t ret = 0;
253 int rc;
c66ac9db 254
a1d8b49a
AG
255 if ((cmd->t_task_cdb[1] & 0x01) &&
256 (cmd->t_task_cdb[1] & 0x02)) {
6708bb27 257 pr_err("LongIO and Obselete Bits set, returning"
c66ac9db 258 " ILLEGAL_REQUEST\n");
de103c93 259 return TCM_UNSUPPORTED_SCSI_OPCODE;
c66ac9db
NB
260 }
261 /*
262 * This is currently the case for target_core_mod passthrough struct se_cmd
263 * ops
264 */
609234e3 265 if (!sess || !sess->se_tpg)
d29a5b6a 266 goto out;
087a03b3
NB
267 rc = target_check_scsi2_reservation_conflict(cmd);
268 if (rc == 1)
d29a5b6a 269 goto out;
c66ac9db 270
de103c93
CH
271 if (rc < 0)
272 return TCM_RESERVATION_CONFLICT;
273
609234e3 274 tpg = sess->se_tpg;
c66ac9db
NB
275 spin_lock(&dev->dev_reservation_lock);
276 if (dev->dev_reserved_node_acl &&
277 (dev->dev_reserved_node_acl != sess->se_node_acl)) {
6708bb27 278 pr_err("SCSI-2 RESERVATION CONFLIFT for %s fabric\n",
e3d6f909 279 tpg->se_tpg_tfo->get_fabric_name());
6708bb27 280 pr_err("Original reserver LUN: %u %s\n",
e3d6f909 281 cmd->se_lun->unpacked_lun,
c66ac9db 282 dev->dev_reserved_node_acl->initiatorname);
6708bb27 283 pr_err("Current attempt - LUN: %u -> MAPPED LUN: %u"
e3d6f909 284 " from %s \n", cmd->se_lun->unpacked_lun,
c66ac9db
NB
285 cmd->se_deve->mapped_lun,
286 sess->se_node_acl->initiatorname);
de103c93 287 ret = TCM_RESERVATION_CONFLICT;
d29a5b6a 288 goto out_unlock;
c66ac9db
NB
289 }
290
291 dev->dev_reserved_node_acl = sess->se_node_acl;
0fd97ccf 292 dev->dev_reservation_flags |= DRF_SPC2_RESERVATIONS;
c66ac9db
NB
293 if (sess->sess_bin_isid != 0) {
294 dev->dev_res_bin_isid = sess->sess_bin_isid;
0fd97ccf 295 dev->dev_reservation_flags |= DRF_SPC2_RESERVATIONS_WITH_ISID;
c66ac9db 296 }
6708bb27 297 pr_debug("SCSI-2 Reserved %s LUN: %u -> MAPPED LUN: %u"
e3d6f909
AG
298 " for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
299 cmd->se_lun->unpacked_lun, cmd->se_deve->mapped_lun,
c66ac9db 300 sess->se_node_acl->initiatorname);
c66ac9db 301
d29a5b6a
CH
302out_unlock:
303 spin_unlock(&dev->dev_reservation_lock);
304out:
6bb35e00
CH
305 if (!ret)
306 target_complete_cmd(cmd, GOOD);
d29a5b6a 307 return ret;
c66ac9db
NB
308}
309
c66ac9db
NB
310
311/*
312 * Begin SPC-3/SPC-4 Persistent Reservations emulation support
313 *
314 * This function is called by those initiator ports who are *NOT*
315 * the active PR reservation holder when a reservation is present.
316 */
317static int core_scsi3_pr_seq_non_holder(
318 struct se_cmd *cmd,
c66ac9db
NB
319 u32 pr_reg_type)
320{
d977f437 321 unsigned char *cdb = cmd->t_task_cdb;
c66ac9db 322 struct se_dev_entry *se_deve;
e3d6f909 323 struct se_session *se_sess = cmd->se_sess;
c66ac9db
NB
324 int other_cdb = 0, ignore_reg;
325 int registered_nexus = 0, ret = 1; /* Conflict by default */
326 int all_reg = 0, reg_only = 0; /* ALL_REG, REG_ONLY */
327 int we = 0; /* Write Exclusive */
328 int legacy = 0; /* Act like a legacy device and return
329 * RESERVATION CONFLICT on some CDBs */
c66ac9db 330
f2083241 331 se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
c66ac9db
NB
332 /*
333 * Determine if the registration should be ignored due to
d977f437 334 * non-matching ISIDs in target_scsi3_pr_reservation_check().
c66ac9db
NB
335 */
336 ignore_reg = (pr_reg_type & 0x80000000);
337 if (ignore_reg)
338 pr_reg_type &= ~0x80000000;
339
340 switch (pr_reg_type) {
341 case PR_TYPE_WRITE_EXCLUSIVE:
342 we = 1;
343 case PR_TYPE_EXCLUSIVE_ACCESS:
344 /*
345 * Some commands are only allowed for the persistent reservation
346 * holder.
347 */
348 if ((se_deve->def_pr_registered) && !(ignore_reg))
349 registered_nexus = 1;
350 break;
351 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
352 we = 1;
353 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
354 /*
355 * Some commands are only allowed for registered I_T Nexuses.
356 */
357 reg_only = 1;
358 if ((se_deve->def_pr_registered) && !(ignore_reg))
359 registered_nexus = 1;
360 break;
361 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
362 we = 1;
363 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
364 /*
365 * Each registered I_T Nexus is a reservation holder.
366 */
367 all_reg = 1;
368 if ((se_deve->def_pr_registered) && !(ignore_reg))
369 registered_nexus = 1;
370 break;
371 default:
e3d6f909 372 return -EINVAL;
c66ac9db
NB
373 }
374 /*
375 * Referenced from spc4r17 table 45 for *NON* PR holder access
376 */
377 switch (cdb[0]) {
378 case SECURITY_PROTOCOL_IN:
379 if (registered_nexus)
380 return 0;
381 ret = (we) ? 0 : 1;
382 break;
383 case MODE_SENSE:
384 case MODE_SENSE_10:
385 case READ_ATTRIBUTE:
386 case READ_BUFFER:
387 case RECEIVE_DIAGNOSTIC:
388 if (legacy) {
389 ret = 1;
390 break;
391 }
392 if (registered_nexus) {
393 ret = 0;
394 break;
395 }
396 ret = (we) ? 0 : 1; /* Allowed Write Exclusive */
397 break;
398 case PERSISTENT_RESERVE_OUT:
399 /*
400 * This follows PERSISTENT_RESERVE_OUT service actions that
401 * are allowed in the presence of various reservations.
402 * See spc4r17, table 46
403 */
404 switch (cdb[1] & 0x1f) {
405 case PRO_CLEAR:
406 case PRO_PREEMPT:
407 case PRO_PREEMPT_AND_ABORT:
408 ret = (registered_nexus) ? 0 : 1;
409 break;
410 case PRO_REGISTER:
411 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY:
412 ret = 0;
413 break;
414 case PRO_REGISTER_AND_MOVE:
415 case PRO_RESERVE:
416 ret = 1;
417 break;
418 case PRO_RELEASE:
419 ret = (registered_nexus) ? 0 : 1;
420 break;
421 default:
6708bb27 422 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
c66ac9db 423 " action: 0x%02x\n", cdb[1] & 0x1f);
e3d6f909 424 return -EINVAL;
c66ac9db
NB
425 }
426 break;
427 case RELEASE:
428 case RELEASE_10:
eacac00c 429 /* Handled by CRH=1 in target_scsi2_reservation_release() */
c66ac9db
NB
430 ret = 0;
431 break;
432 case RESERVE:
433 case RESERVE_10:
eacac00c 434 /* Handled by CRH=1 in target_scsi2_reservation_reserve() */
c66ac9db
NB
435 ret = 0;
436 break;
437 case TEST_UNIT_READY:
438 ret = (legacy) ? 1 : 0; /* Conflict for legacy */
439 break;
440 case MAINTENANCE_IN:
441 switch (cdb[1] & 0x1f) {
442 case MI_MANAGEMENT_PROTOCOL_IN:
443 if (registered_nexus) {
444 ret = 0;
445 break;
446 }
447 ret = (we) ? 0 : 1; /* Allowed Write Exclusive */
448 break;
449 case MI_REPORT_SUPPORTED_OPERATION_CODES:
450 case MI_REPORT_SUPPORTED_TASK_MANAGEMENT_FUNCTIONS:
451 if (legacy) {
452 ret = 1;
453 break;
454 }
455 if (registered_nexus) {
456 ret = 0;
457 break;
458 }
459 ret = (we) ? 0 : 1; /* Allowed Write Exclusive */
460 break;
461 case MI_REPORT_ALIASES:
462 case MI_REPORT_IDENTIFYING_INFORMATION:
463 case MI_REPORT_PRIORITY:
464 case MI_REPORT_TARGET_PGS:
465 case MI_REPORT_TIMESTAMP:
466 ret = 0; /* Allowed */
467 break;
468 default:
6708bb27 469 pr_err("Unknown MI Service Action: 0x%02x\n",
c66ac9db 470 (cdb[1] & 0x1f));
e3d6f909 471 return -EINVAL;
c66ac9db
NB
472 }
473 break;
474 case ACCESS_CONTROL_IN:
475 case ACCESS_CONTROL_OUT:
476 case INQUIRY:
477 case LOG_SENSE:
85686f69 478 case SERVICE_ACTION_IN_12:
c66ac9db
NB
479 case REPORT_LUNS:
480 case REQUEST_SENSE:
6816966a 481 case PERSISTENT_RESERVE_IN:
c66ac9db
NB
482 ret = 0; /*/ Allowed CDBs */
483 break;
484 default:
485 other_cdb = 1;
486 break;
487 }
488 /*
25985edc 489 * Case where the CDB is explicitly allowed in the above switch
c66ac9db
NB
490 * statement.
491 */
6708bb27 492 if (!ret && !other_cdb) {
125d0119 493 pr_debug("Allowing explicit CDB: 0x%02x for %s"
c66ac9db
NB
494 " reservation holder\n", cdb[0],
495 core_scsi3_pr_dump_type(pr_reg_type));
8b1e1244 496
c66ac9db
NB
497 return ret;
498 }
499 /*
500 * Check if write exclusive initiator ports *NOT* holding the
501 * WRITE_EXCLUSIVE_* reservation.
502 */
ee1b1b9c 503 if (we && !registered_nexus) {
c66ac9db
NB
504 if (cmd->data_direction == DMA_TO_DEVICE) {
505 /*
506 * Conflict for write exclusive
507 */
6708bb27 508 pr_debug("%s Conflict for unregistered nexus"
c66ac9db
NB
509 " %s CDB: 0x%02x to %s reservation\n",
510 transport_dump_cmd_direction(cmd),
511 se_sess->se_node_acl->initiatorname, cdb[0],
512 core_scsi3_pr_dump_type(pr_reg_type));
513 return 1;
514 } else {
515 /*
516 * Allow non WRITE CDBs for all Write Exclusive
517 * PR TYPEs to pass for registered and
518 * non-registered_nexuxes NOT holding the reservation.
519 *
520 * We only make noise for the unregisterd nexuses,
521 * as we expect registered non-reservation holding
522 * nexuses to issue CDBs.
523 */
8b1e1244 524
6708bb27 525 if (!registered_nexus) {
125d0119 526 pr_debug("Allowing implicit CDB: 0x%02x"
c66ac9db
NB
527 " for %s reservation on unregistered"
528 " nexus\n", cdb[0],
529 core_scsi3_pr_dump_type(pr_reg_type));
530 }
8b1e1244 531
c66ac9db
NB
532 return 0;
533 }
534 } else if ((reg_only) || (all_reg)) {
535 if (registered_nexus) {
536 /*
537 * For PR_*_REG_ONLY and PR_*_ALL_REG reservations,
538 * allow commands from registered nexuses.
539 */
8b1e1244 540
125d0119 541 pr_debug("Allowing implicit CDB: 0x%02x for %s"
c66ac9db
NB
542 " reservation\n", cdb[0],
543 core_scsi3_pr_dump_type(pr_reg_type));
8b1e1244 544
c66ac9db
NB
545 return 0;
546 }
1ecc7586
LD
547 } else if (we && registered_nexus) {
548 /*
549 * Reads are allowed for Write Exclusive locks
550 * from all registrants.
551 */
552 if (cmd->data_direction == DMA_FROM_DEVICE) {
553 pr_debug("Allowing READ CDB: 0x%02x for %s"
554 " reservation\n", cdb[0],
555 core_scsi3_pr_dump_type(pr_reg_type));
556
557 return 0;
558 }
c66ac9db 559 }
6708bb27 560 pr_debug("%s Conflict for %sregistered nexus %s CDB: 0x%2x"
c66ac9db
NB
561 " for %s reservation\n", transport_dump_cmd_direction(cmd),
562 (registered_nexus) ? "" : "un",
563 se_sess->se_node_acl->initiatorname, cdb[0],
564 core_scsi3_pr_dump_type(pr_reg_type));
565
566 return 1; /* Conflict by default */
567}
568
de103c93
CH
569static sense_reason_t
570target_scsi3_pr_reservation_check(struct se_cmd *cmd)
d977f437
CH
571{
572 struct se_device *dev = cmd->se_dev;
573 struct se_session *sess = cmd->se_sess;
574 u32 pr_reg_type;
575
576 if (!dev->dev_pr_res_holder)
577 return 0;
578
579 pr_reg_type = dev->dev_pr_res_holder->pr_res_type;
580 cmd->pr_res_key = dev->dev_pr_res_holder->pr_res_key;
581 if (dev->dev_pr_res_holder->pr_reg_nacl != sess->se_node_acl)
582 goto check_nonholder;
583
584 if (dev->dev_pr_res_holder->isid_present_at_reg) {
585 if (dev->dev_pr_res_holder->pr_reg_bin_isid !=
586 sess->sess_bin_isid) {
587 pr_reg_type |= 0x80000000;
588 goto check_nonholder;
589 }
590 }
591
592 return 0;
593
594check_nonholder:
595 if (core_scsi3_pr_seq_non_holder(cmd, pr_reg_type))
de103c93 596 return TCM_RESERVATION_CONFLICT;
d977f437
CH
597 return 0;
598}
599
c66ac9db
NB
600static u32 core_scsi3_pr_generation(struct se_device *dev)
601{
c66ac9db 602 u32 prg;
0fd97ccf 603
c66ac9db
NB
604 /*
605 * PRGeneration field shall contain the value of a 32-bit wrapping
606 * counter mainted by the device server.
607 *
608 * Note that this is done regardless of Active Persist across
609 * Target PowerLoss (APTPL)
610 *
611 * See spc4r17 section 6.3.12 READ_KEYS service action
612 */
613 spin_lock(&dev->dev_reservation_lock);
0fd97ccf 614 prg = dev->t10_pr.pr_generation++;
c66ac9db
NB
615 spin_unlock(&dev->dev_reservation_lock);
616
617 return prg;
618}
619
c66ac9db
NB
620static struct t10_pr_registration *__core_scsi3_do_alloc_registration(
621 struct se_device *dev,
622 struct se_node_acl *nacl,
623 struct se_dev_entry *deve,
624 unsigned char *isid,
625 u64 sa_res_key,
626 int all_tg_pt,
627 int aptpl)
628{
c66ac9db
NB
629 struct t10_pr_registration *pr_reg;
630
631 pr_reg = kmem_cache_zalloc(t10_pr_reg_cache, GFP_ATOMIC);
6708bb27
AG
632 if (!pr_reg) {
633 pr_err("Unable to allocate struct t10_pr_registration\n");
c66ac9db
NB
634 return NULL;
635 }
636
c66ac9db
NB
637 INIT_LIST_HEAD(&pr_reg->pr_reg_list);
638 INIT_LIST_HEAD(&pr_reg->pr_reg_abort_list);
639 INIT_LIST_HEAD(&pr_reg->pr_reg_aptpl_list);
640 INIT_LIST_HEAD(&pr_reg->pr_reg_atp_list);
641 INIT_LIST_HEAD(&pr_reg->pr_reg_atp_mem_list);
642 atomic_set(&pr_reg->pr_res_holders, 0);
643 pr_reg->pr_reg_nacl = nacl;
644 pr_reg->pr_reg_deve = deve;
645 pr_reg->pr_res_mapped_lun = deve->mapped_lun;
646 pr_reg->pr_aptpl_target_lun = deve->se_lun->unpacked_lun;
647 pr_reg->pr_res_key = sa_res_key;
648 pr_reg->pr_reg_all_tg_pt = all_tg_pt;
649 pr_reg->pr_reg_aptpl = aptpl;
650 pr_reg->pr_reg_tg_pt_lun = deve->se_lun;
651 /*
652 * If an ISID value for this SCSI Initiator Port exists,
653 * save it to the registration now.
654 */
655 if (isid != NULL) {
656 pr_reg->pr_reg_bin_isid = get_unaligned_be64(isid);
657 snprintf(pr_reg->pr_reg_isid, PR_REG_ISID_LEN, "%s", isid);
658 pr_reg->isid_present_at_reg = 1;
659 }
660
661 return pr_reg;
662}
663
664static int core_scsi3_lunacl_depend_item(struct se_dev_entry *);
665static void core_scsi3_lunacl_undepend_item(struct se_dev_entry *);
666
667/*
668 * Function used for handling PR registrations for ALL_TG_PT=1 and ALL_TG_PT=0
669 * modes.
670 */
671static struct t10_pr_registration *__core_scsi3_alloc_registration(
672 struct se_device *dev,
673 struct se_node_acl *nacl,
674 struct se_dev_entry *deve,
675 unsigned char *isid,
676 u64 sa_res_key,
677 int all_tg_pt,
678 int aptpl)
679{
680 struct se_dev_entry *deve_tmp;
681 struct se_node_acl *nacl_tmp;
682 struct se_port *port, *port_tmp;
683 struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
684 struct t10_pr_registration *pr_reg, *pr_reg_atp, *pr_reg_tmp, *pr_reg_tmp_safe;
685 int ret;
686 /*
687 * Create a registration for the I_T Nexus upon which the
688 * PROUT REGISTER was received.
689 */
690 pr_reg = __core_scsi3_do_alloc_registration(dev, nacl, deve, isid,
691 sa_res_key, all_tg_pt, aptpl);
6708bb27 692 if (!pr_reg)
c66ac9db
NB
693 return NULL;
694 /*
695 * Return pointer to pr_reg for ALL_TG_PT=0
696 */
6708bb27 697 if (!all_tg_pt)
c66ac9db
NB
698 return pr_reg;
699 /*
700 * Create list of matching SCSI Initiator Port registrations
701 * for ALL_TG_PT=1
702 */
703 spin_lock(&dev->se_port_lock);
704 list_for_each_entry_safe(port, port_tmp, &dev->dev_sep_list, sep_list) {
33940d09 705 atomic_inc_mb(&port->sep_tg_pt_ref_cnt);
c66ac9db
NB
706 spin_unlock(&dev->se_port_lock);
707
708 spin_lock_bh(&port->sep_alua_lock);
709 list_for_each_entry(deve_tmp, &port->sep_alua_list,
710 alua_port_list) {
711 /*
712 * This pointer will be NULL for demo mode MappedLUNs
125d0119 713 * that have not been make explicit via a ConfigFS
c66ac9db
NB
714 * MappedLUN group for the SCSI Initiator Node ACL.
715 */
6708bb27 716 if (!deve_tmp->se_lun_acl)
c66ac9db
NB
717 continue;
718
719 nacl_tmp = deve_tmp->se_lun_acl->se_lun_nacl;
720 /*
721 * Skip the matching struct se_node_acl that is allocated
722 * above..
723 */
724 if (nacl == nacl_tmp)
725 continue;
726 /*
727 * Only perform PR registrations for target ports on
728 * the same fabric module as the REGISTER w/ ALL_TG_PT=1
729 * arrived.
730 */
731 if (tfo != nacl_tmp->se_tpg->se_tpg_tfo)
732 continue;
733 /*
734 * Look for a matching Initiator Node ACL in ASCII format
735 */
736 if (strcmp(nacl->initiatorname, nacl_tmp->initiatorname))
737 continue;
738
33940d09 739 atomic_inc_mb(&deve_tmp->pr_ref_count);
c66ac9db
NB
740 spin_unlock_bh(&port->sep_alua_lock);
741 /*
742 * Grab a configfs group dependency that is released
743 * for the exception path at label out: below, or upon
744 * completion of adding ALL_TG_PT=1 registrations in
745 * __core_scsi3_add_registration()
746 */
747 ret = core_scsi3_lunacl_depend_item(deve_tmp);
748 if (ret < 0) {
6708bb27 749 pr_err("core_scsi3_lunacl_depend"
c66ac9db 750 "_item() failed\n");
33940d09
JE
751 atomic_dec_mb(&port->sep_tg_pt_ref_cnt);
752 atomic_dec_mb(&deve_tmp->pr_ref_count);
c66ac9db
NB
753 goto out;
754 }
755 /*
756 * Located a matching SCSI Initiator Port on a different
757 * port, allocate the pr_reg_atp and attach it to the
758 * pr_reg->pr_reg_atp_list that will be processed once
759 * the original *pr_reg is processed in
760 * __core_scsi3_add_registration()
761 */
762 pr_reg_atp = __core_scsi3_do_alloc_registration(dev,
763 nacl_tmp, deve_tmp, NULL,
764 sa_res_key, all_tg_pt, aptpl);
6708bb27 765 if (!pr_reg_atp) {
33940d09
JE
766 atomic_dec_mb(&port->sep_tg_pt_ref_cnt);
767 atomic_dec_mb(&deve_tmp->pr_ref_count);
c66ac9db
NB
768 core_scsi3_lunacl_undepend_item(deve_tmp);
769 goto out;
770 }
771
772 list_add_tail(&pr_reg_atp->pr_reg_atp_mem_list,
773 &pr_reg->pr_reg_atp_list);
774 spin_lock_bh(&port->sep_alua_lock);
775 }
776 spin_unlock_bh(&port->sep_alua_lock);
777
778 spin_lock(&dev->se_port_lock);
33940d09 779 atomic_dec_mb(&port->sep_tg_pt_ref_cnt);
c66ac9db
NB
780 }
781 spin_unlock(&dev->se_port_lock);
782
783 return pr_reg;
784out:
785 list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
786 &pr_reg->pr_reg_atp_list, pr_reg_atp_mem_list) {
787 list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
788 core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
789 kmem_cache_free(t10_pr_reg_cache, pr_reg_tmp);
790 }
791 kmem_cache_free(t10_pr_reg_cache, pr_reg);
792 return NULL;
793}
794
795int core_scsi3_alloc_aptpl_registration(
e3d6f909 796 struct t10_reservation *pr_tmpl,
c66ac9db
NB
797 u64 sa_res_key,
798 unsigned char *i_port,
799 unsigned char *isid,
800 u32 mapped_lun,
801 unsigned char *t_port,
802 u16 tpgt,
803 u32 target_lun,
804 int res_holder,
805 int all_tg_pt,
806 u8 type)
807{
808 struct t10_pr_registration *pr_reg;
809
6708bb27
AG
810 if (!i_port || !t_port || !sa_res_key) {
811 pr_err("Illegal parameters for APTPL registration\n");
e3d6f909 812 return -EINVAL;
c66ac9db
NB
813 }
814
815 pr_reg = kmem_cache_zalloc(t10_pr_reg_cache, GFP_KERNEL);
6708bb27
AG
816 if (!pr_reg) {
817 pr_err("Unable to allocate struct t10_pr_registration\n");
e3d6f909 818 return -ENOMEM;
c66ac9db 819 }
c66ac9db
NB
820
821 INIT_LIST_HEAD(&pr_reg->pr_reg_list);
822 INIT_LIST_HEAD(&pr_reg->pr_reg_abort_list);
823 INIT_LIST_HEAD(&pr_reg->pr_reg_aptpl_list);
824 INIT_LIST_HEAD(&pr_reg->pr_reg_atp_list);
825 INIT_LIST_HEAD(&pr_reg->pr_reg_atp_mem_list);
826 atomic_set(&pr_reg->pr_res_holders, 0);
827 pr_reg->pr_reg_nacl = NULL;
828 pr_reg->pr_reg_deve = NULL;
829 pr_reg->pr_res_mapped_lun = mapped_lun;
830 pr_reg->pr_aptpl_target_lun = target_lun;
831 pr_reg->pr_res_key = sa_res_key;
832 pr_reg->pr_reg_all_tg_pt = all_tg_pt;
833 pr_reg->pr_reg_aptpl = 1;
834 pr_reg->pr_reg_tg_pt_lun = NULL;
835 pr_reg->pr_res_scope = 0; /* Always LUN_SCOPE */
836 pr_reg->pr_res_type = type;
837 /*
838 * If an ISID value had been saved in APTPL metadata for this
839 * SCSI Initiator Port, restore it now.
840 */
841 if (isid != NULL) {
842 pr_reg->pr_reg_bin_isid = get_unaligned_be64(isid);
843 snprintf(pr_reg->pr_reg_isid, PR_REG_ISID_LEN, "%s", isid);
844 pr_reg->isid_present_at_reg = 1;
845 }
846 /*
847 * Copy the i_port and t_port information from caller.
848 */
849 snprintf(pr_reg->pr_iport, PR_APTPL_MAX_IPORT_LEN, "%s", i_port);
850 snprintf(pr_reg->pr_tport, PR_APTPL_MAX_TPORT_LEN, "%s", t_port);
851 pr_reg->pr_reg_tpgt = tpgt;
852 /*
853 * Set pr_res_holder from caller, the pr_reg who is the reservation
854 * holder will get it's pointer set in core_scsi3_aptpl_reserve() once
855 * the Initiator Node LUN ACL from the fabric module is created for
856 * this registration.
857 */
858 pr_reg->pr_res_holder = res_holder;
859
860 list_add_tail(&pr_reg->pr_reg_aptpl_list, &pr_tmpl->aptpl_reg_list);
6708bb27 861 pr_debug("SPC-3 PR APTPL Successfully added registration%s from"
c66ac9db
NB
862 " metadata\n", (res_holder) ? "+reservation" : "");
863 return 0;
864}
865
866static void core_scsi3_aptpl_reserve(
867 struct se_device *dev,
868 struct se_portal_group *tpg,
869 struct se_node_acl *node_acl,
870 struct t10_pr_registration *pr_reg)
871{
872 char i_buf[PR_REG_ISID_ID_LEN];
c66ac9db
NB
873
874 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
d2843c17 875 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db
NB
876
877 spin_lock(&dev->dev_reservation_lock);
878 dev->dev_pr_res_holder = pr_reg;
879 spin_unlock(&dev->dev_reservation_lock);
880
6708bb27 881 pr_debug("SPC-3 PR [%s] Service Action: APTPL RESERVE created"
c66ac9db 882 " new reservation holder TYPE: %s ALL_TG_PT: %d\n",
e3d6f909 883 tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
884 core_scsi3_pr_dump_type(pr_reg->pr_res_type),
885 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
6708bb27 886 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
e3d6f909 887 tpg->se_tpg_tfo->get_fabric_name(), node_acl->initiatorname,
d2843c17 888 i_buf);
c66ac9db
NB
889}
890
891static void __core_scsi3_add_registration(struct se_device *, struct se_node_acl *,
33ce6a87 892 struct t10_pr_registration *, enum register_type, int);
c66ac9db
NB
893
894static int __core_scsi3_check_aptpl_registration(
895 struct se_device *dev,
896 struct se_portal_group *tpg,
897 struct se_lun *lun,
898 u32 target_lun,
899 struct se_node_acl *nacl,
900 struct se_dev_entry *deve)
901{
902 struct t10_pr_registration *pr_reg, *pr_reg_tmp;
0fd97ccf 903 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db
NB
904 unsigned char i_port[PR_APTPL_MAX_IPORT_LEN];
905 unsigned char t_port[PR_APTPL_MAX_TPORT_LEN];
906 u16 tpgt;
907
908 memset(i_port, 0, PR_APTPL_MAX_IPORT_LEN);
909 memset(t_port, 0, PR_APTPL_MAX_TPORT_LEN);
910 /*
911 * Copy Initiator Port information from struct se_node_acl
912 */
913 snprintf(i_port, PR_APTPL_MAX_IPORT_LEN, "%s", nacl->initiatorname);
914 snprintf(t_port, PR_APTPL_MAX_TPORT_LEN, "%s",
e3d6f909
AG
915 tpg->se_tpg_tfo->tpg_get_wwn(tpg));
916 tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg);
c66ac9db
NB
917 /*
918 * Look for the matching registrations+reservation from those
919 * created from APTPL metadata. Note that multiple registrations
920 * may exist for fabrics that use ISIDs in their SCSI Initiator Port
921 * TransportIDs.
922 */
923 spin_lock(&pr_tmpl->aptpl_reg_lock);
924 list_for_each_entry_safe(pr_reg, pr_reg_tmp, &pr_tmpl->aptpl_reg_list,
925 pr_reg_aptpl_list) {
92404e60 926
6708bb27 927 if (!strcmp(pr_reg->pr_iport, i_port) &&
c66ac9db
NB
928 (pr_reg->pr_res_mapped_lun == deve->mapped_lun) &&
929 !(strcmp(pr_reg->pr_tport, t_port)) &&
930 (pr_reg->pr_reg_tpgt == tpgt) &&
931 (pr_reg->pr_aptpl_target_lun == target_lun)) {
932
933 pr_reg->pr_reg_nacl = nacl;
934 pr_reg->pr_reg_deve = deve;
935 pr_reg->pr_reg_tg_pt_lun = lun;
936
937 list_del(&pr_reg->pr_reg_aptpl_list);
938 spin_unlock(&pr_tmpl->aptpl_reg_lock);
939 /*
940 * At this point all of the pointers in *pr_reg will
941 * be setup, so go ahead and add the registration.
942 */
943
944 __core_scsi3_add_registration(dev, nacl, pr_reg, 0, 0);
945 /*
946 * If this registration is the reservation holder,
947 * make that happen now..
948 */
949 if (pr_reg->pr_res_holder)
950 core_scsi3_aptpl_reserve(dev, tpg,
951 nacl, pr_reg);
952 /*
953 * Reenable pr_aptpl_active to accept new metadata
954 * updates once the SCSI device is active again..
955 */
956 spin_lock(&pr_tmpl->aptpl_reg_lock);
957 pr_tmpl->pr_aptpl_active = 1;
958 }
959 }
960 spin_unlock(&pr_tmpl->aptpl_reg_lock);
961
962 return 0;
963}
964
965int core_scsi3_check_aptpl_registration(
966 struct se_device *dev,
967 struct se_portal_group *tpg,
968 struct se_lun *lun,
e2480563
NB
969 struct se_node_acl *nacl,
970 u32 mapped_lun)
c66ac9db 971{
e2480563 972 struct se_dev_entry *deve = nacl->device_list[mapped_lun];
c66ac9db 973
d977f437 974 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
c66ac9db
NB
975 return 0;
976
977 return __core_scsi3_check_aptpl_registration(dev, tpg, lun,
978 lun->unpacked_lun, nacl, deve);
979}
980
981static void __core_scsi3_dump_registration(
982 struct target_core_fabric_ops *tfo,
983 struct se_device *dev,
984 struct se_node_acl *nacl,
985 struct t10_pr_registration *pr_reg,
33ce6a87 986 enum register_type register_type)
c66ac9db
NB
987{
988 struct se_portal_group *se_tpg = nacl->se_tpg;
989 char i_buf[PR_REG_ISID_ID_LEN];
c66ac9db
NB
990
991 memset(&i_buf[0], 0, PR_REG_ISID_ID_LEN);
d2843c17 992 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db 993
6708bb27 994 pr_debug("SPC-3 PR [%s] Service Action: REGISTER%s Initiator"
33ce6a87
AG
995 " Node: %s%s\n", tfo->get_fabric_name(), (register_type == REGISTER_AND_MOVE) ?
996 "_AND_MOVE" : (register_type == REGISTER_AND_IGNORE_EXISTING_KEY) ?
c66ac9db 997 "_AND_IGNORE_EXISTING_KEY" : "", nacl->initiatorname,
d2843c17 998 i_buf);
6708bb27 999 pr_debug("SPC-3 PR [%s] registration on Target Port: %s,0x%04x\n",
c66ac9db
NB
1000 tfo->get_fabric_name(), tfo->tpg_get_wwn(se_tpg),
1001 tfo->tpg_get_tag(se_tpg));
6708bb27 1002 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
c66ac9db
NB
1003 " Port(s)\n", tfo->get_fabric_name(),
1004 (pr_reg->pr_reg_all_tg_pt) ? "ALL" : "SINGLE",
e3d6f909 1005 dev->transport->name);
6708bb27 1006 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
c66ac9db
NB
1007 " 0x%08x APTPL: %d\n", tfo->get_fabric_name(),
1008 pr_reg->pr_res_key, pr_reg->pr_res_generation,
1009 pr_reg->pr_reg_aptpl);
1010}
1011
1012/*
1013 * this function can be called with struct se_device->dev_reservation_lock
1014 * when register_move = 1
1015 */
1016static void __core_scsi3_add_registration(
1017 struct se_device *dev,
1018 struct se_node_acl *nacl,
1019 struct t10_pr_registration *pr_reg,
33ce6a87 1020 enum register_type register_type,
c66ac9db
NB
1021 int register_move)
1022{
c66ac9db
NB
1023 struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
1024 struct t10_pr_registration *pr_reg_tmp, *pr_reg_tmp_safe;
0fd97ccf 1025 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db
NB
1026
1027 /*
1028 * Increment PRgeneration counter for struct se_device upon a successful
1029 * REGISTER, see spc4r17 section 6.3.2 READ_KEYS service action
1030 *
1031 * Also, when register_move = 1 for PROUT REGISTER_AND_MOVE service
1032 * action, the struct se_device->dev_reservation_lock will already be held,
1033 * so we do not call core_scsi3_pr_generation() which grabs the lock
1034 * for the REGISTER.
1035 */
1036 pr_reg->pr_res_generation = (register_move) ?
0fd97ccf 1037 dev->t10_pr.pr_generation++ :
c66ac9db
NB
1038 core_scsi3_pr_generation(dev);
1039
1040 spin_lock(&pr_tmpl->registration_lock);
1041 list_add_tail(&pr_reg->pr_reg_list, &pr_tmpl->registration_list);
1042 pr_reg->pr_reg_deve->def_pr_registered = 1;
1043
1044 __core_scsi3_dump_registration(tfo, dev, nacl, pr_reg, register_type);
1045 spin_unlock(&pr_tmpl->registration_lock);
1046 /*
1047 * Skip extra processing for ALL_TG_PT=0 or REGISTER_AND_MOVE.
1048 */
6708bb27 1049 if (!pr_reg->pr_reg_all_tg_pt || register_move)
c66ac9db
NB
1050 return;
1051 /*
1052 * Walk pr_reg->pr_reg_atp_list and add registrations for ALL_TG_PT=1
1053 * allocated in __core_scsi3_alloc_registration()
1054 */
1055 list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
1056 &pr_reg->pr_reg_atp_list, pr_reg_atp_mem_list) {
1057 list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
1058
1059 pr_reg_tmp->pr_res_generation = core_scsi3_pr_generation(dev);
1060
1061 spin_lock(&pr_tmpl->registration_lock);
1062 list_add_tail(&pr_reg_tmp->pr_reg_list,
1063 &pr_tmpl->registration_list);
1064 pr_reg_tmp->pr_reg_deve->def_pr_registered = 1;
1065
1066 __core_scsi3_dump_registration(tfo, dev,
1067 pr_reg_tmp->pr_reg_nacl, pr_reg_tmp,
1068 register_type);
1069 spin_unlock(&pr_tmpl->registration_lock);
1070 /*
1071 * Drop configfs group dependency reference from
1072 * __core_scsi3_alloc_registration()
1073 */
1074 core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
1075 }
1076}
1077
1078static int core_scsi3_alloc_registration(
1079 struct se_device *dev,
1080 struct se_node_acl *nacl,
1081 struct se_dev_entry *deve,
1082 unsigned char *isid,
1083 u64 sa_res_key,
1084 int all_tg_pt,
1085 int aptpl,
33ce6a87 1086 enum register_type register_type,
c66ac9db
NB
1087 int register_move)
1088{
1089 struct t10_pr_registration *pr_reg;
1090
1091 pr_reg = __core_scsi3_alloc_registration(dev, nacl, deve, isid,
1092 sa_res_key, all_tg_pt, aptpl);
6708bb27 1093 if (!pr_reg)
e3d6f909 1094 return -EPERM;
c66ac9db
NB
1095
1096 __core_scsi3_add_registration(dev, nacl, pr_reg,
1097 register_type, register_move);
1098 return 0;
1099}
1100
1101static struct t10_pr_registration *__core_scsi3_locate_pr_reg(
1102 struct se_device *dev,
1103 struct se_node_acl *nacl,
1104 unsigned char *isid)
1105{
0fd97ccf 1106 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db
NB
1107 struct t10_pr_registration *pr_reg, *pr_reg_tmp;
1108 struct se_portal_group *tpg;
1109
1110 spin_lock(&pr_tmpl->registration_lock);
1111 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1112 &pr_tmpl->registration_list, pr_reg_list) {
1113 /*
1114 * First look for a matching struct se_node_acl
1115 */
1116 if (pr_reg->pr_reg_nacl != nacl)
1117 continue;
1118
1119 tpg = pr_reg->pr_reg_nacl->se_tpg;
1120 /*
1121 * If this registration does NOT contain a fabric provided
1122 * ISID, then we have found a match.
1123 */
6708bb27 1124 if (!pr_reg->isid_present_at_reg) {
c66ac9db
NB
1125 /*
1126 * Determine if this SCSI device server requires that
1127 * SCSI Intiatior TransportID w/ ISIDs is enforced
1128 * for fabric modules (iSCSI) requiring them.
1129 */
e3d6f909 1130 if (tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
0fd97ccf 1131 if (dev->dev_attrib.enforce_pr_isids)
c66ac9db
NB
1132 continue;
1133 }
33940d09 1134 atomic_inc_mb(&pr_reg->pr_res_holders);
c66ac9db
NB
1135 spin_unlock(&pr_tmpl->registration_lock);
1136 return pr_reg;
1137 }
1138 /*
1139 * If the *pr_reg contains a fabric defined ISID for multi-value
1140 * SCSI Initiator Port TransportIDs, then we expect a valid
1141 * matching ISID to be provided by the local SCSI Initiator Port.
1142 */
6708bb27 1143 if (!isid)
c66ac9db
NB
1144 continue;
1145 if (strcmp(isid, pr_reg->pr_reg_isid))
1146 continue;
1147
33940d09 1148 atomic_inc_mb(&pr_reg->pr_res_holders);
c66ac9db
NB
1149 spin_unlock(&pr_tmpl->registration_lock);
1150 return pr_reg;
1151 }
1152 spin_unlock(&pr_tmpl->registration_lock);
1153
1154 return NULL;
1155}
1156
1157static struct t10_pr_registration *core_scsi3_locate_pr_reg(
1158 struct se_device *dev,
1159 struct se_node_acl *nacl,
1160 struct se_session *sess)
1161{
1162 struct se_portal_group *tpg = nacl->se_tpg;
1163 unsigned char buf[PR_REG_ISID_LEN], *isid_ptr = NULL;
1164
e3d6f909 1165 if (tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
c66ac9db 1166 memset(&buf[0], 0, PR_REG_ISID_LEN);
e3d6f909 1167 tpg->se_tpg_tfo->sess_get_initiator_sid(sess, &buf[0],
c66ac9db
NB
1168 PR_REG_ISID_LEN);
1169 isid_ptr = &buf[0];
1170 }
1171
1172 return __core_scsi3_locate_pr_reg(dev, nacl, isid_ptr);
1173}
1174
1175static void core_scsi3_put_pr_reg(struct t10_pr_registration *pr_reg)
1176{
33940d09 1177 atomic_dec_mb(&pr_reg->pr_res_holders);
c66ac9db
NB
1178}
1179
125d0119 1180static int core_scsi3_check_implicit_release(
c66ac9db
NB
1181 struct se_device *dev,
1182 struct t10_pr_registration *pr_reg)
1183{
1184 struct se_node_acl *nacl = pr_reg->pr_reg_nacl;
1185 struct t10_pr_registration *pr_res_holder;
1186 int ret = 0;
1187
1188 spin_lock(&dev->dev_reservation_lock);
1189 pr_res_holder = dev->dev_pr_res_holder;
6708bb27 1190 if (!pr_res_holder) {
c66ac9db
NB
1191 spin_unlock(&dev->dev_reservation_lock);
1192 return ret;
1193 }
1194 if (pr_res_holder == pr_reg) {
1195 /*
125d0119 1196 * Perform an implicit RELEASE if the registration that
c66ac9db
NB
1197 * is being released is holding the reservation.
1198 *
1199 * From spc4r17, section 5.7.11.1:
1200 *
1201 * e) If the I_T nexus is the persistent reservation holder
1202 * and the persistent reservation is not an all registrants
1203 * type, then a PERSISTENT RESERVE OUT command with REGISTER
1204 * service action or REGISTER AND IGNORE EXISTING KEY
1205 * service action with the SERVICE ACTION RESERVATION KEY
1206 * field set to zero (see 5.7.11.3).
1207 */
6c3c9baa 1208 __core_scsi3_complete_pro_release(dev, nacl, pr_reg, 0, 1);
c66ac9db
NB
1209 ret = 1;
1210 /*
1211 * For 'All Registrants' reservation types, all existing
1212 * registrations are still processed as reservation holders
1213 * in core_scsi3_pr_seq_non_holder() after the initial
125d0119 1214 * reservation holder is implicitly released here.
c66ac9db
NB
1215 */
1216 } else if (pr_reg->pr_reg_all_tg_pt &&
1217 (!strcmp(pr_res_holder->pr_reg_nacl->initiatorname,
1218 pr_reg->pr_reg_nacl->initiatorname)) &&
1219 (pr_res_holder->pr_res_key == pr_reg->pr_res_key)) {
6708bb27 1220 pr_err("SPC-3 PR: Unable to perform ALL_TG_PT=1"
c66ac9db
NB
1221 " UNREGISTER while existing reservation with matching"
1222 " key 0x%016Lx is present from another SCSI Initiator"
1223 " Port\n", pr_reg->pr_res_key);
e3d6f909 1224 ret = -EPERM;
c66ac9db
NB
1225 }
1226 spin_unlock(&dev->dev_reservation_lock);
1227
1228 return ret;
1229}
1230
1231/*
e3d6f909 1232 * Called with struct t10_reservation->registration_lock held.
c66ac9db
NB
1233 */
1234static void __core_scsi3_free_registration(
1235 struct se_device *dev,
1236 struct t10_pr_registration *pr_reg,
1237 struct list_head *preempt_and_abort_list,
1238 int dec_holders)
1239{
1240 struct target_core_fabric_ops *tfo =
1241 pr_reg->pr_reg_nacl->se_tpg->se_tpg_tfo;
0fd97ccf 1242 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db 1243 char i_buf[PR_REG_ISID_ID_LEN];
c66ac9db
NB
1244
1245 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
d2843c17 1246 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db
NB
1247
1248 pr_reg->pr_reg_deve->def_pr_registered = 0;
1249 pr_reg->pr_reg_deve->pr_res_key = 0;
6c3c9baa
NB
1250 if (!list_empty(&pr_reg->pr_reg_list))
1251 list_del(&pr_reg->pr_reg_list);
c66ac9db
NB
1252 /*
1253 * Caller accessing *pr_reg using core_scsi3_locate_pr_reg(),
1254 * so call core_scsi3_put_pr_reg() to decrement our reference.
1255 */
1256 if (dec_holders)
1257 core_scsi3_put_pr_reg(pr_reg);
1258 /*
1259 * Wait until all reference from any other I_T nexuses for this
1260 * *pr_reg have been released. Because list_del() is called above,
1261 * the last core_scsi3_put_pr_reg(pr_reg) will release this reference
1262 * count back to zero, and we release *pr_reg.
1263 */
1264 while (atomic_read(&pr_reg->pr_res_holders) != 0) {
1265 spin_unlock(&pr_tmpl->registration_lock);
6708bb27 1266 pr_debug("SPC-3 PR [%s] waiting for pr_res_holders\n",
c66ac9db
NB
1267 tfo->get_fabric_name());
1268 cpu_relax();
1269 spin_lock(&pr_tmpl->registration_lock);
1270 }
1271
6708bb27 1272 pr_debug("SPC-3 PR [%s] Service Action: UNREGISTER Initiator"
c66ac9db
NB
1273 " Node: %s%s\n", tfo->get_fabric_name(),
1274 pr_reg->pr_reg_nacl->initiatorname,
d2843c17 1275 i_buf);
6708bb27 1276 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
c66ac9db
NB
1277 " Port(s)\n", tfo->get_fabric_name(),
1278 (pr_reg->pr_reg_all_tg_pt) ? "ALL" : "SINGLE",
e3d6f909 1279 dev->transport->name);
6708bb27 1280 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
c66ac9db
NB
1281 " 0x%08x\n", tfo->get_fabric_name(), pr_reg->pr_res_key,
1282 pr_reg->pr_res_generation);
1283
6708bb27 1284 if (!preempt_and_abort_list) {
c66ac9db
NB
1285 pr_reg->pr_reg_deve = NULL;
1286 pr_reg->pr_reg_nacl = NULL;
c66ac9db
NB
1287 kmem_cache_free(t10_pr_reg_cache, pr_reg);
1288 return;
1289 }
1290 /*
1291 * For PREEMPT_AND_ABORT, the list of *pr_reg in preempt_and_abort_list
1292 * are released once the ABORT_TASK_SET has completed..
1293 */
1294 list_add_tail(&pr_reg->pr_reg_abort_list, preempt_and_abort_list);
1295}
1296
1297void core_scsi3_free_pr_reg_from_nacl(
1298 struct se_device *dev,
1299 struct se_node_acl *nacl)
1300{
0fd97ccf 1301 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db 1302 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_res_holder;
6c3c9baa 1303 bool free_reg = false;
c66ac9db
NB
1304 /*
1305 * If the passed se_node_acl matches the reservation holder,
1306 * release the reservation.
1307 */
1308 spin_lock(&dev->dev_reservation_lock);
1309 pr_res_holder = dev->dev_pr_res_holder;
1310 if ((pr_res_holder != NULL) &&
6c3c9baa
NB
1311 (pr_res_holder->pr_reg_nacl == nacl)) {
1312 __core_scsi3_complete_pro_release(dev, nacl, pr_res_holder, 0, 1);
1313 free_reg = true;
1314 }
c66ac9db
NB
1315 spin_unlock(&dev->dev_reservation_lock);
1316 /*
1317 * Release any registration associated with the struct se_node_acl.
1318 */
1319 spin_lock(&pr_tmpl->registration_lock);
6c3c9baa
NB
1320 if (pr_res_holder && free_reg)
1321 __core_scsi3_free_registration(dev, pr_res_holder, NULL, 0);
1322
c66ac9db
NB
1323 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1324 &pr_tmpl->registration_list, pr_reg_list) {
1325
1326 if (pr_reg->pr_reg_nacl != nacl)
1327 continue;
1328
1329 __core_scsi3_free_registration(dev, pr_reg, NULL, 0);
1330 }
1331 spin_unlock(&pr_tmpl->registration_lock);
1332}
1333
1334void core_scsi3_free_all_registrations(
1335 struct se_device *dev)
1336{
0fd97ccf 1337 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db
NB
1338 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_res_holder;
1339
1340 spin_lock(&dev->dev_reservation_lock);
1341 pr_res_holder = dev->dev_pr_res_holder;
1342 if (pr_res_holder != NULL) {
1343 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
1344 __core_scsi3_complete_pro_release(dev, pr_res_nacl,
6c3c9baa 1345 pr_res_holder, 0, 0);
c66ac9db
NB
1346 }
1347 spin_unlock(&dev->dev_reservation_lock);
1348
1349 spin_lock(&pr_tmpl->registration_lock);
1350 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1351 &pr_tmpl->registration_list, pr_reg_list) {
1352
1353 __core_scsi3_free_registration(dev, pr_reg, NULL, 0);
1354 }
1355 spin_unlock(&pr_tmpl->registration_lock);
1356
1357 spin_lock(&pr_tmpl->aptpl_reg_lock);
1358 list_for_each_entry_safe(pr_reg, pr_reg_tmp, &pr_tmpl->aptpl_reg_list,
1359 pr_reg_aptpl_list) {
1360 list_del(&pr_reg->pr_reg_aptpl_list);
c66ac9db
NB
1361 kmem_cache_free(t10_pr_reg_cache, pr_reg);
1362 }
1363 spin_unlock(&pr_tmpl->aptpl_reg_lock);
1364}
1365
1366static int core_scsi3_tpg_depend_item(struct se_portal_group *tpg)
1367{
e3d6f909 1368 return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
c66ac9db
NB
1369 &tpg->tpg_group.cg_item);
1370}
1371
1372static void core_scsi3_tpg_undepend_item(struct se_portal_group *tpg)
1373{
e3d6f909 1374 configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
c66ac9db
NB
1375 &tpg->tpg_group.cg_item);
1376
33940d09 1377 atomic_dec_mb(&tpg->tpg_pr_ref_count);
c66ac9db
NB
1378}
1379
1380static int core_scsi3_nodeacl_depend_item(struct se_node_acl *nacl)
1381{
1382 struct se_portal_group *tpg = nacl->se_tpg;
1383
1384 if (nacl->dynamic_node_acl)
1385 return 0;
1386
e3d6f909 1387 return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
c66ac9db
NB
1388 &nacl->acl_group.cg_item);
1389}
1390
1391static void core_scsi3_nodeacl_undepend_item(struct se_node_acl *nacl)
1392{
1393 struct se_portal_group *tpg = nacl->se_tpg;
1394
1395 if (nacl->dynamic_node_acl) {
33940d09 1396 atomic_dec_mb(&nacl->acl_pr_ref_count);
c66ac9db
NB
1397 return;
1398 }
1399
e3d6f909 1400 configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
c66ac9db
NB
1401 &nacl->acl_group.cg_item);
1402
33940d09 1403 atomic_dec_mb(&nacl->acl_pr_ref_count);
c66ac9db
NB
1404}
1405
1406static int core_scsi3_lunacl_depend_item(struct se_dev_entry *se_deve)
1407{
1408 struct se_lun_acl *lun_acl = se_deve->se_lun_acl;
1409 struct se_node_acl *nacl;
1410 struct se_portal_group *tpg;
1411 /*
1412 * For nacl->dynamic_node_acl=1
1413 */
6708bb27 1414 if (!lun_acl)
c66ac9db
NB
1415 return 0;
1416
1417 nacl = lun_acl->se_lun_nacl;
1418 tpg = nacl->se_tpg;
1419
e3d6f909 1420 return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
c66ac9db
NB
1421 &lun_acl->se_lun_group.cg_item);
1422}
1423
1424static void core_scsi3_lunacl_undepend_item(struct se_dev_entry *se_deve)
1425{
1426 struct se_lun_acl *lun_acl = se_deve->se_lun_acl;
1427 struct se_node_acl *nacl;
1428 struct se_portal_group *tpg;
1429 /*
1430 * For nacl->dynamic_node_acl=1
1431 */
6708bb27 1432 if (!lun_acl) {
33940d09 1433 atomic_dec_mb(&se_deve->pr_ref_count);
c66ac9db
NB
1434 return;
1435 }
1436 nacl = lun_acl->se_lun_nacl;
1437 tpg = nacl->se_tpg;
1438
e3d6f909 1439 configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
c66ac9db
NB
1440 &lun_acl->se_lun_group.cg_item);
1441
33940d09 1442 atomic_dec_mb(&se_deve->pr_ref_count);
c66ac9db
NB
1443}
1444
de103c93
CH
1445static sense_reason_t
1446core_scsi3_decode_spec_i_port(
c66ac9db
NB
1447 struct se_cmd *cmd,
1448 struct se_portal_group *tpg,
1449 unsigned char *l_isid,
1450 u64 sa_res_key,
1451 int all_tg_pt,
1452 int aptpl)
1453{
5951146d 1454 struct se_device *dev = cmd->se_dev;
c66ac9db
NB
1455 struct se_port *tmp_port;
1456 struct se_portal_group *dest_tpg = NULL, *tmp_tpg;
e3d6f909 1457 struct se_session *se_sess = cmd->se_sess;
c66ac9db
NB
1458 struct se_node_acl *dest_node_acl = NULL;
1459 struct se_dev_entry *dest_se_deve = NULL, *local_se_deve;
1460 struct t10_pr_registration *dest_pr_reg, *local_pr_reg, *pr_reg_e;
1461 struct t10_pr_registration *pr_reg_tmp, *pr_reg_tmp_safe;
d0f474e5 1462 LIST_HEAD(tid_dest_list);
c66ac9db
NB
1463 struct pr_transport_id_holder *tidh_new, *tidh, *tidh_tmp;
1464 struct target_core_fabric_ops *tmp_tf_ops;
05d1c7c0 1465 unsigned char *buf;
c66ac9db 1466 unsigned char *ptr, *i_str = NULL, proto_ident, tmp_proto_ident;
13ba564c 1467 char *iport_ptr = NULL, i_buf[PR_REG_ISID_ID_LEN];
de103c93 1468 sense_reason_t ret;
c66ac9db 1469 u32 tpdl, tid_len = 0;
d2843c17 1470 int dest_local_nexus;
c66ac9db
NB
1471 u32 dest_rtpi = 0;
1472
f2083241 1473 local_se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
c66ac9db
NB
1474 /*
1475 * Allocate a struct pr_transport_id_holder and setup the
1476 * local_node_acl and local_se_deve pointers and add to
1477 * struct list_head tid_dest_list for add registration
1478 * processing in the loop of tid_dest_list below.
1479 */
1480 tidh_new = kzalloc(sizeof(struct pr_transport_id_holder), GFP_KERNEL);
6708bb27
AG
1481 if (!tidh_new) {
1482 pr_err("Unable to allocate tidh_new\n");
de103c93 1483 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
1484 }
1485 INIT_LIST_HEAD(&tidh_new->dest_list);
1486 tidh_new->dest_tpg = tpg;
1487 tidh_new->dest_node_acl = se_sess->se_node_acl;
1488 tidh_new->dest_se_deve = local_se_deve;
1489
5951146d 1490 local_pr_reg = __core_scsi3_alloc_registration(cmd->se_dev,
c66ac9db
NB
1491 se_sess->se_node_acl, local_se_deve, l_isid,
1492 sa_res_key, all_tg_pt, aptpl);
6708bb27 1493 if (!local_pr_reg) {
c66ac9db 1494 kfree(tidh_new);
de103c93 1495 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
1496 }
1497 tidh_new->dest_pr_reg = local_pr_reg;
1498 /*
1499 * The local I_T nexus does not hold any configfs dependances,
1500 * so we set tid_h->dest_local_nexus=1 to prevent the
1501 * configfs_undepend_item() calls in the tid_dest_list loops below.
1502 */
1503 tidh_new->dest_local_nexus = 1;
1504 list_add_tail(&tidh_new->dest_list, &tid_dest_list);
05d1c7c0 1505
0d7f1299
PB
1506 if (cmd->data_length < 28) {
1507 pr_warn("SPC-PR: Received PR OUT parameter list"
1508 " length too small: %u\n", cmd->data_length);
de103c93 1509 ret = TCM_INVALID_PARAMETER_LIST;
0d7f1299
PB
1510 goto out;
1511 }
1512
4949314c 1513 buf = transport_kmap_data_sg(cmd);
de103c93
CH
1514 if (!buf) {
1515 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1516 goto out;
1517 }
1518
c66ac9db
NB
1519 /*
1520 * For a PERSISTENT RESERVE OUT specify initiator ports payload,
1521 * first extract TransportID Parameter Data Length, and make sure
1522 * the value matches up to the SCSI expected data transfer length.
1523 */
1524 tpdl = (buf[24] & 0xff) << 24;
1525 tpdl |= (buf[25] & 0xff) << 16;
1526 tpdl |= (buf[26] & 0xff) << 8;
1527 tpdl |= buf[27] & 0xff;
1528
1529 if ((tpdl + 28) != cmd->data_length) {
6708bb27 1530 pr_err("SPC-3 PR: Illegal tpdl: %u + 28 byte header"
c66ac9db
NB
1531 " does not equal CDB data_length: %u\n", tpdl,
1532 cmd->data_length);
de103c93
CH
1533 ret = TCM_INVALID_PARAMETER_LIST;
1534 goto out_unmap;
c66ac9db
NB
1535 }
1536 /*
1537 * Start processing the received transport IDs using the
1538 * receiving I_T Nexus portal's fabric dependent methods to
1539 * obtain the SCSI Initiator Port/Device Identifiers.
1540 */
1541 ptr = &buf[28];
1542
1543 while (tpdl > 0) {
1544 proto_ident = (ptr[0] & 0x0f);
1545 dest_tpg = NULL;
1546
1547 spin_lock(&dev->se_port_lock);
1548 list_for_each_entry(tmp_port, &dev->dev_sep_list, sep_list) {
1549 tmp_tpg = tmp_port->sep_tpg;
6708bb27 1550 if (!tmp_tpg)
c66ac9db 1551 continue;
e3d6f909 1552 tmp_tf_ops = tmp_tpg->se_tpg_tfo;
6708bb27 1553 if (!tmp_tf_ops)
c66ac9db 1554 continue;
6708bb27
AG
1555 if (!tmp_tf_ops->get_fabric_proto_ident ||
1556 !tmp_tf_ops->tpg_parse_pr_out_transport_id)
c66ac9db
NB
1557 continue;
1558 /*
1559 * Look for the matching proto_ident provided by
1560 * the received TransportID
1561 */
1562 tmp_proto_ident = tmp_tf_ops->get_fabric_proto_ident(tmp_tpg);
1563 if (tmp_proto_ident != proto_ident)
1564 continue;
1565 dest_rtpi = tmp_port->sep_rtpi;
1566
1567 i_str = tmp_tf_ops->tpg_parse_pr_out_transport_id(
1568 tmp_tpg, (const char *)ptr, &tid_len,
1569 &iport_ptr);
6708bb27 1570 if (!i_str)
c66ac9db
NB
1571 continue;
1572
33940d09 1573 atomic_inc_mb(&tmp_tpg->tpg_pr_ref_count);
c66ac9db
NB
1574 spin_unlock(&dev->se_port_lock);
1575
de103c93 1576 if (core_scsi3_tpg_depend_item(tmp_tpg)) {
6708bb27 1577 pr_err(" core_scsi3_tpg_depend_item()"
c66ac9db 1578 " for tmp_tpg\n");
33940d09 1579 atomic_dec_mb(&tmp_tpg->tpg_pr_ref_count);
de103c93
CH
1580 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1581 goto out_unmap;
c66ac9db
NB
1582 }
1583 /*
35d1efe8 1584 * Locate the destination initiator ACL to be registered
c66ac9db
NB
1585 * from the decoded fabric module specific TransportID
1586 * at *i_str.
1587 */
28638887 1588 spin_lock_irq(&tmp_tpg->acl_node_lock);
c66ac9db
NB
1589 dest_node_acl = __core_tpg_get_initiator_node_acl(
1590 tmp_tpg, i_str);
33940d09
JE
1591 if (dest_node_acl)
1592 atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
28638887 1593 spin_unlock_irq(&tmp_tpg->acl_node_lock);
c66ac9db 1594
6708bb27 1595 if (!dest_node_acl) {
c66ac9db
NB
1596 core_scsi3_tpg_undepend_item(tmp_tpg);
1597 spin_lock(&dev->se_port_lock);
1598 continue;
1599 }
1600
de103c93 1601 if (core_scsi3_nodeacl_depend_item(dest_node_acl)) {
6708bb27 1602 pr_err("configfs_depend_item() failed"
c66ac9db 1603 " for dest_node_acl->acl_group\n");
33940d09 1604 atomic_dec_mb(&dest_node_acl->acl_pr_ref_count);
c66ac9db 1605 core_scsi3_tpg_undepend_item(tmp_tpg);
de103c93
CH
1606 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1607 goto out_unmap;
c66ac9db
NB
1608 }
1609
1610 dest_tpg = tmp_tpg;
6708bb27 1611 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node:"
c66ac9db 1612 " %s Port RTPI: %hu\n",
e3d6f909 1613 dest_tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
1614 dest_node_acl->initiatorname, dest_rtpi);
1615
1616 spin_lock(&dev->se_port_lock);
1617 break;
1618 }
1619 spin_unlock(&dev->se_port_lock);
1620
6708bb27
AG
1621 if (!dest_tpg) {
1622 pr_err("SPC-3 PR SPEC_I_PT: Unable to locate"
c66ac9db 1623 " dest_tpg\n");
de103c93
CH
1624 ret = TCM_INVALID_PARAMETER_LIST;
1625 goto out_unmap;
c66ac9db 1626 }
8b1e1244 1627
6708bb27 1628 pr_debug("SPC-3 PR SPEC_I_PT: Got %s data_length: %u tpdl: %u"
c66ac9db 1629 " tid_len: %d for %s + %s\n",
e3d6f909 1630 dest_tpg->se_tpg_tfo->get_fabric_name(), cmd->data_length,
c66ac9db 1631 tpdl, tid_len, i_str, iport_ptr);
8b1e1244 1632
c66ac9db 1633 if (tid_len > tpdl) {
6708bb27 1634 pr_err("SPC-3 PR SPEC_I_PT: Illegal tid_len:"
c66ac9db
NB
1635 " %u for Transport ID: %s\n", tid_len, ptr);
1636 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1637 core_scsi3_tpg_undepend_item(dest_tpg);
de103c93
CH
1638 ret = TCM_INVALID_PARAMETER_LIST;
1639 goto out_unmap;
c66ac9db
NB
1640 }
1641 /*
1642 * Locate the desintation struct se_dev_entry pointer for matching
1643 * RELATIVE TARGET PORT IDENTIFIER on the receiving I_T Nexus
1644 * Target Port.
1645 */
1646 dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl,
1647 dest_rtpi);
6708bb27
AG
1648 if (!dest_se_deve) {
1649 pr_err("Unable to locate %s dest_se_deve"
c66ac9db 1650 " from destination RTPI: %hu\n",
e3d6f909 1651 dest_tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
1652 dest_rtpi);
1653
1654 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1655 core_scsi3_tpg_undepend_item(dest_tpg);
de103c93
CH
1656 ret = TCM_INVALID_PARAMETER_LIST;
1657 goto out_unmap;
c66ac9db
NB
1658 }
1659
de103c93 1660 if (core_scsi3_lunacl_depend_item(dest_se_deve)) {
6708bb27 1661 pr_err("core_scsi3_lunacl_depend_item()"
c66ac9db 1662 " failed\n");
33940d09 1663 atomic_dec_mb(&dest_se_deve->pr_ref_count);
c66ac9db
NB
1664 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1665 core_scsi3_tpg_undepend_item(dest_tpg);
de103c93
CH
1666 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1667 goto out_unmap;
c66ac9db 1668 }
8b1e1244 1669
6708bb27 1670 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node: %s"
c66ac9db 1671 " dest_se_deve mapped_lun: %u\n",
e3d6f909 1672 dest_tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db 1673 dest_node_acl->initiatorname, dest_se_deve->mapped_lun);
8b1e1244 1674
c66ac9db
NB
1675 /*
1676 * Skip any TransportIDs that already have a registration for
1677 * this target port.
1678 */
1679 pr_reg_e = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
1680 iport_ptr);
1681 if (pr_reg_e) {
1682 core_scsi3_put_pr_reg(pr_reg_e);
1683 core_scsi3_lunacl_undepend_item(dest_se_deve);
1684 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1685 core_scsi3_tpg_undepend_item(dest_tpg);
1686 ptr += tid_len;
1687 tpdl -= tid_len;
1688 tid_len = 0;
1689 continue;
1690 }
1691 /*
1692 * Allocate a struct pr_transport_id_holder and setup
1693 * the dest_node_acl and dest_se_deve pointers for the
1694 * loop below.
1695 */
1696 tidh_new = kzalloc(sizeof(struct pr_transport_id_holder),
1697 GFP_KERNEL);
6708bb27
AG
1698 if (!tidh_new) {
1699 pr_err("Unable to allocate tidh_new\n");
c66ac9db
NB
1700 core_scsi3_lunacl_undepend_item(dest_se_deve);
1701 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1702 core_scsi3_tpg_undepend_item(dest_tpg);
de103c93
CH
1703 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1704 goto out_unmap;
c66ac9db
NB
1705 }
1706 INIT_LIST_HEAD(&tidh_new->dest_list);
1707 tidh_new->dest_tpg = dest_tpg;
1708 tidh_new->dest_node_acl = dest_node_acl;
1709 tidh_new->dest_se_deve = dest_se_deve;
1710
1711 /*
1712 * Allocate, but do NOT add the registration for the
1713 * TransportID referenced SCSI Initiator port. This
1714 * done because of the following from spc4r17 in section
1715 * 6.14.3 wrt SPEC_I_PT:
1716 *
1717 * "If a registration fails for any initiator port (e.g., if th
1718 * logical unit does not have enough resources available to
1719 * hold the registration information), no registrations shall be
1720 * made, and the command shall be terminated with
1721 * CHECK CONDITION status."
1722 *
1723 * That means we call __core_scsi3_alloc_registration() here,
1724 * and then call __core_scsi3_add_registration() in the
1725 * 2nd loop which will never fail.
1726 */
5951146d 1727 dest_pr_reg = __core_scsi3_alloc_registration(cmd->se_dev,
c66ac9db
NB
1728 dest_node_acl, dest_se_deve, iport_ptr,
1729 sa_res_key, all_tg_pt, aptpl);
6708bb27 1730 if (!dest_pr_reg) {
c66ac9db
NB
1731 core_scsi3_lunacl_undepend_item(dest_se_deve);
1732 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1733 core_scsi3_tpg_undepend_item(dest_tpg);
1734 kfree(tidh_new);
de103c93
CH
1735 ret = TCM_INVALID_PARAMETER_LIST;
1736 goto out_unmap;
c66ac9db
NB
1737 }
1738 tidh_new->dest_pr_reg = dest_pr_reg;
1739 list_add_tail(&tidh_new->dest_list, &tid_dest_list);
1740
1741 ptr += tid_len;
1742 tpdl -= tid_len;
1743 tid_len = 0;
1744
1745 }
05d1c7c0 1746
4949314c 1747 transport_kunmap_data_sg(cmd);
05d1c7c0 1748
c66ac9db
NB
1749 /*
1750 * Go ahead and create a registrations from tid_dest_list for the
1751 * SPEC_I_PT provided TransportID for the *tidh referenced dest_node_acl
1752 * and dest_se_deve.
1753 *
1754 * The SA Reservation Key from the PROUT is set for the
1755 * registration, and ALL_TG_PT is also passed. ALL_TG_PT=1
1756 * means that the TransportID Initiator port will be
1757 * registered on all of the target ports in the SCSI target device
1758 * ALL_TG_PT=0 means the registration will only be for the
1759 * SCSI target port the PROUT REGISTER with SPEC_I_PT=1
1760 * was received.
1761 */
1762 list_for_each_entry_safe(tidh, tidh_tmp, &tid_dest_list, dest_list) {
1763 dest_tpg = tidh->dest_tpg;
1764 dest_node_acl = tidh->dest_node_acl;
1765 dest_se_deve = tidh->dest_se_deve;
1766 dest_pr_reg = tidh->dest_pr_reg;
1767 dest_local_nexus = tidh->dest_local_nexus;
1768
1769 list_del(&tidh->dest_list);
1770 kfree(tidh);
1771
1772 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
d2843c17 1773 core_pr_dump_initiator_port(dest_pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db 1774
5951146d 1775 __core_scsi3_add_registration(cmd->se_dev, dest_node_acl,
c66ac9db
NB
1776 dest_pr_reg, 0, 0);
1777
6708bb27 1778 pr_debug("SPC-3 PR [%s] SPEC_I_PT: Successfully"
c66ac9db 1779 " registered Transport ID for Node: %s%s Mapped LUN:"
e3d6f909 1780 " %u\n", dest_tpg->se_tpg_tfo->get_fabric_name(),
d2843c17 1781 dest_node_acl->initiatorname, i_buf, dest_se_deve->mapped_lun);
c66ac9db
NB
1782
1783 if (dest_local_nexus)
1784 continue;
1785
1786 core_scsi3_lunacl_undepend_item(dest_se_deve);
1787 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1788 core_scsi3_tpg_undepend_item(dest_tpg);
1789 }
1790
1791 return 0;
de103c93 1792out_unmap:
4949314c 1793 transport_kunmap_data_sg(cmd);
de103c93 1794out:
c66ac9db
NB
1795 /*
1796 * For the failure case, release everything from tid_dest_list
1797 * including *dest_pr_reg and the configfs dependances..
1798 */
1799 list_for_each_entry_safe(tidh, tidh_tmp, &tid_dest_list, dest_list) {
1800 dest_tpg = tidh->dest_tpg;
1801 dest_node_acl = tidh->dest_node_acl;
1802 dest_se_deve = tidh->dest_se_deve;
1803 dest_pr_reg = tidh->dest_pr_reg;
1804 dest_local_nexus = tidh->dest_local_nexus;
1805
1806 list_del(&tidh->dest_list);
1807 kfree(tidh);
1808 /*
1809 * Release any extra ALL_TG_PT=1 registrations for
1810 * the SPEC_I_PT=1 case.
1811 */
1812 list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
1813 &dest_pr_reg->pr_reg_atp_list,
1814 pr_reg_atp_mem_list) {
1815 list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
1816 core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
1817 kmem_cache_free(t10_pr_reg_cache, pr_reg_tmp);
1818 }
1819
c66ac9db
NB
1820 kmem_cache_free(t10_pr_reg_cache, dest_pr_reg);
1821
1822 if (dest_local_nexus)
1823 continue;
1824
1825 core_scsi3_lunacl_undepend_item(dest_se_deve);
1826 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1827 core_scsi3_tpg_undepend_item(dest_tpg);
1828 }
1829 return ret;
1830}
1831
3c8a6228 1832static int core_scsi3_update_aptpl_buf(
c66ac9db
NB
1833 struct se_device *dev,
1834 unsigned char *buf,
0607decd 1835 u32 pr_aptpl_buf_len)
c66ac9db
NB
1836{
1837 struct se_lun *lun;
1838 struct se_portal_group *tpg;
c66ac9db
NB
1839 struct t10_pr_registration *pr_reg;
1840 unsigned char tmp[512], isid_buf[32];
1841 ssize_t len = 0;
1842 int reg_count = 0;
3c8a6228 1843 int ret = 0;
c66ac9db 1844
3c8a6228
AG
1845 spin_lock(&dev->dev_reservation_lock);
1846 spin_lock(&dev->t10_pr.registration_lock);
c66ac9db
NB
1847 /*
1848 * Walk the registration list..
1849 */
0fd97ccf 1850 list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
c66ac9db
NB
1851 pr_reg_list) {
1852
1853 tmp[0] = '\0';
1854 isid_buf[0] = '\0';
1855 tpg = pr_reg->pr_reg_nacl->se_tpg;
1856 lun = pr_reg->pr_reg_tg_pt_lun;
1857 /*
1858 * Write out any ISID value to APTPL metadata that was included
1859 * in the original registration.
1860 */
1861 if (pr_reg->isid_present_at_reg)
1862 snprintf(isid_buf, 32, "initiator_sid=%s\n",
1863 pr_reg->pr_reg_isid);
1864 /*
1865 * Include special metadata if the pr_reg matches the
1866 * reservation holder.
1867 */
1868 if (dev->dev_pr_res_holder == pr_reg) {
1869 snprintf(tmp, 512, "PR_REG_START: %d"
1870 "\ninitiator_fabric=%s\n"
1871 "initiator_node=%s\n%s"
1872 "sa_res_key=%llu\n"
1873 "res_holder=1\nres_type=%02x\n"
1874 "res_scope=%02x\nres_all_tg_pt=%d\n"
1875 "mapped_lun=%u\n", reg_count,
e3d6f909 1876 tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
1877 pr_reg->pr_reg_nacl->initiatorname, isid_buf,
1878 pr_reg->pr_res_key, pr_reg->pr_res_type,
1879 pr_reg->pr_res_scope, pr_reg->pr_reg_all_tg_pt,
1880 pr_reg->pr_res_mapped_lun);
1881 } else {
1882 snprintf(tmp, 512, "PR_REG_START: %d\n"
1883 "initiator_fabric=%s\ninitiator_node=%s\n%s"
1884 "sa_res_key=%llu\nres_holder=0\n"
1885 "res_all_tg_pt=%d\nmapped_lun=%u\n",
e3d6f909 1886 reg_count, tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
1887 pr_reg->pr_reg_nacl->initiatorname, isid_buf,
1888 pr_reg->pr_res_key, pr_reg->pr_reg_all_tg_pt,
1889 pr_reg->pr_res_mapped_lun);
1890 }
1891
60d645a4 1892 if ((len + strlen(tmp) >= pr_aptpl_buf_len)) {
f161d4b4
NB
1893 pr_err("Unable to update renaming APTPL metadata,"
1894 " reallocating larger buffer\n");
3c8a6228
AG
1895 ret = -EMSGSIZE;
1896 goto out;
c66ac9db
NB
1897 }
1898 len += sprintf(buf+len, "%s", tmp);
1899
1900 /*
1901 * Include information about the associated SCSI target port.
1902 */
1903 snprintf(tmp, 512, "target_fabric=%s\ntarget_node=%s\n"
1904 "tpgt=%hu\nport_rtpi=%hu\ntarget_lun=%u\nPR_REG_END:"
e3d6f909
AG
1905 " %d\n", tpg->se_tpg_tfo->get_fabric_name(),
1906 tpg->se_tpg_tfo->tpg_get_wwn(tpg),
1907 tpg->se_tpg_tfo->tpg_get_tag(tpg),
c66ac9db
NB
1908 lun->lun_sep->sep_rtpi, lun->unpacked_lun, reg_count);
1909
60d645a4 1910 if ((len + strlen(tmp) >= pr_aptpl_buf_len)) {
f161d4b4
NB
1911 pr_err("Unable to update renaming APTPL metadata,"
1912 " reallocating larger buffer\n");
3c8a6228
AG
1913 ret = -EMSGSIZE;
1914 goto out;
c66ac9db
NB
1915 }
1916 len += sprintf(buf+len, "%s", tmp);
1917 reg_count++;
1918 }
c66ac9db 1919
6708bb27 1920 if (!reg_count)
c66ac9db
NB
1921 len += sprintf(buf+len, "No Registrations or Reservations");
1922
3c8a6228
AG
1923out:
1924 spin_unlock(&dev->t10_pr.registration_lock);
c66ac9db
NB
1925 spin_unlock(&dev->dev_reservation_lock);
1926
1927 return ret;
1928}
1929
c66ac9db
NB
1930static int __core_scsi3_write_aptpl_to_file(
1931 struct se_device *dev,
4dee96fb 1932 unsigned char *buf)
c66ac9db 1933{
0fd97ccf 1934 struct t10_wwn *wwn = &dev->t10_wwn;
c66ac9db 1935 struct file *file;
c66ac9db
NB
1936 int flags = O_RDWR | O_CREAT | O_TRUNC;
1937 char path[512];
4dee96fb 1938 u32 pr_aptpl_buf_len;
c66ac9db
NB
1939 int ret;
1940
c66ac9db
NB
1941 memset(path, 0, 512);
1942
60d645a4 1943 if (strlen(&wwn->unit_serial[0]) >= 512) {
6708bb27 1944 pr_err("WWN value for struct se_device does not fit"
c66ac9db 1945 " into path buffer\n");
e3d6f909 1946 return -EMSGSIZE;
c66ac9db
NB
1947 }
1948
1949 snprintf(path, 512, "/var/target/pr/aptpl_%s", &wwn->unit_serial[0]);
1950 file = filp_open(path, flags, 0600);
0e9b10a9 1951 if (IS_ERR(file)) {
6708bb27 1952 pr_err("filp_open(%s) for APTPL metadata"
c66ac9db 1953 " failed\n", path);
0e9b10a9 1954 return PTR_ERR(file);
c66ac9db
NB
1955 }
1956
4dee96fb 1957 pr_aptpl_buf_len = (strlen(buf) + 1); /* Add extra for NULL */
c66ac9db 1958
0e9b10a9 1959 ret = kernel_write(file, buf, pr_aptpl_buf_len, 0);
c66ac9db 1960
0e9b10a9 1961 if (ret < 0)
6708bb27 1962 pr_debug("Error writing APTPL metadata file: %s\n", path);
0e9b10a9 1963 fput(file);
c66ac9db 1964
f730f915 1965 return (ret < 0) ? -EIO : 0;
c66ac9db
NB
1966}
1967
459f213b
AG
1968/*
1969 * Clear the APTPL metadata if APTPL has been disabled, otherwise
1970 * write out the updated metadata to struct file for this SCSI device.
1971 */
8a391857 1972static sense_reason_t core_scsi3_update_and_write_aptpl(struct se_device *dev, bool aptpl)
c66ac9db 1973{
8a391857 1974 unsigned char *buf;
f161d4b4 1975 int rc, len = PR_APTPL_BUF_LEN;
de103c93 1976
459f213b
AG
1977 if (!aptpl) {
1978 char *null_buf = "No Registrations or Reservations\n";
1979
8a391857 1980 rc = __core_scsi3_write_aptpl_to_file(dev, null_buf);
459f213b
AG
1981 dev->t10_pr.pr_aptpl_active = 0;
1982 pr_debug("SPC-3 PR: Set APTPL Bit Deactivated\n");
459f213b 1983
8a391857
NB
1984 if (rc)
1985 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
459f213b 1986
8a391857
NB
1987 return 0;
1988 }
f161d4b4
NB
1989retry:
1990 buf = vzalloc(len);
8a391857
NB
1991 if (!buf)
1992 return TCM_OUT_OF_RESOURCES;
1993
f161d4b4 1994 rc = core_scsi3_update_aptpl_buf(dev, buf, len);
8a391857 1995 if (rc < 0) {
f161d4b4
NB
1996 vfree(buf);
1997 len *= 2;
1998 goto retry;
c66ac9db
NB
1999 }
2000
8a391857
NB
2001 rc = __core_scsi3_write_aptpl_to_file(dev, buf);
2002 if (rc != 0) {
2003 pr_err("SPC-3 PR: Could not update APTPL\n");
f161d4b4 2004 vfree(buf);
8a391857
NB
2005 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2006 }
2007 dev->t10_pr.pr_aptpl_active = 1;
f161d4b4 2008 vfree(buf);
8a391857
NB
2009 pr_debug("SPC-3 PR: Set APTPL Bit Activated\n");
2010 return 0;
c66ac9db
NB
2011}
2012
de103c93
CH
2013static sense_reason_t
2014core_scsi3_emulate_pro_register(struct se_cmd *cmd, u64 res_key, u64 sa_res_key,
bc118fe4 2015 bool aptpl, bool all_tg_pt, bool spec_i_pt, enum register_type register_type)
c66ac9db 2016{
e3d6f909 2017 struct se_session *se_sess = cmd->se_sess;
5951146d 2018 struct se_device *dev = cmd->se_dev;
c66ac9db 2019 struct se_dev_entry *se_deve;
e3d6f909 2020 struct se_lun *se_lun = cmd->se_lun;
c66ac9db 2021 struct se_portal_group *se_tpg;
bc118fe4 2022 struct t10_pr_registration *pr_reg, *pr_reg_p, *pr_reg_tmp;
0fd97ccf 2023 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db 2024 unsigned char isid_buf[PR_REG_ISID_LEN], *isid_ptr = NULL;
a0d50f62 2025 sense_reason_t ret = TCM_NO_SENSE;
fc09149d 2026 int pr_holder = 0, type;
c66ac9db 2027
6708bb27
AG
2028 if (!se_sess || !se_lun) {
2029 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
de103c93 2030 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
2031 }
2032 se_tpg = se_sess->se_tpg;
f2083241 2033 se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
c66ac9db 2034
e3d6f909 2035 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid) {
c66ac9db 2036 memset(&isid_buf[0], 0, PR_REG_ISID_LEN);
e3d6f909 2037 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess, &isid_buf[0],
c66ac9db
NB
2038 PR_REG_ISID_LEN);
2039 isid_ptr = &isid_buf[0];
2040 }
2041 /*
2042 * Follow logic from spc4r17 Section 5.7.7, Register Behaviors Table 47
2043 */
bc118fe4
AG
2044 pr_reg = core_scsi3_locate_pr_reg(dev, se_sess->se_node_acl, se_sess);
2045 if (!pr_reg) {
c66ac9db 2046 if (res_key) {
6708bb27 2047 pr_warn("SPC-3 PR: Reservation Key non-zero"
c66ac9db 2048 " for SA REGISTER, returning CONFLICT\n");
de103c93 2049 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
2050 }
2051 /*
2052 * Do nothing but return GOOD status.
2053 */
6708bb27 2054 if (!sa_res_key)
03e98c9e 2055 return 0;
c66ac9db 2056
6708bb27 2057 if (!spec_i_pt) {
c66ac9db
NB
2058 /*
2059 * Perform the Service Action REGISTER on the Initiator
2060 * Port Endpoint that the PRO was received from on the
2061 * Logical Unit of the SCSI device server.
2062 */
de103c93 2063 if (core_scsi3_alloc_registration(cmd->se_dev,
c66ac9db
NB
2064 se_sess->se_node_acl, se_deve, isid_ptr,
2065 sa_res_key, all_tg_pt, aptpl,
33ce6a87 2066 register_type, 0)) {
6708bb27 2067 pr_err("Unable to allocate"
c66ac9db 2068 " struct t10_pr_registration\n");
de103c93 2069 return TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
2070 }
2071 } else {
2072 /*
2073 * Register both the Initiator port that received
2074 * PROUT SA REGISTER + SPEC_I_PT=1 and extract SCSI
2075 * TransportID from Parameter list and loop through
2076 * fabric dependent parameter list while calling
2077 * logic from of core_scsi3_alloc_registration() for
2078 * each TransportID provided SCSI Initiator Port/Device
2079 */
2080 ret = core_scsi3_decode_spec_i_port(cmd, se_tpg,
2081 isid_ptr, sa_res_key, all_tg_pt, aptpl);
2082 if (ret != 0)
2083 return ret;
2084 }
c66ac9db 2085
459f213b 2086 return core_scsi3_update_and_write_aptpl(dev, aptpl);
de103c93
CH
2087 }
2088
bc118fe4
AG
2089 /* ok, existing registration */
2090
2091 if ((register_type == REGISTER) && (res_key != pr_reg->pr_res_key)) {
2092 pr_err("SPC-3 PR REGISTER: Received"
2093 " res_key: 0x%016Lx does not match"
2094 " existing SA REGISTER res_key:"
2095 " 0x%016Lx\n", res_key,
2096 pr_reg->pr_res_key);
2097 ret = TCM_RESERVATION_CONFLICT;
2098 goto out;
de103c93
CH
2099 }
2100
2101 if (spec_i_pt) {
1f070cc2
AG
2102 pr_err("SPC-3 PR REGISTER: SPEC_I_PT"
2103 " set on a registered nexus\n");
de103c93 2104 ret = TCM_INVALID_PARAMETER_LIST;
bc118fe4 2105 goto out;
de103c93
CH
2106 }
2107
2108 /*
2109 * An existing ALL_TG_PT=1 registration being released
2110 * must also set ALL_TG_PT=1 in the incoming PROUT.
2111 */
1f070cc2
AG
2112 if (pr_reg->pr_reg_all_tg_pt && !all_tg_pt) {
2113 pr_err("SPC-3 PR REGISTER: ALL_TG_PT=1"
de103c93
CH
2114 " registration exists, but ALL_TG_PT=1 bit not"
2115 " present in received PROUT\n");
2116 ret = TCM_INVALID_CDB_FIELD;
bc118fe4 2117 goto out;
de103c93
CH
2118 }
2119
de103c93 2120 /*
51d9c41d 2121 * sa_res_key=1 Change Reservation Key for registered I_T Nexus.
de103c93 2122 */
51d9c41d
AG
2123 if (sa_res_key) {
2124 /*
2125 * Increment PRgeneration counter for struct se_device"
2126 * upon a successful REGISTER, see spc4r17 section 6.3.2
2127 * READ_KEYS service action.
2128 */
2129 pr_reg->pr_res_generation = core_scsi3_pr_generation(cmd->se_dev);
2130 pr_reg->pr_res_key = sa_res_key;
2131 pr_debug("SPC-3 PR [%s] REGISTER%s: Changed Reservation"
2132 " Key for %s to: 0x%016Lx PRgeneration:"
2133 " 0x%08x\n", cmd->se_tfo->get_fabric_name(),
2134 (register_type == REGISTER_AND_IGNORE_EXISTING_KEY) ? "_AND_IGNORE_EXISTING_KEY" : "",
2135 pr_reg->pr_reg_nacl->initiatorname,
2136 pr_reg->pr_res_key, pr_reg->pr_res_generation);
2137
2138 } else {
2139 /*
2140 * sa_res_key=0 Unregister Reservation Key for registered I_T Nexus.
2141 */
6c3c9baa
NB
2142 type = pr_reg->pr_res_type;
2143 pr_holder = core_scsi3_check_implicit_release(cmd->se_dev,
2144 pr_reg);
de103c93 2145 if (pr_holder < 0) {
de103c93 2146 ret = TCM_RESERVATION_CONFLICT;
bc118fe4 2147 goto out;
c66ac9db 2148 }
de103c93
CH
2149
2150 spin_lock(&pr_tmpl->registration_lock);
c66ac9db 2151 /*
de103c93
CH
2152 * Release all ALL_TG_PT=1 for the matching SCSI Initiator Port
2153 * and matching pr_res_key.
c66ac9db 2154 */
de103c93
CH
2155 if (pr_reg->pr_reg_all_tg_pt) {
2156 list_for_each_entry_safe(pr_reg_p, pr_reg_tmp,
2157 &pr_tmpl->registration_list,
2158 pr_reg_list) {
2159
2160 if (!pr_reg_p->pr_reg_all_tg_pt)
2161 continue;
2162 if (pr_reg_p->pr_res_key != res_key)
2163 continue;
2164 if (pr_reg == pr_reg_p)
2165 continue;
2166 if (strcmp(pr_reg->pr_reg_nacl->initiatorname,
2167 pr_reg_p->pr_reg_nacl->initiatorname))
2168 continue;
2169
2170 __core_scsi3_free_registration(dev,
2171 pr_reg_p, NULL, 0);
c66ac9db
NB
2172 }
2173 }
de103c93 2174
c66ac9db 2175 /*
de103c93 2176 * Release the calling I_T Nexus registration now..
c66ac9db 2177 */
de103c93 2178 __core_scsi3_free_registration(cmd->se_dev, pr_reg, NULL, 1);
fc09149d 2179 pr_reg = NULL;
c66ac9db 2180
de103c93
CH
2181 /*
2182 * From spc4r17, section 5.7.11.3 Unregistering
2183 *
2184 * If the persistent reservation is a registrants only
2185 * type, the device server shall establish a unit
2186 * attention condition for the initiator port associated
2187 * with every registered I_T nexus except for the I_T
2188 * nexus on which the PERSISTENT RESERVE OUT command was
2189 * received, with the additional sense code set to
2190 * RESERVATIONS RELEASED.
2191 */
2192 if (pr_holder &&
fc09149d
NB
2193 (type == PR_TYPE_WRITE_EXCLUSIVE_REGONLY ||
2194 type == PR_TYPE_EXCLUSIVE_ACCESS_REGONLY)) {
de103c93
CH
2195 list_for_each_entry(pr_reg_p,
2196 &pr_tmpl->registration_list,
2197 pr_reg_list) {
2198
2199 core_scsi3_ua_allocate(
2200 pr_reg_p->pr_reg_nacl,
2201 pr_reg_p->pr_res_mapped_lun,
2202 0x2A,
2203 ASCQ_2AH_RESERVATIONS_RELEASED);
c66ac9db 2204 }
de103c93 2205 }
c66ac9db 2206
51d9c41d 2207 spin_unlock(&pr_tmpl->registration_lock);
de103c93 2208 }
c66ac9db 2209
459f213b 2210 ret = core_scsi3_update_and_write_aptpl(dev, aptpl);
de103c93 2211
bc118fe4 2212out:
fc09149d
NB
2213 if (pr_reg)
2214 core_scsi3_put_pr_reg(pr_reg);
de103c93 2215 return ret;
c66ac9db
NB
2216}
2217
2218unsigned char *core_scsi3_pr_dump_type(int type)
2219{
2220 switch (type) {
2221 case PR_TYPE_WRITE_EXCLUSIVE:
2222 return "Write Exclusive Access";
2223 case PR_TYPE_EXCLUSIVE_ACCESS:
2224 return "Exclusive Access";
2225 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
2226 return "Write Exclusive Access, Registrants Only";
2227 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
2228 return "Exclusive Access, Registrants Only";
2229 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
2230 return "Write Exclusive Access, All Registrants";
2231 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
2232 return "Exclusive Access, All Registrants";
2233 default:
2234 break;
2235 }
2236
2237 return "Unknown SPC-3 PR Type";
2238}
2239
de103c93
CH
2240static sense_reason_t
2241core_scsi3_pro_reserve(struct se_cmd *cmd, int type, int scope, u64 res_key)
c66ac9db 2242{
de103c93 2243 struct se_device *dev = cmd->se_dev;
e3d6f909 2244 struct se_session *se_sess = cmd->se_sess;
e3d6f909 2245 struct se_lun *se_lun = cmd->se_lun;
c66ac9db 2246 struct t10_pr_registration *pr_reg, *pr_res_holder;
0fd97ccf 2247 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db 2248 char i_buf[PR_REG_ISID_ID_LEN];
de103c93 2249 sense_reason_t ret;
c66ac9db
NB
2250
2251 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2252
6708bb27
AG
2253 if (!se_sess || !se_lun) {
2254 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
de103c93 2255 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db 2256 }
c66ac9db
NB
2257 /*
2258 * Locate the existing *pr_reg via struct se_node_acl pointers
2259 */
5951146d 2260 pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
c66ac9db 2261 se_sess);
6708bb27
AG
2262 if (!pr_reg) {
2263 pr_err("SPC-3 PR: Unable to locate"
c66ac9db 2264 " PR_REGISTERED *pr_reg for RESERVE\n");
de103c93 2265 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
2266 }
2267 /*
2268 * From spc4r17 Section 5.7.9: Reserving:
2269 *
2270 * An application client creates a persistent reservation by issuing
2271 * a PERSISTENT RESERVE OUT command with RESERVE service action through
2272 * a registered I_T nexus with the following parameters:
2273 * a) RESERVATION KEY set to the value of the reservation key that is
2274 * registered with the logical unit for the I_T nexus; and
2275 */
2276 if (res_key != pr_reg->pr_res_key) {
6708bb27 2277 pr_err("SPC-3 PR RESERVE: Received res_key: 0x%016Lx"
c66ac9db
NB
2278 " does not match existing SA REGISTER res_key:"
2279 " 0x%016Lx\n", res_key, pr_reg->pr_res_key);
de103c93
CH
2280 ret = TCM_RESERVATION_CONFLICT;
2281 goto out_put_pr_reg;
c66ac9db
NB
2282 }
2283 /*
2284 * From spc4r17 Section 5.7.9: Reserving:
2285 *
2286 * From above:
2287 * b) TYPE field and SCOPE field set to the persistent reservation
2288 * being created.
2289 *
2290 * Only one persistent reservation is allowed at a time per logical unit
2291 * and that persistent reservation has a scope of LU_SCOPE.
2292 */
2293 if (scope != PR_SCOPE_LU_SCOPE) {
6708bb27 2294 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope);
de103c93
CH
2295 ret = TCM_INVALID_PARAMETER_LIST;
2296 goto out_put_pr_reg;
c66ac9db
NB
2297 }
2298 /*
2299 * See if we have an existing PR reservation holder pointer at
2300 * struct se_device->dev_pr_res_holder in the form struct t10_pr_registration
2301 * *pr_res_holder.
2302 */
2303 spin_lock(&dev->dev_reservation_lock);
2304 pr_res_holder = dev->dev_pr_res_holder;
ee1b1b9c 2305 if (pr_res_holder) {
c66ac9db
NB
2306 /*
2307 * From spc4r17 Section 5.7.9: Reserving:
2308 *
2309 * If the device server receives a PERSISTENT RESERVE OUT
2310 * command from an I_T nexus other than a persistent reservation
2311 * holder (see 5.7.10) that attempts to create a persistent
2312 * reservation when a persistent reservation already exists for
2313 * the logical unit, then the command shall be completed with
2314 * RESERVATION CONFLICT status.
2315 */
e673dc92 2316 if (!is_reservation_holder(pr_res_holder, pr_reg)) {
c66ac9db 2317 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
6708bb27 2318 pr_err("SPC-3 PR: Attempted RESERVE from"
c66ac9db
NB
2319 " [%s]: %s while reservation already held by"
2320 " [%s]: %s, returning RESERVATION_CONFLICT\n",
e3d6f909 2321 cmd->se_tfo->get_fabric_name(),
c66ac9db 2322 se_sess->se_node_acl->initiatorname,
e3d6f909 2323 pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
2324 pr_res_holder->pr_reg_nacl->initiatorname);
2325
2326 spin_unlock(&dev->dev_reservation_lock);
de103c93
CH
2327 ret = TCM_RESERVATION_CONFLICT;
2328 goto out_put_pr_reg;
c66ac9db
NB
2329 }
2330 /*
2331 * From spc4r17 Section 5.7.9: Reserving:
2332 *
2333 * If a persistent reservation holder attempts to modify the
2334 * type or scope of an existing persistent reservation, the
2335 * command shall be completed with RESERVATION CONFLICT status.
2336 */
2337 if ((pr_res_holder->pr_res_type != type) ||
2338 (pr_res_holder->pr_res_scope != scope)) {
2339 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
6708bb27 2340 pr_err("SPC-3 PR: Attempted RESERVE from"
c66ac9db
NB
2341 " [%s]: %s trying to change TYPE and/or SCOPE,"
2342 " while reservation already held by [%s]: %s,"
2343 " returning RESERVATION_CONFLICT\n",
e3d6f909 2344 cmd->se_tfo->get_fabric_name(),
c66ac9db 2345 se_sess->se_node_acl->initiatorname,
e3d6f909 2346 pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
2347 pr_res_holder->pr_reg_nacl->initiatorname);
2348
2349 spin_unlock(&dev->dev_reservation_lock);
de103c93
CH
2350 ret = TCM_RESERVATION_CONFLICT;
2351 goto out_put_pr_reg;
c66ac9db
NB
2352 }
2353 /*
2354 * From spc4r17 Section 5.7.9: Reserving:
2355 *
2356 * If the device server receives a PERSISTENT RESERVE OUT
2357 * command with RESERVE service action where the TYPE field and
2358 * the SCOPE field contain the same values as the existing type
2359 * and scope from a persistent reservation holder, it shall not
2360 * make any change to the existing persistent reservation and
2361 * shall completethe command with GOOD status.
2362 */
2363 spin_unlock(&dev->dev_reservation_lock);
de103c93
CH
2364 ret = 0;
2365 goto out_put_pr_reg;
c66ac9db
NB
2366 }
2367 /*
2368 * Otherwise, our *pr_reg becomes the PR reservation holder for said
2369 * TYPE/SCOPE. Also set the received scope and type in *pr_reg.
2370 */
2371 pr_reg->pr_res_scope = scope;
2372 pr_reg->pr_res_type = type;
2373 pr_reg->pr_res_holder = 1;
2374 dev->dev_pr_res_holder = pr_reg;
d2843c17 2375 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db 2376
6708bb27 2377 pr_debug("SPC-3 PR [%s] Service Action: RESERVE created new"
c66ac9db 2378 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
e3d6f909 2379 cmd->se_tfo->get_fabric_name(), core_scsi3_pr_dump_type(type),
c66ac9db 2380 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
6708bb27 2381 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
e3d6f909 2382 cmd->se_tfo->get_fabric_name(),
c66ac9db 2383 se_sess->se_node_acl->initiatorname,
d2843c17 2384 i_buf);
c66ac9db
NB
2385 spin_unlock(&dev->dev_reservation_lock);
2386
459f213b
AG
2387 if (pr_tmpl->pr_aptpl_active)
2388 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
c66ac9db 2389
de103c93
CH
2390 ret = 0;
2391out_put_pr_reg:
c66ac9db 2392 core_scsi3_put_pr_reg(pr_reg);
de103c93 2393 return ret;
c66ac9db
NB
2394}
2395
de103c93
CH
2396static sense_reason_t
2397core_scsi3_emulate_pro_reserve(struct se_cmd *cmd, int type, int scope,
2398 u64 res_key)
c66ac9db 2399{
c66ac9db
NB
2400 switch (type) {
2401 case PR_TYPE_WRITE_EXCLUSIVE:
2402 case PR_TYPE_EXCLUSIVE_ACCESS:
2403 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
2404 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
2405 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
2406 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
de103c93 2407 return core_scsi3_pro_reserve(cmd, type, scope, res_key);
c66ac9db 2408 default:
6708bb27 2409 pr_err("SPC-3 PR: Unknown Service Action RESERVE Type:"
c66ac9db 2410 " 0x%02x\n", type);
de103c93 2411 return TCM_INVALID_CDB_FIELD;
c66ac9db 2412 }
c66ac9db
NB
2413}
2414
2415/*
2416 * Called with struct se_device->dev_reservation_lock held.
2417 */
2418static void __core_scsi3_complete_pro_release(
2419 struct se_device *dev,
2420 struct se_node_acl *se_nacl,
2421 struct t10_pr_registration *pr_reg,
6c3c9baa
NB
2422 int explicit,
2423 int unreg)
c66ac9db
NB
2424{
2425 struct target_core_fabric_ops *tfo = se_nacl->se_tpg->se_tpg_tfo;
2426 char i_buf[PR_REG_ISID_ID_LEN];
6c3c9baa 2427 int pr_res_type = 0, pr_res_scope = 0;
c66ac9db
NB
2428
2429 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
d2843c17 2430 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db
NB
2431 /*
2432 * Go ahead and release the current PR reservation holder.
6c3c9baa
NB
2433 * If an All Registrants reservation is currently active and
2434 * a unregister operation is requested, replace the current
2435 * dev_pr_res_holder with another active registration.
2436 */
2437 if (dev->dev_pr_res_holder) {
2438 pr_res_type = dev->dev_pr_res_holder->pr_res_type;
2439 pr_res_scope = dev->dev_pr_res_holder->pr_res_scope;
2440 dev->dev_pr_res_holder->pr_res_type = 0;
2441 dev->dev_pr_res_holder->pr_res_scope = 0;
2442 dev->dev_pr_res_holder->pr_res_holder = 0;
2443 dev->dev_pr_res_holder = NULL;
2444 }
2445 if (!unreg)
2446 goto out;
c66ac9db 2447
6c3c9baa
NB
2448 spin_lock(&dev->t10_pr.registration_lock);
2449 list_del_init(&pr_reg->pr_reg_list);
2450 /*
2451 * If the I_T nexus is a reservation holder, the persistent reservation
2452 * is of an all registrants type, and the I_T nexus is the last remaining
2453 * registered I_T nexus, then the device server shall also release the
2454 * persistent reservation.
2455 */
2456 if (!list_empty(&dev->t10_pr.registration_list) &&
2457 ((pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
2458 (pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG))) {
2459 dev->dev_pr_res_holder =
2460 list_entry(dev->t10_pr.registration_list.next,
2461 struct t10_pr_registration, pr_reg_list);
2462 dev->dev_pr_res_holder->pr_res_type = pr_res_type;
2463 dev->dev_pr_res_holder->pr_res_scope = pr_res_scope;
2464 dev->dev_pr_res_holder->pr_res_holder = 1;
2465 }
2466 spin_unlock(&dev->t10_pr.registration_lock);
2467out:
2468 if (!dev->dev_pr_res_holder) {
2469 pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared"
2470 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2471 tfo->get_fabric_name(), (explicit) ? "explicit" :
2472 "implicit", core_scsi3_pr_dump_type(pr_res_type),
2473 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
2474 }
6708bb27 2475 pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n",
c66ac9db 2476 tfo->get_fabric_name(), se_nacl->initiatorname,
d2843c17 2477 i_buf);
c66ac9db
NB
2478 /*
2479 * Clear TYPE and SCOPE for the next PROUT Service Action: RESERVE
2480 */
2481 pr_reg->pr_res_holder = pr_reg->pr_res_type = pr_reg->pr_res_scope = 0;
2482}
2483
de103c93
CH
2484static sense_reason_t
2485core_scsi3_emulate_pro_release(struct se_cmd *cmd, int type, int scope,
2486 u64 res_key)
c66ac9db
NB
2487{
2488 struct se_device *dev = cmd->se_dev;
e3d6f909
AG
2489 struct se_session *se_sess = cmd->se_sess;
2490 struct se_lun *se_lun = cmd->se_lun;
c66ac9db 2491 struct t10_pr_registration *pr_reg, *pr_reg_p, *pr_res_holder;
0fd97ccf 2492 struct t10_reservation *pr_tmpl = &dev->t10_pr;
de103c93 2493 sense_reason_t ret = 0;
c66ac9db 2494
6708bb27
AG
2495 if (!se_sess || !se_lun) {
2496 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
de103c93 2497 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
2498 }
2499 /*
2500 * Locate the existing *pr_reg via struct se_node_acl pointers
2501 */
2502 pr_reg = core_scsi3_locate_pr_reg(dev, se_sess->se_node_acl, se_sess);
6708bb27
AG
2503 if (!pr_reg) {
2504 pr_err("SPC-3 PR: Unable to locate"
c66ac9db 2505 " PR_REGISTERED *pr_reg for RELEASE\n");
de103c93 2506 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
2507 }
2508 /*
2509 * From spc4r17 Section 5.7.11.2 Releasing:
2510 *
2511 * If there is no persistent reservation or in response to a persistent
2512 * reservation release request from a registered I_T nexus that is not a
2513 * persistent reservation holder (see 5.7.10), the device server shall
2514 * do the following:
2515 *
2516 * a) Not release the persistent reservation, if any;
2517 * b) Not remove any registrations; and
2518 * c) Complete the command with GOOD status.
2519 */
2520 spin_lock(&dev->dev_reservation_lock);
2521 pr_res_holder = dev->dev_pr_res_holder;
6708bb27 2522 if (!pr_res_holder) {
c66ac9db
NB
2523 /*
2524 * No persistent reservation, return GOOD status.
2525 */
2526 spin_unlock(&dev->dev_reservation_lock);
bb7a8c8e 2527 goto out_put_pr_reg;
c66ac9db 2528 }
c66ac9db 2529
e673dc92 2530 if (!is_reservation_holder(pr_res_holder, pr_reg)) {
c66ac9db 2531 /*
c66ac9db
NB
2532 * Release request from a registered I_T nexus that is not a
2533 * persistent reservation holder. return GOOD status.
2534 */
2535 spin_unlock(&dev->dev_reservation_lock);
de103c93 2536 goto out_put_pr_reg;
c66ac9db 2537 }
de103c93 2538
c66ac9db
NB
2539 /*
2540 * From spc4r17 Section 5.7.11.2 Releasing:
2541 *
2542 * Only the persistent reservation holder (see 5.7.10) is allowed to
2543 * release a persistent reservation.
2544 *
2545 * An application client releases the persistent reservation by issuing
2546 * a PERSISTENT RESERVE OUT command with RELEASE service action through
2547 * an I_T nexus that is a persistent reservation holder with the
2548 * following parameters:
2549 *
2550 * a) RESERVATION KEY field set to the value of the reservation key
2551 * that is registered with the logical unit for the I_T nexus;
2552 */
2553 if (res_key != pr_reg->pr_res_key) {
6708bb27 2554 pr_err("SPC-3 PR RELEASE: Received res_key: 0x%016Lx"
c66ac9db
NB
2555 " does not match existing SA REGISTER res_key:"
2556 " 0x%016Lx\n", res_key, pr_reg->pr_res_key);
2557 spin_unlock(&dev->dev_reservation_lock);
de103c93
CH
2558 ret = TCM_RESERVATION_CONFLICT;
2559 goto out_put_pr_reg;
c66ac9db
NB
2560 }
2561 /*
2562 * From spc4r17 Section 5.7.11.2 Releasing and above:
2563 *
2564 * b) TYPE field and SCOPE field set to match the persistent
2565 * reservation being released.
2566 */
2567 if ((pr_res_holder->pr_res_type != type) ||
2568 (pr_res_holder->pr_res_scope != scope)) {
2569 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
6708bb27 2570 pr_err("SPC-3 PR RELEASE: Attempted to release"
c66ac9db
NB
2571 " reservation from [%s]: %s with different TYPE "
2572 "and/or SCOPE while reservation already held by"
2573 " [%s]: %s, returning RESERVATION_CONFLICT\n",
e3d6f909 2574 cmd->se_tfo->get_fabric_name(),
c66ac9db 2575 se_sess->se_node_acl->initiatorname,
e3d6f909 2576 pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
c66ac9db
NB
2577 pr_res_holder->pr_reg_nacl->initiatorname);
2578
2579 spin_unlock(&dev->dev_reservation_lock);
de103c93
CH
2580 ret = TCM_RESERVATION_CONFLICT;
2581 goto out_put_pr_reg;
c66ac9db
NB
2582 }
2583 /*
2584 * In response to a persistent reservation release request from the
2585 * persistent reservation holder the device server shall perform a
2586 * release by doing the following as an uninterrupted series of actions:
2587 * a) Release the persistent reservation;
2588 * b) Not remove any registration(s);
2589 * c) If the released persistent reservation is a registrants only type
2590 * or all registrants type persistent reservation,
2591 * the device server shall establish a unit attention condition for
2592 * the initiator port associated with every regis-
2593 * tered I_T nexus other than I_T nexus on which the PERSISTENT
2594 * RESERVE OUT command with RELEASE service action was received,
2595 * with the additional sense code set to RESERVATIONS RELEASED; and
2596 * d) If the persistent reservation is of any other type, the device
2597 * server shall not establish a unit attention condition.
2598 */
2599 __core_scsi3_complete_pro_release(dev, se_sess->se_node_acl,
6c3c9baa 2600 pr_reg, 1, 0);
c66ac9db
NB
2601
2602 spin_unlock(&dev->dev_reservation_lock);
2603
2604 if ((type != PR_TYPE_WRITE_EXCLUSIVE_REGONLY) &&
2605 (type != PR_TYPE_EXCLUSIVE_ACCESS_REGONLY) &&
2606 (type != PR_TYPE_WRITE_EXCLUSIVE_ALLREG) &&
2607 (type != PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
2608 /*
2609 * If no UNIT ATTENTION conditions will be established for
2610 * PR_TYPE_WRITE_EXCLUSIVE or PR_TYPE_EXCLUSIVE_ACCESS
2611 * go ahead and check for APTPL=1 update+write below
2612 */
2613 goto write_aptpl;
2614 }
2615
2616 spin_lock(&pr_tmpl->registration_lock);
2617 list_for_each_entry(pr_reg_p, &pr_tmpl->registration_list,
2618 pr_reg_list) {
2619 /*
2620 * Do not establish a UNIT ATTENTION condition
2621 * for the calling I_T Nexus
2622 */
2623 if (pr_reg_p == pr_reg)
2624 continue;
2625
2626 core_scsi3_ua_allocate(pr_reg_p->pr_reg_nacl,
2627 pr_reg_p->pr_res_mapped_lun,
2628 0x2A, ASCQ_2AH_RESERVATIONS_RELEASED);
2629 }
2630 spin_unlock(&pr_tmpl->registration_lock);
2631
2632write_aptpl:
459f213b
AG
2633 if (pr_tmpl->pr_aptpl_active)
2634 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2635
de103c93 2636out_put_pr_reg:
c66ac9db 2637 core_scsi3_put_pr_reg(pr_reg);
de103c93 2638 return ret;
c66ac9db
NB
2639}
2640
de103c93
CH
2641static sense_reason_t
2642core_scsi3_emulate_pro_clear(struct se_cmd *cmd, u64 res_key)
c66ac9db
NB
2643{
2644 struct se_device *dev = cmd->se_dev;
2645 struct se_node_acl *pr_reg_nacl;
e3d6f909 2646 struct se_session *se_sess = cmd->se_sess;
0fd97ccf 2647 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db
NB
2648 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_reg_n, *pr_res_holder;
2649 u32 pr_res_mapped_lun = 0;
2650 int calling_it_nexus = 0;
2651 /*
2652 * Locate the existing *pr_reg via struct se_node_acl pointers
2653 */
5951146d 2654 pr_reg_n = core_scsi3_locate_pr_reg(cmd->se_dev,
c66ac9db 2655 se_sess->se_node_acl, se_sess);
6708bb27
AG
2656 if (!pr_reg_n) {
2657 pr_err("SPC-3 PR: Unable to locate"
c66ac9db 2658 " PR_REGISTERED *pr_reg for CLEAR\n");
de103c93 2659 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
2660 }
2661 /*
2662 * From spc4r17 section 5.7.11.6, Clearing:
2663 *
2664 * Any application client may release the persistent reservation and
2665 * remove all registrations from a device server by issuing a
2666 * PERSISTENT RESERVE OUT command with CLEAR service action through a
2667 * registered I_T nexus with the following parameter:
2668 *
2669 * a) RESERVATION KEY field set to the value of the reservation key
2670 * that is registered with the logical unit for the I_T nexus.
2671 */
2672 if (res_key != pr_reg_n->pr_res_key) {
6708bb27 2673 pr_err("SPC-3 PR REGISTER: Received"
c66ac9db
NB
2674 " res_key: 0x%016Lx does not match"
2675 " existing SA REGISTER res_key:"
2676 " 0x%016Lx\n", res_key, pr_reg_n->pr_res_key);
2677 core_scsi3_put_pr_reg(pr_reg_n);
de103c93 2678 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
2679 }
2680 /*
2681 * a) Release the persistent reservation, if any;
2682 */
2683 spin_lock(&dev->dev_reservation_lock);
2684 pr_res_holder = dev->dev_pr_res_holder;
2685 if (pr_res_holder) {
2686 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2687 __core_scsi3_complete_pro_release(dev, pr_res_nacl,
6c3c9baa 2688 pr_res_holder, 0, 0);
c66ac9db
NB
2689 }
2690 spin_unlock(&dev->dev_reservation_lock);
2691 /*
2692 * b) Remove all registration(s) (see spc4r17 5.7.7);
2693 */
2694 spin_lock(&pr_tmpl->registration_lock);
2695 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2696 &pr_tmpl->registration_list, pr_reg_list) {
2697
2698 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2699 pr_reg_nacl = pr_reg->pr_reg_nacl;
2700 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2701 __core_scsi3_free_registration(dev, pr_reg, NULL,
2702 calling_it_nexus);
2703 /*
2704 * e) Establish a unit attention condition for the initiator
2705 * port associated with every registered I_T nexus other
2706 * than the I_T nexus on which the PERSISTENT RESERVE OUT
2707 * command with CLEAR service action was received, with the
2708 * additional sense code set to RESERVATIONS PREEMPTED.
2709 */
6708bb27 2710 if (!calling_it_nexus)
c66ac9db
NB
2711 core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun,
2712 0x2A, ASCQ_2AH_RESERVATIONS_PREEMPTED);
2713 }
2714 spin_unlock(&pr_tmpl->registration_lock);
2715
6708bb27 2716 pr_debug("SPC-3 PR [%s] Service Action: CLEAR complete\n",
e3d6f909 2717 cmd->se_tfo->get_fabric_name());
c66ac9db 2718
459f213b 2719 core_scsi3_update_and_write_aptpl(cmd->se_dev, false);
c66ac9db
NB
2720
2721 core_scsi3_pr_generation(dev);
2722 return 0;
2723}
2724
2725/*
2726 * Called with struct se_device->dev_reservation_lock held.
2727 */
2728static void __core_scsi3_complete_pro_preempt(
2729 struct se_device *dev,
2730 struct t10_pr_registration *pr_reg,
2731 struct list_head *preempt_and_abort_list,
2732 int type,
2733 int scope,
33ce6a87 2734 enum preempt_type preempt_type)
c66ac9db
NB
2735{
2736 struct se_node_acl *nacl = pr_reg->pr_reg_nacl;
2737 struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
2738 char i_buf[PR_REG_ISID_ID_LEN];
c66ac9db
NB
2739
2740 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
d2843c17 2741 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db 2742 /*
125d0119 2743 * Do an implicit RELEASE of the existing reservation.
c66ac9db
NB
2744 */
2745 if (dev->dev_pr_res_holder)
2746 __core_scsi3_complete_pro_release(dev, nacl,
6c3c9baa 2747 dev->dev_pr_res_holder, 0, 0);
c66ac9db
NB
2748
2749 dev->dev_pr_res_holder = pr_reg;
2750 pr_reg->pr_res_holder = 1;
2751 pr_reg->pr_res_type = type;
2752 pr_reg->pr_res_scope = scope;
2753
6708bb27 2754 pr_debug("SPC-3 PR [%s] Service Action: PREEMPT%s created new"
c66ac9db 2755 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
33ce6a87 2756 tfo->get_fabric_name(), (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "",
c66ac9db
NB
2757 core_scsi3_pr_dump_type(type),
2758 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
6708bb27 2759 pr_debug("SPC-3 PR [%s] PREEMPT%s from Node: %s%s\n",
33ce6a87 2760 tfo->get_fabric_name(), (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "",
d2843c17 2761 nacl->initiatorname, i_buf);
c66ac9db
NB
2762 /*
2763 * For PREEMPT_AND_ABORT, add the preempting reservation's
2764 * struct t10_pr_registration to the list that will be compared
2765 * against received CDBs..
2766 */
2767 if (preempt_and_abort_list)
2768 list_add_tail(&pr_reg->pr_reg_abort_list,
2769 preempt_and_abort_list);
2770}
2771
2772static void core_scsi3_release_preempt_and_abort(
2773 struct list_head *preempt_and_abort_list,
2774 struct t10_pr_registration *pr_reg_holder)
2775{
2776 struct t10_pr_registration *pr_reg, *pr_reg_tmp;
2777
2778 list_for_each_entry_safe(pr_reg, pr_reg_tmp, preempt_and_abort_list,
2779 pr_reg_abort_list) {
2780
2781 list_del(&pr_reg->pr_reg_abort_list);
2782 if (pr_reg_holder == pr_reg)
2783 continue;
2784 if (pr_reg->pr_res_holder) {
6708bb27 2785 pr_warn("pr_reg->pr_res_holder still set\n");
c66ac9db
NB
2786 continue;
2787 }
2788
2789 pr_reg->pr_reg_deve = NULL;
2790 pr_reg->pr_reg_nacl = NULL;
c66ac9db
NB
2791 kmem_cache_free(t10_pr_reg_cache, pr_reg);
2792 }
2793}
2794
de103c93
CH
2795static sense_reason_t
2796core_scsi3_pro_preempt(struct se_cmd *cmd, int type, int scope, u64 res_key,
33ce6a87 2797 u64 sa_res_key, enum preempt_type preempt_type)
c66ac9db 2798{
5951146d 2799 struct se_device *dev = cmd->se_dev;
c66ac9db 2800 struct se_node_acl *pr_reg_nacl;
e3d6f909 2801 struct se_session *se_sess = cmd->se_sess;
d0f474e5 2802 LIST_HEAD(preempt_and_abort_list);
c66ac9db 2803 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_reg_n, *pr_res_holder;
0fd97ccf 2804 struct t10_reservation *pr_tmpl = &dev->t10_pr;
c66ac9db 2805 u32 pr_res_mapped_lun = 0;
b6932ee3
SA
2806 int all_reg = 0, calling_it_nexus = 0;
2807 bool sa_res_key_unmatched = sa_res_key != 0;
de103c93 2808 int prh_type = 0, prh_scope = 0;
c66ac9db 2809
de103c93
CH
2810 if (!se_sess)
2811 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db 2812
5951146d 2813 pr_reg_n = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
c66ac9db 2814 se_sess);
6708bb27
AG
2815 if (!pr_reg_n) {
2816 pr_err("SPC-3 PR: Unable to locate"
c66ac9db 2817 " PR_REGISTERED *pr_reg for PREEMPT%s\n",
33ce6a87 2818 (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "");
de103c93 2819 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
2820 }
2821 if (pr_reg_n->pr_res_key != res_key) {
2822 core_scsi3_put_pr_reg(pr_reg_n);
de103c93 2823 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
2824 }
2825 if (scope != PR_SCOPE_LU_SCOPE) {
6708bb27 2826 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope);
c66ac9db 2827 core_scsi3_put_pr_reg(pr_reg_n);
de103c93 2828 return TCM_INVALID_PARAMETER_LIST;
c66ac9db 2829 }
c66ac9db
NB
2830
2831 spin_lock(&dev->dev_reservation_lock);
2832 pr_res_holder = dev->dev_pr_res_holder;
2833 if (pr_res_holder &&
2834 ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
2835 (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)))
2836 all_reg = 1;
2837
6708bb27 2838 if (!all_reg && !sa_res_key) {
c66ac9db
NB
2839 spin_unlock(&dev->dev_reservation_lock);
2840 core_scsi3_put_pr_reg(pr_reg_n);
de103c93 2841 return TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
2842 }
2843 /*
2844 * From spc4r17, section 5.7.11.4.4 Removing Registrations:
2845 *
2846 * If the SERVICE ACTION RESERVATION KEY field does not identify a
2847 * persistent reservation holder or there is no persistent reservation
2848 * holder (i.e., there is no persistent reservation), then the device
2849 * server shall perform a preempt by doing the following in an
2850 * uninterrupted series of actions. (See below..)
2851 */
6708bb27 2852 if (!pr_res_holder || (pr_res_holder->pr_res_key != sa_res_key)) {
c66ac9db
NB
2853 /*
2854 * No existing or SA Reservation Key matching reservations..
2855 *
2856 * PROUT SA PREEMPT with All Registrant type reservations are
2857 * allowed to be processed without a matching SA Reservation Key
2858 */
2859 spin_lock(&pr_tmpl->registration_lock);
2860 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2861 &pr_tmpl->registration_list, pr_reg_list) {
2862 /*
2863 * Removing of registrations in non all registrants
2864 * type reservations without a matching SA reservation
2865 * key.
2866 *
2867 * a) Remove the registrations for all I_T nexuses
2868 * specified by the SERVICE ACTION RESERVATION KEY
2869 * field;
2870 * b) Ignore the contents of the SCOPE and TYPE fields;
2871 * c) Process tasks as defined in 5.7.1; and
2872 * d) Establish a unit attention condition for the
2873 * initiator port associated with every I_T nexus
2874 * that lost its registration other than the I_T
2875 * nexus on which the PERSISTENT RESERVE OUT command
2876 * was received, with the additional sense code set
2877 * to REGISTRATIONS PREEMPTED.
2878 */
6708bb27 2879 if (!all_reg) {
c66ac9db
NB
2880 if (pr_reg->pr_res_key != sa_res_key)
2881 continue;
b6932ee3 2882 sa_res_key_unmatched = false;
c66ac9db
NB
2883
2884 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2885 pr_reg_nacl = pr_reg->pr_reg_nacl;
2886 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2887 __core_scsi3_free_registration(dev, pr_reg,
33ce6a87 2888 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list :
c66ac9db 2889 NULL, calling_it_nexus);
c66ac9db
NB
2890 } else {
2891 /*
2892 * Case for any existing all registrants type
2893 * reservation, follow logic in spc4r17 section
2894 * 5.7.11.4 Preempting, Table 52 and Figure 7.
2895 *
2896 * For a ZERO SA Reservation key, release
125d0119 2897 * all other registrations and do an implicit
c66ac9db
NB
2898 * release of active persistent reservation.
2899 *
2900 * For a non-ZERO SA Reservation key, only
2901 * release the matching reservation key from
2902 * registrations.
2903 */
2904 if ((sa_res_key) &&
2905 (pr_reg->pr_res_key != sa_res_key))
2906 continue;
b6932ee3 2907 sa_res_key_unmatched = false;
c66ac9db
NB
2908
2909 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2910 if (calling_it_nexus)
2911 continue;
2912
2913 pr_reg_nacl = pr_reg->pr_reg_nacl;
2914 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2915 __core_scsi3_free_registration(dev, pr_reg,
33ce6a87 2916 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list :
c66ac9db 2917 NULL, 0);
c66ac9db 2918 }
6708bb27 2919 if (!calling_it_nexus)
c66ac9db
NB
2920 core_scsi3_ua_allocate(pr_reg_nacl,
2921 pr_res_mapped_lun, 0x2A,
9e08e34e 2922 ASCQ_2AH_REGISTRATIONS_PREEMPTED);
c66ac9db
NB
2923 }
2924 spin_unlock(&pr_tmpl->registration_lock);
2925 /*
2926 * If a PERSISTENT RESERVE OUT with a PREEMPT service action or
2927 * a PREEMPT AND ABORT service action sets the SERVICE ACTION
2928 * RESERVATION KEY field to a value that does not match any
2929 * registered reservation key, then the device server shall
2930 * complete the command with RESERVATION CONFLICT status.
2931 */
b6932ee3 2932 if (sa_res_key_unmatched) {
c66ac9db
NB
2933 spin_unlock(&dev->dev_reservation_lock);
2934 core_scsi3_put_pr_reg(pr_reg_n);
de103c93 2935 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
2936 }
2937 /*
2938 * For an existing all registrants type reservation
2939 * with a zero SA rservation key, preempt the existing
2940 * reservation with the new PR type and scope.
2941 */
2942 if (pr_res_holder && all_reg && !(sa_res_key)) {
2943 __core_scsi3_complete_pro_preempt(dev, pr_reg_n,
33ce6a87
AG
2944 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
2945 type, scope, preempt_type);
c66ac9db 2946
33ce6a87 2947 if (preempt_type == PREEMPT_AND_ABORT)
c66ac9db
NB
2948 core_scsi3_release_preempt_and_abort(
2949 &preempt_and_abort_list, pr_reg_n);
2950 }
2951 spin_unlock(&dev->dev_reservation_lock);
2952
459f213b
AG
2953 if (pr_tmpl->pr_aptpl_active)
2954 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
c66ac9db
NB
2955
2956 core_scsi3_put_pr_reg(pr_reg_n);
5951146d 2957 core_scsi3_pr_generation(cmd->se_dev);
c66ac9db
NB
2958 return 0;
2959 }
2960 /*
2961 * The PREEMPTing SA reservation key matches that of the
2962 * existing persistent reservation, first, we check if
2963 * we are preempting our own reservation.
2964 * From spc4r17, section 5.7.11.4.3 Preempting
2965 * persistent reservations and registration handling
2966 *
2967 * If an all registrants persistent reservation is not
2968 * present, it is not an error for the persistent
2969 * reservation holder to preempt itself (i.e., a
2970 * PERSISTENT RESERVE OUT with a PREEMPT service action
2971 * or a PREEMPT AND ABORT service action with the
2972 * SERVICE ACTION RESERVATION KEY value equal to the
2973 * persistent reservation holder's reservation key that
2974 * is received from the persistent reservation holder).
2975 * In that case, the device server shall establish the
2976 * new persistent reservation and maintain the
2977 * registration.
2978 */
2979 prh_type = pr_res_holder->pr_res_type;
2980 prh_scope = pr_res_holder->pr_res_scope;
2981 /*
2982 * If the SERVICE ACTION RESERVATION KEY field identifies a
2983 * persistent reservation holder (see 5.7.10), the device
2984 * server shall perform a preempt by doing the following as
2985 * an uninterrupted series of actions:
2986 *
2987 * a) Release the persistent reservation for the holder
2988 * identified by the SERVICE ACTION RESERVATION KEY field;
2989 */
2990 if (pr_reg_n != pr_res_holder)
2991 __core_scsi3_complete_pro_release(dev,
6c3c9baa
NB
2992 pr_res_holder->pr_reg_nacl,
2993 dev->dev_pr_res_holder, 0, 0);
c66ac9db
NB
2994 /*
2995 * b) Remove the registrations for all I_T nexuses identified
2996 * by the SERVICE ACTION RESERVATION KEY field, except the
2997 * I_T nexus that is being used for the PERSISTENT RESERVE
2998 * OUT command. If an all registrants persistent reservation
2999 * is present and the SERVICE ACTION RESERVATION KEY field
3000 * is set to zero, then all registrations shall be removed
3001 * except for that of the I_T nexus that is being used for
3002 * the PERSISTENT RESERVE OUT command;
3003 */
3004 spin_lock(&pr_tmpl->registration_lock);
3005 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
3006 &pr_tmpl->registration_list, pr_reg_list) {
3007
3008 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
3009 if (calling_it_nexus)
3010 continue;
3011
3012 if (pr_reg->pr_res_key != sa_res_key)
3013 continue;
3014
3015 pr_reg_nacl = pr_reg->pr_reg_nacl;
3016 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
3017 __core_scsi3_free_registration(dev, pr_reg,
33ce6a87 3018 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
c66ac9db
NB
3019 calling_it_nexus);
3020 /*
3021 * e) Establish a unit attention condition for the initiator
3022 * port associated with every I_T nexus that lost its
3023 * persistent reservation and/or registration, with the
3024 * additional sense code set to REGISTRATIONS PREEMPTED;
3025 */
3026 core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun, 0x2A,
9e08e34e 3027 ASCQ_2AH_REGISTRATIONS_PREEMPTED);
c66ac9db
NB
3028 }
3029 spin_unlock(&pr_tmpl->registration_lock);
3030 /*
3031 * c) Establish a persistent reservation for the preempting
3032 * I_T nexus using the contents of the SCOPE and TYPE fields;
3033 */
3034 __core_scsi3_complete_pro_preempt(dev, pr_reg_n,
33ce6a87
AG
3035 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
3036 type, scope, preempt_type);
c66ac9db
NB
3037 /*
3038 * d) Process tasks as defined in 5.7.1;
3039 * e) See above..
3040 * f) If the type or scope has changed, then for every I_T nexus
3041 * whose reservation key was not removed, except for the I_T
3042 * nexus on which the PERSISTENT RESERVE OUT command was
3043 * received, the device server shall establish a unit
3044 * attention condition for the initiator port associated with
3045 * that I_T nexus, with the additional sense code set to
3046 * RESERVATIONS RELEASED. If the type or scope have not
3047 * changed, then no unit attention condition(s) shall be
3048 * established for this reason.
3049 */
3050 if ((prh_type != type) || (prh_scope != scope)) {
3051 spin_lock(&pr_tmpl->registration_lock);
3052 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
3053 &pr_tmpl->registration_list, pr_reg_list) {
3054
3055 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
3056 if (calling_it_nexus)
3057 continue;
3058
3059 core_scsi3_ua_allocate(pr_reg->pr_reg_nacl,
3060 pr_reg->pr_res_mapped_lun, 0x2A,
3061 ASCQ_2AH_RESERVATIONS_RELEASED);
3062 }
3063 spin_unlock(&pr_tmpl->registration_lock);
3064 }
3065 spin_unlock(&dev->dev_reservation_lock);
3066 /*
3067 * Call LUN_RESET logic upon list of struct t10_pr_registration,
3068 * All received CDBs for the matching existing reservation and
3069 * registrations undergo ABORT_TASK logic.
3070 *
3071 * From there, core_scsi3_release_preempt_and_abort() will
3072 * release every registration in the list (which have already
3073 * been removed from the primary pr_reg list), except the
3074 * new persistent reservation holder, the calling Initiator Port.
3075 */
33ce6a87 3076 if (preempt_type == PREEMPT_AND_ABORT) {
c66ac9db
NB
3077 core_tmr_lun_reset(dev, NULL, &preempt_and_abort_list, cmd);
3078 core_scsi3_release_preempt_and_abort(&preempt_and_abort_list,
3079 pr_reg_n);
3080 }
3081
459f213b
AG
3082 if (pr_tmpl->pr_aptpl_active)
3083 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
c66ac9db
NB
3084
3085 core_scsi3_put_pr_reg(pr_reg_n);
5951146d 3086 core_scsi3_pr_generation(cmd->se_dev);
c66ac9db
NB
3087 return 0;
3088}
3089
de103c93
CH
3090static sense_reason_t
3091core_scsi3_emulate_pro_preempt(struct se_cmd *cmd, int type, int scope,
33ce6a87 3092 u64 res_key, u64 sa_res_key, enum preempt_type preempt_type)
c66ac9db 3093{
c66ac9db
NB
3094 switch (type) {
3095 case PR_TYPE_WRITE_EXCLUSIVE:
3096 case PR_TYPE_EXCLUSIVE_ACCESS:
3097 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
3098 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
3099 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
3100 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
de103c93 3101 return core_scsi3_pro_preempt(cmd, type, scope, res_key,
33ce6a87 3102 sa_res_key, preempt_type);
c66ac9db 3103 default:
6708bb27 3104 pr_err("SPC-3 PR: Unknown Service Action PREEMPT%s"
33ce6a87 3105 " Type: 0x%02x\n", (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "", type);
de103c93 3106 return TCM_INVALID_CDB_FIELD;
c66ac9db 3107 }
c66ac9db
NB
3108}
3109
3110
de103c93
CH
3111static sense_reason_t
3112core_scsi3_emulate_pro_register_and_move(struct se_cmd *cmd, u64 res_key,
3113 u64 sa_res_key, int aptpl, int unreg)
c66ac9db 3114{
e3d6f909 3115 struct se_session *se_sess = cmd->se_sess;
5951146d 3116 struct se_device *dev = cmd->se_dev;
28168905 3117 struct se_dev_entry *dest_se_deve = NULL;
e3d6f909 3118 struct se_lun *se_lun = cmd->se_lun;
c66ac9db
NB
3119 struct se_node_acl *pr_res_nacl, *pr_reg_nacl, *dest_node_acl = NULL;
3120 struct se_port *se_port;
3121 struct se_portal_group *se_tpg, *dest_se_tpg = NULL;
3122 struct target_core_fabric_ops *dest_tf_ops = NULL, *tf_ops;
3123 struct t10_pr_registration *pr_reg, *pr_res_holder, *dest_pr_reg;
0fd97ccf 3124 struct t10_reservation *pr_tmpl = &dev->t10_pr;
05d1c7c0 3125 unsigned char *buf;
c66ac9db 3126 unsigned char *initiator_str;
13ba564c 3127 char *iport_ptr = NULL, i_buf[PR_REG_ISID_ID_LEN];
c66ac9db 3128 u32 tid_len, tmp_tid_len;
d2843c17 3129 int new_reg = 0, type, scope, matching_iname;
de103c93 3130 sense_reason_t ret;
c66ac9db
NB
3131 unsigned short rtpi;
3132 unsigned char proto_ident;
3133
6708bb27
AG
3134 if (!se_sess || !se_lun) {
3135 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
de103c93 3136 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db 3137 }
de103c93 3138
c66ac9db
NB
3139 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
3140 se_tpg = se_sess->se_tpg;
e3d6f909 3141 tf_ops = se_tpg->se_tpg_tfo;
c66ac9db
NB
3142 /*
3143 * Follow logic from spc4r17 Section 5.7.8, Table 50 --
3144 * Register behaviors for a REGISTER AND MOVE service action
3145 *
3146 * Locate the existing *pr_reg via struct se_node_acl pointers
3147 */
5951146d 3148 pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
c66ac9db 3149 se_sess);
6708bb27
AG
3150 if (!pr_reg) {
3151 pr_err("SPC-3 PR: Unable to locate PR_REGISTERED"
c66ac9db 3152 " *pr_reg for REGISTER_AND_MOVE\n");
de103c93 3153 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
3154 }
3155 /*
3156 * The provided reservation key much match the existing reservation key
3157 * provided during this initiator's I_T nexus registration.
3158 */
3159 if (res_key != pr_reg->pr_res_key) {
6708bb27 3160 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received"
c66ac9db
NB
3161 " res_key: 0x%016Lx does not match existing SA REGISTER"
3162 " res_key: 0x%016Lx\n", res_key, pr_reg->pr_res_key);
de103c93
CH
3163 ret = TCM_RESERVATION_CONFLICT;
3164 goto out_put_pr_reg;
c66ac9db
NB
3165 }
3166 /*
3167 * The service active reservation key needs to be non zero
3168 */
6708bb27
AG
3169 if (!sa_res_key) {
3170 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received zero"
c66ac9db 3171 " sa_res_key\n");
de103c93
CH
3172 ret = TCM_INVALID_PARAMETER_LIST;
3173 goto out_put_pr_reg;
c66ac9db 3174 }
05d1c7c0 3175
c66ac9db
NB
3176 /*
3177 * Determine the Relative Target Port Identifier where the reservation
3178 * will be moved to for the TransportID containing SCSI initiator WWN
3179 * information.
3180 */
4949314c 3181 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3182 if (!buf) {
3183 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3184 goto out_put_pr_reg;
3185 }
3186
c66ac9db
NB
3187 rtpi = (buf[18] & 0xff) << 8;
3188 rtpi |= buf[19] & 0xff;
3189 tid_len = (buf[20] & 0xff) << 24;
3190 tid_len |= (buf[21] & 0xff) << 16;
3191 tid_len |= (buf[22] & 0xff) << 8;
3192 tid_len |= buf[23] & 0xff;
4949314c 3193 transport_kunmap_data_sg(cmd);
05d1c7c0 3194 buf = NULL;
c66ac9db
NB
3195
3196 if ((tid_len + 24) != cmd->data_length) {
6708bb27 3197 pr_err("SPC-3 PR: Illegal tid_len: %u + 24 byte header"
c66ac9db
NB
3198 " does not equal CDB data_length: %u\n", tid_len,
3199 cmd->data_length);
de103c93
CH
3200 ret = TCM_INVALID_PARAMETER_LIST;
3201 goto out_put_pr_reg;
c66ac9db
NB
3202 }
3203
3204 spin_lock(&dev->se_port_lock);
3205 list_for_each_entry(se_port, &dev->dev_sep_list, sep_list) {
3206 if (se_port->sep_rtpi != rtpi)
3207 continue;
3208 dest_se_tpg = se_port->sep_tpg;
6708bb27 3209 if (!dest_se_tpg)
c66ac9db 3210 continue;
e3d6f909 3211 dest_tf_ops = dest_se_tpg->se_tpg_tfo;
6708bb27 3212 if (!dest_tf_ops)
c66ac9db
NB
3213 continue;
3214
33940d09 3215 atomic_inc_mb(&dest_se_tpg->tpg_pr_ref_count);
c66ac9db
NB
3216 spin_unlock(&dev->se_port_lock);
3217
de103c93 3218 if (core_scsi3_tpg_depend_item(dest_se_tpg)) {
6708bb27 3219 pr_err("core_scsi3_tpg_depend_item() failed"
c66ac9db 3220 " for dest_se_tpg\n");
33940d09 3221 atomic_dec_mb(&dest_se_tpg->tpg_pr_ref_count);
de103c93
CH
3222 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3223 goto out_put_pr_reg;
c66ac9db
NB
3224 }
3225
3226 spin_lock(&dev->se_port_lock);
3227 break;
3228 }
3229 spin_unlock(&dev->se_port_lock);
3230
6708bb27
AG
3231 if (!dest_se_tpg || !dest_tf_ops) {
3232 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
c66ac9db
NB
3233 " fabric ops from Relative Target Port Identifier:"
3234 " %hu\n", rtpi);
de103c93
CH
3235 ret = TCM_INVALID_PARAMETER_LIST;
3236 goto out_put_pr_reg;
c66ac9db 3237 }
05d1c7c0 3238
4949314c 3239 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3240 if (!buf) {
3241 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3242 goto out_put_pr_reg;
3243 }
c66ac9db 3244 proto_ident = (buf[24] & 0x0f);
8b1e1244 3245
6708bb27 3246 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Extracted Protocol Identifier:"
c66ac9db 3247 " 0x%02x\n", proto_ident);
8b1e1244 3248
c66ac9db 3249 if (proto_ident != dest_tf_ops->get_fabric_proto_ident(dest_se_tpg)) {
6708bb27 3250 pr_err("SPC-3 PR REGISTER_AND_MOVE: Received"
c66ac9db
NB
3251 " proto_ident: 0x%02x does not match ident: 0x%02x"
3252 " from fabric: %s\n", proto_ident,
3253 dest_tf_ops->get_fabric_proto_ident(dest_se_tpg),
3254 dest_tf_ops->get_fabric_name());
de103c93 3255 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3256 goto out;
3257 }
3258 if (dest_tf_ops->tpg_parse_pr_out_transport_id == NULL) {
6708bb27 3259 pr_err("SPC-3 PR REGISTER_AND_MOVE: Fabric does not"
c66ac9db
NB
3260 " containg a valid tpg_parse_pr_out_transport_id"
3261 " function pointer\n");
de103c93 3262 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
3263 goto out;
3264 }
3265 initiator_str = dest_tf_ops->tpg_parse_pr_out_transport_id(dest_se_tpg,
3266 (const char *)&buf[24], &tmp_tid_len, &iport_ptr);
6708bb27
AG
3267 if (!initiator_str) {
3268 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
c66ac9db 3269 " initiator_str from Transport ID\n");
de103c93 3270 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3271 goto out;
3272 }
3273
4949314c 3274 transport_kunmap_data_sg(cmd);
05d1c7c0
AG
3275 buf = NULL;
3276
6708bb27 3277 pr_debug("SPC-3 PR [%s] Extracted initiator %s identifier: %s"
c66ac9db
NB
3278 " %s\n", dest_tf_ops->get_fabric_name(), (iport_ptr != NULL) ?
3279 "port" : "device", initiator_str, (iport_ptr != NULL) ?
3280 iport_ptr : "");
3281 /*
3282 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3283 * action specifies a TransportID that is the same as the initiator port
3284 * of the I_T nexus for the command received, then the command shall
3285 * be terminated with CHECK CONDITION status, with the sense key set to
3286 * ILLEGAL REQUEST, and the additional sense code set to INVALID FIELD
3287 * IN PARAMETER LIST.
3288 */
3289 pr_reg_nacl = pr_reg->pr_reg_nacl;
3290 matching_iname = (!strcmp(initiator_str,
3291 pr_reg_nacl->initiatorname)) ? 1 : 0;
6708bb27 3292 if (!matching_iname)
c66ac9db
NB
3293 goto after_iport_check;
3294
6708bb27
AG
3295 if (!iport_ptr || !pr_reg->isid_present_at_reg) {
3296 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s"
c66ac9db
NB
3297 " matches: %s on received I_T Nexus\n", initiator_str,
3298 pr_reg_nacl->initiatorname);
de103c93 3299 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3300 goto out;
3301 }
6708bb27
AG
3302 if (!strcmp(iport_ptr, pr_reg->pr_reg_isid)) {
3303 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s %s"
c66ac9db
NB
3304 " matches: %s %s on received I_T Nexus\n",
3305 initiator_str, iport_ptr, pr_reg_nacl->initiatorname,
3306 pr_reg->pr_reg_isid);
de103c93 3307 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3308 goto out;
3309 }
3310after_iport_check:
3311 /*
3312 * Locate the destination struct se_node_acl from the received Transport ID
3313 */
28638887 3314 spin_lock_irq(&dest_se_tpg->acl_node_lock);
c66ac9db
NB
3315 dest_node_acl = __core_tpg_get_initiator_node_acl(dest_se_tpg,
3316 initiator_str);
33940d09
JE
3317 if (dest_node_acl)
3318 atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
28638887 3319 spin_unlock_irq(&dest_se_tpg->acl_node_lock);
c66ac9db 3320
6708bb27
AG
3321 if (!dest_node_acl) {
3322 pr_err("Unable to locate %s dest_node_acl for"
c66ac9db
NB
3323 " TransportID%s\n", dest_tf_ops->get_fabric_name(),
3324 initiator_str);
de103c93 3325 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3326 goto out;
3327 }
de103c93
CH
3328
3329 if (core_scsi3_nodeacl_depend_item(dest_node_acl)) {
6708bb27 3330 pr_err("core_scsi3_nodeacl_depend_item() for"
c66ac9db 3331 " dest_node_acl\n");
33940d09 3332 atomic_dec_mb(&dest_node_acl->acl_pr_ref_count);
c66ac9db 3333 dest_node_acl = NULL;
de103c93 3334 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3335 goto out;
3336 }
8b1e1244 3337
6708bb27 3338 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Found %s dest_node_acl:"
c66ac9db
NB
3339 " %s from TransportID\n", dest_tf_ops->get_fabric_name(),
3340 dest_node_acl->initiatorname);
8b1e1244 3341
c66ac9db
NB
3342 /*
3343 * Locate the struct se_dev_entry pointer for the matching RELATIVE TARGET
3344 * PORT IDENTIFIER.
3345 */
3346 dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl, rtpi);
6708bb27
AG
3347 if (!dest_se_deve) {
3348 pr_err("Unable to locate %s dest_se_deve from RTPI:"
c66ac9db 3349 " %hu\n", dest_tf_ops->get_fabric_name(), rtpi);
de103c93 3350 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3351 goto out;
3352 }
3353
de103c93 3354 if (core_scsi3_lunacl_depend_item(dest_se_deve)) {
6708bb27 3355 pr_err("core_scsi3_lunacl_depend_item() failed\n");
33940d09 3356 atomic_dec_mb(&dest_se_deve->pr_ref_count);
c66ac9db 3357 dest_se_deve = NULL;
de103c93 3358 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
3359 goto out;
3360 }
8b1e1244 3361
6708bb27 3362 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Located %s node %s LUN"
c66ac9db
NB
3363 " ACL for dest_se_deve->mapped_lun: %u\n",
3364 dest_tf_ops->get_fabric_name(), dest_node_acl->initiatorname,
3365 dest_se_deve->mapped_lun);
8b1e1244 3366
c66ac9db
NB
3367 /*
3368 * A persistent reservation needs to already existing in order to
3369 * successfully complete the REGISTER_AND_MOVE service action..
3370 */
3371 spin_lock(&dev->dev_reservation_lock);
3372 pr_res_holder = dev->dev_pr_res_holder;
6708bb27
AG
3373 if (!pr_res_holder) {
3374 pr_warn("SPC-3 PR REGISTER_AND_MOVE: No reservation"
c66ac9db
NB
3375 " currently held\n");
3376 spin_unlock(&dev->dev_reservation_lock);
de103c93 3377 ret = TCM_INVALID_CDB_FIELD;
c66ac9db
NB
3378 goto out;
3379 }
3380 /*
3381 * The received on I_T Nexus must be the reservation holder.
3382 *
3383 * From spc4r17 section 5.7.8 Table 50 --
3384 * Register behaviors for a REGISTER AND MOVE service action
3385 */
e673dc92 3386 if (!is_reservation_holder(pr_res_holder, pr_reg)) {
6708bb27 3387 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Calling I_T"
c66ac9db
NB
3388 " Nexus is not reservation holder\n");
3389 spin_unlock(&dev->dev_reservation_lock);
de103c93 3390 ret = TCM_RESERVATION_CONFLICT;
c66ac9db
NB
3391 goto out;
3392 }
3393 /*
3394 * From spc4r17 section 5.7.8: registering and moving reservation
3395 *
3396 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3397 * action is received and the established persistent reservation is a
3398 * Write Exclusive - All Registrants type or Exclusive Access -
3399 * All Registrants type reservation, then the command shall be completed
3400 * with RESERVATION CONFLICT status.
3401 */
3402 if ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
3403 (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
6708bb27 3404 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Unable to move"
c66ac9db
NB
3405 " reservation for type: %s\n",
3406 core_scsi3_pr_dump_type(pr_res_holder->pr_res_type));
3407 spin_unlock(&dev->dev_reservation_lock);
de103c93 3408 ret = TCM_RESERVATION_CONFLICT;
c66ac9db
NB
3409 goto out;
3410 }
3411 pr_res_nacl = pr_res_holder->pr_reg_nacl;
3412 /*
3413 * b) Ignore the contents of the (received) SCOPE and TYPE fields;
3414 */
3415 type = pr_res_holder->pr_res_type;
3416 scope = pr_res_holder->pr_res_type;
3417 /*
3418 * c) Associate the reservation key specified in the SERVICE ACTION
3419 * RESERVATION KEY field with the I_T nexus specified as the
3420 * destination of the register and move, where:
3421 * A) The I_T nexus is specified by the TransportID and the
3422 * RELATIVE TARGET PORT IDENTIFIER field (see 6.14.4); and
3423 * B) Regardless of the TransportID format used, the association for
3424 * the initiator port is based on either the initiator port name
3425 * (see 3.1.71) on SCSI transport protocols where port names are
3426 * required or the initiator port identifier (see 3.1.70) on SCSI
3427 * transport protocols where port names are not required;
3428 * d) Register the reservation key specified in the SERVICE ACTION
3429 * RESERVATION KEY field;
3430 * e) Retain the reservation key specified in the SERVICE ACTION
3431 * RESERVATION KEY field and associated information;
3432 *
3433 * Also, It is not an error for a REGISTER AND MOVE service action to
3434 * register an I_T nexus that is already registered with the same
3435 * reservation key or a different reservation key.
3436 */
3437 dest_pr_reg = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
3438 iport_ptr);
6708bb27 3439 if (!dest_pr_reg) {
de103c93 3440 if (core_scsi3_alloc_registration(cmd->se_dev,
c66ac9db 3441 dest_node_acl, dest_se_deve, iport_ptr,
de103c93 3442 sa_res_key, 0, aptpl, 2, 1)) {
c66ac9db 3443 spin_unlock(&dev->dev_reservation_lock);
de103c93 3444 ret = TCM_INVALID_PARAMETER_LIST;
c66ac9db
NB
3445 goto out;
3446 }
3447 dest_pr_reg = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
3448 iport_ptr);
3449 new_reg = 1;
3450 }
3451 /*
3452 * f) Release the persistent reservation for the persistent reservation
3453 * holder (i.e., the I_T nexus on which the
3454 */
3455 __core_scsi3_complete_pro_release(dev, pr_res_nacl,
6c3c9baa 3456 dev->dev_pr_res_holder, 0, 0);
c66ac9db
NB
3457 /*
3458 * g) Move the persistent reservation to the specified I_T nexus using
3459 * the same scope and type as the persistent reservation released in
3460 * item f); and
3461 */
3462 dev->dev_pr_res_holder = dest_pr_reg;
3463 dest_pr_reg->pr_res_holder = 1;
3464 dest_pr_reg->pr_res_type = type;
3465 pr_reg->pr_res_scope = scope;
d2843c17 3466 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
c66ac9db
NB
3467 /*
3468 * Increment PRGeneration for existing registrations..
3469 */
6708bb27 3470 if (!new_reg)
c66ac9db
NB
3471 dest_pr_reg->pr_res_generation = pr_tmpl->pr_generation++;
3472 spin_unlock(&dev->dev_reservation_lock);
3473
6708bb27 3474 pr_debug("SPC-3 PR [%s] Service Action: REGISTER_AND_MOVE"
c66ac9db
NB
3475 " created new reservation holder TYPE: %s on object RTPI:"
3476 " %hu PRGeneration: 0x%08x\n", dest_tf_ops->get_fabric_name(),
3477 core_scsi3_pr_dump_type(type), rtpi,
3478 dest_pr_reg->pr_res_generation);
6708bb27 3479 pr_debug("SPC-3 PR Successfully moved reservation from"
c66ac9db
NB
3480 " %s Fabric Node: %s%s -> %s Fabric Node: %s %s\n",
3481 tf_ops->get_fabric_name(), pr_reg_nacl->initiatorname,
d2843c17 3482 i_buf, dest_tf_ops->get_fabric_name(),
c66ac9db
NB
3483 dest_node_acl->initiatorname, (iport_ptr != NULL) ?
3484 iport_ptr : "");
3485 /*
3486 * It is now safe to release configfs group dependencies for destination
3487 * of Transport ID Initiator Device/Port Identifier
3488 */
3489 core_scsi3_lunacl_undepend_item(dest_se_deve);
3490 core_scsi3_nodeacl_undepend_item(dest_node_acl);
3491 core_scsi3_tpg_undepend_item(dest_se_tpg);
3492 /*
3493 * h) If the UNREG bit is set to one, unregister (see 5.7.11.3) the I_T
3494 * nexus on which PERSISTENT RESERVE OUT command was received.
3495 */
3496 if (unreg) {
3497 spin_lock(&pr_tmpl->registration_lock);
3498 __core_scsi3_free_registration(dev, pr_reg, NULL, 1);
3499 spin_unlock(&pr_tmpl->registration_lock);
3500 } else
3501 core_scsi3_put_pr_reg(pr_reg);
3502
459f213b 3503 core_scsi3_update_and_write_aptpl(cmd->se_dev, aptpl);
c66ac9db 3504
4949314c 3505 transport_kunmap_data_sg(cmd);
05d1c7c0 3506
c66ac9db
NB
3507 core_scsi3_put_pr_reg(dest_pr_reg);
3508 return 0;
3509out:
05d1c7c0 3510 if (buf)
4949314c 3511 transport_kunmap_data_sg(cmd);
c66ac9db
NB
3512 if (dest_se_deve)
3513 core_scsi3_lunacl_undepend_item(dest_se_deve);
3514 if (dest_node_acl)
3515 core_scsi3_nodeacl_undepend_item(dest_node_acl);
3516 core_scsi3_tpg_undepend_item(dest_se_tpg);
de103c93
CH
3517
3518out_put_pr_reg:
c66ac9db
NB
3519 core_scsi3_put_pr_reg(pr_reg);
3520 return ret;
3521}
3522
3523static unsigned long long core_scsi3_extract_reservation_key(unsigned char *cdb)
3524{
3525 unsigned int __v1, __v2;
3526
3527 __v1 = (cdb[0] << 24) | (cdb[1] << 16) | (cdb[2] << 8) | cdb[3];
3528 __v2 = (cdb[4] << 24) | (cdb[5] << 16) | (cdb[6] << 8) | cdb[7];
3529
3530 return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
3531}
3532
3533/*
3534 * See spc4r17 section 6.14 Table 170
3535 */
de103c93
CH
3536sense_reason_t
3537target_scsi3_emulate_pr_out(struct se_cmd *cmd)
c66ac9db 3538{
92404e60 3539 struct se_device *dev = cmd->se_dev;
617c0e06 3540 unsigned char *cdb = &cmd->t_task_cdb[0];
05d1c7c0 3541 unsigned char *buf;
c66ac9db
NB
3542 u64 res_key, sa_res_key;
3543 int sa, scope, type, aptpl;
3544 int spec_i_pt = 0, all_tg_pt = 0, unreg = 0;
de103c93 3545 sense_reason_t ret;
617c0e06
CH
3546
3547 /*
3548 * Following spc2r20 5.5.1 Reservations overview:
3549 *
3550 * If a logical unit has been reserved by any RESERVE command and is
3551 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
3552 * PERSISTENT RESERVE OUT commands shall conflict regardless of
3553 * initiator or service action and shall terminate with a RESERVATION
3554 * CONFLICT status.
3555 */
0fd97ccf 3556 if (cmd->se_dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS) {
617c0e06
CH
3557 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
3558 " SPC-2 reservation is held, returning"
3559 " RESERVATION_CONFLICT\n");
de103c93 3560 return TCM_RESERVATION_CONFLICT;
617c0e06
CH
3561 }
3562
c66ac9db
NB
3563 /*
3564 * FIXME: A NULL struct se_session pointer means an this is not coming from
3565 * a $FABRIC_MOD's nexus, but from internal passthrough ops.
3566 */
de103c93
CH
3567 if (!cmd->se_sess)
3568 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
3569
3570 if (cmd->data_length < 24) {
6708bb27 3571 pr_warn("SPC-PR: Received PR OUT parameter list"
c66ac9db 3572 " length too small: %u\n", cmd->data_length);
de103c93 3573 return TCM_INVALID_PARAMETER_LIST;
c66ac9db 3574 }
de103c93 3575
c66ac9db
NB
3576 /*
3577 * From the PERSISTENT_RESERVE_OUT command descriptor block (CDB)
3578 */
3579 sa = (cdb[1] & 0x1f);
3580 scope = (cdb[2] & 0xf0);
3581 type = (cdb[2] & 0x0f);
05d1c7c0 3582
4949314c 3583 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3584 if (!buf)
3585 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3586
c66ac9db
NB
3587 /*
3588 * From PERSISTENT_RESERVE_OUT parameter list (payload)
3589 */
3590 res_key = core_scsi3_extract_reservation_key(&buf[0]);
3591 sa_res_key = core_scsi3_extract_reservation_key(&buf[8]);
3592 /*
3593 * REGISTER_AND_MOVE uses a different SA parameter list containing
3594 * SCSI TransportIDs.
3595 */
3596 if (sa != PRO_REGISTER_AND_MOVE) {
3597 spec_i_pt = (buf[20] & 0x08);
3598 all_tg_pt = (buf[20] & 0x04);
3599 aptpl = (buf[20] & 0x01);
3600 } else {
3601 aptpl = (buf[17] & 0x01);
3602 unreg = (buf[17] & 0x02);
3603 }
92404e60
NB
3604 /*
3605 * If the backend device has been configured to force APTPL metadata
3606 * write-out, go ahead and propigate aptpl=1 down now.
3607 */
3608 if (dev->dev_attrib.force_pr_aptpl)
3609 aptpl = 1;
3610
4949314c 3611 transport_kunmap_data_sg(cmd);
05d1c7c0
AG
3612 buf = NULL;
3613
c66ac9db
NB
3614 /*
3615 * SPEC_I_PT=1 is only valid for Service action: REGISTER
3616 */
de103c93
CH
3617 if (spec_i_pt && ((cdb[1] & 0x1f) != PRO_REGISTER))
3618 return TCM_INVALID_PARAMETER_LIST;
d29a5b6a 3619
c66ac9db
NB
3620 /*
3621 * From spc4r17 section 6.14:
3622 *
3623 * If the SPEC_I_PT bit is set to zero, the service action is not
3624 * REGISTER AND MOVE, and the parameter list length is not 24, then
3625 * the command shall be terminated with CHECK CONDITION status, with
3626 * the sense key set to ILLEGAL REQUEST, and the additional sense
3627 * code set to PARAMETER LIST LENGTH ERROR.
3628 */
6708bb27 3629 if (!spec_i_pt && ((cdb[1] & 0x1f) != PRO_REGISTER_AND_MOVE) &&
c66ac9db 3630 (cmd->data_length != 24)) {
6708bb27 3631 pr_warn("SPC-PR: Received PR OUT illegal parameter"
c66ac9db 3632 " list length: %u\n", cmd->data_length);
de103c93 3633 return TCM_INVALID_PARAMETER_LIST;
c66ac9db 3634 }
de103c93 3635
c66ac9db
NB
3636 /*
3637 * (core_scsi3_emulate_pro_* function parameters
3638 * are defined by spc4r17 Table 174:
3639 * PERSISTENT_RESERVE_OUT service actions and valid parameters.
3640 */
3641 switch (sa) {
3642 case PRO_REGISTER:
d29a5b6a 3643 ret = core_scsi3_emulate_pro_register(cmd,
33ce6a87 3644 res_key, sa_res_key, aptpl, all_tg_pt, spec_i_pt, REGISTER);
d29a5b6a 3645 break;
c66ac9db 3646 case PRO_RESERVE:
d29a5b6a
CH
3647 ret = core_scsi3_emulate_pro_reserve(cmd, type, scope, res_key);
3648 break;
c66ac9db 3649 case PRO_RELEASE:
d29a5b6a
CH
3650 ret = core_scsi3_emulate_pro_release(cmd, type, scope, res_key);
3651 break;
c66ac9db 3652 case PRO_CLEAR:
d29a5b6a
CH
3653 ret = core_scsi3_emulate_pro_clear(cmd, res_key);
3654 break;
c66ac9db 3655 case PRO_PREEMPT:
d29a5b6a 3656 ret = core_scsi3_emulate_pro_preempt(cmd, type, scope,
33ce6a87 3657 res_key, sa_res_key, PREEMPT);
d29a5b6a 3658 break;
c66ac9db 3659 case PRO_PREEMPT_AND_ABORT:
d29a5b6a 3660 ret = core_scsi3_emulate_pro_preempt(cmd, type, scope,
33ce6a87 3661 res_key, sa_res_key, PREEMPT_AND_ABORT);
d29a5b6a 3662 break;
c66ac9db 3663 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY:
d29a5b6a 3664 ret = core_scsi3_emulate_pro_register(cmd,
33ce6a87 3665 0, sa_res_key, aptpl, all_tg_pt, spec_i_pt, REGISTER_AND_IGNORE_EXISTING_KEY);
d29a5b6a 3666 break;
c66ac9db 3667 case PRO_REGISTER_AND_MOVE:
d29a5b6a 3668 ret = core_scsi3_emulate_pro_register_and_move(cmd, res_key,
c66ac9db 3669 sa_res_key, aptpl, unreg);
d29a5b6a 3670 break;
c66ac9db 3671 default:
6708bb27 3672 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
c66ac9db 3673 " action: 0x%02x\n", cdb[1] & 0x1f);
de103c93 3674 return TCM_INVALID_CDB_FIELD;
c66ac9db
NB
3675 }
3676
6bb35e00
CH
3677 if (!ret)
3678 target_complete_cmd(cmd, GOOD);
d29a5b6a 3679 return ret;
c66ac9db
NB
3680}
3681
3682/*
3683 * PERSISTENT_RESERVE_IN Service Action READ_KEYS
3684 *
3685 * See spc4r17 section 5.7.6.2 and section 6.13.2, Table 160
3686 */
de103c93
CH
3687static sense_reason_t
3688core_scsi3_pri_read_keys(struct se_cmd *cmd)
c66ac9db 3689{
0fd97ccf 3690 struct se_device *dev = cmd->se_dev;
c66ac9db 3691 struct t10_pr_registration *pr_reg;
05d1c7c0 3692 unsigned char *buf;
c66ac9db
NB
3693 u32 add_len = 0, off = 8;
3694
3695 if (cmd->data_length < 8) {
6708bb27 3696 pr_err("PRIN SA READ_KEYS SCSI Data Length: %u"
c66ac9db 3697 " too small\n", cmd->data_length);
de103c93 3698 return TCM_INVALID_CDB_FIELD;
c66ac9db
NB
3699 }
3700
4949314c 3701 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3702 if (!buf)
3703 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3704
0fd97ccf
CH
3705 buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
3706 buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
3707 buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
3708 buf[3] = (dev->t10_pr.pr_generation & 0xff);
c66ac9db 3709
0fd97ccf
CH
3710 spin_lock(&dev->t10_pr.registration_lock);
3711 list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
c66ac9db
NB
3712 pr_reg_list) {
3713 /*
3714 * Check for overflow of 8byte PRI READ_KEYS payload and
3715 * next reservation key list descriptor.
3716 */
3717 if ((add_len + 8) > (cmd->data_length - 8))
3718 break;
3719
3720 buf[off++] = ((pr_reg->pr_res_key >> 56) & 0xff);
3721 buf[off++] = ((pr_reg->pr_res_key >> 48) & 0xff);
3722 buf[off++] = ((pr_reg->pr_res_key >> 40) & 0xff);
3723 buf[off++] = ((pr_reg->pr_res_key >> 32) & 0xff);
3724 buf[off++] = ((pr_reg->pr_res_key >> 24) & 0xff);
3725 buf[off++] = ((pr_reg->pr_res_key >> 16) & 0xff);
3726 buf[off++] = ((pr_reg->pr_res_key >> 8) & 0xff);
3727 buf[off++] = (pr_reg->pr_res_key & 0xff);
3728
3729 add_len += 8;
3730 }
0fd97ccf 3731 spin_unlock(&dev->t10_pr.registration_lock);
c66ac9db
NB
3732
3733 buf[4] = ((add_len >> 24) & 0xff);
3734 buf[5] = ((add_len >> 16) & 0xff);
3735 buf[6] = ((add_len >> 8) & 0xff);
3736 buf[7] = (add_len & 0xff);
3737
4949314c 3738 transport_kunmap_data_sg(cmd);
05d1c7c0 3739
c66ac9db
NB
3740 return 0;
3741}
3742
3743/*
3744 * PERSISTENT_RESERVE_IN Service Action READ_RESERVATION
3745 *
3746 * See spc4r17 section 5.7.6.3 and section 6.13.3.2 Table 161 and 162
3747 */
de103c93
CH
3748static sense_reason_t
3749core_scsi3_pri_read_reservation(struct se_cmd *cmd)
c66ac9db 3750{
0fd97ccf 3751 struct se_device *dev = cmd->se_dev;
c66ac9db 3752 struct t10_pr_registration *pr_reg;
05d1c7c0 3753 unsigned char *buf;
c66ac9db
NB
3754 u64 pr_res_key;
3755 u32 add_len = 16; /* Hardcoded to 16 when a reservation is held. */
3756
3757 if (cmd->data_length < 8) {
6708bb27 3758 pr_err("PRIN SA READ_RESERVATIONS SCSI Data Length: %u"
c66ac9db 3759 " too small\n", cmd->data_length);
de103c93 3760 return TCM_INVALID_CDB_FIELD;
c66ac9db
NB
3761 }
3762
4949314c 3763 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3764 if (!buf)
3765 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3766
0fd97ccf
CH
3767 buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
3768 buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
3769 buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
3770 buf[3] = (dev->t10_pr.pr_generation & 0xff);
c66ac9db 3771
0fd97ccf
CH
3772 spin_lock(&dev->dev_reservation_lock);
3773 pr_reg = dev->dev_pr_res_holder;
ee1b1b9c 3774 if (pr_reg) {
c66ac9db
NB
3775 /*
3776 * Set the hardcoded Additional Length
3777 */
3778 buf[4] = ((add_len >> 24) & 0xff);
3779 buf[5] = ((add_len >> 16) & 0xff);
3780 buf[6] = ((add_len >> 8) & 0xff);
3781 buf[7] = (add_len & 0xff);
3782
05d1c7c0
AG
3783 if (cmd->data_length < 22)
3784 goto err;
3785
c66ac9db
NB
3786 /*
3787 * Set the Reservation key.
3788 *
3789 * From spc4r17, section 5.7.10:
3790 * A persistent reservation holder has its reservation key
3791 * returned in the parameter data from a PERSISTENT
3792 * RESERVE IN command with READ RESERVATION service action as
3793 * follows:
3794 * a) For a persistent reservation of the type Write Exclusive
3795 * - All Registrants or Exclusive Access ­ All Regitrants,
3796 * the reservation key shall be set to zero; or
3797 * b) For all other persistent reservation types, the
3798 * reservation key shall be set to the registered
3799 * reservation key for the I_T nexus that holds the
3800 * persistent reservation.
3801 */
3802 if ((pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
3803 (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG))
3804 pr_res_key = 0;
3805 else
3806 pr_res_key = pr_reg->pr_res_key;
3807
3808 buf[8] = ((pr_res_key >> 56) & 0xff);
3809 buf[9] = ((pr_res_key >> 48) & 0xff);
3810 buf[10] = ((pr_res_key >> 40) & 0xff);
3811 buf[11] = ((pr_res_key >> 32) & 0xff);
3812 buf[12] = ((pr_res_key >> 24) & 0xff);
3813 buf[13] = ((pr_res_key >> 16) & 0xff);
3814 buf[14] = ((pr_res_key >> 8) & 0xff);
3815 buf[15] = (pr_res_key & 0xff);
3816 /*
3817 * Set the SCOPE and TYPE
3818 */
3819 buf[21] = (pr_reg->pr_res_scope & 0xf0) |
3820 (pr_reg->pr_res_type & 0x0f);
3821 }
05d1c7c0
AG
3822
3823err:
0fd97ccf 3824 spin_unlock(&dev->dev_reservation_lock);
4949314c 3825 transport_kunmap_data_sg(cmd);
c66ac9db
NB
3826
3827 return 0;
3828}
3829
3830/*
3831 * PERSISTENT_RESERVE_IN Service Action REPORT_CAPABILITIES
3832 *
3833 * See spc4r17 section 6.13.4 Table 165
3834 */
de103c93
CH
3835static sense_reason_t
3836core_scsi3_pri_report_capabilities(struct se_cmd *cmd)
c66ac9db 3837{
5951146d 3838 struct se_device *dev = cmd->se_dev;
0fd97ccf 3839 struct t10_reservation *pr_tmpl = &dev->t10_pr;
05d1c7c0 3840 unsigned char *buf;
c66ac9db
NB
3841 u16 add_len = 8; /* Hardcoded to 8. */
3842
3843 if (cmd->data_length < 6) {
6708bb27 3844 pr_err("PRIN SA REPORT_CAPABILITIES SCSI Data Length:"
c66ac9db 3845 " %u too small\n", cmd->data_length);
de103c93 3846 return TCM_INVALID_CDB_FIELD;
c66ac9db
NB
3847 }
3848
4949314c 3849 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3850 if (!buf)
3851 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
05d1c7c0 3852
c435285d 3853 buf[0] = ((add_len >> 8) & 0xff);
c66ac9db
NB
3854 buf[1] = (add_len & 0xff);
3855 buf[2] |= 0x10; /* CRH: Compatible Reservation Hanlding bit. */
3856 buf[2] |= 0x08; /* SIP_C: Specify Initiator Ports Capable bit */
3857 buf[2] |= 0x04; /* ATP_C: All Target Ports Capable bit */
3858 buf[2] |= 0x01; /* PTPL_C: Persistence across Target Power Loss bit */
3859 /*
3860 * We are filling in the PERSISTENT RESERVATION TYPE MASK below, so
3861 * set the TMV: Task Mask Valid bit.
3862 */
3863 buf[3] |= 0x80;
3864 /*
3865 * Change ALLOW COMMANDs to 0x20 or 0x40 later from Table 166
3866 */
3867 buf[3] |= 0x10; /* ALLOW COMMANDs field 001b */
3868 /*
3869 * PTPL_A: Persistence across Target Power Loss Active bit
3870 */
3871 if (pr_tmpl->pr_aptpl_active)
3872 buf[3] |= 0x01;
3873 /*
3874 * Setup the PERSISTENT RESERVATION TYPE MASK from Table 167
3875 */
3876 buf[4] |= 0x80; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3877 buf[4] |= 0x40; /* PR_TYPE_EXCLUSIVE_ACCESS_REGONLY */
3878 buf[4] |= 0x20; /* PR_TYPE_WRITE_EXCLUSIVE_REGONLY */
3879 buf[4] |= 0x08; /* PR_TYPE_EXCLUSIVE_ACCESS */
3880 buf[4] |= 0x02; /* PR_TYPE_WRITE_EXCLUSIVE */
3881 buf[5] |= 0x01; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3882
4949314c 3883 transport_kunmap_data_sg(cmd);
05d1c7c0 3884
c66ac9db
NB
3885 return 0;
3886}
3887
3888/*
3889 * PERSISTENT_RESERVE_IN Service Action READ_FULL_STATUS
3890 *
3891 * See spc4r17 section 6.13.5 Table 168 and 169
3892 */
de103c93
CH
3893static sense_reason_t
3894core_scsi3_pri_read_full_status(struct se_cmd *cmd)
c66ac9db 3895{
0fd97ccf 3896 struct se_device *dev = cmd->se_dev;
c66ac9db 3897 struct se_node_acl *se_nacl;
c66ac9db
NB
3898 struct se_portal_group *se_tpg;
3899 struct t10_pr_registration *pr_reg, *pr_reg_tmp;
0fd97ccf 3900 struct t10_reservation *pr_tmpl = &dev->t10_pr;
05d1c7c0 3901 unsigned char *buf;
c66ac9db
NB
3902 u32 add_desc_len = 0, add_len = 0, desc_len, exp_desc_len;
3903 u32 off = 8; /* off into first Full Status descriptor */
d16ca7c5
NB
3904 int format_code = 0, pr_res_type = 0, pr_res_scope = 0;
3905 bool all_reg = false;
c66ac9db
NB
3906
3907 if (cmd->data_length < 8) {
6708bb27 3908 pr_err("PRIN SA READ_FULL_STATUS SCSI Data Length: %u"
c66ac9db 3909 " too small\n", cmd->data_length);
de103c93 3910 return TCM_INVALID_CDB_FIELD;
c66ac9db
NB
3911 }
3912
4949314c 3913 buf = transport_kmap_data_sg(cmd);
de103c93
CH
3914 if (!buf)
3915 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
05d1c7c0 3916
0fd97ccf
CH
3917 buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
3918 buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
3919 buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
3920 buf[3] = (dev->t10_pr.pr_generation & 0xff);
c66ac9db 3921
d16ca7c5
NB
3922 spin_lock(&dev->dev_reservation_lock);
3923 if (dev->dev_pr_res_holder) {
3924 struct t10_pr_registration *pr_holder = dev->dev_pr_res_holder;
3925
3926 if (pr_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG ||
3927 pr_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG) {
3928 all_reg = true;
3929 pr_res_type = pr_holder->pr_res_type;
3930 pr_res_scope = pr_holder->pr_res_scope;
3931 }
3932 }
3933 spin_unlock(&dev->dev_reservation_lock);
3934
c66ac9db
NB
3935 spin_lock(&pr_tmpl->registration_lock);
3936 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
3937 &pr_tmpl->registration_list, pr_reg_list) {
3938
3939 se_nacl = pr_reg->pr_reg_nacl;
3940 se_tpg = pr_reg->pr_reg_nacl->se_tpg;
3941 add_desc_len = 0;
3942
33940d09 3943 atomic_inc_mb(&pr_reg->pr_res_holders);
c66ac9db
NB
3944 spin_unlock(&pr_tmpl->registration_lock);
3945 /*
3946 * Determine expected length of $FABRIC_MOD specific
3947 * TransportID full status descriptor..
3948 */
e3d6f909 3949 exp_desc_len = se_tpg->se_tpg_tfo->tpg_get_pr_transport_id_len(
c66ac9db
NB
3950 se_tpg, se_nacl, pr_reg, &format_code);
3951
3952 if ((exp_desc_len + add_len) > cmd->data_length) {
6708bb27 3953 pr_warn("SPC-3 PRIN READ_FULL_STATUS ran"
c66ac9db
NB
3954 " out of buffer: %d\n", cmd->data_length);
3955 spin_lock(&pr_tmpl->registration_lock);
33940d09 3956 atomic_dec_mb(&pr_reg->pr_res_holders);
c66ac9db
NB
3957 break;
3958 }
3959 /*
3960 * Set RESERVATION KEY
3961 */
3962 buf[off++] = ((pr_reg->pr_res_key >> 56) & 0xff);
3963 buf[off++] = ((pr_reg->pr_res_key >> 48) & 0xff);
3964 buf[off++] = ((pr_reg->pr_res_key >> 40) & 0xff);
3965 buf[off++] = ((pr_reg->pr_res_key >> 32) & 0xff);
3966 buf[off++] = ((pr_reg->pr_res_key >> 24) & 0xff);
3967 buf[off++] = ((pr_reg->pr_res_key >> 16) & 0xff);
3968 buf[off++] = ((pr_reg->pr_res_key >> 8) & 0xff);
3969 buf[off++] = (pr_reg->pr_res_key & 0xff);
3970 off += 4; /* Skip Over Reserved area */
3971
3972 /*
3973 * Set ALL_TG_PT bit if PROUT SA REGISTER had this set.
3974 */
3975 if (pr_reg->pr_reg_all_tg_pt)
3976 buf[off] = 0x02;
3977 /*
3978 * The struct se_lun pointer will be present for the
3979 * reservation holder for PR_HOLDER bit.
3980 *
3981 * Also, if this registration is the reservation
d16ca7c5
NB
3982 * holder or there is an All Registrants reservation
3983 * active, fill in SCOPE and TYPE in the next byte.
c66ac9db
NB
3984 */
3985 if (pr_reg->pr_res_holder) {
3986 buf[off++] |= 0x01;
3987 buf[off++] = (pr_reg->pr_res_scope & 0xf0) |
3988 (pr_reg->pr_res_type & 0x0f);
d16ca7c5
NB
3989 } else if (all_reg) {
3990 buf[off++] |= 0x01;
3991 buf[off++] = (pr_res_scope & 0xf0) |
3992 (pr_res_type & 0x0f);
3993 } else {
c66ac9db 3994 off += 2;
d16ca7c5 3995 }
c66ac9db
NB
3996
3997 off += 4; /* Skip over reserved area */
3998 /*
3999 * From spc4r17 6.3.15:
4000 *
4001 * If the ALL_TG_PT bit set to zero, the RELATIVE TARGET PORT
4002 * IDENTIFIER field contains the relative port identifier (see
4003 * 3.1.120) of the target port that is part of the I_T nexus
4004 * described by this full status descriptor. If the ALL_TG_PT
4005 * bit is set to one, the contents of the RELATIVE TARGET PORT
4006 * IDENTIFIER field are not defined by this standard.
4007 */
6708bb27 4008 if (!pr_reg->pr_reg_all_tg_pt) {
c66ac9db
NB
4009 struct se_port *port = pr_reg->pr_reg_tg_pt_lun->lun_sep;
4010
4011 buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
4012 buf[off++] = (port->sep_rtpi & 0xff);
4013 } else
35d1efe8 4014 off += 2; /* Skip over RELATIVE TARGET PORT IDENTIFIER */
c66ac9db
NB
4015
4016 /*
4017 * Now, have the $FABRIC_MOD fill in the protocol identifier
4018 */
e3d6f909 4019 desc_len = se_tpg->se_tpg_tfo->tpg_get_pr_transport_id(se_tpg,
c66ac9db
NB
4020 se_nacl, pr_reg, &format_code, &buf[off+4]);
4021
4022 spin_lock(&pr_tmpl->registration_lock);
33940d09 4023 atomic_dec_mb(&pr_reg->pr_res_holders);
c66ac9db
NB
4024 /*
4025 * Set the ADDITIONAL DESCRIPTOR LENGTH
4026 */
4027 buf[off++] = ((desc_len >> 24) & 0xff);
4028 buf[off++] = ((desc_len >> 16) & 0xff);
4029 buf[off++] = ((desc_len >> 8) & 0xff);
4030 buf[off++] = (desc_len & 0xff);
4031 /*
4032 * Size of full desctipor header minus TransportID
4033 * containing $FABRIC_MOD specific) initiator device/port
4034 * WWN information.
4035 *
4036 * See spc4r17 Section 6.13.5 Table 169
4037 */
4038 add_desc_len = (24 + desc_len);
4039
4040 off += desc_len;
4041 add_len += add_desc_len;
4042 }
4043 spin_unlock(&pr_tmpl->registration_lock);
4044 /*
4045 * Set ADDITIONAL_LENGTH
4046 */
4047 buf[4] = ((add_len >> 24) & 0xff);
4048 buf[5] = ((add_len >> 16) & 0xff);
4049 buf[6] = ((add_len >> 8) & 0xff);
4050 buf[7] = (add_len & 0xff);
4051
4949314c 4052 transport_kunmap_data_sg(cmd);
05d1c7c0 4053
c66ac9db
NB
4054 return 0;
4055}
4056
de103c93
CH
4057sense_reason_t
4058target_scsi3_emulate_pr_in(struct se_cmd *cmd)
c66ac9db 4059{
de103c93 4060 sense_reason_t ret;
e76a35d6 4061
c66ac9db
NB
4062 /*
4063 * Following spc2r20 5.5.1 Reservations overview:
4064 *
4065 * If a logical unit has been reserved by any RESERVE command and is
4066 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
4067 * PERSISTENT RESERVE OUT commands shall conflict regardless of
4068 * initiator or service action and shall terminate with a RESERVATION
4069 * CONFLICT status.
4070 */
0fd97ccf 4071 if (cmd->se_dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS) {
6708bb27 4072 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
c66ac9db
NB
4073 " SPC-2 reservation is held, returning"
4074 " RESERVATION_CONFLICT\n");
de103c93 4075 return TCM_RESERVATION_CONFLICT;
c66ac9db
NB
4076 }
4077
617c0e06
CH
4078 switch (cmd->t_task_cdb[1] & 0x1f) {
4079 case PRI_READ_KEYS:
d29a5b6a
CH
4080 ret = core_scsi3_pri_read_keys(cmd);
4081 break;
617c0e06 4082 case PRI_READ_RESERVATION:
d29a5b6a
CH
4083 ret = core_scsi3_pri_read_reservation(cmd);
4084 break;
617c0e06 4085 case PRI_REPORT_CAPABILITIES:
d29a5b6a
CH
4086 ret = core_scsi3_pri_report_capabilities(cmd);
4087 break;
617c0e06 4088 case PRI_READ_FULL_STATUS:
d29a5b6a
CH
4089 ret = core_scsi3_pri_read_full_status(cmd);
4090 break;
617c0e06
CH
4091 default:
4092 pr_err("Unknown PERSISTENT_RESERVE_IN service"
4093 " action: 0x%02x\n", cmd->t_task_cdb[1] & 0x1f);
de103c93 4094 return TCM_INVALID_CDB_FIELD;
d29a5b6a
CH
4095 }
4096
6bb35e00
CH
4097 if (!ret)
4098 target_complete_cmd(cmd, GOOD);
d29a5b6a 4099 return ret;
c66ac9db
NB
4100}
4101
de103c93
CH
4102sense_reason_t
4103target_check_reservation(struct se_cmd *cmd)
c66ac9db 4104{
d977f437 4105 struct se_device *dev = cmd->se_dev;
de103c93 4106 sense_reason_t ret;
c66ac9db 4107
d977f437
CH
4108 if (!cmd->se_sess)
4109 return 0;
4110 if (dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE)
4111 return 0;
4112 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
4113 return 0;
c66ac9db 4114
d977f437
CH
4115 spin_lock(&dev->dev_reservation_lock);
4116 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
4117 ret = target_scsi2_reservation_check(cmd);
4118 else
4119 ret = target_scsi3_pr_reservation_check(cmd);
4120 spin_unlock(&dev->dev_reservation_lock);
0fd97ccf 4121
d977f437 4122 return ret;
c66ac9db 4123}
This page took 0.711492 seconds and 5 git commands to generate.