1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*******************************************************************************
3 * Filename: target_core_ua.c
5 * This file contains logic for SPC-3 Unit Attention emulation
7 * (c) Copyright 2009-2013 Datera, Inc.
9 * Nicholas A. Bellinger <nab@kernel.org>
11 ******************************************************************************/
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
15 #include <scsi/scsi_proto.h>
17 #include <target/target_core_base.h>
18 #include <target/target_core_fabric.h>
20 #include "target_core_internal.h"
21 #include "target_core_alua.h"
22 #include "target_core_pr.h"
23 #include "target_core_ua.h"
26 target_scsi3_ua_check(struct se_cmd
*cmd
)
28 struct se_dev_entry
*deve
;
29 struct se_session
*sess
= cmd
->se_sess
;
30 struct se_node_acl
*nacl
;
35 nacl
= sess
->se_node_acl
;
40 deve
= target_nacl_find_deve(nacl
, cmd
->orig_fe_lun
);
45 if (list_empty_careful(&deve
->ua_list
)) {
51 * From sam4r14, section 5.14 Unit attention condition:
53 * a) if an INQUIRY command enters the enabled command state, the
54 * device server shall process the INQUIRY command and shall neither
55 * report nor clear any unit attention condition;
56 * b) if a REPORT LUNS command enters the enabled command state, the
57 * device server shall process the REPORT LUNS command and shall not
58 * report any unit attention condition;
59 * e) if a REQUEST SENSE command enters the enabled command state while
60 * a unit attention condition exists for the SCSI initiator port
61 * associated with the I_T nexus on which the REQUEST SENSE command
62 * was received, then the device server shall process the command
65 switch (cmd
->t_task_cdb
[0]) {
71 return TCM_CHECK_CONDITION_UNIT_ATTENTION
;
75 int core_scsi3_ua_allocate(
76 struct se_dev_entry
*deve
,
80 struct se_ua
*ua
, *ua_p
, *ua_tmp
;
82 ua
= kmem_cache_zalloc(se_ua_cache
, GFP_ATOMIC
);
84 pr_err("Unable to allocate struct se_ua\n");
87 INIT_LIST_HEAD(&ua
->ua_nacl_list
);
92 spin_lock(&deve
->ua_lock
);
93 list_for_each_entry_safe(ua_p
, ua_tmp
, &deve
->ua_list
, ua_nacl_list
) {
95 * Do not report the same UNIT ATTENTION twice..
97 if ((ua_p
->ua_asc
== asc
) && (ua_p
->ua_ascq
== ascq
)) {
98 spin_unlock(&deve
->ua_lock
);
99 kmem_cache_free(se_ua_cache
, ua
);
103 * Attach the highest priority Unit Attention to
104 * the head of the list following sam4r14,
105 * Section 5.14 Unit Attention Condition:
107 * POWER ON, RESET, OR BUS DEVICE RESET OCCURRED highest
108 * POWER ON OCCURRED or
109 * DEVICE INTERNAL RESET
110 * SCSI BUS RESET OCCURRED or
111 * MICROCODE HAS BEEN CHANGED or
113 * BUS DEVICE RESET FUNCTION OCCURRED
114 * I_T NEXUS LOSS OCCURRED
115 * COMMANDS CLEARED BY POWER LOSS NOTIFICATION
118 * Each of the ASCQ codes listed above are defined in
119 * the 29h ASC family, see spc4r17 Table D.1
121 if (ua_p
->ua_asc
== 0x29) {
122 if ((asc
== 0x29) && (ascq
> ua_p
->ua_ascq
))
123 list_add(&ua
->ua_nacl_list
,
126 list_add_tail(&ua
->ua_nacl_list
,
128 } else if (ua_p
->ua_asc
== 0x2a) {
130 * Incoming Family 29h ASCQ codes will override
131 * Family 2AHh ASCQ codes for Unit Attention condition.
133 if ((asc
== 0x29) || (ascq
> ua_p
->ua_asc
))
134 list_add(&ua
->ua_nacl_list
,
137 list_add_tail(&ua
->ua_nacl_list
,
140 list_add_tail(&ua
->ua_nacl_list
,
142 spin_unlock(&deve
->ua_lock
);
146 list_add_tail(&ua
->ua_nacl_list
, &deve
->ua_list
);
147 spin_unlock(&deve
->ua_lock
);
149 pr_debug("Allocated UNIT ATTENTION, mapped LUN: %llu, ASC:"
150 " 0x%02x, ASCQ: 0x%02x\n", deve
->mapped_lun
,
156 void target_ua_allocate_lun(struct se_node_acl
*nacl
,
157 u32 unpacked_lun
, u8 asc
, u8 ascq
)
159 struct se_dev_entry
*deve
;
165 deve
= target_nacl_find_deve(nacl
, unpacked_lun
);
171 core_scsi3_ua_allocate(deve
, asc
, ascq
);
175 void core_scsi3_ua_release_all(
176 struct se_dev_entry
*deve
)
178 struct se_ua
*ua
, *ua_p
;
180 spin_lock(&deve
->ua_lock
);
181 list_for_each_entry_safe(ua
, ua_p
, &deve
->ua_list
, ua_nacl_list
) {
182 list_del(&ua
->ua_nacl_list
);
183 kmem_cache_free(se_ua_cache
, ua
);
185 spin_unlock(&deve
->ua_lock
);
189 * Dequeue a unit attention from the unit attention list. This function
190 * returns true if the dequeuing succeeded and if *@key, *@asc and *@ascq have
193 bool core_scsi3_ua_for_check_condition(struct se_cmd
*cmd
, u8
*key
, u8
*asc
,
196 struct se_device
*dev
= cmd
->se_dev
;
197 struct se_dev_entry
*deve
;
198 struct se_session
*sess
= cmd
->se_sess
;
199 struct se_node_acl
*nacl
;
200 struct se_ua
*ua
= NULL
, *ua_p
;
202 bool dev_ua_intlck_clear
= (dev
->dev_attrib
.emulate_ua_intlck_ctrl
203 == TARGET_UA_INTLCK_CTRL_CLEAR
);
205 if (WARN_ON_ONCE(!sess
))
208 nacl
= sess
->se_node_acl
;
209 if (WARN_ON_ONCE(!nacl
))
213 deve
= target_nacl_find_deve(nacl
, cmd
->orig_fe_lun
);
216 *key
= ILLEGAL_REQUEST
;
217 *asc
= 0x25; /* LOGICAL UNIT NOT SUPPORTED */
221 *key
= UNIT_ATTENTION
;
223 * The highest priority Unit Attentions are placed at the head of the
224 * struct se_dev_entry->ua_list, and will be returned in CHECK_CONDITION +
225 * sense data for the received CDB.
227 spin_lock(&deve
->ua_lock
);
228 list_for_each_entry_safe(ua
, ua_p
, &deve
->ua_list
, ua_nacl_list
) {
230 * For ua_intlck_ctrl code not equal to 00b, only report the
231 * highest priority UNIT_ATTENTION and ASC/ASCQ without
234 if (!dev_ua_intlck_clear
) {
240 * Otherwise for the default 00b, release the UNIT ATTENTION
241 * condition. Return the ASC/ASCQ of the highest priority UA
242 * (head of the list) in the outgoing CHECK_CONDITION + sense.
249 list_del(&ua
->ua_nacl_list
);
250 kmem_cache_free(se_ua_cache
, ua
);
252 spin_unlock(&deve
->ua_lock
);
255 pr_debug("[%s]: %s UNIT ATTENTION condition with"
256 " INTLCK_CTRL: %d, mapped LUN: %llu, got CDB: 0x%02x"
257 " reported ASC: 0x%02x, ASCQ: 0x%02x\n",
258 nacl
->se_tpg
->se_tpg_tfo
->fabric_name
,
259 dev_ua_intlck_clear
? "Releasing" : "Reporting",
260 dev
->dev_attrib
.emulate_ua_intlck_ctrl
,
261 cmd
->orig_fe_lun
, cmd
->t_task_cdb
[0], *asc
, *ascq
);
266 int core_scsi3_ua_clear_for_request_sense(
271 struct se_dev_entry
*deve
;
272 struct se_session
*sess
= cmd
->se_sess
;
273 struct se_node_acl
*nacl
;
274 struct se_ua
*ua
= NULL
, *ua_p
;
280 nacl
= sess
->se_node_acl
;
285 deve
= target_nacl_find_deve(nacl
, cmd
->orig_fe_lun
);
290 if (list_empty_careful(&deve
->ua_list
)) {
295 * The highest priority Unit Attentions are placed at the head of the
296 * struct se_dev_entry->ua_list. The First (and hence highest priority)
297 * ASC/ASCQ will be returned in REQUEST_SENSE payload data for the
298 * matching struct se_lun.
300 * Once the returning ASC/ASCQ values are set, we go ahead and
301 * release all of the Unit Attention conditions for the associated
304 spin_lock(&deve
->ua_lock
);
305 list_for_each_entry_safe(ua
, ua_p
, &deve
->ua_list
, ua_nacl_list
) {
311 list_del(&ua
->ua_nacl_list
);
312 kmem_cache_free(se_ua_cache
, ua
);
314 spin_unlock(&deve
->ua_lock
);
317 pr_debug("[%s]: Released UNIT ATTENTION condition, mapped"
318 " LUN: %llu, got REQUEST_SENSE reported ASC: 0x%02x,"
319 " ASCQ: 0x%02x\n", nacl
->se_tpg
->se_tpg_tfo
->fabric_name
,
320 cmd
->orig_fe_lun
, *asc
, *ascq
);
322 return (head
) ? -EPERM
: 0;