target: Fix R_HOLDER bit usage for AllRegistrants
[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);
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 READ_MEDIA_SERIAL_NUMBER:
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);
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 list_del(&pr_reg->pr_reg_list);
1223 /*
1224 * Caller accessing *pr_reg using core_scsi3_locate_pr_reg(),
1225 * so call core_scsi3_put_pr_reg() to decrement our reference.
1226 */
1227 if (dec_holders)
1228 core_scsi3_put_pr_reg(pr_reg);
1229 /*
1230 * Wait until all reference from any other I_T nexuses for this
1231 * *pr_reg have been released. Because list_del() is called above,
1232 * the last core_scsi3_put_pr_reg(pr_reg) will release this reference
1233 * count back to zero, and we release *pr_reg.
1234 */
1235 while (atomic_read(&pr_reg->pr_res_holders) != 0) {
1236 spin_unlock(&pr_tmpl->registration_lock);
1237 pr_debug("SPC-3 PR [%s] waiting for pr_res_holders\n",
1238 tfo->get_fabric_name());
1239 cpu_relax();
1240 spin_lock(&pr_tmpl->registration_lock);
1241 }
1242
1243 pr_debug("SPC-3 PR [%s] Service Action: UNREGISTER Initiator"
1244 " Node: %s%s\n", tfo->get_fabric_name(),
1245 pr_reg->pr_reg_nacl->initiatorname,
1246 i_buf);
1247 pr_debug("SPC-3 PR [%s] for %s TCM Subsystem %s Object Target"
1248 " Port(s)\n", tfo->get_fabric_name(),
1249 (pr_reg->pr_reg_all_tg_pt) ? "ALL" : "SINGLE",
1250 dev->transport->name);
1251 pr_debug("SPC-3 PR [%s] SA Res Key: 0x%016Lx PRgeneration:"
1252 " 0x%08x\n", tfo->get_fabric_name(), pr_reg->pr_res_key,
1253 pr_reg->pr_res_generation);
1254
1255 if (!preempt_and_abort_list) {
1256 pr_reg->pr_reg_deve = NULL;
1257 pr_reg->pr_reg_nacl = NULL;
1258 kmem_cache_free(t10_pr_reg_cache, pr_reg);
1259 return;
1260 }
1261 /*
1262 * For PREEMPT_AND_ABORT, the list of *pr_reg in preempt_and_abort_list
1263 * are released once the ABORT_TASK_SET has completed..
1264 */
1265 list_add_tail(&pr_reg->pr_reg_abort_list, preempt_and_abort_list);
1266 }
1267
1268 void core_scsi3_free_pr_reg_from_nacl(
1269 struct se_device *dev,
1270 struct se_node_acl *nacl)
1271 {
1272 struct t10_reservation *pr_tmpl = &dev->t10_pr;
1273 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_res_holder;
1274 /*
1275 * If the passed se_node_acl matches the reservation holder,
1276 * release the reservation.
1277 */
1278 spin_lock(&dev->dev_reservation_lock);
1279 pr_res_holder = dev->dev_pr_res_holder;
1280 if ((pr_res_holder != NULL) &&
1281 (pr_res_holder->pr_reg_nacl == nacl))
1282 __core_scsi3_complete_pro_release(dev, nacl, pr_res_holder, 0);
1283 spin_unlock(&dev->dev_reservation_lock);
1284 /*
1285 * Release any registration associated with the struct se_node_acl.
1286 */
1287 spin_lock(&pr_tmpl->registration_lock);
1288 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1289 &pr_tmpl->registration_list, pr_reg_list) {
1290
1291 if (pr_reg->pr_reg_nacl != nacl)
1292 continue;
1293
1294 __core_scsi3_free_registration(dev, pr_reg, NULL, 0);
1295 }
1296 spin_unlock(&pr_tmpl->registration_lock);
1297 }
1298
1299 void core_scsi3_free_all_registrations(
1300 struct se_device *dev)
1301 {
1302 struct t10_reservation *pr_tmpl = &dev->t10_pr;
1303 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_res_holder;
1304
1305 spin_lock(&dev->dev_reservation_lock);
1306 pr_res_holder = dev->dev_pr_res_holder;
1307 if (pr_res_holder != NULL) {
1308 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
1309 __core_scsi3_complete_pro_release(dev, pr_res_nacl,
1310 pr_res_holder, 0);
1311 }
1312 spin_unlock(&dev->dev_reservation_lock);
1313
1314 spin_lock(&pr_tmpl->registration_lock);
1315 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
1316 &pr_tmpl->registration_list, pr_reg_list) {
1317
1318 __core_scsi3_free_registration(dev, pr_reg, NULL, 0);
1319 }
1320 spin_unlock(&pr_tmpl->registration_lock);
1321
1322 spin_lock(&pr_tmpl->aptpl_reg_lock);
1323 list_for_each_entry_safe(pr_reg, pr_reg_tmp, &pr_tmpl->aptpl_reg_list,
1324 pr_reg_aptpl_list) {
1325 list_del(&pr_reg->pr_reg_aptpl_list);
1326 kmem_cache_free(t10_pr_reg_cache, pr_reg);
1327 }
1328 spin_unlock(&pr_tmpl->aptpl_reg_lock);
1329 }
1330
1331 static int core_scsi3_tpg_depend_item(struct se_portal_group *tpg)
1332 {
1333 return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
1334 &tpg->tpg_group.cg_item);
1335 }
1336
1337 static void core_scsi3_tpg_undepend_item(struct se_portal_group *tpg)
1338 {
1339 configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
1340 &tpg->tpg_group.cg_item);
1341
1342 atomic_dec_mb(&tpg->tpg_pr_ref_count);
1343 }
1344
1345 static int core_scsi3_nodeacl_depend_item(struct se_node_acl *nacl)
1346 {
1347 struct se_portal_group *tpg = nacl->se_tpg;
1348
1349 if (nacl->dynamic_node_acl)
1350 return 0;
1351
1352 return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
1353 &nacl->acl_group.cg_item);
1354 }
1355
1356 static void core_scsi3_nodeacl_undepend_item(struct se_node_acl *nacl)
1357 {
1358 struct se_portal_group *tpg = nacl->se_tpg;
1359
1360 if (nacl->dynamic_node_acl) {
1361 atomic_dec_mb(&nacl->acl_pr_ref_count);
1362 return;
1363 }
1364
1365 configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
1366 &nacl->acl_group.cg_item);
1367
1368 atomic_dec_mb(&nacl->acl_pr_ref_count);
1369 }
1370
1371 static int core_scsi3_lunacl_depend_item(struct se_dev_entry *se_deve)
1372 {
1373 struct se_lun_acl *lun_acl = se_deve->se_lun_acl;
1374 struct se_node_acl *nacl;
1375 struct se_portal_group *tpg;
1376 /*
1377 * For nacl->dynamic_node_acl=1
1378 */
1379 if (!lun_acl)
1380 return 0;
1381
1382 nacl = lun_acl->se_lun_nacl;
1383 tpg = nacl->se_tpg;
1384
1385 return configfs_depend_item(tpg->se_tpg_tfo->tf_subsys,
1386 &lun_acl->se_lun_group.cg_item);
1387 }
1388
1389 static void core_scsi3_lunacl_undepend_item(struct se_dev_entry *se_deve)
1390 {
1391 struct se_lun_acl *lun_acl = se_deve->se_lun_acl;
1392 struct se_node_acl *nacl;
1393 struct se_portal_group *tpg;
1394 /*
1395 * For nacl->dynamic_node_acl=1
1396 */
1397 if (!lun_acl) {
1398 atomic_dec_mb(&se_deve->pr_ref_count);
1399 return;
1400 }
1401 nacl = lun_acl->se_lun_nacl;
1402 tpg = nacl->se_tpg;
1403
1404 configfs_undepend_item(tpg->se_tpg_tfo->tf_subsys,
1405 &lun_acl->se_lun_group.cg_item);
1406
1407 atomic_dec_mb(&se_deve->pr_ref_count);
1408 }
1409
1410 static sense_reason_t
1411 core_scsi3_decode_spec_i_port(
1412 struct se_cmd *cmd,
1413 struct se_portal_group *tpg,
1414 unsigned char *l_isid,
1415 u64 sa_res_key,
1416 int all_tg_pt,
1417 int aptpl)
1418 {
1419 struct se_device *dev = cmd->se_dev;
1420 struct se_port *tmp_port;
1421 struct se_portal_group *dest_tpg = NULL, *tmp_tpg;
1422 struct se_session *se_sess = cmd->se_sess;
1423 struct se_node_acl *dest_node_acl = NULL;
1424 struct se_dev_entry *dest_se_deve = NULL, *local_se_deve;
1425 struct t10_pr_registration *dest_pr_reg, *local_pr_reg, *pr_reg_e;
1426 struct t10_pr_registration *pr_reg_tmp, *pr_reg_tmp_safe;
1427 LIST_HEAD(tid_dest_list);
1428 struct pr_transport_id_holder *tidh_new, *tidh, *tidh_tmp;
1429 struct target_core_fabric_ops *tmp_tf_ops;
1430 unsigned char *buf;
1431 unsigned char *ptr, *i_str = NULL, proto_ident, tmp_proto_ident;
1432 char *iport_ptr = NULL, i_buf[PR_REG_ISID_ID_LEN];
1433 sense_reason_t ret;
1434 u32 tpdl, tid_len = 0;
1435 int dest_local_nexus;
1436 u32 dest_rtpi = 0;
1437
1438 local_se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
1439 /*
1440 * Allocate a struct pr_transport_id_holder and setup the
1441 * local_node_acl and local_se_deve pointers and add to
1442 * struct list_head tid_dest_list for add registration
1443 * processing in the loop of tid_dest_list below.
1444 */
1445 tidh_new = kzalloc(sizeof(struct pr_transport_id_holder), GFP_KERNEL);
1446 if (!tidh_new) {
1447 pr_err("Unable to allocate tidh_new\n");
1448 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1449 }
1450 INIT_LIST_HEAD(&tidh_new->dest_list);
1451 tidh_new->dest_tpg = tpg;
1452 tidh_new->dest_node_acl = se_sess->se_node_acl;
1453 tidh_new->dest_se_deve = local_se_deve;
1454
1455 local_pr_reg = __core_scsi3_alloc_registration(cmd->se_dev,
1456 se_sess->se_node_acl, local_se_deve, l_isid,
1457 sa_res_key, all_tg_pt, aptpl);
1458 if (!local_pr_reg) {
1459 kfree(tidh_new);
1460 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1461 }
1462 tidh_new->dest_pr_reg = local_pr_reg;
1463 /*
1464 * The local I_T nexus does not hold any configfs dependances,
1465 * so we set tid_h->dest_local_nexus=1 to prevent the
1466 * configfs_undepend_item() calls in the tid_dest_list loops below.
1467 */
1468 tidh_new->dest_local_nexus = 1;
1469 list_add_tail(&tidh_new->dest_list, &tid_dest_list);
1470
1471 if (cmd->data_length < 28) {
1472 pr_warn("SPC-PR: Received PR OUT parameter list"
1473 " length too small: %u\n", cmd->data_length);
1474 ret = TCM_INVALID_PARAMETER_LIST;
1475 goto out;
1476 }
1477
1478 buf = transport_kmap_data_sg(cmd);
1479 if (!buf) {
1480 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1481 goto out;
1482 }
1483
1484 /*
1485 * For a PERSISTENT RESERVE OUT specify initiator ports payload,
1486 * first extract TransportID Parameter Data Length, and make sure
1487 * the value matches up to the SCSI expected data transfer length.
1488 */
1489 tpdl = (buf[24] & 0xff) << 24;
1490 tpdl |= (buf[25] & 0xff) << 16;
1491 tpdl |= (buf[26] & 0xff) << 8;
1492 tpdl |= buf[27] & 0xff;
1493
1494 if ((tpdl + 28) != cmd->data_length) {
1495 pr_err("SPC-3 PR: Illegal tpdl: %u + 28 byte header"
1496 " does not equal CDB data_length: %u\n", tpdl,
1497 cmd->data_length);
1498 ret = TCM_INVALID_PARAMETER_LIST;
1499 goto out_unmap;
1500 }
1501 /*
1502 * Start processing the received transport IDs using the
1503 * receiving I_T Nexus portal's fabric dependent methods to
1504 * obtain the SCSI Initiator Port/Device Identifiers.
1505 */
1506 ptr = &buf[28];
1507
1508 while (tpdl > 0) {
1509 proto_ident = (ptr[0] & 0x0f);
1510 dest_tpg = NULL;
1511
1512 spin_lock(&dev->se_port_lock);
1513 list_for_each_entry(tmp_port, &dev->dev_sep_list, sep_list) {
1514 tmp_tpg = tmp_port->sep_tpg;
1515 if (!tmp_tpg)
1516 continue;
1517 tmp_tf_ops = tmp_tpg->se_tpg_tfo;
1518 if (!tmp_tf_ops)
1519 continue;
1520 if (!tmp_tf_ops->get_fabric_proto_ident ||
1521 !tmp_tf_ops->tpg_parse_pr_out_transport_id)
1522 continue;
1523 /*
1524 * Look for the matching proto_ident provided by
1525 * the received TransportID
1526 */
1527 tmp_proto_ident = tmp_tf_ops->get_fabric_proto_ident(tmp_tpg);
1528 if (tmp_proto_ident != proto_ident)
1529 continue;
1530 dest_rtpi = tmp_port->sep_rtpi;
1531
1532 i_str = tmp_tf_ops->tpg_parse_pr_out_transport_id(
1533 tmp_tpg, (const char *)ptr, &tid_len,
1534 &iport_ptr);
1535 if (!i_str)
1536 continue;
1537
1538 atomic_inc_mb(&tmp_tpg->tpg_pr_ref_count);
1539 spin_unlock(&dev->se_port_lock);
1540
1541 if (core_scsi3_tpg_depend_item(tmp_tpg)) {
1542 pr_err(" core_scsi3_tpg_depend_item()"
1543 " for tmp_tpg\n");
1544 atomic_dec_mb(&tmp_tpg->tpg_pr_ref_count);
1545 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1546 goto out_unmap;
1547 }
1548 /*
1549 * Locate the destination initiator ACL to be registered
1550 * from the decoded fabric module specific TransportID
1551 * at *i_str.
1552 */
1553 spin_lock_irq(&tmp_tpg->acl_node_lock);
1554 dest_node_acl = __core_tpg_get_initiator_node_acl(
1555 tmp_tpg, i_str);
1556 if (dest_node_acl)
1557 atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
1558 spin_unlock_irq(&tmp_tpg->acl_node_lock);
1559
1560 if (!dest_node_acl) {
1561 core_scsi3_tpg_undepend_item(tmp_tpg);
1562 spin_lock(&dev->se_port_lock);
1563 continue;
1564 }
1565
1566 if (core_scsi3_nodeacl_depend_item(dest_node_acl)) {
1567 pr_err("configfs_depend_item() failed"
1568 " for dest_node_acl->acl_group\n");
1569 atomic_dec_mb(&dest_node_acl->acl_pr_ref_count);
1570 core_scsi3_tpg_undepend_item(tmp_tpg);
1571 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1572 goto out_unmap;
1573 }
1574
1575 dest_tpg = tmp_tpg;
1576 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node:"
1577 " %s Port RTPI: %hu\n",
1578 dest_tpg->se_tpg_tfo->get_fabric_name(),
1579 dest_node_acl->initiatorname, dest_rtpi);
1580
1581 spin_lock(&dev->se_port_lock);
1582 break;
1583 }
1584 spin_unlock(&dev->se_port_lock);
1585
1586 if (!dest_tpg) {
1587 pr_err("SPC-3 PR SPEC_I_PT: Unable to locate"
1588 " dest_tpg\n");
1589 ret = TCM_INVALID_PARAMETER_LIST;
1590 goto out_unmap;
1591 }
1592
1593 pr_debug("SPC-3 PR SPEC_I_PT: Got %s data_length: %u tpdl: %u"
1594 " tid_len: %d for %s + %s\n",
1595 dest_tpg->se_tpg_tfo->get_fabric_name(), cmd->data_length,
1596 tpdl, tid_len, i_str, iport_ptr);
1597
1598 if (tid_len > tpdl) {
1599 pr_err("SPC-3 PR SPEC_I_PT: Illegal tid_len:"
1600 " %u for Transport ID: %s\n", tid_len, ptr);
1601 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1602 core_scsi3_tpg_undepend_item(dest_tpg);
1603 ret = TCM_INVALID_PARAMETER_LIST;
1604 goto out_unmap;
1605 }
1606 /*
1607 * Locate the desintation struct se_dev_entry pointer for matching
1608 * RELATIVE TARGET PORT IDENTIFIER on the receiving I_T Nexus
1609 * Target Port.
1610 */
1611 dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl,
1612 dest_rtpi);
1613 if (!dest_se_deve) {
1614 pr_err("Unable to locate %s dest_se_deve"
1615 " from destination RTPI: %hu\n",
1616 dest_tpg->se_tpg_tfo->get_fabric_name(),
1617 dest_rtpi);
1618
1619 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1620 core_scsi3_tpg_undepend_item(dest_tpg);
1621 ret = TCM_INVALID_PARAMETER_LIST;
1622 goto out_unmap;
1623 }
1624
1625 if (core_scsi3_lunacl_depend_item(dest_se_deve)) {
1626 pr_err("core_scsi3_lunacl_depend_item()"
1627 " failed\n");
1628 atomic_dec_mb(&dest_se_deve->pr_ref_count);
1629 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1630 core_scsi3_tpg_undepend_item(dest_tpg);
1631 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1632 goto out_unmap;
1633 }
1634
1635 pr_debug("SPC-3 PR SPEC_I_PT: Located %s Node: %s"
1636 " dest_se_deve mapped_lun: %u\n",
1637 dest_tpg->se_tpg_tfo->get_fabric_name(),
1638 dest_node_acl->initiatorname, dest_se_deve->mapped_lun);
1639
1640 /*
1641 * Skip any TransportIDs that already have a registration for
1642 * this target port.
1643 */
1644 pr_reg_e = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
1645 iport_ptr);
1646 if (pr_reg_e) {
1647 core_scsi3_put_pr_reg(pr_reg_e);
1648 core_scsi3_lunacl_undepend_item(dest_se_deve);
1649 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1650 core_scsi3_tpg_undepend_item(dest_tpg);
1651 ptr += tid_len;
1652 tpdl -= tid_len;
1653 tid_len = 0;
1654 continue;
1655 }
1656 /*
1657 * Allocate a struct pr_transport_id_holder and setup
1658 * the dest_node_acl and dest_se_deve pointers for the
1659 * loop below.
1660 */
1661 tidh_new = kzalloc(sizeof(struct pr_transport_id_holder),
1662 GFP_KERNEL);
1663 if (!tidh_new) {
1664 pr_err("Unable to allocate tidh_new\n");
1665 core_scsi3_lunacl_undepend_item(dest_se_deve);
1666 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1667 core_scsi3_tpg_undepend_item(dest_tpg);
1668 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1669 goto out_unmap;
1670 }
1671 INIT_LIST_HEAD(&tidh_new->dest_list);
1672 tidh_new->dest_tpg = dest_tpg;
1673 tidh_new->dest_node_acl = dest_node_acl;
1674 tidh_new->dest_se_deve = dest_se_deve;
1675
1676 /*
1677 * Allocate, but do NOT add the registration for the
1678 * TransportID referenced SCSI Initiator port. This
1679 * done because of the following from spc4r17 in section
1680 * 6.14.3 wrt SPEC_I_PT:
1681 *
1682 * "If a registration fails for any initiator port (e.g., if th
1683 * logical unit does not have enough resources available to
1684 * hold the registration information), no registrations shall be
1685 * made, and the command shall be terminated with
1686 * CHECK CONDITION status."
1687 *
1688 * That means we call __core_scsi3_alloc_registration() here,
1689 * and then call __core_scsi3_add_registration() in the
1690 * 2nd loop which will never fail.
1691 */
1692 dest_pr_reg = __core_scsi3_alloc_registration(cmd->se_dev,
1693 dest_node_acl, dest_se_deve, iport_ptr,
1694 sa_res_key, all_tg_pt, aptpl);
1695 if (!dest_pr_reg) {
1696 core_scsi3_lunacl_undepend_item(dest_se_deve);
1697 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1698 core_scsi3_tpg_undepend_item(dest_tpg);
1699 kfree(tidh_new);
1700 ret = TCM_INVALID_PARAMETER_LIST;
1701 goto out_unmap;
1702 }
1703 tidh_new->dest_pr_reg = dest_pr_reg;
1704 list_add_tail(&tidh_new->dest_list, &tid_dest_list);
1705
1706 ptr += tid_len;
1707 tpdl -= tid_len;
1708 tid_len = 0;
1709
1710 }
1711
1712 transport_kunmap_data_sg(cmd);
1713
1714 /*
1715 * Go ahead and create a registrations from tid_dest_list for the
1716 * SPEC_I_PT provided TransportID for the *tidh referenced dest_node_acl
1717 * and dest_se_deve.
1718 *
1719 * The SA Reservation Key from the PROUT is set for the
1720 * registration, and ALL_TG_PT is also passed. ALL_TG_PT=1
1721 * means that the TransportID Initiator port will be
1722 * registered on all of the target ports in the SCSI target device
1723 * ALL_TG_PT=0 means the registration will only be for the
1724 * SCSI target port the PROUT REGISTER with SPEC_I_PT=1
1725 * was received.
1726 */
1727 list_for_each_entry_safe(tidh, tidh_tmp, &tid_dest_list, dest_list) {
1728 dest_tpg = tidh->dest_tpg;
1729 dest_node_acl = tidh->dest_node_acl;
1730 dest_se_deve = tidh->dest_se_deve;
1731 dest_pr_reg = tidh->dest_pr_reg;
1732 dest_local_nexus = tidh->dest_local_nexus;
1733
1734 list_del(&tidh->dest_list);
1735 kfree(tidh);
1736
1737 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
1738 core_pr_dump_initiator_port(dest_pr_reg, i_buf, PR_REG_ISID_ID_LEN);
1739
1740 __core_scsi3_add_registration(cmd->se_dev, dest_node_acl,
1741 dest_pr_reg, 0, 0);
1742
1743 pr_debug("SPC-3 PR [%s] SPEC_I_PT: Successfully"
1744 " registered Transport ID for Node: %s%s Mapped LUN:"
1745 " %u\n", dest_tpg->se_tpg_tfo->get_fabric_name(),
1746 dest_node_acl->initiatorname, i_buf, dest_se_deve->mapped_lun);
1747
1748 if (dest_local_nexus)
1749 continue;
1750
1751 core_scsi3_lunacl_undepend_item(dest_se_deve);
1752 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1753 core_scsi3_tpg_undepend_item(dest_tpg);
1754 }
1755
1756 return 0;
1757 out_unmap:
1758 transport_kunmap_data_sg(cmd);
1759 out:
1760 /*
1761 * For the failure case, release everything from tid_dest_list
1762 * including *dest_pr_reg and the configfs dependances..
1763 */
1764 list_for_each_entry_safe(tidh, tidh_tmp, &tid_dest_list, dest_list) {
1765 dest_tpg = tidh->dest_tpg;
1766 dest_node_acl = tidh->dest_node_acl;
1767 dest_se_deve = tidh->dest_se_deve;
1768 dest_pr_reg = tidh->dest_pr_reg;
1769 dest_local_nexus = tidh->dest_local_nexus;
1770
1771 list_del(&tidh->dest_list);
1772 kfree(tidh);
1773 /*
1774 * Release any extra ALL_TG_PT=1 registrations for
1775 * the SPEC_I_PT=1 case.
1776 */
1777 list_for_each_entry_safe(pr_reg_tmp, pr_reg_tmp_safe,
1778 &dest_pr_reg->pr_reg_atp_list,
1779 pr_reg_atp_mem_list) {
1780 list_del(&pr_reg_tmp->pr_reg_atp_mem_list);
1781 core_scsi3_lunacl_undepend_item(pr_reg_tmp->pr_reg_deve);
1782 kmem_cache_free(t10_pr_reg_cache, pr_reg_tmp);
1783 }
1784
1785 kmem_cache_free(t10_pr_reg_cache, dest_pr_reg);
1786
1787 if (dest_local_nexus)
1788 continue;
1789
1790 core_scsi3_lunacl_undepend_item(dest_se_deve);
1791 core_scsi3_nodeacl_undepend_item(dest_node_acl);
1792 core_scsi3_tpg_undepend_item(dest_tpg);
1793 }
1794 return ret;
1795 }
1796
1797 static int core_scsi3_update_aptpl_buf(
1798 struct se_device *dev,
1799 unsigned char *buf,
1800 u32 pr_aptpl_buf_len)
1801 {
1802 struct se_lun *lun;
1803 struct se_portal_group *tpg;
1804 struct t10_pr_registration *pr_reg;
1805 unsigned char tmp[512], isid_buf[32];
1806 ssize_t len = 0;
1807 int reg_count = 0;
1808 int ret = 0;
1809
1810 spin_lock(&dev->dev_reservation_lock);
1811 spin_lock(&dev->t10_pr.registration_lock);
1812 /*
1813 * Walk the registration list..
1814 */
1815 list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
1816 pr_reg_list) {
1817
1818 tmp[0] = '\0';
1819 isid_buf[0] = '\0';
1820 tpg = pr_reg->pr_reg_nacl->se_tpg;
1821 lun = pr_reg->pr_reg_tg_pt_lun;
1822 /*
1823 * Write out any ISID value to APTPL metadata that was included
1824 * in the original registration.
1825 */
1826 if (pr_reg->isid_present_at_reg)
1827 snprintf(isid_buf, 32, "initiator_sid=%s\n",
1828 pr_reg->pr_reg_isid);
1829 /*
1830 * Include special metadata if the pr_reg matches the
1831 * reservation holder.
1832 */
1833 if (dev->dev_pr_res_holder == pr_reg) {
1834 snprintf(tmp, 512, "PR_REG_START: %d"
1835 "\ninitiator_fabric=%s\n"
1836 "initiator_node=%s\n%s"
1837 "sa_res_key=%llu\n"
1838 "res_holder=1\nres_type=%02x\n"
1839 "res_scope=%02x\nres_all_tg_pt=%d\n"
1840 "mapped_lun=%u\n", reg_count,
1841 tpg->se_tpg_tfo->get_fabric_name(),
1842 pr_reg->pr_reg_nacl->initiatorname, isid_buf,
1843 pr_reg->pr_res_key, pr_reg->pr_res_type,
1844 pr_reg->pr_res_scope, pr_reg->pr_reg_all_tg_pt,
1845 pr_reg->pr_res_mapped_lun);
1846 } else {
1847 snprintf(tmp, 512, "PR_REG_START: %d\n"
1848 "initiator_fabric=%s\ninitiator_node=%s\n%s"
1849 "sa_res_key=%llu\nres_holder=0\n"
1850 "res_all_tg_pt=%d\nmapped_lun=%u\n",
1851 reg_count, tpg->se_tpg_tfo->get_fabric_name(),
1852 pr_reg->pr_reg_nacl->initiatorname, isid_buf,
1853 pr_reg->pr_res_key, pr_reg->pr_reg_all_tg_pt,
1854 pr_reg->pr_res_mapped_lun);
1855 }
1856
1857 if ((len + strlen(tmp) >= pr_aptpl_buf_len)) {
1858 pr_err("Unable to update renaming"
1859 " APTPL metadata\n");
1860 ret = -EMSGSIZE;
1861 goto out;
1862 }
1863 len += sprintf(buf+len, "%s", tmp);
1864
1865 /*
1866 * Include information about the associated SCSI target port.
1867 */
1868 snprintf(tmp, 512, "target_fabric=%s\ntarget_node=%s\n"
1869 "tpgt=%hu\nport_rtpi=%hu\ntarget_lun=%u\nPR_REG_END:"
1870 " %d\n", tpg->se_tpg_tfo->get_fabric_name(),
1871 tpg->se_tpg_tfo->tpg_get_wwn(tpg),
1872 tpg->se_tpg_tfo->tpg_get_tag(tpg),
1873 lun->lun_sep->sep_rtpi, lun->unpacked_lun, reg_count);
1874
1875 if ((len + strlen(tmp) >= pr_aptpl_buf_len)) {
1876 pr_err("Unable to update renaming"
1877 " APTPL metadata\n");
1878 ret = -EMSGSIZE;
1879 goto out;
1880 }
1881 len += sprintf(buf+len, "%s", tmp);
1882 reg_count++;
1883 }
1884
1885 if (!reg_count)
1886 len += sprintf(buf+len, "No Registrations or Reservations");
1887
1888 out:
1889 spin_unlock(&dev->t10_pr.registration_lock);
1890 spin_unlock(&dev->dev_reservation_lock);
1891
1892 return ret;
1893 }
1894
1895 static int __core_scsi3_write_aptpl_to_file(
1896 struct se_device *dev,
1897 unsigned char *buf)
1898 {
1899 struct t10_wwn *wwn = &dev->t10_wwn;
1900 struct file *file;
1901 int flags = O_RDWR | O_CREAT | O_TRUNC;
1902 char path[512];
1903 u32 pr_aptpl_buf_len;
1904 int ret;
1905
1906 memset(path, 0, 512);
1907
1908 if (strlen(&wwn->unit_serial[0]) >= 512) {
1909 pr_err("WWN value for struct se_device does not fit"
1910 " into path buffer\n");
1911 return -EMSGSIZE;
1912 }
1913
1914 snprintf(path, 512, "/var/target/pr/aptpl_%s", &wwn->unit_serial[0]);
1915 file = filp_open(path, flags, 0600);
1916 if (IS_ERR(file)) {
1917 pr_err("filp_open(%s) for APTPL metadata"
1918 " failed\n", path);
1919 return PTR_ERR(file);
1920 }
1921
1922 pr_aptpl_buf_len = (strlen(buf) + 1); /* Add extra for NULL */
1923
1924 ret = kernel_write(file, buf, pr_aptpl_buf_len, 0);
1925
1926 if (ret < 0)
1927 pr_debug("Error writing APTPL metadata file: %s\n", path);
1928 fput(file);
1929
1930 return (ret < 0) ? -EIO : 0;
1931 }
1932
1933 /*
1934 * Clear the APTPL metadata if APTPL has been disabled, otherwise
1935 * write out the updated metadata to struct file for this SCSI device.
1936 */
1937 static sense_reason_t core_scsi3_update_and_write_aptpl(struct se_device *dev, bool aptpl)
1938 {
1939 unsigned char *buf;
1940 int rc;
1941
1942 if (!aptpl) {
1943 char *null_buf = "No Registrations or Reservations\n";
1944
1945 rc = __core_scsi3_write_aptpl_to_file(dev, null_buf);
1946 dev->t10_pr.pr_aptpl_active = 0;
1947 pr_debug("SPC-3 PR: Set APTPL Bit Deactivated\n");
1948
1949 if (rc)
1950 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1951
1952 return 0;
1953 }
1954
1955 buf = kzalloc(PR_APTPL_BUF_LEN, GFP_KERNEL);
1956 if (!buf)
1957 return TCM_OUT_OF_RESOURCES;
1958
1959 rc = core_scsi3_update_aptpl_buf(dev, buf, PR_APTPL_BUF_LEN);
1960 if (rc < 0) {
1961 kfree(buf);
1962 return TCM_OUT_OF_RESOURCES;
1963 }
1964
1965 rc = __core_scsi3_write_aptpl_to_file(dev, buf);
1966 if (rc != 0) {
1967 pr_err("SPC-3 PR: Could not update APTPL\n");
1968 kfree(buf);
1969 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1970 }
1971 dev->t10_pr.pr_aptpl_active = 1;
1972 kfree(buf);
1973 pr_debug("SPC-3 PR: Set APTPL Bit Activated\n");
1974 return 0;
1975 }
1976
1977 static sense_reason_t
1978 core_scsi3_emulate_pro_register(struct se_cmd *cmd, u64 res_key, u64 sa_res_key,
1979 bool aptpl, bool all_tg_pt, bool spec_i_pt, enum register_type register_type)
1980 {
1981 struct se_session *se_sess = cmd->se_sess;
1982 struct se_device *dev = cmd->se_dev;
1983 struct se_dev_entry *se_deve;
1984 struct se_lun *se_lun = cmd->se_lun;
1985 struct se_portal_group *se_tpg;
1986 struct t10_pr_registration *pr_reg, *pr_reg_p, *pr_reg_tmp;
1987 struct t10_reservation *pr_tmpl = &dev->t10_pr;
1988 unsigned char isid_buf[PR_REG_ISID_LEN], *isid_ptr = NULL;
1989 sense_reason_t ret = TCM_NO_SENSE;
1990 int pr_holder = 0, type;
1991
1992 if (!se_sess || !se_lun) {
1993 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
1994 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1995 }
1996 se_tpg = se_sess->se_tpg;
1997 se_deve = se_sess->se_node_acl->device_list[cmd->orig_fe_lun];
1998
1999 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid) {
2000 memset(&isid_buf[0], 0, PR_REG_ISID_LEN);
2001 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess, &isid_buf[0],
2002 PR_REG_ISID_LEN);
2003 isid_ptr = &isid_buf[0];
2004 }
2005 /*
2006 * Follow logic from spc4r17 Section 5.7.7, Register Behaviors Table 47
2007 */
2008 pr_reg = core_scsi3_locate_pr_reg(dev, se_sess->se_node_acl, se_sess);
2009 if (!pr_reg) {
2010 if (res_key) {
2011 pr_warn("SPC-3 PR: Reservation Key non-zero"
2012 " for SA REGISTER, returning CONFLICT\n");
2013 return TCM_RESERVATION_CONFLICT;
2014 }
2015 /*
2016 * Do nothing but return GOOD status.
2017 */
2018 if (!sa_res_key)
2019 return 0;
2020
2021 if (!spec_i_pt) {
2022 /*
2023 * Perform the Service Action REGISTER on the Initiator
2024 * Port Endpoint that the PRO was received from on the
2025 * Logical Unit of the SCSI device server.
2026 */
2027 if (core_scsi3_alloc_registration(cmd->se_dev,
2028 se_sess->se_node_acl, se_deve, isid_ptr,
2029 sa_res_key, all_tg_pt, aptpl,
2030 register_type, 0)) {
2031 pr_err("Unable to allocate"
2032 " struct t10_pr_registration\n");
2033 return TCM_INVALID_PARAMETER_LIST;
2034 }
2035 } else {
2036 /*
2037 * Register both the Initiator port that received
2038 * PROUT SA REGISTER + SPEC_I_PT=1 and extract SCSI
2039 * TransportID from Parameter list and loop through
2040 * fabric dependent parameter list while calling
2041 * logic from of core_scsi3_alloc_registration() for
2042 * each TransportID provided SCSI Initiator Port/Device
2043 */
2044 ret = core_scsi3_decode_spec_i_port(cmd, se_tpg,
2045 isid_ptr, sa_res_key, all_tg_pt, aptpl);
2046 if (ret != 0)
2047 return ret;
2048 }
2049
2050 return core_scsi3_update_and_write_aptpl(dev, aptpl);
2051 }
2052
2053 /* ok, existing registration */
2054
2055 if ((register_type == REGISTER) && (res_key != pr_reg->pr_res_key)) {
2056 pr_err("SPC-3 PR REGISTER: Received"
2057 " res_key: 0x%016Lx does not match"
2058 " existing SA REGISTER res_key:"
2059 " 0x%016Lx\n", res_key,
2060 pr_reg->pr_res_key);
2061 ret = TCM_RESERVATION_CONFLICT;
2062 goto out;
2063 }
2064
2065 if (spec_i_pt) {
2066 pr_err("SPC-3 PR REGISTER: SPEC_I_PT"
2067 " set on a registered nexus\n");
2068 ret = TCM_INVALID_PARAMETER_LIST;
2069 goto out;
2070 }
2071
2072 /*
2073 * An existing ALL_TG_PT=1 registration being released
2074 * must also set ALL_TG_PT=1 in the incoming PROUT.
2075 */
2076 if (pr_reg->pr_reg_all_tg_pt && !all_tg_pt) {
2077 pr_err("SPC-3 PR REGISTER: ALL_TG_PT=1"
2078 " registration exists, but ALL_TG_PT=1 bit not"
2079 " present in received PROUT\n");
2080 ret = TCM_INVALID_CDB_FIELD;
2081 goto out;
2082 }
2083
2084 /*
2085 * sa_res_key=1 Change Reservation Key for registered I_T Nexus.
2086 */
2087 if (sa_res_key) {
2088 /*
2089 * Increment PRgeneration counter for struct se_device"
2090 * upon a successful REGISTER, see spc4r17 section 6.3.2
2091 * READ_KEYS service action.
2092 */
2093 pr_reg->pr_res_generation = core_scsi3_pr_generation(cmd->se_dev);
2094 pr_reg->pr_res_key = sa_res_key;
2095 pr_debug("SPC-3 PR [%s] REGISTER%s: Changed Reservation"
2096 " Key for %s to: 0x%016Lx PRgeneration:"
2097 " 0x%08x\n", cmd->se_tfo->get_fabric_name(),
2098 (register_type == REGISTER_AND_IGNORE_EXISTING_KEY) ? "_AND_IGNORE_EXISTING_KEY" : "",
2099 pr_reg->pr_reg_nacl->initiatorname,
2100 pr_reg->pr_res_key, pr_reg->pr_res_generation);
2101
2102 } else {
2103 /*
2104 * sa_res_key=0 Unregister Reservation Key for registered I_T Nexus.
2105 */
2106 pr_holder = core_scsi3_check_implicit_release(
2107 cmd->se_dev, pr_reg);
2108 if (pr_holder < 0) {
2109 ret = TCM_RESERVATION_CONFLICT;
2110 goto out;
2111 }
2112 type = pr_reg->pr_res_type;
2113
2114 spin_lock(&pr_tmpl->registration_lock);
2115 /*
2116 * Release all ALL_TG_PT=1 for the matching SCSI Initiator Port
2117 * and matching pr_res_key.
2118 */
2119 if (pr_reg->pr_reg_all_tg_pt) {
2120 list_for_each_entry_safe(pr_reg_p, pr_reg_tmp,
2121 &pr_tmpl->registration_list,
2122 pr_reg_list) {
2123
2124 if (!pr_reg_p->pr_reg_all_tg_pt)
2125 continue;
2126 if (pr_reg_p->pr_res_key != res_key)
2127 continue;
2128 if (pr_reg == pr_reg_p)
2129 continue;
2130 if (strcmp(pr_reg->pr_reg_nacl->initiatorname,
2131 pr_reg_p->pr_reg_nacl->initiatorname))
2132 continue;
2133
2134 __core_scsi3_free_registration(dev,
2135 pr_reg_p, NULL, 0);
2136 }
2137 }
2138
2139 /*
2140 * Release the calling I_T Nexus registration now..
2141 */
2142 __core_scsi3_free_registration(cmd->se_dev, pr_reg, NULL, 1);
2143 pr_reg = NULL;
2144
2145 /*
2146 * From spc4r17, section 5.7.11.3 Unregistering
2147 *
2148 * If the persistent reservation is a registrants only
2149 * type, the device server shall establish a unit
2150 * attention condition for the initiator port associated
2151 * with every registered I_T nexus except for the I_T
2152 * nexus on which the PERSISTENT RESERVE OUT command was
2153 * received, with the additional sense code set to
2154 * RESERVATIONS RELEASED.
2155 */
2156 if (pr_holder &&
2157 (type == PR_TYPE_WRITE_EXCLUSIVE_REGONLY ||
2158 type == PR_TYPE_EXCLUSIVE_ACCESS_REGONLY)) {
2159 list_for_each_entry(pr_reg_p,
2160 &pr_tmpl->registration_list,
2161 pr_reg_list) {
2162
2163 core_scsi3_ua_allocate(
2164 pr_reg_p->pr_reg_nacl,
2165 pr_reg_p->pr_res_mapped_lun,
2166 0x2A,
2167 ASCQ_2AH_RESERVATIONS_RELEASED);
2168 }
2169 }
2170
2171 spin_unlock(&pr_tmpl->registration_lock);
2172 }
2173
2174 ret = core_scsi3_update_and_write_aptpl(dev, aptpl);
2175
2176 out:
2177 if (pr_reg)
2178 core_scsi3_put_pr_reg(pr_reg);
2179 return ret;
2180 }
2181
2182 unsigned char *core_scsi3_pr_dump_type(int type)
2183 {
2184 switch (type) {
2185 case PR_TYPE_WRITE_EXCLUSIVE:
2186 return "Write Exclusive Access";
2187 case PR_TYPE_EXCLUSIVE_ACCESS:
2188 return "Exclusive Access";
2189 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
2190 return "Write Exclusive Access, Registrants Only";
2191 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
2192 return "Exclusive Access, Registrants Only";
2193 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
2194 return "Write Exclusive Access, All Registrants";
2195 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
2196 return "Exclusive Access, All Registrants";
2197 default:
2198 break;
2199 }
2200
2201 return "Unknown SPC-3 PR Type";
2202 }
2203
2204 static sense_reason_t
2205 core_scsi3_pro_reserve(struct se_cmd *cmd, int type, int scope, u64 res_key)
2206 {
2207 struct se_device *dev = cmd->se_dev;
2208 struct se_session *se_sess = cmd->se_sess;
2209 struct se_lun *se_lun = cmd->se_lun;
2210 struct t10_pr_registration *pr_reg, *pr_res_holder;
2211 struct t10_reservation *pr_tmpl = &dev->t10_pr;
2212 char i_buf[PR_REG_ISID_ID_LEN];
2213 sense_reason_t ret;
2214
2215 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2216
2217 if (!se_sess || !se_lun) {
2218 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2219 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2220 }
2221 /*
2222 * Locate the existing *pr_reg via struct se_node_acl pointers
2223 */
2224 pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
2225 se_sess);
2226 if (!pr_reg) {
2227 pr_err("SPC-3 PR: Unable to locate"
2228 " PR_REGISTERED *pr_reg for RESERVE\n");
2229 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2230 }
2231 /*
2232 * From spc4r17 Section 5.7.9: Reserving:
2233 *
2234 * An application client creates a persistent reservation by issuing
2235 * a PERSISTENT RESERVE OUT command with RESERVE service action through
2236 * a registered I_T nexus with the following parameters:
2237 * a) RESERVATION KEY set to the value of the reservation key that is
2238 * registered with the logical unit for the I_T nexus; and
2239 */
2240 if (res_key != pr_reg->pr_res_key) {
2241 pr_err("SPC-3 PR RESERVE: Received res_key: 0x%016Lx"
2242 " does not match existing SA REGISTER res_key:"
2243 " 0x%016Lx\n", res_key, pr_reg->pr_res_key);
2244 ret = TCM_RESERVATION_CONFLICT;
2245 goto out_put_pr_reg;
2246 }
2247 /*
2248 * From spc4r17 Section 5.7.9: Reserving:
2249 *
2250 * From above:
2251 * b) TYPE field and SCOPE field set to the persistent reservation
2252 * being created.
2253 *
2254 * Only one persistent reservation is allowed at a time per logical unit
2255 * and that persistent reservation has a scope of LU_SCOPE.
2256 */
2257 if (scope != PR_SCOPE_LU_SCOPE) {
2258 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope);
2259 ret = TCM_INVALID_PARAMETER_LIST;
2260 goto out_put_pr_reg;
2261 }
2262 /*
2263 * See if we have an existing PR reservation holder pointer at
2264 * struct se_device->dev_pr_res_holder in the form struct t10_pr_registration
2265 * *pr_res_holder.
2266 */
2267 spin_lock(&dev->dev_reservation_lock);
2268 pr_res_holder = dev->dev_pr_res_holder;
2269 if (pr_res_holder) {
2270 /*
2271 * From spc4r17 Section 5.7.9: Reserving:
2272 *
2273 * If the device server receives a PERSISTENT RESERVE OUT
2274 * command from an I_T nexus other than a persistent reservation
2275 * holder (see 5.7.10) that attempts to create a persistent
2276 * reservation when a persistent reservation already exists for
2277 * the logical unit, then the command shall be completed with
2278 * RESERVATION CONFLICT status.
2279 */
2280 if (pr_res_holder != pr_reg) {
2281 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2282 pr_err("SPC-3 PR: Attempted RESERVE from"
2283 " [%s]: %s while reservation already held by"
2284 " [%s]: %s, returning RESERVATION_CONFLICT\n",
2285 cmd->se_tfo->get_fabric_name(),
2286 se_sess->se_node_acl->initiatorname,
2287 pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
2288 pr_res_holder->pr_reg_nacl->initiatorname);
2289
2290 spin_unlock(&dev->dev_reservation_lock);
2291 ret = TCM_RESERVATION_CONFLICT;
2292 goto out_put_pr_reg;
2293 }
2294 /*
2295 * From spc4r17 Section 5.7.9: Reserving:
2296 *
2297 * If a persistent reservation holder attempts to modify the
2298 * type or scope of an existing persistent reservation, the
2299 * command shall be completed with RESERVATION CONFLICT status.
2300 */
2301 if ((pr_res_holder->pr_res_type != type) ||
2302 (pr_res_holder->pr_res_scope != scope)) {
2303 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2304 pr_err("SPC-3 PR: Attempted RESERVE from"
2305 " [%s]: %s trying to change TYPE and/or SCOPE,"
2306 " while reservation already held by [%s]: %s,"
2307 " returning RESERVATION_CONFLICT\n",
2308 cmd->se_tfo->get_fabric_name(),
2309 se_sess->se_node_acl->initiatorname,
2310 pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
2311 pr_res_holder->pr_reg_nacl->initiatorname);
2312
2313 spin_unlock(&dev->dev_reservation_lock);
2314 ret = TCM_RESERVATION_CONFLICT;
2315 goto out_put_pr_reg;
2316 }
2317 /*
2318 * From spc4r17 Section 5.7.9: Reserving:
2319 *
2320 * If the device server receives a PERSISTENT RESERVE OUT
2321 * command with RESERVE service action where the TYPE field and
2322 * the SCOPE field contain the same values as the existing type
2323 * and scope from a persistent reservation holder, it shall not
2324 * make any change to the existing persistent reservation and
2325 * shall completethe command with GOOD status.
2326 */
2327 spin_unlock(&dev->dev_reservation_lock);
2328 ret = 0;
2329 goto out_put_pr_reg;
2330 }
2331 /*
2332 * Otherwise, our *pr_reg becomes the PR reservation holder for said
2333 * TYPE/SCOPE. Also set the received scope and type in *pr_reg.
2334 */
2335 pr_reg->pr_res_scope = scope;
2336 pr_reg->pr_res_type = type;
2337 pr_reg->pr_res_holder = 1;
2338 dev->dev_pr_res_holder = pr_reg;
2339 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
2340
2341 pr_debug("SPC-3 PR [%s] Service Action: RESERVE created new"
2342 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2343 cmd->se_tfo->get_fabric_name(), core_scsi3_pr_dump_type(type),
2344 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
2345 pr_debug("SPC-3 PR [%s] RESERVE Node: %s%s\n",
2346 cmd->se_tfo->get_fabric_name(),
2347 se_sess->se_node_acl->initiatorname,
2348 i_buf);
2349 spin_unlock(&dev->dev_reservation_lock);
2350
2351 if (pr_tmpl->pr_aptpl_active)
2352 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2353
2354 ret = 0;
2355 out_put_pr_reg:
2356 core_scsi3_put_pr_reg(pr_reg);
2357 return ret;
2358 }
2359
2360 static sense_reason_t
2361 core_scsi3_emulate_pro_reserve(struct se_cmd *cmd, int type, int scope,
2362 u64 res_key)
2363 {
2364 switch (type) {
2365 case PR_TYPE_WRITE_EXCLUSIVE:
2366 case PR_TYPE_EXCLUSIVE_ACCESS:
2367 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
2368 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
2369 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
2370 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
2371 return core_scsi3_pro_reserve(cmd, type, scope, res_key);
2372 default:
2373 pr_err("SPC-3 PR: Unknown Service Action RESERVE Type:"
2374 " 0x%02x\n", type);
2375 return TCM_INVALID_CDB_FIELD;
2376 }
2377 }
2378
2379 /*
2380 * Called with struct se_device->dev_reservation_lock held.
2381 */
2382 static void __core_scsi3_complete_pro_release(
2383 struct se_device *dev,
2384 struct se_node_acl *se_nacl,
2385 struct t10_pr_registration *pr_reg,
2386 int explicit)
2387 {
2388 struct target_core_fabric_ops *tfo = se_nacl->se_tpg->se_tpg_tfo;
2389 char i_buf[PR_REG_ISID_ID_LEN];
2390
2391 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2392 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
2393 /*
2394 * Go ahead and release the current PR reservation holder.
2395 */
2396 dev->dev_pr_res_holder = NULL;
2397
2398 pr_debug("SPC-3 PR [%s] Service Action: %s RELEASE cleared"
2399 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2400 tfo->get_fabric_name(), (explicit) ? "explicit" : "implicit",
2401 core_scsi3_pr_dump_type(pr_reg->pr_res_type),
2402 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
2403 pr_debug("SPC-3 PR [%s] RELEASE Node: %s%s\n",
2404 tfo->get_fabric_name(), se_nacl->initiatorname,
2405 i_buf);
2406 /*
2407 * Clear TYPE and SCOPE for the next PROUT Service Action: RESERVE
2408 */
2409 pr_reg->pr_res_holder = pr_reg->pr_res_type = pr_reg->pr_res_scope = 0;
2410 }
2411
2412 static sense_reason_t
2413 core_scsi3_emulate_pro_release(struct se_cmd *cmd, int type, int scope,
2414 u64 res_key)
2415 {
2416 struct se_device *dev = cmd->se_dev;
2417 struct se_session *se_sess = cmd->se_sess;
2418 struct se_lun *se_lun = cmd->se_lun;
2419 struct t10_pr_registration *pr_reg, *pr_reg_p, *pr_res_holder;
2420 struct t10_reservation *pr_tmpl = &dev->t10_pr;
2421 int all_reg = 0;
2422 sense_reason_t ret = 0;
2423
2424 if (!se_sess || !se_lun) {
2425 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
2426 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2427 }
2428 /*
2429 * Locate the existing *pr_reg via struct se_node_acl pointers
2430 */
2431 pr_reg = core_scsi3_locate_pr_reg(dev, se_sess->se_node_acl, se_sess);
2432 if (!pr_reg) {
2433 pr_err("SPC-3 PR: Unable to locate"
2434 " PR_REGISTERED *pr_reg for RELEASE\n");
2435 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2436 }
2437 /*
2438 * From spc4r17 Section 5.7.11.2 Releasing:
2439 *
2440 * If there is no persistent reservation or in response to a persistent
2441 * reservation release request from a registered I_T nexus that is not a
2442 * persistent reservation holder (see 5.7.10), the device server shall
2443 * do the following:
2444 *
2445 * a) Not release the persistent reservation, if any;
2446 * b) Not remove any registrations; and
2447 * c) Complete the command with GOOD status.
2448 */
2449 spin_lock(&dev->dev_reservation_lock);
2450 pr_res_holder = dev->dev_pr_res_holder;
2451 if (!pr_res_holder) {
2452 /*
2453 * No persistent reservation, return GOOD status.
2454 */
2455 spin_unlock(&dev->dev_reservation_lock);
2456 goto out_put_pr_reg;
2457 }
2458 if ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
2459 (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG))
2460 all_reg = 1;
2461
2462 if ((all_reg == 0) && (pr_res_holder != pr_reg)) {
2463 /*
2464 * Non 'All Registrants' PR Type cases..
2465 * Release request from a registered I_T nexus that is not a
2466 * persistent reservation holder. return GOOD status.
2467 */
2468 spin_unlock(&dev->dev_reservation_lock);
2469 goto out_put_pr_reg;
2470 }
2471
2472 /*
2473 * From spc4r17 Section 5.7.11.2 Releasing:
2474 *
2475 * Only the persistent reservation holder (see 5.7.10) is allowed to
2476 * release a persistent reservation.
2477 *
2478 * An application client releases the persistent reservation by issuing
2479 * a PERSISTENT RESERVE OUT command with RELEASE service action through
2480 * an I_T nexus that is a persistent reservation holder with the
2481 * following parameters:
2482 *
2483 * a) RESERVATION KEY field set to the value of the reservation key
2484 * that is registered with the logical unit for the I_T nexus;
2485 */
2486 if (res_key != pr_reg->pr_res_key) {
2487 pr_err("SPC-3 PR RELEASE: Received res_key: 0x%016Lx"
2488 " does not match existing SA REGISTER res_key:"
2489 " 0x%016Lx\n", res_key, pr_reg->pr_res_key);
2490 spin_unlock(&dev->dev_reservation_lock);
2491 ret = TCM_RESERVATION_CONFLICT;
2492 goto out_put_pr_reg;
2493 }
2494 /*
2495 * From spc4r17 Section 5.7.11.2 Releasing and above:
2496 *
2497 * b) TYPE field and SCOPE field set to match the persistent
2498 * reservation being released.
2499 */
2500 if ((pr_res_holder->pr_res_type != type) ||
2501 (pr_res_holder->pr_res_scope != scope)) {
2502 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2503 pr_err("SPC-3 PR RELEASE: Attempted to release"
2504 " reservation from [%s]: %s with different TYPE "
2505 "and/or SCOPE while reservation already held by"
2506 " [%s]: %s, returning RESERVATION_CONFLICT\n",
2507 cmd->se_tfo->get_fabric_name(),
2508 se_sess->se_node_acl->initiatorname,
2509 pr_res_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
2510 pr_res_holder->pr_reg_nacl->initiatorname);
2511
2512 spin_unlock(&dev->dev_reservation_lock);
2513 ret = TCM_RESERVATION_CONFLICT;
2514 goto out_put_pr_reg;
2515 }
2516 /*
2517 * In response to a persistent reservation release request from the
2518 * persistent reservation holder the device server shall perform a
2519 * release by doing the following as an uninterrupted series of actions:
2520 * a) Release the persistent reservation;
2521 * b) Not remove any registration(s);
2522 * c) If the released persistent reservation is a registrants only type
2523 * or all registrants type persistent reservation,
2524 * the device server shall establish a unit attention condition for
2525 * the initiator port associated with every regis-
2526 * tered I_T nexus other than I_T nexus on which the PERSISTENT
2527 * RESERVE OUT command with RELEASE service action was received,
2528 * with the additional sense code set to RESERVATIONS RELEASED; and
2529 * d) If the persistent reservation is of any other type, the device
2530 * server shall not establish a unit attention condition.
2531 */
2532 __core_scsi3_complete_pro_release(dev, se_sess->se_node_acl,
2533 pr_reg, 1);
2534
2535 spin_unlock(&dev->dev_reservation_lock);
2536
2537 if ((type != PR_TYPE_WRITE_EXCLUSIVE_REGONLY) &&
2538 (type != PR_TYPE_EXCLUSIVE_ACCESS_REGONLY) &&
2539 (type != PR_TYPE_WRITE_EXCLUSIVE_ALLREG) &&
2540 (type != PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
2541 /*
2542 * If no UNIT ATTENTION conditions will be established for
2543 * PR_TYPE_WRITE_EXCLUSIVE or PR_TYPE_EXCLUSIVE_ACCESS
2544 * go ahead and check for APTPL=1 update+write below
2545 */
2546 goto write_aptpl;
2547 }
2548
2549 spin_lock(&pr_tmpl->registration_lock);
2550 list_for_each_entry(pr_reg_p, &pr_tmpl->registration_list,
2551 pr_reg_list) {
2552 /*
2553 * Do not establish a UNIT ATTENTION condition
2554 * for the calling I_T Nexus
2555 */
2556 if (pr_reg_p == pr_reg)
2557 continue;
2558
2559 core_scsi3_ua_allocate(pr_reg_p->pr_reg_nacl,
2560 pr_reg_p->pr_res_mapped_lun,
2561 0x2A, ASCQ_2AH_RESERVATIONS_RELEASED);
2562 }
2563 spin_unlock(&pr_tmpl->registration_lock);
2564
2565 write_aptpl:
2566 if (pr_tmpl->pr_aptpl_active)
2567 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2568
2569 out_put_pr_reg:
2570 core_scsi3_put_pr_reg(pr_reg);
2571 return ret;
2572 }
2573
2574 static sense_reason_t
2575 core_scsi3_emulate_pro_clear(struct se_cmd *cmd, u64 res_key)
2576 {
2577 struct se_device *dev = cmd->se_dev;
2578 struct se_node_acl *pr_reg_nacl;
2579 struct se_session *se_sess = cmd->se_sess;
2580 struct t10_reservation *pr_tmpl = &dev->t10_pr;
2581 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_reg_n, *pr_res_holder;
2582 u32 pr_res_mapped_lun = 0;
2583 int calling_it_nexus = 0;
2584 /*
2585 * Locate the existing *pr_reg via struct se_node_acl pointers
2586 */
2587 pr_reg_n = core_scsi3_locate_pr_reg(cmd->se_dev,
2588 se_sess->se_node_acl, se_sess);
2589 if (!pr_reg_n) {
2590 pr_err("SPC-3 PR: Unable to locate"
2591 " PR_REGISTERED *pr_reg for CLEAR\n");
2592 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2593 }
2594 /*
2595 * From spc4r17 section 5.7.11.6, Clearing:
2596 *
2597 * Any application client may release the persistent reservation and
2598 * remove all registrations from a device server by issuing a
2599 * PERSISTENT RESERVE OUT command with CLEAR service action through a
2600 * registered I_T nexus with the following parameter:
2601 *
2602 * a) RESERVATION KEY field set to the value of the reservation key
2603 * that is registered with the logical unit for the I_T nexus.
2604 */
2605 if (res_key != pr_reg_n->pr_res_key) {
2606 pr_err("SPC-3 PR REGISTER: Received"
2607 " res_key: 0x%016Lx does not match"
2608 " existing SA REGISTER res_key:"
2609 " 0x%016Lx\n", res_key, pr_reg_n->pr_res_key);
2610 core_scsi3_put_pr_reg(pr_reg_n);
2611 return TCM_RESERVATION_CONFLICT;
2612 }
2613 /*
2614 * a) Release the persistent reservation, if any;
2615 */
2616 spin_lock(&dev->dev_reservation_lock);
2617 pr_res_holder = dev->dev_pr_res_holder;
2618 if (pr_res_holder) {
2619 struct se_node_acl *pr_res_nacl = pr_res_holder->pr_reg_nacl;
2620 __core_scsi3_complete_pro_release(dev, pr_res_nacl,
2621 pr_res_holder, 0);
2622 }
2623 spin_unlock(&dev->dev_reservation_lock);
2624 /*
2625 * b) Remove all registration(s) (see spc4r17 5.7.7);
2626 */
2627 spin_lock(&pr_tmpl->registration_lock);
2628 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2629 &pr_tmpl->registration_list, pr_reg_list) {
2630
2631 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2632 pr_reg_nacl = pr_reg->pr_reg_nacl;
2633 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2634 __core_scsi3_free_registration(dev, pr_reg, NULL,
2635 calling_it_nexus);
2636 /*
2637 * e) Establish a unit attention condition for the initiator
2638 * port associated with every registered I_T nexus other
2639 * than the I_T nexus on which the PERSISTENT RESERVE OUT
2640 * command with CLEAR service action was received, with the
2641 * additional sense code set to RESERVATIONS PREEMPTED.
2642 */
2643 if (!calling_it_nexus)
2644 core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun,
2645 0x2A, ASCQ_2AH_RESERVATIONS_PREEMPTED);
2646 }
2647 spin_unlock(&pr_tmpl->registration_lock);
2648
2649 pr_debug("SPC-3 PR [%s] Service Action: CLEAR complete\n",
2650 cmd->se_tfo->get_fabric_name());
2651
2652 core_scsi3_update_and_write_aptpl(cmd->se_dev, false);
2653
2654 core_scsi3_pr_generation(dev);
2655 return 0;
2656 }
2657
2658 /*
2659 * Called with struct se_device->dev_reservation_lock held.
2660 */
2661 static void __core_scsi3_complete_pro_preempt(
2662 struct se_device *dev,
2663 struct t10_pr_registration *pr_reg,
2664 struct list_head *preempt_and_abort_list,
2665 int type,
2666 int scope,
2667 enum preempt_type preempt_type)
2668 {
2669 struct se_node_acl *nacl = pr_reg->pr_reg_nacl;
2670 struct target_core_fabric_ops *tfo = nacl->se_tpg->se_tpg_tfo;
2671 char i_buf[PR_REG_ISID_ID_LEN];
2672
2673 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
2674 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
2675 /*
2676 * Do an implicit RELEASE of the existing reservation.
2677 */
2678 if (dev->dev_pr_res_holder)
2679 __core_scsi3_complete_pro_release(dev, nacl,
2680 dev->dev_pr_res_holder, 0);
2681
2682 dev->dev_pr_res_holder = pr_reg;
2683 pr_reg->pr_res_holder = 1;
2684 pr_reg->pr_res_type = type;
2685 pr_reg->pr_res_scope = scope;
2686
2687 pr_debug("SPC-3 PR [%s] Service Action: PREEMPT%s created new"
2688 " reservation holder TYPE: %s ALL_TG_PT: %d\n",
2689 tfo->get_fabric_name(), (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "",
2690 core_scsi3_pr_dump_type(type),
2691 (pr_reg->pr_reg_all_tg_pt) ? 1 : 0);
2692 pr_debug("SPC-3 PR [%s] PREEMPT%s from Node: %s%s\n",
2693 tfo->get_fabric_name(), (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "",
2694 nacl->initiatorname, i_buf);
2695 /*
2696 * For PREEMPT_AND_ABORT, add the preempting reservation's
2697 * struct t10_pr_registration to the list that will be compared
2698 * against received CDBs..
2699 */
2700 if (preempt_and_abort_list)
2701 list_add_tail(&pr_reg->pr_reg_abort_list,
2702 preempt_and_abort_list);
2703 }
2704
2705 static void core_scsi3_release_preempt_and_abort(
2706 struct list_head *preempt_and_abort_list,
2707 struct t10_pr_registration *pr_reg_holder)
2708 {
2709 struct t10_pr_registration *pr_reg, *pr_reg_tmp;
2710
2711 list_for_each_entry_safe(pr_reg, pr_reg_tmp, preempt_and_abort_list,
2712 pr_reg_abort_list) {
2713
2714 list_del(&pr_reg->pr_reg_abort_list);
2715 if (pr_reg_holder == pr_reg)
2716 continue;
2717 if (pr_reg->pr_res_holder) {
2718 pr_warn("pr_reg->pr_res_holder still set\n");
2719 continue;
2720 }
2721
2722 pr_reg->pr_reg_deve = NULL;
2723 pr_reg->pr_reg_nacl = NULL;
2724 kmem_cache_free(t10_pr_reg_cache, pr_reg);
2725 }
2726 }
2727
2728 static sense_reason_t
2729 core_scsi3_pro_preempt(struct se_cmd *cmd, int type, int scope, u64 res_key,
2730 u64 sa_res_key, enum preempt_type preempt_type)
2731 {
2732 struct se_device *dev = cmd->se_dev;
2733 struct se_node_acl *pr_reg_nacl;
2734 struct se_session *se_sess = cmd->se_sess;
2735 LIST_HEAD(preempt_and_abort_list);
2736 struct t10_pr_registration *pr_reg, *pr_reg_tmp, *pr_reg_n, *pr_res_holder;
2737 struct t10_reservation *pr_tmpl = &dev->t10_pr;
2738 u32 pr_res_mapped_lun = 0;
2739 int all_reg = 0, calling_it_nexus = 0;
2740 bool sa_res_key_unmatched = sa_res_key != 0;
2741 int prh_type = 0, prh_scope = 0;
2742
2743 if (!se_sess)
2744 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2745
2746 pr_reg_n = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
2747 se_sess);
2748 if (!pr_reg_n) {
2749 pr_err("SPC-3 PR: Unable to locate"
2750 " PR_REGISTERED *pr_reg for PREEMPT%s\n",
2751 (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "");
2752 return TCM_RESERVATION_CONFLICT;
2753 }
2754 if (pr_reg_n->pr_res_key != res_key) {
2755 core_scsi3_put_pr_reg(pr_reg_n);
2756 return TCM_RESERVATION_CONFLICT;
2757 }
2758 if (scope != PR_SCOPE_LU_SCOPE) {
2759 pr_err("SPC-3 PR: Illegal SCOPE: 0x%02x\n", scope);
2760 core_scsi3_put_pr_reg(pr_reg_n);
2761 return TCM_INVALID_PARAMETER_LIST;
2762 }
2763
2764 spin_lock(&dev->dev_reservation_lock);
2765 pr_res_holder = dev->dev_pr_res_holder;
2766 if (pr_res_holder &&
2767 ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
2768 (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)))
2769 all_reg = 1;
2770
2771 if (!all_reg && !sa_res_key) {
2772 spin_unlock(&dev->dev_reservation_lock);
2773 core_scsi3_put_pr_reg(pr_reg_n);
2774 return TCM_INVALID_PARAMETER_LIST;
2775 }
2776 /*
2777 * From spc4r17, section 5.7.11.4.4 Removing Registrations:
2778 *
2779 * If the SERVICE ACTION RESERVATION KEY field does not identify a
2780 * persistent reservation holder or there is no persistent reservation
2781 * holder (i.e., there is no persistent reservation), then the device
2782 * server shall perform a preempt by doing the following in an
2783 * uninterrupted series of actions. (See below..)
2784 */
2785 if (!pr_res_holder || (pr_res_holder->pr_res_key != sa_res_key)) {
2786 /*
2787 * No existing or SA Reservation Key matching reservations..
2788 *
2789 * PROUT SA PREEMPT with All Registrant type reservations are
2790 * allowed to be processed without a matching SA Reservation Key
2791 */
2792 spin_lock(&pr_tmpl->registration_lock);
2793 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2794 &pr_tmpl->registration_list, pr_reg_list) {
2795 /*
2796 * Removing of registrations in non all registrants
2797 * type reservations without a matching SA reservation
2798 * key.
2799 *
2800 * a) Remove the registrations for all I_T nexuses
2801 * specified by the SERVICE ACTION RESERVATION KEY
2802 * field;
2803 * b) Ignore the contents of the SCOPE and TYPE fields;
2804 * c) Process tasks as defined in 5.7.1; and
2805 * d) Establish a unit attention condition for the
2806 * initiator port associated with every I_T nexus
2807 * that lost its registration other than the I_T
2808 * nexus on which the PERSISTENT RESERVE OUT command
2809 * was received, with the additional sense code set
2810 * to REGISTRATIONS PREEMPTED.
2811 */
2812 if (!all_reg) {
2813 if (pr_reg->pr_res_key != sa_res_key)
2814 continue;
2815 sa_res_key_unmatched = false;
2816
2817 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2818 pr_reg_nacl = pr_reg->pr_reg_nacl;
2819 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2820 __core_scsi3_free_registration(dev, pr_reg,
2821 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list :
2822 NULL, calling_it_nexus);
2823 } else {
2824 /*
2825 * Case for any existing all registrants type
2826 * reservation, follow logic in spc4r17 section
2827 * 5.7.11.4 Preempting, Table 52 and Figure 7.
2828 *
2829 * For a ZERO SA Reservation key, release
2830 * all other registrations and do an implicit
2831 * release of active persistent reservation.
2832 *
2833 * For a non-ZERO SA Reservation key, only
2834 * release the matching reservation key from
2835 * registrations.
2836 */
2837 if ((sa_res_key) &&
2838 (pr_reg->pr_res_key != sa_res_key))
2839 continue;
2840 sa_res_key_unmatched = false;
2841
2842 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2843 if (calling_it_nexus)
2844 continue;
2845
2846 pr_reg_nacl = pr_reg->pr_reg_nacl;
2847 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2848 __core_scsi3_free_registration(dev, pr_reg,
2849 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list :
2850 NULL, 0);
2851 }
2852 if (!calling_it_nexus)
2853 core_scsi3_ua_allocate(pr_reg_nacl,
2854 pr_res_mapped_lun, 0x2A,
2855 ASCQ_2AH_REGISTRATIONS_PREEMPTED);
2856 }
2857 spin_unlock(&pr_tmpl->registration_lock);
2858 /*
2859 * If a PERSISTENT RESERVE OUT with a PREEMPT service action or
2860 * a PREEMPT AND ABORT service action sets the SERVICE ACTION
2861 * RESERVATION KEY field to a value that does not match any
2862 * registered reservation key, then the device server shall
2863 * complete the command with RESERVATION CONFLICT status.
2864 */
2865 if (sa_res_key_unmatched) {
2866 spin_unlock(&dev->dev_reservation_lock);
2867 core_scsi3_put_pr_reg(pr_reg_n);
2868 return TCM_RESERVATION_CONFLICT;
2869 }
2870 /*
2871 * For an existing all registrants type reservation
2872 * with a zero SA rservation key, preempt the existing
2873 * reservation with the new PR type and scope.
2874 */
2875 if (pr_res_holder && all_reg && !(sa_res_key)) {
2876 __core_scsi3_complete_pro_preempt(dev, pr_reg_n,
2877 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
2878 type, scope, preempt_type);
2879
2880 if (preempt_type == PREEMPT_AND_ABORT)
2881 core_scsi3_release_preempt_and_abort(
2882 &preempt_and_abort_list, pr_reg_n);
2883 }
2884 spin_unlock(&dev->dev_reservation_lock);
2885
2886 if (pr_tmpl->pr_aptpl_active)
2887 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
2888
2889 core_scsi3_put_pr_reg(pr_reg_n);
2890 core_scsi3_pr_generation(cmd->se_dev);
2891 return 0;
2892 }
2893 /*
2894 * The PREEMPTing SA reservation key matches that of the
2895 * existing persistent reservation, first, we check if
2896 * we are preempting our own reservation.
2897 * From spc4r17, section 5.7.11.4.3 Preempting
2898 * persistent reservations and registration handling
2899 *
2900 * If an all registrants persistent reservation is not
2901 * present, it is not an error for the persistent
2902 * reservation holder to preempt itself (i.e., a
2903 * PERSISTENT RESERVE OUT with a PREEMPT service action
2904 * or a PREEMPT AND ABORT service action with the
2905 * SERVICE ACTION RESERVATION KEY value equal to the
2906 * persistent reservation holder's reservation key that
2907 * is received from the persistent reservation holder).
2908 * In that case, the device server shall establish the
2909 * new persistent reservation and maintain the
2910 * registration.
2911 */
2912 prh_type = pr_res_holder->pr_res_type;
2913 prh_scope = pr_res_holder->pr_res_scope;
2914 /*
2915 * If the SERVICE ACTION RESERVATION KEY field identifies a
2916 * persistent reservation holder (see 5.7.10), the device
2917 * server shall perform a preempt by doing the following as
2918 * an uninterrupted series of actions:
2919 *
2920 * a) Release the persistent reservation for the holder
2921 * identified by the SERVICE ACTION RESERVATION KEY field;
2922 */
2923 if (pr_reg_n != pr_res_holder)
2924 __core_scsi3_complete_pro_release(dev,
2925 pr_res_holder->pr_reg_nacl,
2926 dev->dev_pr_res_holder, 0);
2927 /*
2928 * b) Remove the registrations for all I_T nexuses identified
2929 * by the SERVICE ACTION RESERVATION KEY field, except the
2930 * I_T nexus that is being used for the PERSISTENT RESERVE
2931 * OUT command. If an all registrants persistent reservation
2932 * is present and the SERVICE ACTION RESERVATION KEY field
2933 * is set to zero, then all registrations shall be removed
2934 * except for that of the I_T nexus that is being used for
2935 * the PERSISTENT RESERVE OUT command;
2936 */
2937 spin_lock(&pr_tmpl->registration_lock);
2938 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
2939 &pr_tmpl->registration_list, pr_reg_list) {
2940
2941 calling_it_nexus = (pr_reg_n == pr_reg) ? 1 : 0;
2942 if (calling_it_nexus)
2943 continue;
2944
2945 if (pr_reg->pr_res_key != sa_res_key)
2946 continue;
2947
2948 pr_reg_nacl = pr_reg->pr_reg_nacl;
2949 pr_res_mapped_lun = pr_reg->pr_res_mapped_lun;
2950 __core_scsi3_free_registration(dev, pr_reg,
2951 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
2952 calling_it_nexus);
2953 /*
2954 * e) Establish a unit attention condition for the initiator
2955 * port associated with every I_T nexus that lost its
2956 * persistent reservation and/or registration, with the
2957 * additional sense code set to REGISTRATIONS PREEMPTED;
2958 */
2959 core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun, 0x2A,
2960 ASCQ_2AH_REGISTRATIONS_PREEMPTED);
2961 }
2962 spin_unlock(&pr_tmpl->registration_lock);
2963 /*
2964 * c) Establish a persistent reservation for the preempting
2965 * I_T nexus using the contents of the SCOPE and TYPE fields;
2966 */
2967 __core_scsi3_complete_pro_preempt(dev, pr_reg_n,
2968 (preempt_type == PREEMPT_AND_ABORT) ? &preempt_and_abort_list : NULL,
2969 type, scope, preempt_type);
2970 /*
2971 * d) Process tasks as defined in 5.7.1;
2972 * e) See above..
2973 * f) If the type or scope has changed, then for every I_T nexus
2974 * whose reservation key was not removed, except for the I_T
2975 * nexus on which the PERSISTENT RESERVE OUT command was
2976 * received, the device server shall establish a unit
2977 * attention condition for the initiator port associated with
2978 * that I_T nexus, with the additional sense code set to
2979 * RESERVATIONS RELEASED. If the type or scope have not
2980 * changed, then no unit attention condition(s) shall be
2981 * established for this reason.
2982 */
2983 if ((prh_type != type) || (prh_scope != scope)) {
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 core_scsi3_ua_allocate(pr_reg->pr_reg_nacl,
2993 pr_reg->pr_res_mapped_lun, 0x2A,
2994 ASCQ_2AH_RESERVATIONS_RELEASED);
2995 }
2996 spin_unlock(&pr_tmpl->registration_lock);
2997 }
2998 spin_unlock(&dev->dev_reservation_lock);
2999 /*
3000 * Call LUN_RESET logic upon list of struct t10_pr_registration,
3001 * All received CDBs for the matching existing reservation and
3002 * registrations undergo ABORT_TASK logic.
3003 *
3004 * From there, core_scsi3_release_preempt_and_abort() will
3005 * release every registration in the list (which have already
3006 * been removed from the primary pr_reg list), except the
3007 * new persistent reservation holder, the calling Initiator Port.
3008 */
3009 if (preempt_type == PREEMPT_AND_ABORT) {
3010 core_tmr_lun_reset(dev, NULL, &preempt_and_abort_list, cmd);
3011 core_scsi3_release_preempt_and_abort(&preempt_and_abort_list,
3012 pr_reg_n);
3013 }
3014
3015 if (pr_tmpl->pr_aptpl_active)
3016 core_scsi3_update_and_write_aptpl(cmd->se_dev, true);
3017
3018 core_scsi3_put_pr_reg(pr_reg_n);
3019 core_scsi3_pr_generation(cmd->se_dev);
3020 return 0;
3021 }
3022
3023 static sense_reason_t
3024 core_scsi3_emulate_pro_preempt(struct se_cmd *cmd, int type, int scope,
3025 u64 res_key, u64 sa_res_key, enum preempt_type preempt_type)
3026 {
3027 switch (type) {
3028 case PR_TYPE_WRITE_EXCLUSIVE:
3029 case PR_TYPE_EXCLUSIVE_ACCESS:
3030 case PR_TYPE_WRITE_EXCLUSIVE_REGONLY:
3031 case PR_TYPE_EXCLUSIVE_ACCESS_REGONLY:
3032 case PR_TYPE_WRITE_EXCLUSIVE_ALLREG:
3033 case PR_TYPE_EXCLUSIVE_ACCESS_ALLREG:
3034 return core_scsi3_pro_preempt(cmd, type, scope, res_key,
3035 sa_res_key, preempt_type);
3036 default:
3037 pr_err("SPC-3 PR: Unknown Service Action PREEMPT%s"
3038 " Type: 0x%02x\n", (preempt_type == PREEMPT_AND_ABORT) ? "_AND_ABORT" : "", type);
3039 return TCM_INVALID_CDB_FIELD;
3040 }
3041 }
3042
3043
3044 static sense_reason_t
3045 core_scsi3_emulate_pro_register_and_move(struct se_cmd *cmd, u64 res_key,
3046 u64 sa_res_key, int aptpl, int unreg)
3047 {
3048 struct se_session *se_sess = cmd->se_sess;
3049 struct se_device *dev = cmd->se_dev;
3050 struct se_dev_entry *dest_se_deve = NULL;
3051 struct se_lun *se_lun = cmd->se_lun;
3052 struct se_node_acl *pr_res_nacl, *pr_reg_nacl, *dest_node_acl = NULL;
3053 struct se_port *se_port;
3054 struct se_portal_group *se_tpg, *dest_se_tpg = NULL;
3055 struct target_core_fabric_ops *dest_tf_ops = NULL, *tf_ops;
3056 struct t10_pr_registration *pr_reg, *pr_res_holder, *dest_pr_reg;
3057 struct t10_reservation *pr_tmpl = &dev->t10_pr;
3058 unsigned char *buf;
3059 unsigned char *initiator_str;
3060 char *iport_ptr = NULL, i_buf[PR_REG_ISID_ID_LEN];
3061 u32 tid_len, tmp_tid_len;
3062 int new_reg = 0, type, scope, matching_iname;
3063 sense_reason_t ret;
3064 unsigned short rtpi;
3065 unsigned char proto_ident;
3066
3067 if (!se_sess || !se_lun) {
3068 pr_err("SPC-3 PR: se_sess || struct se_lun is NULL!\n");
3069 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3070 }
3071
3072 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
3073 se_tpg = se_sess->se_tpg;
3074 tf_ops = se_tpg->se_tpg_tfo;
3075 /*
3076 * Follow logic from spc4r17 Section 5.7.8, Table 50 --
3077 * Register behaviors for a REGISTER AND MOVE service action
3078 *
3079 * Locate the existing *pr_reg via struct se_node_acl pointers
3080 */
3081 pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl,
3082 se_sess);
3083 if (!pr_reg) {
3084 pr_err("SPC-3 PR: Unable to locate PR_REGISTERED"
3085 " *pr_reg for REGISTER_AND_MOVE\n");
3086 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3087 }
3088 /*
3089 * The provided reservation key much match the existing reservation key
3090 * provided during this initiator's I_T nexus registration.
3091 */
3092 if (res_key != pr_reg->pr_res_key) {
3093 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received"
3094 " res_key: 0x%016Lx does not match existing SA REGISTER"
3095 " res_key: 0x%016Lx\n", res_key, pr_reg->pr_res_key);
3096 ret = TCM_RESERVATION_CONFLICT;
3097 goto out_put_pr_reg;
3098 }
3099 /*
3100 * The service active reservation key needs to be non zero
3101 */
3102 if (!sa_res_key) {
3103 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Received zero"
3104 " sa_res_key\n");
3105 ret = TCM_INVALID_PARAMETER_LIST;
3106 goto out_put_pr_reg;
3107 }
3108
3109 /*
3110 * Determine the Relative Target Port Identifier where the reservation
3111 * will be moved to for the TransportID containing SCSI initiator WWN
3112 * information.
3113 */
3114 buf = transport_kmap_data_sg(cmd);
3115 if (!buf) {
3116 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3117 goto out_put_pr_reg;
3118 }
3119
3120 rtpi = (buf[18] & 0xff) << 8;
3121 rtpi |= buf[19] & 0xff;
3122 tid_len = (buf[20] & 0xff) << 24;
3123 tid_len |= (buf[21] & 0xff) << 16;
3124 tid_len |= (buf[22] & 0xff) << 8;
3125 tid_len |= buf[23] & 0xff;
3126 transport_kunmap_data_sg(cmd);
3127 buf = NULL;
3128
3129 if ((tid_len + 24) != cmd->data_length) {
3130 pr_err("SPC-3 PR: Illegal tid_len: %u + 24 byte header"
3131 " does not equal CDB data_length: %u\n", tid_len,
3132 cmd->data_length);
3133 ret = TCM_INVALID_PARAMETER_LIST;
3134 goto out_put_pr_reg;
3135 }
3136
3137 spin_lock(&dev->se_port_lock);
3138 list_for_each_entry(se_port, &dev->dev_sep_list, sep_list) {
3139 if (se_port->sep_rtpi != rtpi)
3140 continue;
3141 dest_se_tpg = se_port->sep_tpg;
3142 if (!dest_se_tpg)
3143 continue;
3144 dest_tf_ops = dest_se_tpg->se_tpg_tfo;
3145 if (!dest_tf_ops)
3146 continue;
3147
3148 atomic_inc_mb(&dest_se_tpg->tpg_pr_ref_count);
3149 spin_unlock(&dev->se_port_lock);
3150
3151 if (core_scsi3_tpg_depend_item(dest_se_tpg)) {
3152 pr_err("core_scsi3_tpg_depend_item() failed"
3153 " for dest_se_tpg\n");
3154 atomic_dec_mb(&dest_se_tpg->tpg_pr_ref_count);
3155 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3156 goto out_put_pr_reg;
3157 }
3158
3159 spin_lock(&dev->se_port_lock);
3160 break;
3161 }
3162 spin_unlock(&dev->se_port_lock);
3163
3164 if (!dest_se_tpg || !dest_tf_ops) {
3165 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3166 " fabric ops from Relative Target Port Identifier:"
3167 " %hu\n", rtpi);
3168 ret = TCM_INVALID_PARAMETER_LIST;
3169 goto out_put_pr_reg;
3170 }
3171
3172 buf = transport_kmap_data_sg(cmd);
3173 if (!buf) {
3174 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3175 goto out_put_pr_reg;
3176 }
3177 proto_ident = (buf[24] & 0x0f);
3178
3179 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Extracted Protocol Identifier:"
3180 " 0x%02x\n", proto_ident);
3181
3182 if (proto_ident != dest_tf_ops->get_fabric_proto_ident(dest_se_tpg)) {
3183 pr_err("SPC-3 PR REGISTER_AND_MOVE: Received"
3184 " proto_ident: 0x%02x does not match ident: 0x%02x"
3185 " from fabric: %s\n", proto_ident,
3186 dest_tf_ops->get_fabric_proto_ident(dest_se_tpg),
3187 dest_tf_ops->get_fabric_name());
3188 ret = TCM_INVALID_PARAMETER_LIST;
3189 goto out;
3190 }
3191 if (dest_tf_ops->tpg_parse_pr_out_transport_id == NULL) {
3192 pr_err("SPC-3 PR REGISTER_AND_MOVE: Fabric does not"
3193 " containg a valid tpg_parse_pr_out_transport_id"
3194 " function pointer\n");
3195 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3196 goto out;
3197 }
3198 initiator_str = dest_tf_ops->tpg_parse_pr_out_transport_id(dest_se_tpg,
3199 (const char *)&buf[24], &tmp_tid_len, &iport_ptr);
3200 if (!initiator_str) {
3201 pr_err("SPC-3 PR REGISTER_AND_MOVE: Unable to locate"
3202 " initiator_str from Transport ID\n");
3203 ret = TCM_INVALID_PARAMETER_LIST;
3204 goto out;
3205 }
3206
3207 transport_kunmap_data_sg(cmd);
3208 buf = NULL;
3209
3210 pr_debug("SPC-3 PR [%s] Extracted initiator %s identifier: %s"
3211 " %s\n", dest_tf_ops->get_fabric_name(), (iport_ptr != NULL) ?
3212 "port" : "device", initiator_str, (iport_ptr != NULL) ?
3213 iport_ptr : "");
3214 /*
3215 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3216 * action specifies a TransportID that is the same as the initiator port
3217 * of the I_T nexus for the command received, then the command shall
3218 * be terminated with CHECK CONDITION status, with the sense key set to
3219 * ILLEGAL REQUEST, and the additional sense code set to INVALID FIELD
3220 * IN PARAMETER LIST.
3221 */
3222 pr_reg_nacl = pr_reg->pr_reg_nacl;
3223 matching_iname = (!strcmp(initiator_str,
3224 pr_reg_nacl->initiatorname)) ? 1 : 0;
3225 if (!matching_iname)
3226 goto after_iport_check;
3227
3228 if (!iport_ptr || !pr_reg->isid_present_at_reg) {
3229 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s"
3230 " matches: %s on received I_T Nexus\n", initiator_str,
3231 pr_reg_nacl->initiatorname);
3232 ret = TCM_INVALID_PARAMETER_LIST;
3233 goto out;
3234 }
3235 if (!strcmp(iport_ptr, pr_reg->pr_reg_isid)) {
3236 pr_err("SPC-3 PR REGISTER_AND_MOVE: TransportID: %s %s"
3237 " matches: %s %s on received I_T Nexus\n",
3238 initiator_str, iport_ptr, pr_reg_nacl->initiatorname,
3239 pr_reg->pr_reg_isid);
3240 ret = TCM_INVALID_PARAMETER_LIST;
3241 goto out;
3242 }
3243 after_iport_check:
3244 /*
3245 * Locate the destination struct se_node_acl from the received Transport ID
3246 */
3247 spin_lock_irq(&dest_se_tpg->acl_node_lock);
3248 dest_node_acl = __core_tpg_get_initiator_node_acl(dest_se_tpg,
3249 initiator_str);
3250 if (dest_node_acl)
3251 atomic_inc_mb(&dest_node_acl->acl_pr_ref_count);
3252 spin_unlock_irq(&dest_se_tpg->acl_node_lock);
3253
3254 if (!dest_node_acl) {
3255 pr_err("Unable to locate %s dest_node_acl for"
3256 " TransportID%s\n", dest_tf_ops->get_fabric_name(),
3257 initiator_str);
3258 ret = TCM_INVALID_PARAMETER_LIST;
3259 goto out;
3260 }
3261
3262 if (core_scsi3_nodeacl_depend_item(dest_node_acl)) {
3263 pr_err("core_scsi3_nodeacl_depend_item() for"
3264 " dest_node_acl\n");
3265 atomic_dec_mb(&dest_node_acl->acl_pr_ref_count);
3266 dest_node_acl = NULL;
3267 ret = TCM_INVALID_PARAMETER_LIST;
3268 goto out;
3269 }
3270
3271 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Found %s dest_node_acl:"
3272 " %s from TransportID\n", dest_tf_ops->get_fabric_name(),
3273 dest_node_acl->initiatorname);
3274
3275 /*
3276 * Locate the struct se_dev_entry pointer for the matching RELATIVE TARGET
3277 * PORT IDENTIFIER.
3278 */
3279 dest_se_deve = core_get_se_deve_from_rtpi(dest_node_acl, rtpi);
3280 if (!dest_se_deve) {
3281 pr_err("Unable to locate %s dest_se_deve from RTPI:"
3282 " %hu\n", dest_tf_ops->get_fabric_name(), rtpi);
3283 ret = TCM_INVALID_PARAMETER_LIST;
3284 goto out;
3285 }
3286
3287 if (core_scsi3_lunacl_depend_item(dest_se_deve)) {
3288 pr_err("core_scsi3_lunacl_depend_item() failed\n");
3289 atomic_dec_mb(&dest_se_deve->pr_ref_count);
3290 dest_se_deve = NULL;
3291 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3292 goto out;
3293 }
3294
3295 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Located %s node %s LUN"
3296 " ACL for dest_se_deve->mapped_lun: %u\n",
3297 dest_tf_ops->get_fabric_name(), dest_node_acl->initiatorname,
3298 dest_se_deve->mapped_lun);
3299
3300 /*
3301 * A persistent reservation needs to already existing in order to
3302 * successfully complete the REGISTER_AND_MOVE service action..
3303 */
3304 spin_lock(&dev->dev_reservation_lock);
3305 pr_res_holder = dev->dev_pr_res_holder;
3306 if (!pr_res_holder) {
3307 pr_warn("SPC-3 PR REGISTER_AND_MOVE: No reservation"
3308 " currently held\n");
3309 spin_unlock(&dev->dev_reservation_lock);
3310 ret = TCM_INVALID_CDB_FIELD;
3311 goto out;
3312 }
3313 /*
3314 * The received on I_T Nexus must be the reservation holder.
3315 *
3316 * From spc4r17 section 5.7.8 Table 50 --
3317 * Register behaviors for a REGISTER AND MOVE service action
3318 */
3319 if (pr_res_holder != pr_reg) {
3320 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Calling I_T"
3321 " Nexus is not reservation holder\n");
3322 spin_unlock(&dev->dev_reservation_lock);
3323 ret = TCM_RESERVATION_CONFLICT;
3324 goto out;
3325 }
3326 /*
3327 * From spc4r17 section 5.7.8: registering and moving reservation
3328 *
3329 * If a PERSISTENT RESERVE OUT command with a REGISTER AND MOVE service
3330 * action is received and the established persistent reservation is a
3331 * Write Exclusive - All Registrants type or Exclusive Access -
3332 * All Registrants type reservation, then the command shall be completed
3333 * with RESERVATION CONFLICT status.
3334 */
3335 if ((pr_res_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
3336 (pr_res_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) {
3337 pr_warn("SPC-3 PR REGISTER_AND_MOVE: Unable to move"
3338 " reservation for type: %s\n",
3339 core_scsi3_pr_dump_type(pr_res_holder->pr_res_type));
3340 spin_unlock(&dev->dev_reservation_lock);
3341 ret = TCM_RESERVATION_CONFLICT;
3342 goto out;
3343 }
3344 pr_res_nacl = pr_res_holder->pr_reg_nacl;
3345 /*
3346 * b) Ignore the contents of the (received) SCOPE and TYPE fields;
3347 */
3348 type = pr_res_holder->pr_res_type;
3349 scope = pr_res_holder->pr_res_type;
3350 /*
3351 * c) Associate the reservation key specified in the SERVICE ACTION
3352 * RESERVATION KEY field with the I_T nexus specified as the
3353 * destination of the register and move, where:
3354 * A) The I_T nexus is specified by the TransportID and the
3355 * RELATIVE TARGET PORT IDENTIFIER field (see 6.14.4); and
3356 * B) Regardless of the TransportID format used, the association for
3357 * the initiator port is based on either the initiator port name
3358 * (see 3.1.71) on SCSI transport protocols where port names are
3359 * required or the initiator port identifier (see 3.1.70) on SCSI
3360 * transport protocols where port names are not required;
3361 * d) Register the reservation key specified in the SERVICE ACTION
3362 * RESERVATION KEY field;
3363 * e) Retain the reservation key specified in the SERVICE ACTION
3364 * RESERVATION KEY field and associated information;
3365 *
3366 * Also, It is not an error for a REGISTER AND MOVE service action to
3367 * register an I_T nexus that is already registered with the same
3368 * reservation key or a different reservation key.
3369 */
3370 dest_pr_reg = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
3371 iport_ptr);
3372 if (!dest_pr_reg) {
3373 if (core_scsi3_alloc_registration(cmd->se_dev,
3374 dest_node_acl, dest_se_deve, iport_ptr,
3375 sa_res_key, 0, aptpl, 2, 1)) {
3376 spin_unlock(&dev->dev_reservation_lock);
3377 ret = TCM_INVALID_PARAMETER_LIST;
3378 goto out;
3379 }
3380 dest_pr_reg = __core_scsi3_locate_pr_reg(dev, dest_node_acl,
3381 iport_ptr);
3382 new_reg = 1;
3383 }
3384 /*
3385 * f) Release the persistent reservation for the persistent reservation
3386 * holder (i.e., the I_T nexus on which the
3387 */
3388 __core_scsi3_complete_pro_release(dev, pr_res_nacl,
3389 dev->dev_pr_res_holder, 0);
3390 /*
3391 * g) Move the persistent reservation to the specified I_T nexus using
3392 * the same scope and type as the persistent reservation released in
3393 * item f); and
3394 */
3395 dev->dev_pr_res_holder = dest_pr_reg;
3396 dest_pr_reg->pr_res_holder = 1;
3397 dest_pr_reg->pr_res_type = type;
3398 pr_reg->pr_res_scope = scope;
3399 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
3400 /*
3401 * Increment PRGeneration for existing registrations..
3402 */
3403 if (!new_reg)
3404 dest_pr_reg->pr_res_generation = pr_tmpl->pr_generation++;
3405 spin_unlock(&dev->dev_reservation_lock);
3406
3407 pr_debug("SPC-3 PR [%s] Service Action: REGISTER_AND_MOVE"
3408 " created new reservation holder TYPE: %s on object RTPI:"
3409 " %hu PRGeneration: 0x%08x\n", dest_tf_ops->get_fabric_name(),
3410 core_scsi3_pr_dump_type(type), rtpi,
3411 dest_pr_reg->pr_res_generation);
3412 pr_debug("SPC-3 PR Successfully moved reservation from"
3413 " %s Fabric Node: %s%s -> %s Fabric Node: %s %s\n",
3414 tf_ops->get_fabric_name(), pr_reg_nacl->initiatorname,
3415 i_buf, dest_tf_ops->get_fabric_name(),
3416 dest_node_acl->initiatorname, (iport_ptr != NULL) ?
3417 iport_ptr : "");
3418 /*
3419 * It is now safe to release configfs group dependencies for destination
3420 * of Transport ID Initiator Device/Port Identifier
3421 */
3422 core_scsi3_lunacl_undepend_item(dest_se_deve);
3423 core_scsi3_nodeacl_undepend_item(dest_node_acl);
3424 core_scsi3_tpg_undepend_item(dest_se_tpg);
3425 /*
3426 * h) If the UNREG bit is set to one, unregister (see 5.7.11.3) the I_T
3427 * nexus on which PERSISTENT RESERVE OUT command was received.
3428 */
3429 if (unreg) {
3430 spin_lock(&pr_tmpl->registration_lock);
3431 __core_scsi3_free_registration(dev, pr_reg, NULL, 1);
3432 spin_unlock(&pr_tmpl->registration_lock);
3433 } else
3434 core_scsi3_put_pr_reg(pr_reg);
3435
3436 core_scsi3_update_and_write_aptpl(cmd->se_dev, aptpl);
3437
3438 transport_kunmap_data_sg(cmd);
3439
3440 core_scsi3_put_pr_reg(dest_pr_reg);
3441 return 0;
3442 out:
3443 if (buf)
3444 transport_kunmap_data_sg(cmd);
3445 if (dest_se_deve)
3446 core_scsi3_lunacl_undepend_item(dest_se_deve);
3447 if (dest_node_acl)
3448 core_scsi3_nodeacl_undepend_item(dest_node_acl);
3449 core_scsi3_tpg_undepend_item(dest_se_tpg);
3450
3451 out_put_pr_reg:
3452 core_scsi3_put_pr_reg(pr_reg);
3453 return ret;
3454 }
3455
3456 static unsigned long long core_scsi3_extract_reservation_key(unsigned char *cdb)
3457 {
3458 unsigned int __v1, __v2;
3459
3460 __v1 = (cdb[0] << 24) | (cdb[1] << 16) | (cdb[2] << 8) | cdb[3];
3461 __v2 = (cdb[4] << 24) | (cdb[5] << 16) | (cdb[6] << 8) | cdb[7];
3462
3463 return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
3464 }
3465
3466 /*
3467 * See spc4r17 section 6.14 Table 170
3468 */
3469 sense_reason_t
3470 target_scsi3_emulate_pr_out(struct se_cmd *cmd)
3471 {
3472 struct se_device *dev = cmd->se_dev;
3473 unsigned char *cdb = &cmd->t_task_cdb[0];
3474 unsigned char *buf;
3475 u64 res_key, sa_res_key;
3476 int sa, scope, type, aptpl;
3477 int spec_i_pt = 0, all_tg_pt = 0, unreg = 0;
3478 sense_reason_t ret;
3479
3480 /*
3481 * Following spc2r20 5.5.1 Reservations overview:
3482 *
3483 * If a logical unit has been reserved by any RESERVE command and is
3484 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
3485 * PERSISTENT RESERVE OUT commands shall conflict regardless of
3486 * initiator or service action and shall terminate with a RESERVATION
3487 * CONFLICT status.
3488 */
3489 if (cmd->se_dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS) {
3490 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
3491 " SPC-2 reservation is held, returning"
3492 " RESERVATION_CONFLICT\n");
3493 return TCM_RESERVATION_CONFLICT;
3494 }
3495
3496 /*
3497 * FIXME: A NULL struct se_session pointer means an this is not coming from
3498 * a $FABRIC_MOD's nexus, but from internal passthrough ops.
3499 */
3500 if (!cmd->se_sess)
3501 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3502
3503 if (cmd->data_length < 24) {
3504 pr_warn("SPC-PR: Received PR OUT parameter list"
3505 " length too small: %u\n", cmd->data_length);
3506 return TCM_INVALID_PARAMETER_LIST;
3507 }
3508
3509 /*
3510 * From the PERSISTENT_RESERVE_OUT command descriptor block (CDB)
3511 */
3512 sa = (cdb[1] & 0x1f);
3513 scope = (cdb[2] & 0xf0);
3514 type = (cdb[2] & 0x0f);
3515
3516 buf = transport_kmap_data_sg(cmd);
3517 if (!buf)
3518 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3519
3520 /*
3521 * From PERSISTENT_RESERVE_OUT parameter list (payload)
3522 */
3523 res_key = core_scsi3_extract_reservation_key(&buf[0]);
3524 sa_res_key = core_scsi3_extract_reservation_key(&buf[8]);
3525 /*
3526 * REGISTER_AND_MOVE uses a different SA parameter list containing
3527 * SCSI TransportIDs.
3528 */
3529 if (sa != PRO_REGISTER_AND_MOVE) {
3530 spec_i_pt = (buf[20] & 0x08);
3531 all_tg_pt = (buf[20] & 0x04);
3532 aptpl = (buf[20] & 0x01);
3533 } else {
3534 aptpl = (buf[17] & 0x01);
3535 unreg = (buf[17] & 0x02);
3536 }
3537 /*
3538 * If the backend device has been configured to force APTPL metadata
3539 * write-out, go ahead and propigate aptpl=1 down now.
3540 */
3541 if (dev->dev_attrib.force_pr_aptpl)
3542 aptpl = 1;
3543
3544 transport_kunmap_data_sg(cmd);
3545 buf = NULL;
3546
3547 /*
3548 * SPEC_I_PT=1 is only valid for Service action: REGISTER
3549 */
3550 if (spec_i_pt && ((cdb[1] & 0x1f) != PRO_REGISTER))
3551 return TCM_INVALID_PARAMETER_LIST;
3552
3553 /*
3554 * From spc4r17 section 6.14:
3555 *
3556 * If the SPEC_I_PT bit is set to zero, the service action is not
3557 * REGISTER AND MOVE, and the parameter list length is not 24, then
3558 * the command shall be terminated with CHECK CONDITION status, with
3559 * the sense key set to ILLEGAL REQUEST, and the additional sense
3560 * code set to PARAMETER LIST LENGTH ERROR.
3561 */
3562 if (!spec_i_pt && ((cdb[1] & 0x1f) != PRO_REGISTER_AND_MOVE) &&
3563 (cmd->data_length != 24)) {
3564 pr_warn("SPC-PR: Received PR OUT illegal parameter"
3565 " list length: %u\n", cmd->data_length);
3566 return TCM_INVALID_PARAMETER_LIST;
3567 }
3568
3569 /*
3570 * (core_scsi3_emulate_pro_* function parameters
3571 * are defined by spc4r17 Table 174:
3572 * PERSISTENT_RESERVE_OUT service actions and valid parameters.
3573 */
3574 switch (sa) {
3575 case PRO_REGISTER:
3576 ret = core_scsi3_emulate_pro_register(cmd,
3577 res_key, sa_res_key, aptpl, all_tg_pt, spec_i_pt, REGISTER);
3578 break;
3579 case PRO_RESERVE:
3580 ret = core_scsi3_emulate_pro_reserve(cmd, type, scope, res_key);
3581 break;
3582 case PRO_RELEASE:
3583 ret = core_scsi3_emulate_pro_release(cmd, type, scope, res_key);
3584 break;
3585 case PRO_CLEAR:
3586 ret = core_scsi3_emulate_pro_clear(cmd, res_key);
3587 break;
3588 case PRO_PREEMPT:
3589 ret = core_scsi3_emulate_pro_preempt(cmd, type, scope,
3590 res_key, sa_res_key, PREEMPT);
3591 break;
3592 case PRO_PREEMPT_AND_ABORT:
3593 ret = core_scsi3_emulate_pro_preempt(cmd, type, scope,
3594 res_key, sa_res_key, PREEMPT_AND_ABORT);
3595 break;
3596 case PRO_REGISTER_AND_IGNORE_EXISTING_KEY:
3597 ret = core_scsi3_emulate_pro_register(cmd,
3598 0, sa_res_key, aptpl, all_tg_pt, spec_i_pt, REGISTER_AND_IGNORE_EXISTING_KEY);
3599 break;
3600 case PRO_REGISTER_AND_MOVE:
3601 ret = core_scsi3_emulate_pro_register_and_move(cmd, res_key,
3602 sa_res_key, aptpl, unreg);
3603 break;
3604 default:
3605 pr_err("Unknown PERSISTENT_RESERVE_OUT service"
3606 " action: 0x%02x\n", cdb[1] & 0x1f);
3607 return TCM_INVALID_CDB_FIELD;
3608 }
3609
3610 if (!ret)
3611 target_complete_cmd(cmd, GOOD);
3612 return ret;
3613 }
3614
3615 /*
3616 * PERSISTENT_RESERVE_IN Service Action READ_KEYS
3617 *
3618 * See spc4r17 section 5.7.6.2 and section 6.13.2, Table 160
3619 */
3620 static sense_reason_t
3621 core_scsi3_pri_read_keys(struct se_cmd *cmd)
3622 {
3623 struct se_device *dev = cmd->se_dev;
3624 struct t10_pr_registration *pr_reg;
3625 unsigned char *buf;
3626 u32 add_len = 0, off = 8;
3627
3628 if (cmd->data_length < 8) {
3629 pr_err("PRIN SA READ_KEYS SCSI Data Length: %u"
3630 " too small\n", cmd->data_length);
3631 return TCM_INVALID_CDB_FIELD;
3632 }
3633
3634 buf = transport_kmap_data_sg(cmd);
3635 if (!buf)
3636 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3637
3638 buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
3639 buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
3640 buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
3641 buf[3] = (dev->t10_pr.pr_generation & 0xff);
3642
3643 spin_lock(&dev->t10_pr.registration_lock);
3644 list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
3645 pr_reg_list) {
3646 /*
3647 * Check for overflow of 8byte PRI READ_KEYS payload and
3648 * next reservation key list descriptor.
3649 */
3650 if ((add_len + 8) > (cmd->data_length - 8))
3651 break;
3652
3653 buf[off++] = ((pr_reg->pr_res_key >> 56) & 0xff);
3654 buf[off++] = ((pr_reg->pr_res_key >> 48) & 0xff);
3655 buf[off++] = ((pr_reg->pr_res_key >> 40) & 0xff);
3656 buf[off++] = ((pr_reg->pr_res_key >> 32) & 0xff);
3657 buf[off++] = ((pr_reg->pr_res_key >> 24) & 0xff);
3658 buf[off++] = ((pr_reg->pr_res_key >> 16) & 0xff);
3659 buf[off++] = ((pr_reg->pr_res_key >> 8) & 0xff);
3660 buf[off++] = (pr_reg->pr_res_key & 0xff);
3661
3662 add_len += 8;
3663 }
3664 spin_unlock(&dev->t10_pr.registration_lock);
3665
3666 buf[4] = ((add_len >> 24) & 0xff);
3667 buf[5] = ((add_len >> 16) & 0xff);
3668 buf[6] = ((add_len >> 8) & 0xff);
3669 buf[7] = (add_len & 0xff);
3670
3671 transport_kunmap_data_sg(cmd);
3672
3673 return 0;
3674 }
3675
3676 /*
3677 * PERSISTENT_RESERVE_IN Service Action READ_RESERVATION
3678 *
3679 * See spc4r17 section 5.7.6.3 and section 6.13.3.2 Table 161 and 162
3680 */
3681 static sense_reason_t
3682 core_scsi3_pri_read_reservation(struct se_cmd *cmd)
3683 {
3684 struct se_device *dev = cmd->se_dev;
3685 struct t10_pr_registration *pr_reg;
3686 unsigned char *buf;
3687 u64 pr_res_key;
3688 u32 add_len = 16; /* Hardcoded to 16 when a reservation is held. */
3689
3690 if (cmd->data_length < 8) {
3691 pr_err("PRIN SA READ_RESERVATIONS SCSI Data Length: %u"
3692 " too small\n", cmd->data_length);
3693 return TCM_INVALID_CDB_FIELD;
3694 }
3695
3696 buf = transport_kmap_data_sg(cmd);
3697 if (!buf)
3698 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3699
3700 buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
3701 buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
3702 buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
3703 buf[3] = (dev->t10_pr.pr_generation & 0xff);
3704
3705 spin_lock(&dev->dev_reservation_lock);
3706 pr_reg = dev->dev_pr_res_holder;
3707 if (pr_reg) {
3708 /*
3709 * Set the hardcoded Additional Length
3710 */
3711 buf[4] = ((add_len >> 24) & 0xff);
3712 buf[5] = ((add_len >> 16) & 0xff);
3713 buf[6] = ((add_len >> 8) & 0xff);
3714 buf[7] = (add_len & 0xff);
3715
3716 if (cmd->data_length < 22)
3717 goto err;
3718
3719 /*
3720 * Set the Reservation key.
3721 *
3722 * From spc4r17, section 5.7.10:
3723 * A persistent reservation holder has its reservation key
3724 * returned in the parameter data from a PERSISTENT
3725 * RESERVE IN command with READ RESERVATION service action as
3726 * follows:
3727 * a) For a persistent reservation of the type Write Exclusive
3728 * - All Registrants or Exclusive Access ­ All Regitrants,
3729 * the reservation key shall be set to zero; or
3730 * b) For all other persistent reservation types, the
3731 * reservation key shall be set to the registered
3732 * reservation key for the I_T nexus that holds the
3733 * persistent reservation.
3734 */
3735 if ((pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) ||
3736 (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG))
3737 pr_res_key = 0;
3738 else
3739 pr_res_key = pr_reg->pr_res_key;
3740
3741 buf[8] = ((pr_res_key >> 56) & 0xff);
3742 buf[9] = ((pr_res_key >> 48) & 0xff);
3743 buf[10] = ((pr_res_key >> 40) & 0xff);
3744 buf[11] = ((pr_res_key >> 32) & 0xff);
3745 buf[12] = ((pr_res_key >> 24) & 0xff);
3746 buf[13] = ((pr_res_key >> 16) & 0xff);
3747 buf[14] = ((pr_res_key >> 8) & 0xff);
3748 buf[15] = (pr_res_key & 0xff);
3749 /*
3750 * Set the SCOPE and TYPE
3751 */
3752 buf[21] = (pr_reg->pr_res_scope & 0xf0) |
3753 (pr_reg->pr_res_type & 0x0f);
3754 }
3755
3756 err:
3757 spin_unlock(&dev->dev_reservation_lock);
3758 transport_kunmap_data_sg(cmd);
3759
3760 return 0;
3761 }
3762
3763 /*
3764 * PERSISTENT_RESERVE_IN Service Action REPORT_CAPABILITIES
3765 *
3766 * See spc4r17 section 6.13.4 Table 165
3767 */
3768 static sense_reason_t
3769 core_scsi3_pri_report_capabilities(struct se_cmd *cmd)
3770 {
3771 struct se_device *dev = cmd->se_dev;
3772 struct t10_reservation *pr_tmpl = &dev->t10_pr;
3773 unsigned char *buf;
3774 u16 add_len = 8; /* Hardcoded to 8. */
3775
3776 if (cmd->data_length < 6) {
3777 pr_err("PRIN SA REPORT_CAPABILITIES SCSI Data Length:"
3778 " %u too small\n", cmd->data_length);
3779 return TCM_INVALID_CDB_FIELD;
3780 }
3781
3782 buf = transport_kmap_data_sg(cmd);
3783 if (!buf)
3784 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3785
3786 buf[0] = ((add_len >> 8) & 0xff);
3787 buf[1] = (add_len & 0xff);
3788 buf[2] |= 0x10; /* CRH: Compatible Reservation Hanlding bit. */
3789 buf[2] |= 0x08; /* SIP_C: Specify Initiator Ports Capable bit */
3790 buf[2] |= 0x04; /* ATP_C: All Target Ports Capable bit */
3791 buf[2] |= 0x01; /* PTPL_C: Persistence across Target Power Loss bit */
3792 /*
3793 * We are filling in the PERSISTENT RESERVATION TYPE MASK below, so
3794 * set the TMV: Task Mask Valid bit.
3795 */
3796 buf[3] |= 0x80;
3797 /*
3798 * Change ALLOW COMMANDs to 0x20 or 0x40 later from Table 166
3799 */
3800 buf[3] |= 0x10; /* ALLOW COMMANDs field 001b */
3801 /*
3802 * PTPL_A: Persistence across Target Power Loss Active bit
3803 */
3804 if (pr_tmpl->pr_aptpl_active)
3805 buf[3] |= 0x01;
3806 /*
3807 * Setup the PERSISTENT RESERVATION TYPE MASK from Table 167
3808 */
3809 buf[4] |= 0x80; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3810 buf[4] |= 0x40; /* PR_TYPE_EXCLUSIVE_ACCESS_REGONLY */
3811 buf[4] |= 0x20; /* PR_TYPE_WRITE_EXCLUSIVE_REGONLY */
3812 buf[4] |= 0x08; /* PR_TYPE_EXCLUSIVE_ACCESS */
3813 buf[4] |= 0x02; /* PR_TYPE_WRITE_EXCLUSIVE */
3814 buf[5] |= 0x01; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */
3815
3816 transport_kunmap_data_sg(cmd);
3817
3818 return 0;
3819 }
3820
3821 /*
3822 * PERSISTENT_RESERVE_IN Service Action READ_FULL_STATUS
3823 *
3824 * See spc4r17 section 6.13.5 Table 168 and 169
3825 */
3826 static sense_reason_t
3827 core_scsi3_pri_read_full_status(struct se_cmd *cmd)
3828 {
3829 struct se_device *dev = cmd->se_dev;
3830 struct se_node_acl *se_nacl;
3831 struct se_portal_group *se_tpg;
3832 struct t10_pr_registration *pr_reg, *pr_reg_tmp;
3833 struct t10_reservation *pr_tmpl = &dev->t10_pr;
3834 unsigned char *buf;
3835 u32 add_desc_len = 0, add_len = 0, desc_len, exp_desc_len;
3836 u32 off = 8; /* off into first Full Status descriptor */
3837 int format_code = 0, pr_res_type = 0, pr_res_scope = 0;
3838 bool all_reg = false;
3839
3840 if (cmd->data_length < 8) {
3841 pr_err("PRIN SA READ_FULL_STATUS SCSI Data Length: %u"
3842 " too small\n", cmd->data_length);
3843 return TCM_INVALID_CDB_FIELD;
3844 }
3845
3846 buf = transport_kmap_data_sg(cmd);
3847 if (!buf)
3848 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3849
3850 buf[0] = ((dev->t10_pr.pr_generation >> 24) & 0xff);
3851 buf[1] = ((dev->t10_pr.pr_generation >> 16) & 0xff);
3852 buf[2] = ((dev->t10_pr.pr_generation >> 8) & 0xff);
3853 buf[3] = (dev->t10_pr.pr_generation & 0xff);
3854
3855 spin_lock(&dev->dev_reservation_lock);
3856 if (dev->dev_pr_res_holder) {
3857 struct t10_pr_registration *pr_holder = dev->dev_pr_res_holder;
3858
3859 if (pr_holder->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG ||
3860 pr_holder->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG) {
3861 all_reg = true;
3862 pr_res_type = pr_holder->pr_res_type;
3863 pr_res_scope = pr_holder->pr_res_scope;
3864 }
3865 }
3866 spin_unlock(&dev->dev_reservation_lock);
3867
3868 spin_lock(&pr_tmpl->registration_lock);
3869 list_for_each_entry_safe(pr_reg, pr_reg_tmp,
3870 &pr_tmpl->registration_list, pr_reg_list) {
3871
3872 se_nacl = pr_reg->pr_reg_nacl;
3873 se_tpg = pr_reg->pr_reg_nacl->se_tpg;
3874 add_desc_len = 0;
3875
3876 atomic_inc_mb(&pr_reg->pr_res_holders);
3877 spin_unlock(&pr_tmpl->registration_lock);
3878 /*
3879 * Determine expected length of $FABRIC_MOD specific
3880 * TransportID full status descriptor..
3881 */
3882 exp_desc_len = se_tpg->se_tpg_tfo->tpg_get_pr_transport_id_len(
3883 se_tpg, se_nacl, pr_reg, &format_code);
3884
3885 if ((exp_desc_len + add_len) > cmd->data_length) {
3886 pr_warn("SPC-3 PRIN READ_FULL_STATUS ran"
3887 " out of buffer: %d\n", cmd->data_length);
3888 spin_lock(&pr_tmpl->registration_lock);
3889 atomic_dec_mb(&pr_reg->pr_res_holders);
3890 break;
3891 }
3892 /*
3893 * Set RESERVATION KEY
3894 */
3895 buf[off++] = ((pr_reg->pr_res_key >> 56) & 0xff);
3896 buf[off++] = ((pr_reg->pr_res_key >> 48) & 0xff);
3897 buf[off++] = ((pr_reg->pr_res_key >> 40) & 0xff);
3898 buf[off++] = ((pr_reg->pr_res_key >> 32) & 0xff);
3899 buf[off++] = ((pr_reg->pr_res_key >> 24) & 0xff);
3900 buf[off++] = ((pr_reg->pr_res_key >> 16) & 0xff);
3901 buf[off++] = ((pr_reg->pr_res_key >> 8) & 0xff);
3902 buf[off++] = (pr_reg->pr_res_key & 0xff);
3903 off += 4; /* Skip Over Reserved area */
3904
3905 /*
3906 * Set ALL_TG_PT bit if PROUT SA REGISTER had this set.
3907 */
3908 if (pr_reg->pr_reg_all_tg_pt)
3909 buf[off] = 0x02;
3910 /*
3911 * The struct se_lun pointer will be present for the
3912 * reservation holder for PR_HOLDER bit.
3913 *
3914 * Also, if this registration is the reservation
3915 * holder or there is an All Registrants reservation
3916 * active, fill in SCOPE and TYPE in the next byte.
3917 */
3918 if (pr_reg->pr_res_holder) {
3919 buf[off++] |= 0x01;
3920 buf[off++] = (pr_reg->pr_res_scope & 0xf0) |
3921 (pr_reg->pr_res_type & 0x0f);
3922 } else if (all_reg) {
3923 buf[off++] |= 0x01;
3924 buf[off++] = (pr_res_scope & 0xf0) |
3925 (pr_res_type & 0x0f);
3926 } else {
3927 off += 2;
3928 }
3929
3930 off += 4; /* Skip over reserved area */
3931 /*
3932 * From spc4r17 6.3.15:
3933 *
3934 * If the ALL_TG_PT bit set to zero, the RELATIVE TARGET PORT
3935 * IDENTIFIER field contains the relative port identifier (see
3936 * 3.1.120) of the target port that is part of the I_T nexus
3937 * described by this full status descriptor. If the ALL_TG_PT
3938 * bit is set to one, the contents of the RELATIVE TARGET PORT
3939 * IDENTIFIER field are not defined by this standard.
3940 */
3941 if (!pr_reg->pr_reg_all_tg_pt) {
3942 struct se_port *port = pr_reg->pr_reg_tg_pt_lun->lun_sep;
3943
3944 buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
3945 buf[off++] = (port->sep_rtpi & 0xff);
3946 } else
3947 off += 2; /* Skip over RELATIVE TARGET PORT IDENTIFIER */
3948
3949 /*
3950 * Now, have the $FABRIC_MOD fill in the protocol identifier
3951 */
3952 desc_len = se_tpg->se_tpg_tfo->tpg_get_pr_transport_id(se_tpg,
3953 se_nacl, pr_reg, &format_code, &buf[off+4]);
3954
3955 spin_lock(&pr_tmpl->registration_lock);
3956 atomic_dec_mb(&pr_reg->pr_res_holders);
3957 /*
3958 * Set the ADDITIONAL DESCRIPTOR LENGTH
3959 */
3960 buf[off++] = ((desc_len >> 24) & 0xff);
3961 buf[off++] = ((desc_len >> 16) & 0xff);
3962 buf[off++] = ((desc_len >> 8) & 0xff);
3963 buf[off++] = (desc_len & 0xff);
3964 /*
3965 * Size of full desctipor header minus TransportID
3966 * containing $FABRIC_MOD specific) initiator device/port
3967 * WWN information.
3968 *
3969 * See spc4r17 Section 6.13.5 Table 169
3970 */
3971 add_desc_len = (24 + desc_len);
3972
3973 off += desc_len;
3974 add_len += add_desc_len;
3975 }
3976 spin_unlock(&pr_tmpl->registration_lock);
3977 /*
3978 * Set ADDITIONAL_LENGTH
3979 */
3980 buf[4] = ((add_len >> 24) & 0xff);
3981 buf[5] = ((add_len >> 16) & 0xff);
3982 buf[6] = ((add_len >> 8) & 0xff);
3983 buf[7] = (add_len & 0xff);
3984
3985 transport_kunmap_data_sg(cmd);
3986
3987 return 0;
3988 }
3989
3990 sense_reason_t
3991 target_scsi3_emulate_pr_in(struct se_cmd *cmd)
3992 {
3993 sense_reason_t ret;
3994
3995 /*
3996 * Following spc2r20 5.5.1 Reservations overview:
3997 *
3998 * If a logical unit has been reserved by any RESERVE command and is
3999 * still reserved by any initiator, all PERSISTENT RESERVE IN and all
4000 * PERSISTENT RESERVE OUT commands shall conflict regardless of
4001 * initiator or service action and shall terminate with a RESERVATION
4002 * CONFLICT status.
4003 */
4004 if (cmd->se_dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS) {
4005 pr_err("Received PERSISTENT_RESERVE CDB while legacy"
4006 " SPC-2 reservation is held, returning"
4007 " RESERVATION_CONFLICT\n");
4008 return TCM_RESERVATION_CONFLICT;
4009 }
4010
4011 switch (cmd->t_task_cdb[1] & 0x1f) {
4012 case PRI_READ_KEYS:
4013 ret = core_scsi3_pri_read_keys(cmd);
4014 break;
4015 case PRI_READ_RESERVATION:
4016 ret = core_scsi3_pri_read_reservation(cmd);
4017 break;
4018 case PRI_REPORT_CAPABILITIES:
4019 ret = core_scsi3_pri_report_capabilities(cmd);
4020 break;
4021 case PRI_READ_FULL_STATUS:
4022 ret = core_scsi3_pri_read_full_status(cmd);
4023 break;
4024 default:
4025 pr_err("Unknown PERSISTENT_RESERVE_IN service"
4026 " action: 0x%02x\n", cmd->t_task_cdb[1] & 0x1f);
4027 return TCM_INVALID_CDB_FIELD;
4028 }
4029
4030 if (!ret)
4031 target_complete_cmd(cmd, GOOD);
4032 return ret;
4033 }
4034
4035 sense_reason_t
4036 target_check_reservation(struct se_cmd *cmd)
4037 {
4038 struct se_device *dev = cmd->se_dev;
4039 sense_reason_t ret;
4040
4041 if (!cmd->se_sess)
4042 return 0;
4043 if (dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE)
4044 return 0;
4045 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
4046 return 0;
4047
4048 spin_lock(&dev->dev_reservation_lock);
4049 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
4050 ret = target_scsi2_reservation_check(cmd);
4051 else
4052 ret = target_scsi3_pr_reservation_check(cmd);
4053 spin_unlock(&dev->dev_reservation_lock);
4054
4055 return ret;
4056 }
This page took 0.112018 seconds and 6 git commands to generate.