blob: 1738b164698877d984d83239250b717aba83b2d7 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_ua.c
3 *
4 * This file contains logic for SPC-3 Unit Attention emulation
5 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2009-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
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.
14 *
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.
19 *
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.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/slab.h>
27#include <linux/spinlock.h>
28#include <scsi/scsi.h>
29#include <scsi/scsi_cmnd.h>
30
31#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050032#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <target/target_core_configfs.h>
34
Christoph Hellwige26d99a2011-11-14 12:30:30 -050035#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080037#include "target_core_pr.h"
38#include "target_core_ua.h"
39
Christoph Hellwigde103c92012-11-06 12:24:09 -080040sense_reason_t
41target_scsi3_ua_check(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080042{
43 struct se_dev_entry *deve;
44 struct se_session *sess = cmd->se_sess;
45 struct se_node_acl *nacl;
46
Andy Grover6708bb22011-06-08 10:36:43 -070047 if (!sess)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048 return 0;
49
50 nacl = sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -070051 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080052 return 0;
53
Jörn Engelf2083242012-03-15 15:05:40 -040054 deve = nacl->device_list[cmd->orig_fe_lun];
Andy Grover6708bb22011-06-08 10:36:43 -070055 if (!atomic_read(&deve->ua_count))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056 return 0;
57 /*
58 * From sam4r14, section 5.14 Unit attention condition:
59 *
60 * a) if an INQUIRY command enters the enabled command state, the
61 * device server shall process the INQUIRY command and shall neither
62 * report nor clear any unit attention condition;
63 * b) if a REPORT LUNS command enters the enabled command state, the
64 * device server shall process the REPORT LUNS command and shall not
65 * report any unit attention condition;
66 * e) if a REQUEST SENSE command enters the enabled command state while
67 * a unit attention condition exists for the SCSI initiator port
68 * associated with the I_T nexus on which the REQUEST SENSE command
69 * was received, then the device server shall process the command
70 * and either:
71 */
Christoph Hellwigde103c92012-11-06 12:24:09 -080072 switch (cmd->t_task_cdb[0]) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073 case INQUIRY:
74 case REPORT_LUNS:
75 case REQUEST_SENSE:
76 return 0;
77 default:
Christoph Hellwigde103c92012-11-06 12:24:09 -080078 return TCM_CHECK_CONDITION_UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080}
81
82int core_scsi3_ua_allocate(
83 struct se_node_acl *nacl,
84 u32 unpacked_lun,
85 u8 asc,
86 u8 ascq)
87{
88 struct se_dev_entry *deve;
89 struct se_ua *ua, *ua_p, *ua_tmp;
90 /*
91 * PASSTHROUGH OPS
92 */
Andy Grover6708bb22011-06-08 10:36:43 -070093 if (!nacl)
Andy Grovere3d6f902011-07-19 08:55:10 +000094 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080095
96 ua = kmem_cache_zalloc(se_ua_cache, GFP_ATOMIC);
Andy Grover6708bb22011-06-08 10:36:43 -070097 if (!ua) {
98 pr_err("Unable to allocate struct se_ua\n");
Andy Grovere3d6f902011-07-19 08:55:10 +000099 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800100 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800101 INIT_LIST_HEAD(&ua->ua_nacl_list);
102
103 ua->ua_nacl = nacl;
104 ua->ua_asc = asc;
105 ua->ua_ascq = ascq;
106
107 spin_lock_irq(&nacl->device_list_lock);
Jörn Engelf2083242012-03-15 15:05:40 -0400108 deve = nacl->device_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800109
110 spin_lock(&deve->ua_lock);
111 list_for_each_entry_safe(ua_p, ua_tmp, &deve->ua_list, ua_nacl_list) {
112 /*
113 * Do not report the same UNIT ATTENTION twice..
114 */
115 if ((ua_p->ua_asc == asc) && (ua_p->ua_ascq == ascq)) {
116 spin_unlock(&deve->ua_lock);
117 spin_unlock_irq(&nacl->device_list_lock);
118 kmem_cache_free(se_ua_cache, ua);
119 return 0;
120 }
121 /*
122 * Attach the highest priority Unit Attention to
123 * the head of the list following sam4r14,
124 * Section 5.14 Unit Attention Condition:
125 *
126 * POWER ON, RESET, OR BUS DEVICE RESET OCCURRED highest
127 * POWER ON OCCURRED or
128 * DEVICE INTERNAL RESET
129 * SCSI BUS RESET OCCURRED or
130 * MICROCODE HAS BEEN CHANGED or
131 * protocol specific
132 * BUS DEVICE RESET FUNCTION OCCURRED
133 * I_T NEXUS LOSS OCCURRED
134 * COMMANDS CLEARED BY POWER LOSS NOTIFICATION
135 * all others Lowest
136 *
137 * Each of the ASCQ codes listed above are defined in
138 * the 29h ASC family, see spc4r17 Table D.1
139 */
140 if (ua_p->ua_asc == 0x29) {
141 if ((asc == 0x29) && (ascq > ua_p->ua_ascq))
142 list_add(&ua->ua_nacl_list,
143 &deve->ua_list);
144 else
145 list_add_tail(&ua->ua_nacl_list,
146 &deve->ua_list);
147 } else if (ua_p->ua_asc == 0x2a) {
148 /*
149 * Incoming Family 29h ASCQ codes will override
150 * Family 2AHh ASCQ codes for Unit Attention condition.
151 */
152 if ((asc == 0x29) || (ascq > ua_p->ua_asc))
153 list_add(&ua->ua_nacl_list,
154 &deve->ua_list);
155 else
156 list_add_tail(&ua->ua_nacl_list,
157 &deve->ua_list);
158 } else
159 list_add_tail(&ua->ua_nacl_list,
160 &deve->ua_list);
161 spin_unlock(&deve->ua_lock);
162 spin_unlock_irq(&nacl->device_list_lock);
163
Joern Engel33940d02014-09-16 16:23:12 -0400164 atomic_inc_mb(&deve->ua_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800165 return 0;
166 }
167 list_add_tail(&ua->ua_nacl_list, &deve->ua_list);
168 spin_unlock(&deve->ua_lock);
169 spin_unlock_irq(&nacl->device_list_lock);
170
Andy Grover6708bb22011-06-08 10:36:43 -0700171 pr_debug("[%s]: Allocated UNIT ATTENTION, mapped LUN: %u, ASC:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800172 " 0x%02x, ASCQ: 0x%02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000173 nacl->se_tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800174 asc, ascq);
175
Joern Engel33940d02014-09-16 16:23:12 -0400176 atomic_inc_mb(&deve->ua_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800177 return 0;
178}
179
180void core_scsi3_ua_release_all(
181 struct se_dev_entry *deve)
182{
183 struct se_ua *ua, *ua_p;
184
185 spin_lock(&deve->ua_lock);
186 list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) {
187 list_del(&ua->ua_nacl_list);
188 kmem_cache_free(se_ua_cache, ua);
189
Joern Engel33940d02014-09-16 16:23:12 -0400190 atomic_dec_mb(&deve->ua_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800191 }
192 spin_unlock(&deve->ua_lock);
193}
194
195void core_scsi3_ua_for_check_condition(
196 struct se_cmd *cmd,
197 u8 *asc,
198 u8 *ascq)
199{
Andy Grover5951146d2011-07-19 10:26:37 +0000200 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800201 struct se_dev_entry *deve;
202 struct se_session *sess = cmd->se_sess;
203 struct se_node_acl *nacl;
204 struct se_ua *ua = NULL, *ua_p;
205 int head = 1;
206
Andy Grover6708bb22011-06-08 10:36:43 -0700207 if (!sess)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800208 return;
209
210 nacl = sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700211 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800212 return;
213
214 spin_lock_irq(&nacl->device_list_lock);
Jörn Engelf2083242012-03-15 15:05:40 -0400215 deve = nacl->device_list[cmd->orig_fe_lun];
Andy Grover6708bb22011-06-08 10:36:43 -0700216 if (!atomic_read(&deve->ua_count)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800217 spin_unlock_irq(&nacl->device_list_lock);
218 return;
219 }
220 /*
221 * The highest priority Unit Attentions are placed at the head of the
222 * struct se_dev_entry->ua_list, and will be returned in CHECK_CONDITION +
223 * sense data for the received CDB.
224 */
225 spin_lock(&deve->ua_lock);
226 list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) {
227 /*
228 * For ua_intlck_ctrl code not equal to 00b, only report the
229 * highest priority UNIT_ATTENTION and ASC/ASCQ without
230 * clearing it.
231 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400232 if (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800233 *asc = ua->ua_asc;
234 *ascq = ua->ua_ascq;
235 break;
236 }
237 /*
238 * Otherwise for the default 00b, release the UNIT ATTENTION
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300239 * condition. Return the ASC/ASCQ of the highest priority UA
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800240 * (head of the list) in the outgoing CHECK_CONDITION + sense.
241 */
242 if (head) {
243 *asc = ua->ua_asc;
244 *ascq = ua->ua_ascq;
245 head = 0;
246 }
247 list_del(&ua->ua_nacl_list);
248 kmem_cache_free(se_ua_cache, ua);
249
Joern Engel33940d02014-09-16 16:23:12 -0400250 atomic_dec_mb(&deve->ua_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800251 }
252 spin_unlock(&deve->ua_lock);
253 spin_unlock_irq(&nacl->device_list_lock);
254
Andy Grover6708bb22011-06-08 10:36:43 -0700255 pr_debug("[%s]: %s UNIT ATTENTION condition with"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800256 " INTLCK_CTRL: %d, mapped LUN: %u, got CDB: 0x%02x"
257 " reported ASC: 0x%02x, ASCQ: 0x%02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000258 nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400259 (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) ? "Reporting" :
260 "Releasing", dev->dev_attrib.emulate_ua_intlck_ctrl,
Andy Grovera1d8b492011-05-02 17:12:10 -0700261 cmd->orig_fe_lun, cmd->t_task_cdb[0], *asc, *ascq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800262}
263
264int core_scsi3_ua_clear_for_request_sense(
265 struct se_cmd *cmd,
266 u8 *asc,
267 u8 *ascq)
268{
269 struct se_dev_entry *deve;
270 struct se_session *sess = cmd->se_sess;
271 struct se_node_acl *nacl;
272 struct se_ua *ua = NULL, *ua_p;
273 int head = 1;
274
Andy Grover6708bb22011-06-08 10:36:43 -0700275 if (!sess)
Andy Grovere3d6f902011-07-19 08:55:10 +0000276 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800277
278 nacl = sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700279 if (!nacl)
Andy Grovere3d6f902011-07-19 08:55:10 +0000280 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800281
282 spin_lock_irq(&nacl->device_list_lock);
Jörn Engelf2083242012-03-15 15:05:40 -0400283 deve = nacl->device_list[cmd->orig_fe_lun];
Andy Grover6708bb22011-06-08 10:36:43 -0700284 if (!atomic_read(&deve->ua_count)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800285 spin_unlock_irq(&nacl->device_list_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +0000286 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800287 }
288 /*
289 * The highest priority Unit Attentions are placed at the head of the
290 * struct se_dev_entry->ua_list. The First (and hence highest priority)
291 * ASC/ASCQ will be returned in REQUEST_SENSE payload data for the
292 * matching struct se_lun.
293 *
294 * Once the returning ASC/ASCQ values are set, we go ahead and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300295 * release all of the Unit Attention conditions for the associated
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800296 * struct se_lun.
297 */
298 spin_lock(&deve->ua_lock);
299 list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) {
300 if (head) {
301 *asc = ua->ua_asc;
302 *ascq = ua->ua_ascq;
303 head = 0;
304 }
305 list_del(&ua->ua_nacl_list);
306 kmem_cache_free(se_ua_cache, ua);
307
Joern Engel33940d02014-09-16 16:23:12 -0400308 atomic_dec_mb(&deve->ua_count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800309 }
310 spin_unlock(&deve->ua_lock);
311 spin_unlock_irq(&nacl->device_list_lock);
312
Andy Grover6708bb22011-06-08 10:36:43 -0700313 pr_debug("[%s]: Released UNIT ATTENTION condition, mapped"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800314 " LUN: %u, got REQUEST_SENSE reported ASC: 0x%02x,"
Andy Grovere3d6f902011-07-19 08:55:10 +0000315 " ASCQ: 0x%02x\n", nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800316 cmd->orig_fe_lun, *asc, *ascq);
317
Andy Grovere3d6f902011-07-19 08:55:10 +0000318 return (head) ? -EPERM : 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800319}