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