1 /*******************************************************************************
2 * Filename: target_core_ua.c
4 * This file contains logic for SPC-3 Unit Attention emulation
6 * (c) Copyright 2009-2013 Datera, Inc.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 ******************************************************************************/
26 #include <linux/slab.h>
27 #include <linux/spinlock.h>
28 #include <scsi/scsi_proto.h>
30 #include <target/target_core_base.h>
31 #include <target/target_core_fabric.h>
33 #include "target_core_internal.h"
34 #include "target_core_alua.h"
35 #include "target_core_pr.h"
36 #include "target_core_ua.h"
39 target_scsi3_ua_check(struct se_cmd *cmd)
41 struct se_dev_entry *deve;
42 struct se_session *sess = cmd->se_sess;
43 struct se_node_acl *nacl;
48 nacl = sess->se_node_acl;
53 deve = target_nacl_find_deve(nacl, cmd->orig_fe_lun);
58 if (!atomic_read(&deve->ua_count)) {
64 * From sam4r14, section 5.14 Unit attention condition:
66 * a) if an INQUIRY command enters the enabled command state, the
67 * device server shall process the INQUIRY command and shall neither
68 * report nor clear any unit attention condition;
69 * b) if a REPORT LUNS command enters the enabled command state, the
70 * device server shall process the REPORT LUNS command and shall not
71 * report any unit attention condition;
72 * e) if a REQUEST SENSE command enters the enabled command state while
73 * a unit attention condition exists for the SCSI initiator port
74 * associated with the I_T nexus on which the REQUEST SENSE command
75 * was received, then the device server shall process the command
78 switch (cmd->t_task_cdb[0]) {
84 return TCM_CHECK_CONDITION_UNIT_ATTENTION;
88 int core_scsi3_ua_allocate(
89 struct se_dev_entry *deve,
93 struct se_ua *ua, *ua_p, *ua_tmp;
95 ua = kmem_cache_zalloc(se_ua_cache, GFP_ATOMIC);
97 pr_err("Unable to allocate struct se_ua\n");
100 INIT_LIST_HEAD(&ua->ua_nacl_list);
105 spin_lock(&deve->ua_lock);
106 list_for_each_entry_safe(ua_p, ua_tmp, &deve->ua_list, ua_nacl_list) {
108 * Do not report the same UNIT ATTENTION twice..
110 if ((ua_p->ua_asc == asc) && (ua_p->ua_ascq == ascq)) {
111 spin_unlock(&deve->ua_lock);
112 kmem_cache_free(se_ua_cache, ua);
116 * Attach the highest priority Unit Attention to
117 * the head of the list following sam4r14,
118 * Section 5.14 Unit Attention Condition:
120 * POWER ON, RESET, OR BUS DEVICE RESET OCCURRED highest
121 * POWER ON OCCURRED or
122 * DEVICE INTERNAL RESET
123 * SCSI BUS RESET OCCURRED or
124 * MICROCODE HAS BEEN CHANGED or
126 * BUS DEVICE RESET FUNCTION OCCURRED
127 * I_T NEXUS LOSS OCCURRED
128 * COMMANDS CLEARED BY POWER LOSS NOTIFICATION
131 * Each of the ASCQ codes listed above are defined in
132 * the 29h ASC family, see spc4r17 Table D.1
134 if (ua_p->ua_asc == 0x29) {
135 if ((asc == 0x29) && (ascq > ua_p->ua_ascq))
136 list_add(&ua->ua_nacl_list,
139 list_add_tail(&ua->ua_nacl_list,
141 } else if (ua_p->ua_asc == 0x2a) {
143 * Incoming Family 29h ASCQ codes will override
144 * Family 2AHh ASCQ codes for Unit Attention condition.
146 if ((asc == 0x29) || (ascq > ua_p->ua_asc))
147 list_add(&ua->ua_nacl_list,
150 list_add_tail(&ua->ua_nacl_list,
153 list_add_tail(&ua->ua_nacl_list,
155 spin_unlock(&deve->ua_lock);
157 atomic_inc_mb(&deve->ua_count);
160 list_add_tail(&ua->ua_nacl_list, &deve->ua_list);
161 spin_unlock(&deve->ua_lock);
163 pr_debug("Allocated UNIT ATTENTION, mapped LUN: %llu, ASC:"
164 " 0x%02x, ASCQ: 0x%02x\n", deve->mapped_lun,
167 atomic_inc_mb(&deve->ua_count);
171 void target_ua_allocate_lun(struct se_node_acl *nacl,
172 u32 unpacked_lun, u8 asc, u8 ascq)
174 struct se_dev_entry *deve;
180 deve = target_nacl_find_deve(nacl, unpacked_lun);
186 core_scsi3_ua_allocate(deve, asc, ascq);
190 void core_scsi3_ua_release_all(
191 struct se_dev_entry *deve)
193 struct se_ua *ua, *ua_p;
195 spin_lock(&deve->ua_lock);
196 list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) {
197 list_del(&ua->ua_nacl_list);
198 kmem_cache_free(se_ua_cache, ua);
200 atomic_dec_mb(&deve->ua_count);
202 spin_unlock(&deve->ua_lock);
205 void core_scsi3_ua_for_check_condition(
210 struct se_device *dev = cmd->se_dev;
211 struct se_dev_entry *deve;
212 struct se_session *sess = cmd->se_sess;
213 struct se_node_acl *nacl;
214 struct se_ua *ua = NULL, *ua_p;
220 nacl = sess->se_node_acl;
225 deve = target_nacl_find_deve(nacl, cmd->orig_fe_lun);
230 if (!atomic_read(&deve->ua_count)) {
235 * The highest priority Unit Attentions are placed at the head of the
236 * struct se_dev_entry->ua_list, and will be returned in CHECK_CONDITION +
237 * sense data for the received CDB.
239 spin_lock(&deve->ua_lock);
240 list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) {
242 * For ua_intlck_ctrl code not equal to 00b, only report the
243 * highest priority UNIT_ATTENTION and ASC/ASCQ without
246 if (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) {
252 * Otherwise for the default 00b, release the UNIT ATTENTION
253 * condition. Return the ASC/ASCQ of the highest priority UA
254 * (head of the list) in the outgoing CHECK_CONDITION + sense.
261 list_del(&ua->ua_nacl_list);
262 kmem_cache_free(se_ua_cache, ua);
264 atomic_dec_mb(&deve->ua_count);
266 spin_unlock(&deve->ua_lock);
269 pr_debug("[%s]: %s UNIT ATTENTION condition with"
270 " INTLCK_CTRL: %d, mapped LUN: %llu, got CDB: 0x%02x"
271 " reported ASC: 0x%02x, ASCQ: 0x%02x\n",
272 nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
273 (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) ? "Reporting" :
274 "Releasing", dev->dev_attrib.emulate_ua_intlck_ctrl,
275 cmd->orig_fe_lun, cmd->t_task_cdb[0], *asc, *ascq);
278 int core_scsi3_ua_clear_for_request_sense(
283 struct se_dev_entry *deve;
284 struct se_session *sess = cmd->se_sess;
285 struct se_node_acl *nacl;
286 struct se_ua *ua = NULL, *ua_p;
292 nacl = sess->se_node_acl;
297 deve = target_nacl_find_deve(nacl, cmd->orig_fe_lun);
302 if (!atomic_read(&deve->ua_count)) {
307 * The highest priority Unit Attentions are placed at the head of the
308 * struct se_dev_entry->ua_list. The First (and hence highest priority)
309 * ASC/ASCQ will be returned in REQUEST_SENSE payload data for the
310 * matching struct se_lun.
312 * Once the returning ASC/ASCQ values are set, we go ahead and
313 * release all of the Unit Attention conditions for the associated
316 spin_lock(&deve->ua_lock);
317 list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) {
323 list_del(&ua->ua_nacl_list);
324 kmem_cache_free(se_ua_cache, ua);
326 atomic_dec_mb(&deve->ua_count);
328 spin_unlock(&deve->ua_lock);
331 pr_debug("[%s]: Released UNIT ATTENTION condition, mapped"
332 " LUN: %llu, got REQUEST_SENSE reported ASC: 0x%02x,"
333 " ASCQ: 0x%02x\n", nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
334 cmd->orig_fe_lun, *asc, *ascq);
336 return (head) ? -EPERM : 0;