blob: 155fe0e0623ff5e6b9c5c0d38360ef4dfe3ce9b1 [file] [log] [blame]
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001/*******************************************************************************
2 * This file contains main functions related to the iSCSI Target Core Driver.
3 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07004 * (c) Copyright 2007-2013 Datera, Inc.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00005 *
6 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 ******************************************************************************/
18
Herbert Xu69110e32016-01-24 21:19:52 +080019#include <crypto/hash.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000020#include <linux/string.h>
21#include <linux/kthread.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000022#include <linux/completion.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040023#include <linux/module.h>
David S. Miller5538d292015-05-28 11:35:41 -070024#include <linux/vmalloc.h>
Al Viro40401532012-02-13 03:58:52 +000025#include <linux/idr.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000026#include <asm/unaligned.h>
Bart Van Asscheba929992015-05-08 10:11:12 +020027#include <scsi/scsi_proto.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000028#include <scsi/iscsi_proto.h>
Andy Groverd28b11692012-04-03 15:51:22 -070029#include <scsi/scsi_tcq.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000030#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050031#include <target/target_core_fabric.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000032
Sagi Grimberg67f091f2015-01-07 14:57:31 +020033#include <target/iscsi/iscsi_target_core.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000034#include "iscsi_target_parameters.h"
35#include "iscsi_target_seq_pdu_list.h"
Nicholas Bellingere48354c2011-07-23 06:43:04 +000036#include "iscsi_target_datain_values.h"
37#include "iscsi_target_erl0.h"
38#include "iscsi_target_erl1.h"
39#include "iscsi_target_erl2.h"
40#include "iscsi_target_login.h"
41#include "iscsi_target_tmr.h"
42#include "iscsi_target_tpg.h"
43#include "iscsi_target_util.h"
44#include "iscsi_target.h"
45#include "iscsi_target_device.h"
Sagi Grimberg67f091f2015-01-07 14:57:31 +020046#include <target/iscsi/iscsi_target_stat.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000047
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -080048#include <target/iscsi/iscsi_transport.h>
49
Nicholas Bellingere48354c2011-07-23 06:43:04 +000050static LIST_HEAD(g_tiqn_list);
51static LIST_HEAD(g_np_list);
52static DEFINE_SPINLOCK(tiqn_lock);
Andy Groveree291e62014-01-24 16:18:54 -080053static DEFINE_MUTEX(np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +000054
55static struct idr tiqn_idr;
56struct idr sess_idr;
57struct mutex auth_id_lock;
58spinlock_t sess_idr_lock;
59
60struct iscsit_global *iscsit_global;
61
Nicholas Bellingere48354c2011-07-23 06:43:04 +000062struct kmem_cache *lio_qr_cache;
63struct kmem_cache *lio_dr_cache;
64struct kmem_cache *lio_ooo_cache;
65struct kmem_cache *lio_r2t_cache;
66
67static int iscsit_handle_immediate_data(struct iscsi_cmd *,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -070068 struct iscsi_scsi_req *, u32);
Nicholas Bellingere48354c2011-07-23 06:43:04 +000069
70struct iscsi_tiqn *iscsit_get_tiqn_for_login(unsigned char *buf)
71{
72 struct iscsi_tiqn *tiqn = NULL;
73
74 spin_lock(&tiqn_lock);
75 list_for_each_entry(tiqn, &g_tiqn_list, tiqn_list) {
76 if (!strcmp(tiqn->tiqn, buf)) {
77
78 spin_lock(&tiqn->tiqn_state_lock);
79 if (tiqn->tiqn_state == TIQN_STATE_ACTIVE) {
80 tiqn->tiqn_access_count++;
81 spin_unlock(&tiqn->tiqn_state_lock);
82 spin_unlock(&tiqn_lock);
83 return tiqn;
84 }
85 spin_unlock(&tiqn->tiqn_state_lock);
86 }
87 }
88 spin_unlock(&tiqn_lock);
89
90 return NULL;
91}
92
93static int iscsit_set_tiqn_shutdown(struct iscsi_tiqn *tiqn)
94{
95 spin_lock(&tiqn->tiqn_state_lock);
96 if (tiqn->tiqn_state == TIQN_STATE_ACTIVE) {
97 tiqn->tiqn_state = TIQN_STATE_SHUTDOWN;
98 spin_unlock(&tiqn->tiqn_state_lock);
99 return 0;
100 }
101 spin_unlock(&tiqn->tiqn_state_lock);
102
103 return -1;
104}
105
106void iscsit_put_tiqn_for_login(struct iscsi_tiqn *tiqn)
107{
108 spin_lock(&tiqn->tiqn_state_lock);
109 tiqn->tiqn_access_count--;
110 spin_unlock(&tiqn->tiqn_state_lock);
111}
112
113/*
114 * Note that IQN formatting is expected to be done in userspace, and
115 * no explict IQN format checks are done here.
116 */
117struct iscsi_tiqn *iscsit_add_tiqn(unsigned char *buf)
118{
119 struct iscsi_tiqn *tiqn = NULL;
120 int ret;
121
Dan Carpenter8f50c7f2011-07-27 14:11:43 +0300122 if (strlen(buf) >= ISCSI_IQN_LEN) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000123 pr_err("Target IQN exceeds %d bytes\n",
124 ISCSI_IQN_LEN);
125 return ERR_PTR(-EINVAL);
126 }
127
128 tiqn = kzalloc(sizeof(struct iscsi_tiqn), GFP_KERNEL);
129 if (!tiqn) {
130 pr_err("Unable to allocate struct iscsi_tiqn\n");
131 return ERR_PTR(-ENOMEM);
132 }
133
134 sprintf(tiqn->tiqn, "%s", buf);
135 INIT_LIST_HEAD(&tiqn->tiqn_list);
136 INIT_LIST_HEAD(&tiqn->tiqn_tpg_list);
137 spin_lock_init(&tiqn->tiqn_state_lock);
138 spin_lock_init(&tiqn->tiqn_tpg_lock);
139 spin_lock_init(&tiqn->sess_err_stats.lock);
140 spin_lock_init(&tiqn->login_stats.lock);
141 spin_lock_init(&tiqn->logout_stats.lock);
142
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000143 tiqn->tiqn_state = TIQN_STATE_ACTIVE;
144
Tejun Heoc9365bd2013-02-27 17:04:43 -0800145 idr_preload(GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000146 spin_lock(&tiqn_lock);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800147
148 ret = idr_alloc(&tiqn_idr, NULL, 0, 0, GFP_NOWAIT);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000149 if (ret < 0) {
Tejun Heoc9365bd2013-02-27 17:04:43 -0800150 pr_err("idr_alloc() failed for tiqn->tiqn_index\n");
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000151 spin_unlock(&tiqn_lock);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800152 idr_preload_end();
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000153 kfree(tiqn);
154 return ERR_PTR(ret);
155 }
Tejun Heoc9365bd2013-02-27 17:04:43 -0800156 tiqn->tiqn_index = ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000157 list_add_tail(&tiqn->tiqn_list, &g_tiqn_list);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800158
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000159 spin_unlock(&tiqn_lock);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800160 idr_preload_end();
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000161
162 pr_debug("CORE[0] - Added iSCSI Target IQN: %s\n", tiqn->tiqn);
163
164 return tiqn;
165
166}
167
168static void iscsit_wait_for_tiqn(struct iscsi_tiqn *tiqn)
169{
170 /*
171 * Wait for accesses to said struct iscsi_tiqn to end.
172 */
173 spin_lock(&tiqn->tiqn_state_lock);
174 while (tiqn->tiqn_access_count != 0) {
175 spin_unlock(&tiqn->tiqn_state_lock);
176 msleep(10);
177 spin_lock(&tiqn->tiqn_state_lock);
178 }
179 spin_unlock(&tiqn->tiqn_state_lock);
180}
181
182void iscsit_del_tiqn(struct iscsi_tiqn *tiqn)
183{
184 /*
185 * iscsit_set_tiqn_shutdown sets tiqn->tiqn_state = TIQN_STATE_SHUTDOWN
186 * while holding tiqn->tiqn_state_lock. This means that all subsequent
187 * attempts to access this struct iscsi_tiqn will fail from both transport
188 * fabric and control code paths.
189 */
190 if (iscsit_set_tiqn_shutdown(tiqn) < 0) {
191 pr_err("iscsit_set_tiqn_shutdown() failed\n");
192 return;
193 }
194
195 iscsit_wait_for_tiqn(tiqn);
196
197 spin_lock(&tiqn_lock);
198 list_del(&tiqn->tiqn_list);
199 idr_remove(&tiqn_idr, tiqn->tiqn_index);
200 spin_unlock(&tiqn_lock);
201
202 pr_debug("CORE[0] - Deleted iSCSI Target IQN: %s\n",
203 tiqn->tiqn);
204 kfree(tiqn);
205}
206
207int iscsit_access_np(struct iscsi_np *np, struct iscsi_portal_group *tpg)
208{
209 int ret;
210 /*
211 * Determine if the network portal is accepting storage traffic.
212 */
213 spin_lock_bh(&np->np_thread_lock);
214 if (np->np_thread_state != ISCSI_NP_THREAD_ACTIVE) {
215 spin_unlock_bh(&np->np_thread_lock);
216 return -1;
217 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000218 spin_unlock_bh(&np->np_thread_lock);
219 /*
220 * Determine if the portal group is accepting storage traffic.
221 */
222 spin_lock_bh(&tpg->tpg_state_lock);
223 if (tpg->tpg_state != TPG_STATE_ACTIVE) {
224 spin_unlock_bh(&tpg->tpg_state_lock);
225 return -1;
226 }
227 spin_unlock_bh(&tpg->tpg_state_lock);
228
229 /*
230 * Here we serialize access across the TIQN+TPG Tuple.
231 */
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700232 ret = down_interruptible(&tpg->np_login_sem);
Nicholas Bellingeree7619f2015-05-19 15:10:44 -0700233 if (ret != 0)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000234 return -1;
235
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700236 spin_lock_bh(&tpg->tpg_state_lock);
237 if (tpg->tpg_state != TPG_STATE_ACTIVE) {
238 spin_unlock_bh(&tpg->tpg_state_lock);
239 up(&tpg->np_login_sem);
240 return -1;
241 }
242 spin_unlock_bh(&tpg->tpg_state_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000243
244 return 0;
245}
246
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700247void iscsit_login_kref_put(struct kref *kref)
248{
249 struct iscsi_tpg_np *tpg_np = container_of(kref,
250 struct iscsi_tpg_np, tpg_np_kref);
251
252 complete(&tpg_np->tpg_np_comp);
253}
254
255int iscsit_deaccess_np(struct iscsi_np *np, struct iscsi_portal_group *tpg,
256 struct iscsi_tpg_np *tpg_np)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000257{
258 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
259
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700260 up(&tpg->np_login_sem);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000261
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700262 if (tpg_np)
263 kref_put(&tpg_np->tpg_np_kref, iscsit_login_kref_put);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000264
265 if (tiqn)
266 iscsit_put_tiqn_for_login(tiqn);
267
268 return 0;
269}
270
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800271bool iscsit_check_np_match(
Andy Grover13a3cf02015-08-24 10:26:06 -0700272 struct sockaddr_storage *sockaddr,
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800273 struct iscsi_np *np,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000274 int network_transport)
275{
276 struct sockaddr_in *sock_in, *sock_in_e;
277 struct sockaddr_in6 *sock_in6, *sock_in6_e;
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800278 bool ip_match = false;
Andy Grover69d75572015-08-24 10:26:04 -0700279 u16 port, port_e;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000280
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800281 if (sockaddr->ss_family == AF_INET6) {
282 sock_in6 = (struct sockaddr_in6 *)sockaddr;
283 sock_in6_e = (struct sockaddr_in6 *)&np->np_sockaddr;
284
285 if (!memcmp(&sock_in6->sin6_addr.in6_u,
286 &sock_in6_e->sin6_addr.in6_u,
287 sizeof(struct in6_addr)))
288 ip_match = true;
289
290 port = ntohs(sock_in6->sin6_port);
Andy Grover69d75572015-08-24 10:26:04 -0700291 port_e = ntohs(sock_in6_e->sin6_port);
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800292 } else {
293 sock_in = (struct sockaddr_in *)sockaddr;
294 sock_in_e = (struct sockaddr_in *)&np->np_sockaddr;
295
296 if (sock_in->sin_addr.s_addr == sock_in_e->sin_addr.s_addr)
297 ip_match = true;
298
299 port = ntohs(sock_in->sin_port);
Andy Grover69d75572015-08-24 10:26:04 -0700300 port_e = ntohs(sock_in_e->sin_port);
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800301 }
302
Andy Grover69d75572015-08-24 10:26:04 -0700303 if (ip_match && (port_e == port) &&
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800304 (np->np_network_transport == network_transport))
305 return true;
306
307 return false;
308}
309
Andy Groveree291e62014-01-24 16:18:54 -0800310/*
311 * Called with mutex np_lock held
312 */
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800313static struct iscsi_np *iscsit_get_np(
Andy Grover13a3cf02015-08-24 10:26:06 -0700314 struct sockaddr_storage *sockaddr,
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800315 int network_transport)
316{
317 struct iscsi_np *np;
318 bool match;
319
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000320 list_for_each_entry(np, &g_np_list, np_list) {
Andy Groveree291e62014-01-24 16:18:54 -0800321 spin_lock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000322 if (np->np_thread_state != ISCSI_NP_THREAD_ACTIVE) {
Andy Groveree291e62014-01-24 16:18:54 -0800323 spin_unlock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000324 continue;
325 }
326
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800327 match = iscsit_check_np_match(sockaddr, np, network_transport);
Christophe Vu-Brugier0bcc2972014-06-06 17:15:16 +0200328 if (match) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000329 /*
330 * Increment the np_exports reference count now to
331 * prevent iscsit_del_np() below from being called
332 * while iscsi_tpg_add_network_portal() is called.
333 */
334 np->np_exports++;
Andy Groveree291e62014-01-24 16:18:54 -0800335 spin_unlock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000336 return np;
337 }
Andy Groveree291e62014-01-24 16:18:54 -0800338 spin_unlock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000339 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000340
341 return NULL;
342}
343
344struct iscsi_np *iscsit_add_np(
Andy Grover13a3cf02015-08-24 10:26:06 -0700345 struct sockaddr_storage *sockaddr,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000346 int network_transport)
347{
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000348 struct iscsi_np *np;
349 int ret;
Andy Groveree291e62014-01-24 16:18:54 -0800350
351 mutex_lock(&np_lock);
352
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000353 /*
354 * Locate the existing struct iscsi_np if already active..
355 */
356 np = iscsit_get_np(sockaddr, network_transport);
Andy Groveree291e62014-01-24 16:18:54 -0800357 if (np) {
358 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000359 return np;
Andy Groveree291e62014-01-24 16:18:54 -0800360 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000361
362 np = kzalloc(sizeof(struct iscsi_np), GFP_KERNEL);
363 if (!np) {
364 pr_err("Unable to allocate memory for struct iscsi_np\n");
Andy Groveree291e62014-01-24 16:18:54 -0800365 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000366 return ERR_PTR(-ENOMEM);
367 }
368
369 np->np_flags |= NPF_IP_NETWORK;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000370 np->np_network_transport = network_transport;
371 spin_lock_init(&np->np_thread_lock);
372 init_completion(&np->np_restart_comp);
373 INIT_LIST_HEAD(&np->np_list);
374
375 ret = iscsi_target_setup_login_socket(np, sockaddr);
376 if (ret != 0) {
377 kfree(np);
Andy Groveree291e62014-01-24 16:18:54 -0800378 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000379 return ERR_PTR(ret);
380 }
381
382 np->np_thread = kthread_run(iscsi_target_login_thread, np, "iscsi_np");
383 if (IS_ERR(np->np_thread)) {
384 pr_err("Unable to create kthread: iscsi_np\n");
385 ret = PTR_ERR(np->np_thread);
386 kfree(np);
Andy Groveree291e62014-01-24 16:18:54 -0800387 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000388 return ERR_PTR(ret);
389 }
390 /*
391 * Increment the np_exports reference count now to prevent
392 * iscsit_del_np() below from being run while a new call to
393 * iscsi_tpg_add_network_portal() for a matching iscsi_np is
394 * active. We don't need to hold np->np_thread_lock at this
395 * point because iscsi_np has not been added to g_np_list yet.
396 */
397 np->np_exports = 1;
Andy Groveree291e62014-01-24 16:18:54 -0800398 np->np_thread_state = ISCSI_NP_THREAD_ACTIVE;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000399
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000400 list_add_tail(&np->np_list, &g_np_list);
Andy Groveree291e62014-01-24 16:18:54 -0800401 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000402
Andy Grover69d75572015-08-24 10:26:04 -0700403 pr_debug("CORE[0] - Added Network Portal: %pISpc on %s\n",
404 &np->np_sockaddr, np->np_transport->name);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000405
406 return np;
407}
408
409int iscsit_reset_np_thread(
410 struct iscsi_np *np,
411 struct iscsi_tpg_np *tpg_np,
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700412 struct iscsi_portal_group *tpg,
413 bool shutdown)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000414{
415 spin_lock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000416 if (np->np_thread_state == ISCSI_NP_THREAD_INACTIVE) {
417 spin_unlock_bh(&np->np_thread_lock);
418 return 0;
419 }
420 np->np_thread_state = ISCSI_NP_THREAD_RESET;
421
422 if (np->np_thread) {
423 spin_unlock_bh(&np->np_thread_lock);
424 send_sig(SIGINT, np->np_thread, 1);
425 wait_for_completion(&np->np_restart_comp);
426 spin_lock_bh(&np->np_thread_lock);
427 }
428 spin_unlock_bh(&np->np_thread_lock);
429
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700430 if (tpg_np && shutdown) {
431 kref_put(&tpg_np->tpg_np_kref, iscsit_login_kref_put);
432
433 wait_for_completion(&tpg_np->tpg_np_comp);
434 }
435
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000436 return 0;
437}
438
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800439static void iscsit_free_np(struct iscsi_np *np)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000440{
Al Virobf6932f2012-07-21 08:55:18 +0100441 if (np->np_socket)
442 sock_release(np->np_socket);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000443}
444
445int iscsit_del_np(struct iscsi_np *np)
446{
447 spin_lock_bh(&np->np_thread_lock);
448 np->np_exports--;
449 if (np->np_exports) {
Nicholas Bellinger2363d192014-06-03 18:27:52 -0700450 np->enabled = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000451 spin_unlock_bh(&np->np_thread_lock);
452 return 0;
453 }
454 np->np_thread_state = ISCSI_NP_THREAD_SHUTDOWN;
455 spin_unlock_bh(&np->np_thread_lock);
456
457 if (np->np_thread) {
458 /*
459 * We need to send the signal to wakeup Linux/Net
460 * which may be sleeping in sock_accept()..
461 */
462 send_sig(SIGINT, np->np_thread, 1);
463 kthread_stop(np->np_thread);
Nicholas Bellingerdb6077f2013-12-11 15:45:32 -0800464 np->np_thread = NULL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000465 }
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800466
467 np->np_transport->iscsit_free_np(np);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000468
Andy Groveree291e62014-01-24 16:18:54 -0800469 mutex_lock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000470 list_del(&np->np_list);
Andy Groveree291e62014-01-24 16:18:54 -0800471 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000472
Andy Grover69d75572015-08-24 10:26:04 -0700473 pr_debug("CORE[0] - Removed Network Portal: %pISpc on %s\n",
474 &np->np_sockaddr, np->np_transport->name);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000475
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800476 iscsit_put_transport(np->np_transport);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000477 kfree(np);
478 return 0;
479}
480
Varun Prakashe8205cc2016-04-20 00:00:11 +0530481static void iscsit_get_rx_pdu(struct iscsi_conn *);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700482
Varun Prakashd2faaef2016-04-20 00:00:19 +0530483int iscsit_queue_rsp(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700484{
485 iscsit_add_cmd_to_response_queue(cmd, cmd->conn, cmd->i_state);
486 return 0;
487}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530488EXPORT_SYMBOL(iscsit_queue_rsp);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700489
Varun Prakashd2faaef2016-04-20 00:00:19 +0530490void iscsit_aborted_task(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700491{
492 bool scsi_cmd = (cmd->iscsi_opcode == ISCSI_OP_SCSI_CMD);
493
494 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -0700495 if (!list_empty(&cmd->i_conn_node) &&
496 !(cmd->se_cmd.transport_state & CMD_T_FABRIC_STOP))
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700497 list_del_init(&cmd->i_conn_node);
498 spin_unlock_bh(&conn->cmd_lock);
499
500 __iscsit_free_cmd(cmd, scsi_cmd, true);
501}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530502EXPORT_SYMBOL(iscsit_aborted_task);
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700503
Varun Prakash2854bb22016-04-20 00:00:08 +0530504static void iscsit_do_crypto_hash_buf(struct ahash_request *, const void *,
505 u32, u32, u8 *, u8 *);
506static void iscsit_tx_thread_wait_for_tcp(struct iscsi_conn *);
507
508static int
509iscsit_xmit_nondatain_pdu(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
510 const void *data_buf, u32 data_buf_len)
511{
512 struct iscsi_hdr *hdr = (struct iscsi_hdr *)cmd->pdu;
513 struct kvec *iov;
514 u32 niov = 0, tx_size = ISCSI_HDR_LEN;
515 int ret;
516
517 iov = &cmd->iov_misc[0];
518 iov[niov].iov_base = cmd->pdu;
519 iov[niov++].iov_len = ISCSI_HDR_LEN;
520
521 if (conn->conn_ops->HeaderDigest) {
522 u32 *header_digest = (u32 *)&cmd->pdu[ISCSI_HDR_LEN];
523
524 iscsit_do_crypto_hash_buf(conn->conn_tx_hash, hdr,
525 ISCSI_HDR_LEN, 0, NULL,
526 (u8 *)header_digest);
527
528 iov[0].iov_len += ISCSI_CRC_LEN;
529 tx_size += ISCSI_CRC_LEN;
530 pr_debug("Attaching CRC32C HeaderDigest"
531 " to opcode 0x%x 0x%08x\n",
532 hdr->opcode, *header_digest);
533 }
534
535 if (data_buf_len) {
536 u32 padding = ((-data_buf_len) & 3);
537
538 iov[niov].iov_base = (void *)data_buf;
539 iov[niov++].iov_len = data_buf_len;
540 tx_size += data_buf_len;
541
542 if (padding != 0) {
543 iov[niov].iov_base = &cmd->pad_bytes;
544 iov[niov++].iov_len = padding;
545 tx_size += padding;
546 pr_debug("Attaching %u additional"
547 " padding bytes.\n", padding);
548 }
549
550 if (conn->conn_ops->DataDigest) {
551 iscsit_do_crypto_hash_buf(conn->conn_tx_hash,
552 data_buf, data_buf_len,
553 padding,
554 (u8 *)&cmd->pad_bytes,
555 (u8 *)&cmd->data_crc);
556
557 iov[niov].iov_base = &cmd->data_crc;
558 iov[niov++].iov_len = ISCSI_CRC_LEN;
559 tx_size += ISCSI_CRC_LEN;
560 pr_debug("Attached DataDigest for %u"
561 " bytes opcode 0x%x, CRC 0x%08x\n",
562 data_buf_len, hdr->opcode, cmd->data_crc);
563 }
564 }
565
566 cmd->iov_misc_count = niov;
567 cmd->tx_size = tx_size;
568
569 ret = iscsit_send_tx_data(cmd, conn, 1);
570 if (ret < 0) {
571 iscsit_tx_thread_wait_for_tcp(conn);
572 return ret;
573 }
574
575 return 0;
576}
577
578static int iscsit_map_iovec(struct iscsi_cmd *, struct kvec *, u32, u32);
579static void iscsit_unmap_iovec(struct iscsi_cmd *);
580static u32 iscsit_do_crypto_hash_sg(struct ahash_request *, struct iscsi_cmd *,
581 u32, u32, u32, u8 *);
582static int
583iscsit_xmit_datain_pdu(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
584 const struct iscsi_datain *datain)
585{
586 struct kvec *iov;
587 u32 iov_count = 0, tx_size = 0;
588 int ret, iov_ret;
589
590 iov = &cmd->iov_data[0];
591 iov[iov_count].iov_base = cmd->pdu;
592 iov[iov_count++].iov_len = ISCSI_HDR_LEN;
593 tx_size += ISCSI_HDR_LEN;
594
595 if (conn->conn_ops->HeaderDigest) {
596 u32 *header_digest = (u32 *)&cmd->pdu[ISCSI_HDR_LEN];
597
598 iscsit_do_crypto_hash_buf(conn->conn_tx_hash, cmd->pdu,
599 ISCSI_HDR_LEN, 0, NULL,
600 (u8 *)header_digest);
601
602 iov[0].iov_len += ISCSI_CRC_LEN;
603 tx_size += ISCSI_CRC_LEN;
604
605 pr_debug("Attaching CRC32 HeaderDigest for DataIN PDU 0x%08x\n",
606 *header_digest);
607 }
608
609 iov_ret = iscsit_map_iovec(cmd, &cmd->iov_data[1],
610 datain->offset, datain->length);
611 if (iov_ret < 0)
612 return -1;
613
614 iov_count += iov_ret;
615 tx_size += datain->length;
616
617 cmd->padding = ((-datain->length) & 3);
618 if (cmd->padding) {
619 iov[iov_count].iov_base = cmd->pad_bytes;
620 iov[iov_count++].iov_len = cmd->padding;
621 tx_size += cmd->padding;
622
623 pr_debug("Attaching %u padding bytes\n", cmd->padding);
624 }
625
626 if (conn->conn_ops->DataDigest) {
627 cmd->data_crc = iscsit_do_crypto_hash_sg(conn->conn_tx_hash,
628 cmd, datain->offset,
629 datain->length,
630 cmd->padding,
631 cmd->pad_bytes);
632
633 iov[iov_count].iov_base = &cmd->data_crc;
634 iov[iov_count++].iov_len = ISCSI_CRC_LEN;
635 tx_size += ISCSI_CRC_LEN;
636
637 pr_debug("Attached CRC32C DataDigest %d bytes, crc 0x%08x\n",
638 datain->length + cmd->padding, cmd->data_crc);
639 }
640
641 cmd->iov_data_count = iov_count;
642 cmd->tx_size = tx_size;
643
644 ret = iscsit_fe_sendpage_sg(cmd, conn);
645
646 iscsit_unmap_iovec(cmd);
647
648 if (ret < 0) {
649 iscsit_tx_thread_wait_for_tcp(conn);
650 return ret;
651 }
652
653 return 0;
654}
655
656static int iscsit_xmit_pdu(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
657 struct iscsi_datain_req *dr, const void *buf,
658 u32 buf_len)
659{
660 if (dr)
661 return iscsit_xmit_datain_pdu(conn, cmd, buf);
662 else
663 return iscsit_xmit_nondatain_pdu(conn, cmd, buf, buf_len);
664}
665
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700666static enum target_prot_op iscsit_get_sup_prot_ops(struct iscsi_conn *conn)
667{
668 return TARGET_PROT_NORMAL;
669}
670
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800671static struct iscsit_transport iscsi_target_transport = {
672 .name = "iSCSI/TCP",
673 .transport_type = ISCSI_TCP,
Nicholas Bellingerbd027d82016-05-14 22:23:34 -0700674 .rdma_shutdown = false,
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800675 .owner = NULL,
676 .iscsit_setup_np = iscsit_setup_np,
677 .iscsit_accept_np = iscsit_accept_np,
678 .iscsit_free_np = iscsit_free_np,
679 .iscsit_get_login_rx = iscsit_get_login_rx,
680 .iscsit_put_login_tx = iscsit_put_login_tx,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800681 .iscsit_get_dataout = iscsit_build_r2ts_for_cmd,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700682 .iscsit_immediate_queue = iscsit_immediate_queue,
683 .iscsit_response_queue = iscsit_response_queue,
684 .iscsit_queue_data_in = iscsit_queue_rsp,
685 .iscsit_queue_status = iscsit_queue_rsp,
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700686 .iscsit_aborted_task = iscsit_aborted_task,
Varun Prakash2854bb22016-04-20 00:00:08 +0530687 .iscsit_xmit_pdu = iscsit_xmit_pdu,
Varun Prakashe8205cc2016-04-20 00:00:11 +0530688 .iscsit_get_rx_pdu = iscsit_get_rx_pdu,
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700689 .iscsit_get_sup_prot_ops = iscsit_get_sup_prot_ops,
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800690};
691
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000692static int __init iscsi_target_init_module(void)
693{
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800694 int ret = 0, size;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000695
696 pr_debug("iSCSI-Target "ISCSIT_VERSION"\n");
697
698 iscsit_global = kzalloc(sizeof(struct iscsit_global), GFP_KERNEL);
699 if (!iscsit_global) {
700 pr_err("Unable to allocate memory for iscsit_global\n");
701 return -1;
702 }
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800703 spin_lock_init(&iscsit_global->ts_bitmap_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000704 mutex_init(&auth_id_lock);
705 spin_lock_init(&sess_idr_lock);
706 idr_init(&tiqn_idr);
707 idr_init(&sess_idr);
708
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200709 ret = target_register_template(&iscsi_ops);
710 if (ret)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000711 goto out;
712
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800713 size = BITS_TO_LONGS(ISCSIT_BITMAP_BITS) * sizeof(long);
714 iscsit_global->ts_bitmap = vzalloc(size);
715 if (!iscsit_global->ts_bitmap) {
716 pr_err("Unable to allocate iscsit_global->ts_bitmap\n");
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000717 goto configfs_out;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000718 }
719
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000720 lio_qr_cache = kmem_cache_create("lio_qr_cache",
721 sizeof(struct iscsi_queue_req),
722 __alignof__(struct iscsi_queue_req), 0, NULL);
723 if (!lio_qr_cache) {
724 pr_err("nable to kmem_cache_create() for"
725 " lio_qr_cache\n");
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800726 goto bitmap_out;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000727 }
728
729 lio_dr_cache = kmem_cache_create("lio_dr_cache",
730 sizeof(struct iscsi_datain_req),
731 __alignof__(struct iscsi_datain_req), 0, NULL);
732 if (!lio_dr_cache) {
733 pr_err("Unable to kmem_cache_create() for"
734 " lio_dr_cache\n");
735 goto qr_out;
736 }
737
738 lio_ooo_cache = kmem_cache_create("lio_ooo_cache",
739 sizeof(struct iscsi_ooo_cmdsn),
740 __alignof__(struct iscsi_ooo_cmdsn), 0, NULL);
741 if (!lio_ooo_cache) {
742 pr_err("Unable to kmem_cache_create() for"
743 " lio_ooo_cache\n");
744 goto dr_out;
745 }
746
747 lio_r2t_cache = kmem_cache_create("lio_r2t_cache",
748 sizeof(struct iscsi_r2t), __alignof__(struct iscsi_r2t),
749 0, NULL);
750 if (!lio_r2t_cache) {
751 pr_err("Unable to kmem_cache_create() for"
752 " lio_r2t_cache\n");
753 goto ooo_out;
754 }
755
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800756 iscsit_register_transport(&iscsi_target_transport);
757
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000758 if (iscsit_load_discovery_tpg() < 0)
759 goto r2t_out;
760
761 return ret;
762r2t_out:
Lino Sanfilippo7f2c53b2014-11-30 12:00:11 +0100763 iscsit_unregister_transport(&iscsi_target_transport);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000764 kmem_cache_destroy(lio_r2t_cache);
765ooo_out:
766 kmem_cache_destroy(lio_ooo_cache);
767dr_out:
768 kmem_cache_destroy(lio_dr_cache);
769qr_out:
770 kmem_cache_destroy(lio_qr_cache);
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800771bitmap_out:
772 vfree(iscsit_global->ts_bitmap);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000773configfs_out:
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200774 /* XXX: this probably wants it to be it's own unwind step.. */
775 if (iscsit_global->discovery_tpg)
776 iscsit_tpg_disable_portal_group(iscsit_global->discovery_tpg, 1);
777 target_unregister_template(&iscsi_ops);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000778out:
779 kfree(iscsit_global);
780 return -ENOMEM;
781}
782
783static void __exit iscsi_target_cleanup_module(void)
784{
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000785 iscsit_release_discovery_tpg();
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800786 iscsit_unregister_transport(&iscsi_target_transport);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000787 kmem_cache_destroy(lio_qr_cache);
788 kmem_cache_destroy(lio_dr_cache);
789 kmem_cache_destroy(lio_ooo_cache);
790 kmem_cache_destroy(lio_r2t_cache);
791
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200792 /*
793 * Shutdown discovery sessions and disable discovery TPG
794 */
795 if (iscsit_global->discovery_tpg)
796 iscsit_tpg_disable_portal_group(iscsit_global->discovery_tpg, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000797
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200798 target_unregister_template(&iscsi_ops);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000799
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800800 vfree(iscsit_global->ts_bitmap);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000801 kfree(iscsit_global);
802}
803
Varun Prakashd2faaef2016-04-20 00:00:19 +0530804int iscsit_add_reject(
Nicholas Bellingerba159912013-07-03 03:48:24 -0700805 struct iscsi_conn *conn,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000806 u8 reason,
Nicholas Bellingerba159912013-07-03 03:48:24 -0700807 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000808{
809 struct iscsi_cmd *cmd;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000810
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000811 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000812 if (!cmd)
813 return -1;
814
815 cmd->iscsi_opcode = ISCSI_OP_REJECT;
Nicholas Bellingerba159912013-07-03 03:48:24 -0700816 cmd->reject_reason = reason;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000817
Thomas Meyer1c3d5792011-11-17 23:43:40 +0100818 cmd->buf_ptr = kmemdup(buf, ISCSI_HDR_LEN, GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000819 if (!cmd->buf_ptr) {
820 pr_err("Unable to allocate memory for cmd->buf_ptr\n");
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700821 iscsit_free_cmd(cmd, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000822 return -1;
823 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000824
825 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700826 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000827 spin_unlock_bh(&conn->cmd_lock);
828
829 cmd->i_state = ISTATE_SEND_REJECT;
830 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
831
Nicholas Bellingerba159912013-07-03 03:48:24 -0700832 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000833}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530834EXPORT_SYMBOL(iscsit_add_reject);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000835
Nicholas Bellingerba159912013-07-03 03:48:24 -0700836static int iscsit_add_reject_from_cmd(
837 struct iscsi_cmd *cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000838 u8 reason,
Nicholas Bellingerba159912013-07-03 03:48:24 -0700839 bool add_to_conn,
840 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000841{
842 struct iscsi_conn *conn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000843
844 if (!cmd->conn) {
845 pr_err("cmd->conn is NULL for ITT: 0x%08x\n",
846 cmd->init_task_tag);
847 return -1;
848 }
849 conn = cmd->conn;
850
851 cmd->iscsi_opcode = ISCSI_OP_REJECT;
Nicholas Bellingerba159912013-07-03 03:48:24 -0700852 cmd->reject_reason = reason;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000853
Thomas Meyer1c3d5792011-11-17 23:43:40 +0100854 cmd->buf_ptr = kmemdup(buf, ISCSI_HDR_LEN, GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000855 if (!cmd->buf_ptr) {
856 pr_err("Unable to allocate memory for cmd->buf_ptr\n");
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700857 iscsit_free_cmd(cmd, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000858 return -1;
859 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000860
861 if (add_to_conn) {
862 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700863 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000864 spin_unlock_bh(&conn->cmd_lock);
865 }
866
867 cmd->i_state = ISTATE_SEND_REJECT;
868 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800869 /*
870 * Perform the kref_put now if se_cmd has already been setup by
871 * scsit_setup_scsi_cmd()
872 */
873 if (cmd->se_cmd.se_tfo != NULL) {
874 pr_debug("iscsi reject: calling target_put_sess_cmd >>>>>>\n");
Bart Van Asscheafc16602015-04-27 13:52:36 +0200875 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800876 }
Nicholas Bellingerba159912013-07-03 03:48:24 -0700877 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000878}
Nicholas Bellingerba159912013-07-03 03:48:24 -0700879
880static int iscsit_add_reject_cmd(struct iscsi_cmd *cmd, u8 reason,
881 unsigned char *buf)
882{
883 return iscsit_add_reject_from_cmd(cmd, reason, true, buf);
884}
885
886int iscsit_reject_cmd(struct iscsi_cmd *cmd, u8 reason, unsigned char *buf)
887{
888 return iscsit_add_reject_from_cmd(cmd, reason, false, buf);
889}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530890EXPORT_SYMBOL(iscsit_reject_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000891
892/*
893 * Map some portion of the allocated scatterlist to an iovec, suitable for
Andy Groverbfb79ea2012-04-03 15:51:29 -0700894 * kernel sockets to copy data in/out.
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000895 */
896static int iscsit_map_iovec(
897 struct iscsi_cmd *cmd,
898 struct kvec *iov,
899 u32 data_offset,
900 u32 data_length)
901{
902 u32 i = 0;
903 struct scatterlist *sg;
904 unsigned int page_off;
905
906 /*
Andy Groverbfb79ea2012-04-03 15:51:29 -0700907 * We know each entry in t_data_sg contains a page.
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000908 */
Imran Haider2b165092016-05-08 11:17:54 -0400909 u32 ent = data_offset / PAGE_SIZE;
910
911 if (ent >= cmd->se_cmd.t_data_nents) {
912 pr_err("Initial page entry out-of-bounds\n");
913 return -1;
914 }
915
916 sg = &cmd->se_cmd.t_data_sg[ent];
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000917 page_off = (data_offset % PAGE_SIZE);
918
919 cmd->first_data_sg = sg;
920 cmd->first_data_sg_off = page_off;
921
922 while (data_length) {
923 u32 cur_len = min_t(u32, data_length, sg->length - page_off);
924
925 iov[i].iov_base = kmap(sg_page(sg)) + sg->offset + page_off;
926 iov[i].iov_len = cur_len;
927
928 data_length -= cur_len;
929 page_off = 0;
930 sg = sg_next(sg);
931 i++;
932 }
933
934 cmd->kmapped_nents = i;
935
936 return i;
937}
938
939static void iscsit_unmap_iovec(struct iscsi_cmd *cmd)
940{
941 u32 i;
942 struct scatterlist *sg;
943
944 sg = cmd->first_data_sg;
945
946 for (i = 0; i < cmd->kmapped_nents; i++)
947 kunmap(sg_page(&sg[i]));
948}
949
950static void iscsit_ack_from_expstatsn(struct iscsi_conn *conn, u32 exp_statsn)
951{
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700952 LIST_HEAD(ack_list);
953 struct iscsi_cmd *cmd, *cmd_p;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000954
955 conn->exp_statsn = exp_statsn;
956
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800957 if (conn->sess->sess_ops->RDMAExtensions)
958 return;
959
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000960 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700961 list_for_each_entry_safe(cmd, cmd_p, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000962 spin_lock(&cmd->istate_lock);
963 if ((cmd->i_state == ISTATE_SENT_STATUS) &&
Steve Hodgson64c133302012-11-05 18:02:41 -0800964 iscsi_sna_lt(cmd->stat_sn, exp_statsn)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000965 cmd->i_state = ISTATE_REMOVE;
966 spin_unlock(&cmd->istate_lock);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700967 list_move_tail(&cmd->i_conn_node, &ack_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000968 continue;
969 }
970 spin_unlock(&cmd->istate_lock);
971 }
972 spin_unlock_bh(&conn->cmd_lock);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700973
974 list_for_each_entry_safe(cmd, cmd_p, &ack_list, i_conn_node) {
Nicholas Bellinger5159d762014-02-03 12:53:51 -0800975 list_del_init(&cmd->i_conn_node);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700976 iscsit_free_cmd(cmd, false);
977 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000978}
979
980static int iscsit_allocate_iovecs(struct iscsi_cmd *cmd)
981{
Nicholas Bellingerf80e8ed2012-05-20 17:10:29 -0700982 u32 iov_count = max(1UL, DIV_ROUND_UP(cmd->se_cmd.data_length, PAGE_SIZE));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000983
Christoph Hellwigc0427f12011-10-12 11:06:56 -0400984 iov_count += ISCSI_IOV_DATA_BUFFER;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000985
986 cmd->iov_data = kzalloc(iov_count * sizeof(struct kvec), GFP_KERNEL);
987 if (!cmd->iov_data) {
988 pr_err("Unable to allocate cmd->iov_data\n");
989 return -ENOMEM;
990 }
991
992 cmd->orig_iov_data_count = iov_count;
993 return 0;
994}
995
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800996int iscsit_setup_scsi_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
997 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000998{
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800999 int data_direction, payload_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001000 struct iscsi_scsi_req *hdr;
Andy Groverd28b11692012-04-03 15:51:22 -07001001 int iscsi_task_attr;
1002 int sam_task_attr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001003
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08001004 atomic_long_inc(&conn->sess->cmd_pdus);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001005
1006 hdr = (struct iscsi_scsi_req *) buf;
1007 payload_length = ntoh24(hdr->dlength);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001008
1009 /* FIXME; Add checks for AdditionalHeaderSegment */
1010
1011 if (!(hdr->flags & ISCSI_FLAG_CMD_WRITE) &&
1012 !(hdr->flags & ISCSI_FLAG_CMD_FINAL)) {
1013 pr_err("ISCSI_FLAG_CMD_WRITE & ISCSI_FLAG_CMD_FINAL"
1014 " not set. Bad iSCSI Initiator.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001015 return iscsit_add_reject_cmd(cmd,
1016 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001017 }
1018
1019 if (((hdr->flags & ISCSI_FLAG_CMD_READ) ||
1020 (hdr->flags & ISCSI_FLAG_CMD_WRITE)) && !hdr->data_length) {
1021 /*
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001022 * From RFC-3720 Section 10.3.1:
1023 *
1024 * "Either or both of R and W MAY be 1 when either the
1025 * Expected Data Transfer Length and/or Bidirectional Read
1026 * Expected Data Transfer Length are 0"
1027 *
1028 * For this case, go ahead and clear the unnecssary bits
1029 * to avoid any confusion with ->data_direction.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001030 */
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001031 hdr->flags &= ~ISCSI_FLAG_CMD_READ;
1032 hdr->flags &= ~ISCSI_FLAG_CMD_WRITE;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001033
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001034 pr_warn("ISCSI_FLAG_CMD_READ or ISCSI_FLAG_CMD_WRITE"
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001035 " set when Expected Data Transfer Length is 0 for"
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001036 " CDB: 0x%02x, Fixing up flags\n", hdr->cdb[0]);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001037 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001038
1039 if (!(hdr->flags & ISCSI_FLAG_CMD_READ) &&
1040 !(hdr->flags & ISCSI_FLAG_CMD_WRITE) && (hdr->data_length != 0)) {
1041 pr_err("ISCSI_FLAG_CMD_READ and/or ISCSI_FLAG_CMD_WRITE"
1042 " MUST be set if Expected Data Transfer Length is not 0."
1043 " Bad iSCSI Initiator\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001044 return iscsit_add_reject_cmd(cmd,
1045 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001046 }
1047
1048 if ((hdr->flags & ISCSI_FLAG_CMD_READ) &&
1049 (hdr->flags & ISCSI_FLAG_CMD_WRITE)) {
1050 pr_err("Bidirectional operations not supported!\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001051 return iscsit_add_reject_cmd(cmd,
1052 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001053 }
1054
1055 if (hdr->opcode & ISCSI_OP_IMMEDIATE) {
1056 pr_err("Illegally set Immediate Bit in iSCSI Initiator"
1057 " Scsi Command PDU.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001058 return iscsit_add_reject_cmd(cmd,
1059 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001060 }
1061
1062 if (payload_length && !conn->sess->sess_ops->ImmediateData) {
1063 pr_err("ImmediateData=No but DataSegmentLength=%u,"
1064 " protocol error.\n", payload_length);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001065 return iscsit_add_reject_cmd(cmd,
1066 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001067 }
1068
Nicholas Bellingerba159912013-07-03 03:48:24 -07001069 if ((be32_to_cpu(hdr->data_length) == payload_length) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001070 (!(hdr->flags & ISCSI_FLAG_CMD_FINAL))) {
1071 pr_err("Expected Data Transfer Length and Length of"
1072 " Immediate Data are the same, but ISCSI_FLAG_CMD_FINAL"
1073 " bit is not set protocol error\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001074 return iscsit_add_reject_cmd(cmd,
1075 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001076 }
1077
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001078 if (payload_length > be32_to_cpu(hdr->data_length)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001079 pr_err("DataSegmentLength: %u is greater than"
1080 " EDTL: %u, protocol error.\n", payload_length,
1081 hdr->data_length);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001082 return iscsit_add_reject_cmd(cmd,
1083 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001084 }
1085
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001086 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001087 pr_err("DataSegmentLength: %u is greater than"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001088 " MaxXmitDataSegmentLength: %u, protocol error.\n",
1089 payload_length, conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001090 return iscsit_add_reject_cmd(cmd,
1091 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001092 }
1093
1094 if (payload_length > conn->sess->sess_ops->FirstBurstLength) {
1095 pr_err("DataSegmentLength: %u is greater than"
1096 " FirstBurstLength: %u, protocol error.\n",
1097 payload_length, conn->sess->sess_ops->FirstBurstLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001098 return iscsit_add_reject_cmd(cmd,
1099 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001100 }
1101
1102 data_direction = (hdr->flags & ISCSI_FLAG_CMD_WRITE) ? DMA_TO_DEVICE :
1103 (hdr->flags & ISCSI_FLAG_CMD_READ) ? DMA_FROM_DEVICE :
1104 DMA_NONE;
1105
Andy Groverd28b11692012-04-03 15:51:22 -07001106 cmd->data_direction = data_direction;
Andy Groverd28b11692012-04-03 15:51:22 -07001107 iscsi_task_attr = hdr->flags & ISCSI_FLAG_CMD_ATTR_MASK;
1108 /*
1109 * Figure out the SAM Task Attribute for the incoming SCSI CDB
1110 */
1111 if ((iscsi_task_attr == ISCSI_ATTR_UNTAGGED) ||
1112 (iscsi_task_attr == ISCSI_ATTR_SIMPLE))
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001113 sam_task_attr = TCM_SIMPLE_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001114 else if (iscsi_task_attr == ISCSI_ATTR_ORDERED)
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001115 sam_task_attr = TCM_ORDERED_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001116 else if (iscsi_task_attr == ISCSI_ATTR_HEAD_OF_QUEUE)
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001117 sam_task_attr = TCM_HEAD_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001118 else if (iscsi_task_attr == ISCSI_ATTR_ACA)
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001119 sam_task_attr = TCM_ACA_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001120 else {
1121 pr_debug("Unknown iSCSI Task Attribute: 0x%02x, using"
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001122 " TCM_SIMPLE_TAG\n", iscsi_task_attr);
1123 sam_task_attr = TCM_SIMPLE_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001124 }
1125
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001126 cmd->iscsi_opcode = ISCSI_OP_SCSI_CMD;
1127 cmd->i_state = ISTATE_NEW_CMD;
1128 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
1129 cmd->immediate_data = (payload_length) ? 1 : 0;
1130 cmd->unsolicited_data = ((!(hdr->flags & ISCSI_FLAG_CMD_FINAL) &&
1131 (hdr->flags & ISCSI_FLAG_CMD_WRITE)) ? 1 : 0);
1132 if (cmd->unsolicited_data)
1133 cmd->cmd_flags |= ICF_NON_IMMEDIATE_UNSOLICITED_DATA;
1134
1135 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
Alexei Potashnik95473082015-07-21 15:07:56 -07001136 if (hdr->flags & ISCSI_FLAG_CMD_READ)
Sagi Grimbergc1e34b62015-01-26 12:49:05 +02001137 cmd->targ_xfer_tag = session_get_next_ttt(conn->sess);
Alexei Potashnik95473082015-07-21 15:07:56 -07001138 else
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001139 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001140 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
1141 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001142 cmd->first_burst_len = payload_length;
1143
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001144 if (!conn->sess->sess_ops->RDMAExtensions &&
1145 cmd->data_direction == DMA_FROM_DEVICE) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001146 struct iscsi_datain_req *dr;
1147
1148 dr = iscsit_allocate_datain_req();
1149 if (!dr)
Nicholas Bellingerba159912013-07-03 03:48:24 -07001150 return iscsit_add_reject_cmd(cmd,
1151 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001152
1153 iscsit_attach_datain_req(cmd, dr);
1154 }
1155
1156 /*
Andy Grover065ca1e2012-04-03 15:51:23 -07001157 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
1158 */
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001159 transport_init_se_cmd(&cmd->se_cmd, &iscsi_ops,
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001160 conn->sess->se_sess, be32_to_cpu(hdr->data_length),
1161 cmd->data_direction, sam_task_attr,
1162 cmd->sense_buffer + 2);
Andy Grover065ca1e2012-04-03 15:51:23 -07001163
1164 pr_debug("Got SCSI Command, ITT: 0x%08x, CmdSN: 0x%08x,"
1165 " ExpXferLen: %u, Length: %u, CID: %hu\n", hdr->itt,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001166 hdr->cmdsn, be32_to_cpu(hdr->data_length), payload_length,
1167 conn->cid);
1168
Bart Van Asscheafc16602015-04-27 13:52:36 +02001169 target_get_sess_cmd(&cmd->se_cmd, true);
Andy Grover065ca1e2012-04-03 15:51:23 -07001170
Christoph Hellwigde103c92012-11-06 12:24:09 -08001171 cmd->sense_reason = transport_lookup_cmd_lun(&cmd->se_cmd,
1172 scsilun_to_int(&hdr->lun));
1173 if (cmd->sense_reason)
1174 goto attach_cmd;
1175
Bart Van Assche649ee052015-04-14 13:26:44 +02001176 /* only used for printks or comparing with ->ref_task_tag */
1177 cmd->se_cmd.tag = (__force u32)cmd->init_task_tag;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001178 cmd->sense_reason = target_setup_cmd_from_cdb(&cmd->se_cmd, hdr->cdb);
1179 if (cmd->sense_reason) {
1180 if (cmd->sense_reason == TCM_OUT_OF_RESOURCES) {
Nicholas Bellingerba159912013-07-03 03:48:24 -07001181 return iscsit_add_reject_cmd(cmd,
1182 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001183 }
Christoph Hellwigde103c92012-11-06 12:24:09 -08001184
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001185 goto attach_cmd;
1186 }
Andy Grovera12f41f2012-04-03 15:51:20 -07001187
Christoph Hellwigde103c92012-11-06 12:24:09 -08001188 if (iscsit_build_pdu_and_seq_lists(cmd, payload_length) < 0) {
Nicholas Bellingerba159912013-07-03 03:48:24 -07001189 return iscsit_add_reject_cmd(cmd,
1190 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001191 }
1192
1193attach_cmd:
1194 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07001195 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001196 spin_unlock_bh(&conn->cmd_lock);
1197 /*
1198 * Check if we need to delay processing because of ALUA
1199 * Active/NonOptimized primary access state..
1200 */
1201 core_alua_check_nonop_delay(&cmd->se_cmd);
Andy Groverbfb79ea2012-04-03 15:51:29 -07001202
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001203 return 0;
1204}
1205EXPORT_SYMBOL(iscsit_setup_scsi_cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001206
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001207void iscsit_set_unsoliticed_dataout(struct iscsi_cmd *cmd)
1208{
1209 iscsit_set_dataout_sequence_values(cmd);
1210
1211 spin_lock_bh(&cmd->dataout_timeout_lock);
1212 iscsit_start_dataout_timer(cmd, cmd->conn);
1213 spin_unlock_bh(&cmd->dataout_timeout_lock);
1214}
1215EXPORT_SYMBOL(iscsit_set_unsoliticed_dataout);
1216
1217int iscsit_process_scsi_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1218 struct iscsi_scsi_req *hdr)
1219{
1220 int cmdsn_ret = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001221 /*
1222 * Check the CmdSN against ExpCmdSN/MaxCmdSN here if
1223 * the Immediate Bit is not set, and no Immediate
1224 * Data is attached.
1225 *
1226 * A PDU/CmdSN carrying Immediate Data can only
1227 * be processed after the DataCRC has passed.
1228 * If the DataCRC fails, the CmdSN MUST NOT
1229 * be acknowledged. (See below)
1230 */
1231 if (!cmd->immediate_data) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001232 cmdsn_ret = iscsit_sequence_cmd(conn, cmd,
1233 (unsigned char *)hdr, hdr->cmdsn);
1234 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
1235 return -1;
1236 else if (cmdsn_ret == CMDSN_LOWER_THAN_EXP) {
Bart Van Asscheafc16602015-04-27 13:52:36 +02001237 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger7e32da52011-10-28 13:32:35 -07001238 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001239 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001240 }
1241
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001242 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001243
1244 /*
1245 * If no Immediate Data is attached, it's OK to return now.
1246 */
1247 if (!cmd->immediate_data) {
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001248 if (!cmd->sense_reason && cmd->unsolicited_data)
1249 iscsit_set_unsoliticed_dataout(cmd);
1250 if (!cmd->sense_reason)
1251 return 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001252
Bart Van Asscheafc16602015-04-27 13:52:36 +02001253 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001254 return 0;
1255 }
1256
1257 /*
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001258 * Early CHECK_CONDITIONs with ImmediateData never make it to command
1259 * execution. These exceptions are processed in CmdSN order using
1260 * iscsit_check_received_cmdsn() in iscsit_get_immediate_data() below.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001261 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001262 if (cmd->sense_reason) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001263 if (cmd->reject_reason)
1264 return 0;
1265
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001266 return 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001267 }
1268 /*
1269 * Call directly into transport_generic_new_cmd() to perform
1270 * the backend memory allocation.
1271 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001272 cmd->sense_reason = transport_generic_new_cmd(&cmd->se_cmd);
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001273 if (cmd->sense_reason)
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001274 return 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001275
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001276 return 0;
1277}
1278EXPORT_SYMBOL(iscsit_process_scsi_cmd);
1279
1280static int
1281iscsit_get_immediate_data(struct iscsi_cmd *cmd, struct iscsi_scsi_req *hdr,
1282 bool dump_payload)
1283{
1284 int cmdsn_ret = 0, immed_ret = IMMEDIATE_DATA_NORMAL_OPERATION;
1285 /*
1286 * Special case for Unsupported SAM WRITE Opcodes and ImmediateData=Yes.
1287 */
Christophe Vu-Brugier0bcc2972014-06-06 17:15:16 +02001288 if (dump_payload)
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001289 goto after_immediate_data;
Nicholas Bellinger3900f242017-06-07 20:29:50 -07001290 /*
1291 * Check for underflow case where both EDTL and immediate data payload
1292 * exceeds what is presented by CDB's TRANSFER LENGTH, and what has
1293 * already been set in target_cmd_size_check() as se_cmd->data_length.
1294 *
1295 * For this special case, fail the command and dump the immediate data
1296 * payload.
1297 */
1298 if (cmd->first_burst_len > cmd->se_cmd.data_length) {
1299 cmd->sense_reason = TCM_INVALID_CDB_FIELD;
1300 goto after_immediate_data;
1301 }
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001302
1303 immed_ret = iscsit_handle_immediate_data(cmd, hdr,
1304 cmd->first_burst_len);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001305after_immediate_data:
1306 if (immed_ret == IMMEDIATE_DATA_NORMAL_OPERATION) {
1307 /*
1308 * A PDU/CmdSN carrying Immediate Data passed
1309 * DataCRC, check against ExpCmdSN/MaxCmdSN if
1310 * Immediate Bit is not set.
1311 */
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001312 cmdsn_ret = iscsit_sequence_cmd(cmd->conn, cmd,
1313 (unsigned char *)hdr, hdr->cmdsn);
Nicholas Bellinger9d86a2b2013-08-22 00:05:45 -07001314 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001315 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001316
Nicholas Bellinger9d86a2b2013-08-22 00:05:45 -07001317 if (cmd->sense_reason || cmdsn_ret == CMDSN_LOWER_THAN_EXP) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001318 int rc;
1319
1320 rc = iscsit_dump_data_payload(cmd->conn,
1321 cmd->first_burst_len, 1);
Bart Van Asscheafc16602015-04-27 13:52:36 +02001322 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001323 return rc;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001324 } else if (cmd->unsolicited_data)
1325 iscsit_set_unsoliticed_dataout(cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001326
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001327 } else if (immed_ret == IMMEDIATE_DATA_ERL1_CRC_FAILURE) {
1328 /*
1329 * Immediate Data failed DataCRC and ERL>=1,
1330 * silently drop this PDU and let the initiator
1331 * plug the CmdSN gap.
1332 *
1333 * FIXME: Send Unsolicited NOPIN with reserved
1334 * TTT here to help the initiator figure out
1335 * the missing CmdSN, although they should be
1336 * intelligent enough to determine the missing
1337 * CmdSN and issue a retry to plug the sequence.
1338 */
1339 cmd->i_state = ISTATE_REMOVE;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001340 iscsit_add_cmd_to_immediate_queue(cmd, cmd->conn, cmd->i_state);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001341 } else /* immed_ret == IMMEDIATE_DATA_CANNOT_RECOVER */
1342 return -1;
1343
1344 return 0;
1345}
1346
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001347static int
1348iscsit_handle_scsi_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1349 unsigned char *buf)
1350{
1351 struct iscsi_scsi_req *hdr = (struct iscsi_scsi_req *)buf;
1352 int rc, immed_data;
1353 bool dump_payload = false;
1354
1355 rc = iscsit_setup_scsi_cmd(conn, cmd, buf);
1356 if (rc < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001357 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001358 /*
1359 * Allocation iovecs needed for struct socket operations for
1360 * traditional iSCSI block I/O.
1361 */
1362 if (iscsit_allocate_iovecs(cmd) < 0) {
Mike Christieb815fc12015-04-10 02:47:27 -05001363 return iscsit_reject_cmd(cmd,
Nicholas Bellingerba159912013-07-03 03:48:24 -07001364 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001365 }
1366 immed_data = cmd->immediate_data;
1367
1368 rc = iscsit_process_scsi_cmd(conn, cmd, hdr);
1369 if (rc < 0)
1370 return rc;
1371 else if (rc > 0)
1372 dump_payload = true;
1373
1374 if (!immed_data)
1375 return 0;
1376
1377 return iscsit_get_immediate_data(cmd, hdr, dump_payload);
1378}
1379
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001380static u32 iscsit_do_crypto_hash_sg(
Herbert Xu69110e32016-01-24 21:19:52 +08001381 struct ahash_request *hash,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001382 struct iscsi_cmd *cmd,
1383 u32 data_offset,
1384 u32 data_length,
1385 u32 padding,
1386 u8 *pad_bytes)
1387{
1388 u32 data_crc;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001389 struct scatterlist *sg;
1390 unsigned int page_off;
1391
Herbert Xu69110e32016-01-24 21:19:52 +08001392 crypto_ahash_init(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001393
1394 sg = cmd->first_data_sg;
1395 page_off = cmd->first_data_sg_off;
1396
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001397 while (data_length) {
Alexei Potashnikaa756792015-07-20 17:12:12 -07001398 u32 cur_len = min_t(u32, data_length, (sg->length - page_off));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001399
Herbert Xu69110e32016-01-24 21:19:52 +08001400 ahash_request_set_crypt(hash, sg, NULL, cur_len);
1401 crypto_ahash_update(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001402
1403 data_length -= cur_len;
1404 page_off = 0;
Alexei Potashnikaa756792015-07-20 17:12:12 -07001405 /* iscsit_map_iovec has already checked for invalid sg pointers */
1406 sg = sg_next(sg);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001407 }
1408
1409 if (padding) {
1410 struct scatterlist pad_sg;
1411
1412 sg_init_one(&pad_sg, pad_bytes, padding);
Herbert Xu69110e32016-01-24 21:19:52 +08001413 ahash_request_set_crypt(hash, &pad_sg, (u8 *)&data_crc,
1414 padding);
1415 crypto_ahash_finup(hash);
1416 } else {
1417 ahash_request_set_crypt(hash, NULL, (u8 *)&data_crc, 0);
1418 crypto_ahash_final(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001419 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001420
1421 return data_crc;
1422}
1423
1424static void iscsit_do_crypto_hash_buf(
Herbert Xu69110e32016-01-24 21:19:52 +08001425 struct ahash_request *hash,
Geert Uytterhoeven80690fd2013-05-03 23:15:57 +02001426 const void *buf,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001427 u32 payload_length,
1428 u32 padding,
1429 u8 *pad_bytes,
1430 u8 *data_crc)
1431{
Herbert Xu69110e32016-01-24 21:19:52 +08001432 struct scatterlist sg[2];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001433
Herbert Xu69110e32016-01-24 21:19:52 +08001434 sg_init_table(sg, ARRAY_SIZE(sg));
1435 sg_set_buf(sg, buf, payload_length);
1436 sg_set_buf(sg + 1, pad_bytes, padding);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001437
Herbert Xu69110e32016-01-24 21:19:52 +08001438 ahash_request_set_crypt(hash, sg, data_crc, payload_length + padding);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001439
Herbert Xu69110e32016-01-24 21:19:52 +08001440 crypto_ahash_digest(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001441}
1442
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001443int
1444iscsit_check_dataout_hdr(struct iscsi_conn *conn, unsigned char *buf,
1445 struct iscsi_cmd **out_cmd)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001446{
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001447 struct iscsi_data *hdr = (struct iscsi_data *)buf;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001448 struct iscsi_cmd *cmd = NULL;
1449 struct se_cmd *se_cmd;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001450 u32 payload_length = ntoh24(hdr->dlength);
1451 int rc;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001452
1453 if (!payload_length) {
Nicholas Bellingerdbcbc952013-11-06 20:55:39 -08001454 pr_warn("DataOUT payload is ZERO, ignoring.\n");
1455 return 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001456 }
1457
1458 /* iSCSI write */
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08001459 atomic_long_add(payload_length, &conn->sess->rx_data_octets);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001460
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001461 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001462 pr_err("DataSegmentLength: %u is greater than"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001463 " MaxXmitDataSegmentLength: %u\n", payload_length,
1464 conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001465 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1466 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001467 }
1468
1469 cmd = iscsit_find_cmd_from_itt_or_dump(conn, hdr->itt,
1470 payload_length);
1471 if (!cmd)
1472 return 0;
1473
1474 pr_debug("Got DataOut ITT: 0x%08x, TTT: 0x%08x,"
1475 " DataSN: 0x%08x, Offset: %u, Length: %u, CID: %hu\n",
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001476 hdr->itt, hdr->ttt, hdr->datasn, ntohl(hdr->offset),
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001477 payload_length, conn->cid);
1478
1479 if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT) {
1480 pr_err("Command ITT: 0x%08x received DataOUT after"
1481 " last DataOUT received, dumping payload\n",
1482 cmd->init_task_tag);
1483 return iscsit_dump_data_payload(conn, payload_length, 1);
1484 }
1485
1486 if (cmd->data_direction != DMA_TO_DEVICE) {
1487 pr_err("Command ITT: 0x%08x received DataOUT for a"
1488 " NON-WRITE command.\n", cmd->init_task_tag);
Nicholas Bellinger97c99b472014-06-20 10:59:57 -07001489 return iscsit_dump_data_payload(conn, payload_length, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001490 }
1491 se_cmd = &cmd->se_cmd;
1492 iscsit_mod_dataout_timer(cmd);
1493
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001494 if ((be32_to_cpu(hdr->offset) + payload_length) > cmd->se_cmd.data_length) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001495 pr_err("DataOut Offset: %u, Length %u greater than"
1496 " iSCSI Command EDTL %u, protocol error.\n",
Andy Groverebf1d952012-04-03 15:51:24 -07001497 hdr->offset, payload_length, cmd->se_cmd.data_length);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001498 return iscsit_reject_cmd(cmd, ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001499 }
1500
1501 if (cmd->unsolicited_data) {
1502 int dump_unsolicited_data = 0;
1503
1504 if (conn->sess->sess_ops->InitialR2T) {
1505 pr_err("Received unexpected unsolicited data"
1506 " while InitialR2T=Yes, protocol error.\n");
1507 transport_send_check_condition_and_sense(&cmd->se_cmd,
1508 TCM_UNEXPECTED_UNSOLICITED_DATA, 0);
1509 return -1;
1510 }
1511 /*
1512 * Special case for dealing with Unsolicited DataOUT
1513 * and Unsupported SAM WRITE Opcodes and SE resource allocation
1514 * failures;
1515 */
1516
1517 /* Something's amiss if we're not in WRITE_PENDING state... */
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001518 WARN_ON(se_cmd->t_state != TRANSPORT_WRITE_PENDING);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001519 if (!(se_cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001520 dump_unsolicited_data = 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001521
1522 if (dump_unsolicited_data) {
1523 /*
1524 * Check if a delayed TASK_ABORTED status needs to
1525 * be sent now if the ISCSI_FLAG_CMD_FINAL has been
Bart Van Assche5a342522015-10-22 15:53:22 -07001526 * received with the unsolicited data out.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001527 */
1528 if (hdr->flags & ISCSI_FLAG_CMD_FINAL)
1529 iscsit_stop_dataout_timer(cmd);
1530
1531 transport_check_aborted_status(se_cmd,
1532 (hdr->flags & ISCSI_FLAG_CMD_FINAL));
1533 return iscsit_dump_data_payload(conn, payload_length, 1);
1534 }
1535 } else {
1536 /*
1537 * For the normal solicited data path:
1538 *
1539 * Check for a delayed TASK_ABORTED status and dump any
1540 * incoming data out payload if one exists. Also, when the
1541 * ISCSI_FLAG_CMD_FINAL is set to denote the end of the current
1542 * data out sequence, we decrement outstanding_r2ts. Once
1543 * outstanding_r2ts reaches zero, go ahead and send the delayed
1544 * TASK_ABORTED status.
1545 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001546 if (se_cmd->transport_state & CMD_T_ABORTED) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001547 if (hdr->flags & ISCSI_FLAG_CMD_FINAL)
1548 if (--cmd->outstanding_r2ts < 1) {
1549 iscsit_stop_dataout_timer(cmd);
1550 transport_check_aborted_status(
1551 se_cmd, 1);
1552 }
1553
1554 return iscsit_dump_data_payload(conn, payload_length, 1);
1555 }
1556 }
1557 /*
1558 * Preform DataSN, DataSequenceInOrder, DataPDUInOrder, and
1559 * within-command recovery checks before receiving the payload.
1560 */
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001561 rc = iscsit_check_pre_dataout(cmd, buf);
1562 if (rc == DATAOUT_WITHIN_COMMAND_RECOVERY)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001563 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001564 else if (rc == DATAOUT_CANNOT_RECOVER)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001565 return -1;
1566
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001567 *out_cmd = cmd;
1568 return 0;
1569}
1570EXPORT_SYMBOL(iscsit_check_dataout_hdr);
1571
1572static int
1573iscsit_get_dataout(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1574 struct iscsi_data *hdr)
1575{
1576 struct kvec *iov;
1577 u32 checksum, iov_count = 0, padding = 0, rx_got = 0, rx_size = 0;
1578 u32 payload_length = ntoh24(hdr->dlength);
1579 int iov_ret, data_crc_failed = 0;
1580
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001581 rx_size += payload_length;
1582 iov = &cmd->iov_data[0];
1583
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001584 iov_ret = iscsit_map_iovec(cmd, iov, be32_to_cpu(hdr->offset),
1585 payload_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001586 if (iov_ret < 0)
1587 return -1;
1588
1589 iov_count += iov_ret;
1590
1591 padding = ((-payload_length) & 3);
1592 if (padding != 0) {
1593 iov[iov_count].iov_base = cmd->pad_bytes;
1594 iov[iov_count++].iov_len = padding;
1595 rx_size += padding;
1596 pr_debug("Receiving %u padding bytes.\n", padding);
1597 }
1598
1599 if (conn->conn_ops->DataDigest) {
1600 iov[iov_count].iov_base = &checksum;
1601 iov[iov_count++].iov_len = ISCSI_CRC_LEN;
1602 rx_size += ISCSI_CRC_LEN;
1603 }
1604
1605 rx_got = rx_data(conn, &cmd->iov_data[0], iov_count, rx_size);
1606
1607 iscsit_unmap_iovec(cmd);
1608
1609 if (rx_got != rx_size)
1610 return -1;
1611
1612 if (conn->conn_ops->DataDigest) {
1613 u32 data_crc;
1614
Herbert Xu69110e32016-01-24 21:19:52 +08001615 data_crc = iscsit_do_crypto_hash_sg(conn->conn_rx_hash, cmd,
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001616 be32_to_cpu(hdr->offset),
1617 payload_length, padding,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001618 cmd->pad_bytes);
1619
1620 if (checksum != data_crc) {
1621 pr_err("ITT: 0x%08x, Offset: %u, Length: %u,"
1622 " DataSN: 0x%08x, CRC32C DataDigest 0x%08x"
1623 " does not match computed 0x%08x\n",
1624 hdr->itt, hdr->offset, payload_length,
1625 hdr->datasn, checksum, data_crc);
1626 data_crc_failed = 1;
1627 } else {
1628 pr_debug("Got CRC32C DataDigest 0x%08x for"
1629 " %u bytes of Data Out\n", checksum,
1630 payload_length);
1631 }
1632 }
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001633
1634 return data_crc_failed;
1635}
1636
1637int
1638iscsit_check_dataout_payload(struct iscsi_cmd *cmd, struct iscsi_data *hdr,
1639 bool data_crc_failed)
1640{
1641 struct iscsi_conn *conn = cmd->conn;
1642 int rc, ooo_cmdsn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001643 /*
1644 * Increment post receive data and CRC values or perform
1645 * within-command recovery.
1646 */
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001647 rc = iscsit_check_post_dataout(cmd, (unsigned char *)hdr, data_crc_failed);
1648 if ((rc == DATAOUT_NORMAL) || (rc == DATAOUT_WITHIN_COMMAND_RECOVERY))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001649 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001650 else if (rc == DATAOUT_SEND_R2T) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001651 iscsit_set_dataout_sequence_values(cmd);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001652 conn->conn_transport->iscsit_get_dataout(conn, cmd, false);
1653 } else if (rc == DATAOUT_SEND_TO_TRANSPORT) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001654 /*
1655 * Handle extra special case for out of order
1656 * Unsolicited Data Out.
1657 */
1658 spin_lock_bh(&cmd->istate_lock);
1659 ooo_cmdsn = (cmd->cmd_flags & ICF_OOO_CMDSN);
1660 cmd->cmd_flags |= ICF_GOT_LAST_DATAOUT;
1661 cmd->i_state = ISTATE_RECEIVED_LAST_DATAOUT;
1662 spin_unlock_bh(&cmd->istate_lock);
1663
1664 iscsit_stop_dataout_timer(cmd);
Christoph Hellwig67441b62012-07-08 15:58:42 -04001665 if (ooo_cmdsn)
1666 return 0;
1667 target_execute_cmd(&cmd->se_cmd);
1668 return 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001669 } else /* DATAOUT_CANNOT_RECOVER */
1670 return -1;
1671
1672 return 0;
1673}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001674EXPORT_SYMBOL(iscsit_check_dataout_payload);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001675
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001676static int iscsit_handle_data_out(struct iscsi_conn *conn, unsigned char *buf)
1677{
Nicholas Bellingerdbcbc952013-11-06 20:55:39 -08001678 struct iscsi_cmd *cmd = NULL;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001679 struct iscsi_data *hdr = (struct iscsi_data *)buf;
1680 int rc;
1681 bool data_crc_failed = false;
1682
1683 rc = iscsit_check_dataout_hdr(conn, buf, &cmd);
1684 if (rc < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001685 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001686 else if (!cmd)
1687 return 0;
1688
1689 rc = iscsit_get_dataout(conn, cmd, hdr);
1690 if (rc < 0)
1691 return rc;
1692 else if (rc > 0)
1693 data_crc_failed = true;
1694
1695 return iscsit_check_dataout_payload(cmd, hdr, data_crc_failed);
1696}
1697
Nicholas Bellinger778de362013-06-14 16:07:47 -07001698int iscsit_setup_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1699 struct iscsi_nopout *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001700{
Nicholas Bellinger778de362013-06-14 16:07:47 -07001701 u32 payload_length = ntoh24(hdr->dlength);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001702
Arshad Hussaina3662602014-03-14 15:28:59 -07001703 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL)) {
1704 pr_err("NopOUT Flag's, Left Most Bit not set, protocol error.\n");
1705 if (!cmd)
1706 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1707 (unsigned char *)hdr);
1708
1709 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
1710 (unsigned char *)hdr);
1711 }
1712
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001713 if (hdr->itt == RESERVED_ITT && !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001714 pr_err("NOPOUT ITT is reserved, but Immediate Bit is"
1715 " not set, protocol error.\n");
Nicholas Bellinger28aaa952013-08-23 22:28:56 -07001716 if (!cmd)
1717 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1718 (unsigned char *)hdr);
1719
Nicholas Bellingerba159912013-07-03 03:48:24 -07001720 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
1721 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001722 }
1723
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001724 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001725 pr_err("NOPOUT Ping Data DataSegmentLength: %u is"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001726 " greater than MaxXmitDataSegmentLength: %u, protocol"
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001727 " error.\n", payload_length,
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001728 conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellinger28aaa952013-08-23 22:28:56 -07001729 if (!cmd)
1730 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1731 (unsigned char *)hdr);
1732
Nicholas Bellingerba159912013-07-03 03:48:24 -07001733 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
1734 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001735 }
1736
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001737 pr_debug("Got NOPOUT Ping %s ITT: 0x%08x, TTT: 0x%08x,"
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001738 " CmdSN: 0x%08x, ExpStatSN: 0x%08x, Length: %u\n",
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001739 hdr->itt == RESERVED_ITT ? "Response" : "Request",
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001740 hdr->itt, hdr->ttt, hdr->cmdsn, hdr->exp_statsn,
1741 payload_length);
1742 /*
1743 * This is not a response to a Unsolicited NopIN, which means
1744 * it can either be a NOPOUT ping request (with a valid ITT),
1745 * or a NOPOUT not requesting a NOPIN (with a reserved ITT).
1746 * Either way, make sure we allocate an struct iscsi_cmd, as both
1747 * can contain ping data.
1748 */
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001749 if (hdr->ttt == cpu_to_be32(0xFFFFFFFF)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001750 cmd->iscsi_opcode = ISCSI_OP_NOOP_OUT;
1751 cmd->i_state = ISTATE_SEND_NOPIN;
1752 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ?
1753 1 : 0);
1754 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
1755 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001756 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
1757 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001758 cmd->data_direction = DMA_NONE;
1759 }
1760
Nicholas Bellinger778de362013-06-14 16:07:47 -07001761 return 0;
1762}
1763EXPORT_SYMBOL(iscsit_setup_nop_out);
1764
1765int iscsit_process_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1766 struct iscsi_nopout *hdr)
1767{
1768 struct iscsi_cmd *cmd_p = NULL;
1769 int cmdsn_ret = 0;
1770 /*
1771 * Initiator is expecting a NopIN ping reply..
1772 */
1773 if (hdr->itt != RESERVED_ITT) {
Nicholas Bellinger7cbfcc92014-05-01 13:44:56 -07001774 if (!cmd)
1775 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1776 (unsigned char *)hdr);
Nicholas Bellinger778de362013-06-14 16:07:47 -07001777
1778 spin_lock_bh(&conn->cmd_lock);
1779 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
1780 spin_unlock_bh(&conn->cmd_lock);
1781
1782 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
1783
1784 if (hdr->opcode & ISCSI_OP_IMMEDIATE) {
1785 iscsit_add_cmd_to_response_queue(cmd, conn,
1786 cmd->i_state);
1787 return 0;
1788 }
1789
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001790 cmdsn_ret = iscsit_sequence_cmd(conn, cmd,
1791 (unsigned char *)hdr, hdr->cmdsn);
Nicholas Bellinger778de362013-06-14 16:07:47 -07001792 if (cmdsn_ret == CMDSN_LOWER_THAN_EXP)
1793 return 0;
Nicholas Bellinger778de362013-06-14 16:07:47 -07001794 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellingerba159912013-07-03 03:48:24 -07001795 return -1;
Nicholas Bellinger778de362013-06-14 16:07:47 -07001796
1797 return 0;
1798 }
1799 /*
1800 * This was a response to a unsolicited NOPIN ping.
1801 */
1802 if (hdr->ttt != cpu_to_be32(0xFFFFFFFF)) {
1803 cmd_p = iscsit_find_cmd_from_ttt(conn, be32_to_cpu(hdr->ttt));
1804 if (!cmd_p)
1805 return -EINVAL;
1806
1807 iscsit_stop_nopin_response_timer(conn);
1808
1809 cmd_p->i_state = ISTATE_REMOVE;
1810 iscsit_add_cmd_to_immediate_queue(cmd_p, conn, cmd_p->i_state);
1811
1812 iscsit_start_nopin_timer(conn);
1813 return 0;
1814 }
1815 /*
1816 * Otherwise, initiator is not expecting a NOPIN is response.
1817 * Just ignore for now.
1818 */
Varun Prakash1a40f0a2016-09-15 21:20:11 +05301819
1820 if (cmd)
1821 iscsit_free_cmd(cmd, false);
1822
Nicholas Bellinger778de362013-06-14 16:07:47 -07001823 return 0;
1824}
1825EXPORT_SYMBOL(iscsit_process_nop_out);
1826
1827static int iscsit_handle_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1828 unsigned char *buf)
1829{
1830 unsigned char *ping_data = NULL;
1831 struct iscsi_nopout *hdr = (struct iscsi_nopout *)buf;
1832 struct kvec *iov = NULL;
1833 u32 payload_length = ntoh24(hdr->dlength);
1834 int ret;
1835
1836 ret = iscsit_setup_nop_out(conn, cmd, hdr);
1837 if (ret < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001838 return 0;
Nicholas Bellinger778de362013-06-14 16:07:47 -07001839 /*
1840 * Handle NOP-OUT payload for traditional iSCSI sockets
1841 */
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001842 if (payload_length && hdr->ttt == cpu_to_be32(0xFFFFFFFF)) {
Nicholas Bellinger778de362013-06-14 16:07:47 -07001843 u32 checksum, data_crc, padding = 0;
1844 int niov = 0, rx_got, rx_size = payload_length;
1845
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001846 ping_data = kzalloc(payload_length + 1, GFP_KERNEL);
1847 if (!ping_data) {
1848 pr_err("Unable to allocate memory for"
1849 " NOPOUT ping data.\n");
1850 ret = -1;
1851 goto out;
1852 }
1853
1854 iov = &cmd->iov_misc[0];
1855 iov[niov].iov_base = ping_data;
1856 iov[niov++].iov_len = payload_length;
1857
1858 padding = ((-payload_length) & 3);
1859 if (padding != 0) {
1860 pr_debug("Receiving %u additional bytes"
1861 " for padding.\n", padding);
1862 iov[niov].iov_base = &cmd->pad_bytes;
1863 iov[niov++].iov_len = padding;
1864 rx_size += padding;
1865 }
1866 if (conn->conn_ops->DataDigest) {
1867 iov[niov].iov_base = &checksum;
1868 iov[niov++].iov_len = ISCSI_CRC_LEN;
1869 rx_size += ISCSI_CRC_LEN;
1870 }
1871
1872 rx_got = rx_data(conn, &cmd->iov_misc[0], niov, rx_size);
1873 if (rx_got != rx_size) {
1874 ret = -1;
1875 goto out;
1876 }
1877
1878 if (conn->conn_ops->DataDigest) {
Herbert Xu69110e32016-01-24 21:19:52 +08001879 iscsit_do_crypto_hash_buf(conn->conn_rx_hash,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001880 ping_data, payload_length,
1881 padding, cmd->pad_bytes,
1882 (u8 *)&data_crc);
1883
1884 if (checksum != data_crc) {
1885 pr_err("Ping data CRC32C DataDigest"
1886 " 0x%08x does not match computed 0x%08x\n",
1887 checksum, data_crc);
1888 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
1889 pr_err("Unable to recover from"
1890 " NOPOUT Ping DataCRC failure while in"
1891 " ERL=0.\n");
1892 ret = -1;
1893 goto out;
1894 } else {
1895 /*
1896 * Silently drop this PDU and let the
1897 * initiator plug the CmdSN gap.
1898 */
1899 pr_debug("Dropping NOPOUT"
1900 " Command CmdSN: 0x%08x due to"
1901 " DataCRC error.\n", hdr->cmdsn);
1902 ret = 0;
1903 goto out;
1904 }
1905 } else {
1906 pr_debug("Got CRC32C DataDigest"
1907 " 0x%08x for %u bytes of ping data.\n",
1908 checksum, payload_length);
1909 }
1910 }
1911
1912 ping_data[payload_length] = '\0';
1913 /*
1914 * Attach ping data to struct iscsi_cmd->buf_ptr.
1915 */
Jörn Engel8359cf42011-11-24 02:05:51 +01001916 cmd->buf_ptr = ping_data;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001917 cmd->buf_ptr_size = payload_length;
1918
1919 pr_debug("Got %u bytes of NOPOUT ping"
1920 " data.\n", payload_length);
1921 pr_debug("Ping Data: \"%s\"\n", ping_data);
1922 }
1923
Nicholas Bellinger778de362013-06-14 16:07:47 -07001924 return iscsit_process_nop_out(conn, cmd, hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001925out:
1926 if (cmd)
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -07001927 iscsit_free_cmd(cmd, false);
Nicholas Bellinger778de362013-06-14 16:07:47 -07001928
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001929 kfree(ping_data);
1930 return ret;
1931}
1932
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001933int
1934iscsit_handle_task_mgt_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1935 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001936{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001937 struct se_tmr_req *se_tmr;
1938 struct iscsi_tmr_req *tmr_req;
1939 struct iscsi_tm *hdr;
Nicholas Bellinger186a9642013-07-03 03:11:48 -07001940 int out_of_order_cmdsn = 0, ret;
1941 bool sess_ref = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001942 u8 function;
1943
1944 hdr = (struct iscsi_tm *) buf;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001945 hdr->flags &= ~ISCSI_FLAG_CMD_FINAL;
1946 function = hdr->flags;
1947
1948 pr_debug("Got Task Management Request ITT: 0x%08x, CmdSN:"
1949 " 0x%08x, Function: 0x%02x, RefTaskTag: 0x%08x, RefCmdSN:"
1950 " 0x%08x, CID: %hu\n", hdr->itt, hdr->cmdsn, function,
1951 hdr->rtt, hdr->refcmdsn, conn->cid);
1952
1953 if ((function != ISCSI_TM_FUNC_ABORT_TASK) &&
1954 ((function != ISCSI_TM_FUNC_TASK_REASSIGN) &&
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001955 hdr->rtt != RESERVED_ITT)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001956 pr_err("RefTaskTag should be set to 0xFFFFFFFF.\n");
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001957 hdr->rtt = RESERVED_ITT;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001958 }
1959
1960 if ((function == ISCSI_TM_FUNC_TASK_REASSIGN) &&
1961 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
1962 pr_err("Task Management Request TASK_REASSIGN not"
1963 " issued as immediate command, bad iSCSI Initiator"
1964 "implementation\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001965 return iscsit_add_reject_cmd(cmd,
1966 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001967 }
1968 if ((function != ISCSI_TM_FUNC_ABORT_TASK) &&
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001969 be32_to_cpu(hdr->refcmdsn) != ISCSI_RESERVED_TAG)
1970 hdr->refcmdsn = cpu_to_be32(ISCSI_RESERVED_TAG);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001971
Andy Groverd28b11692012-04-03 15:51:22 -07001972 cmd->data_direction = DMA_NONE;
1973
1974 cmd->tmr_req = kzalloc(sizeof(struct iscsi_tmr_req), GFP_KERNEL);
1975 if (!cmd->tmr_req) {
1976 pr_err("Unable to allocate memory for"
1977 " Task Management command!\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001978 return iscsit_add_reject_cmd(cmd,
1979 ISCSI_REASON_BOOKMARK_NO_RESOURCES,
1980 buf);
Andy Groverd28b11692012-04-03 15:51:22 -07001981 }
1982
1983 /*
1984 * TASK_REASSIGN for ERL=2 / connection stays inside of
1985 * LIO-Target $FABRIC_MOD
1986 */
1987 if (function != ISCSI_TM_FUNC_TASK_REASSIGN) {
1988
1989 u8 tcm_function;
1990 int ret;
1991
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001992 transport_init_se_cmd(&cmd->se_cmd, &iscsi_ops,
Andy Groverd28b11692012-04-03 15:51:22 -07001993 conn->sess->se_sess, 0, DMA_NONE,
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001994 TCM_SIMPLE_TAG, cmd->sense_buffer + 2);
Andy Groverd28b11692012-04-03 15:51:22 -07001995
Bart Van Asscheafc16602015-04-27 13:52:36 +02001996 target_get_sess_cmd(&cmd->se_cmd, true);
Nicholas Bellinger186a9642013-07-03 03:11:48 -07001997 sess_ref = true;
1998
Andy Groverd28b11692012-04-03 15:51:22 -07001999 switch (function) {
2000 case ISCSI_TM_FUNC_ABORT_TASK:
2001 tcm_function = TMR_ABORT_TASK;
2002 break;
2003 case ISCSI_TM_FUNC_ABORT_TASK_SET:
2004 tcm_function = TMR_ABORT_TASK_SET;
2005 break;
2006 case ISCSI_TM_FUNC_CLEAR_ACA:
2007 tcm_function = TMR_CLEAR_ACA;
2008 break;
2009 case ISCSI_TM_FUNC_CLEAR_TASK_SET:
2010 tcm_function = TMR_CLEAR_TASK_SET;
2011 break;
2012 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET:
2013 tcm_function = TMR_LUN_RESET;
2014 break;
2015 case ISCSI_TM_FUNC_TARGET_WARM_RESET:
2016 tcm_function = TMR_TARGET_WARM_RESET;
2017 break;
2018 case ISCSI_TM_FUNC_TARGET_COLD_RESET:
2019 tcm_function = TMR_TARGET_COLD_RESET;
2020 break;
2021 default:
2022 pr_err("Unknown iSCSI TMR Function:"
2023 " 0x%02x\n", function);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002024 return iscsit_add_reject_cmd(cmd,
2025 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Andy Groverd28b11692012-04-03 15:51:22 -07002026 }
2027
2028 ret = core_tmr_alloc_req(&cmd->se_cmd, cmd->tmr_req,
2029 tcm_function, GFP_KERNEL);
2030 if (ret < 0)
Nicholas Bellingerba159912013-07-03 03:48:24 -07002031 return iscsit_add_reject_cmd(cmd,
2032 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Andy Groverd28b11692012-04-03 15:51:22 -07002033
2034 cmd->tmr_req->se_tmr_req = cmd->se_cmd.se_tmr_req;
2035 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002036
2037 cmd->iscsi_opcode = ISCSI_OP_SCSI_TMFUNC;
2038 cmd->i_state = ISTATE_SEND_TASKMGTRSP;
2039 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
2040 cmd->init_task_tag = hdr->itt;
2041 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002042 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
2043 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002044 se_tmr = cmd->se_cmd.se_tmr_req;
2045 tmr_req = cmd->tmr_req;
2046 /*
2047 * Locate the struct se_lun for all TMRs not related to ERL=2 TASK_REASSIGN
2048 */
2049 if (function != ISCSI_TM_FUNC_TASK_REASSIGN) {
Andy Grover4f269982012-01-19 13:39:14 -08002050 ret = transport_lookup_tmr_lun(&cmd->se_cmd,
2051 scsilun_to_int(&hdr->lun));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002052 if (ret < 0) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002053 se_tmr->response = ISCSI_TMF_RSP_NO_LUN;
2054 goto attach;
2055 }
2056 }
2057
2058 switch (function) {
2059 case ISCSI_TM_FUNC_ABORT_TASK:
2060 se_tmr->response = iscsit_tmr_abort_task(cmd, buf);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002061 if (se_tmr->response)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002062 goto attach;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002063 break;
2064 case ISCSI_TM_FUNC_ABORT_TASK_SET:
2065 case ISCSI_TM_FUNC_CLEAR_ACA:
2066 case ISCSI_TM_FUNC_CLEAR_TASK_SET:
2067 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET:
2068 break;
2069 case ISCSI_TM_FUNC_TARGET_WARM_RESET:
2070 if (iscsit_tmr_task_warm_reset(conn, tmr_req, buf) < 0) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002071 se_tmr->response = ISCSI_TMF_RSP_AUTH_FAILED;
2072 goto attach;
2073 }
2074 break;
2075 case ISCSI_TM_FUNC_TARGET_COLD_RESET:
2076 if (iscsit_tmr_task_cold_reset(conn, tmr_req, buf) < 0) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002077 se_tmr->response = ISCSI_TMF_RSP_AUTH_FAILED;
2078 goto attach;
2079 }
2080 break;
2081 case ISCSI_TM_FUNC_TASK_REASSIGN:
2082 se_tmr->response = iscsit_tmr_task_reassign(cmd, buf);
2083 /*
2084 * Perform sanity checks on the ExpDataSN only if the
2085 * TASK_REASSIGN was successful.
2086 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002087 if (se_tmr->response)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002088 break;
2089
2090 if (iscsit_check_task_reassign_expdatasn(tmr_req, conn) < 0)
Nicholas Bellingerba159912013-07-03 03:48:24 -07002091 return iscsit_add_reject_cmd(cmd,
2092 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002093 break;
2094 default:
2095 pr_err("Unknown TMR function: 0x%02x, protocol"
2096 " error.\n", function);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002097 se_tmr->response = ISCSI_TMF_RSP_NOT_SUPPORTED;
2098 goto attach;
2099 }
2100
2101 if ((function != ISCSI_TM_FUNC_TASK_REASSIGN) &&
2102 (se_tmr->response == ISCSI_TMF_RSP_COMPLETE))
2103 se_tmr->call_transport = 1;
2104attach:
2105 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07002106 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002107 spin_unlock_bh(&conn->cmd_lock);
2108
2109 if (!(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002110 int cmdsn_ret = iscsit_sequence_cmd(conn, cmd, buf, hdr->cmdsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002111 if (cmdsn_ret == CMDSN_HIGHER_THAN_EXP)
2112 out_of_order_cmdsn = 1;
Nicholas Bellinger5a4c8662011-10-28 13:37:19 -07002113 else if (cmdsn_ret == CMDSN_LOWER_THAN_EXP)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002114 return 0;
Nicholas Bellinger5a4c8662011-10-28 13:37:19 -07002115 else if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellingerba159912013-07-03 03:48:24 -07002116 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002117 }
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002118 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002119
Nicholas Bellinger5a4c8662011-10-28 13:37:19 -07002120 if (out_of_order_cmdsn || !(hdr->opcode & ISCSI_OP_IMMEDIATE))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002121 return 0;
2122 /*
2123 * Found the referenced task, send to transport for processing.
2124 */
2125 if (se_tmr->call_transport)
2126 return transport_generic_handle_tmr(&cmd->se_cmd);
2127
2128 /*
2129 * Could not find the referenced LUN, task, or Task Management
2130 * command not authorized or supported. Change state and
2131 * let the tx_thread send the response.
2132 *
2133 * For connection recovery, this is also the default action for
2134 * TMR TASK_REASSIGN.
2135 */
Nicholas Bellinger186a9642013-07-03 03:11:48 -07002136 if (sess_ref) {
2137 pr_debug("Handle TMR, using sess_ref=true check\n");
Bart Van Asscheafc16602015-04-27 13:52:36 +02002138 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger186a9642013-07-03 03:11:48 -07002139 }
2140
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002141 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2142 return 0;
2143}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002144EXPORT_SYMBOL(iscsit_handle_task_mgt_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002145
2146/* #warning FIXME: Support Text Command parameters besides SendTargets */
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002147int
2148iscsit_setup_text_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2149 struct iscsi_text *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002150{
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002151 u32 payload_length = ntoh24(hdr->dlength);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002152
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07002153 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002154 pr_err("Unable to accept text parameter length: %u"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07002155 "greater than MaxXmitDataSegmentLength %u.\n",
2156 payload_length, conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002157 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
2158 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002159 }
2160
Nicholas Bellinger122f8af2013-11-13 14:33:24 -08002161 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL) ||
2162 (hdr->flags & ISCSI_FLAG_TEXT_CONTINUE)) {
2163 pr_err("Multi sequence text commands currently not supported\n");
2164 return iscsit_reject_cmd(cmd, ISCSI_REASON_CMD_NOT_SUPPORTED,
2165 (unsigned char *)hdr);
2166 }
2167
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002168 pr_debug("Got Text Request: ITT: 0x%08x, CmdSN: 0x%08x,"
2169 " ExpStatSN: 0x%08x, Length: %u\n", hdr->itt, hdr->cmdsn,
2170 hdr->exp_statsn, payload_length);
2171
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002172 cmd->iscsi_opcode = ISCSI_OP_TEXT;
2173 cmd->i_state = ISTATE_SEND_TEXTRSP;
2174 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
2175 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
2176 cmd->targ_xfer_tag = 0xFFFFFFFF;
2177 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
2178 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
2179 cmd->data_direction = DMA_NONE;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02002180 cmd->text_in_ptr = NULL;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002181
2182 return 0;
2183}
2184EXPORT_SYMBOL(iscsit_setup_text_cmd);
2185
2186int
2187iscsit_process_text_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2188 struct iscsi_text *hdr)
2189{
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002190 unsigned char *text_in = cmd->text_in_ptr, *text_ptr;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002191 int cmdsn_ret;
2192
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002193 if (!text_in) {
Sagi Grimberge4f4e802015-02-09 18:07:25 +02002194 cmd->targ_xfer_tag = be32_to_cpu(hdr->ttt);
2195 if (cmd->targ_xfer_tag == 0xFFFFFFFF) {
2196 pr_err("Unable to locate text_in buffer for sendtargets"
2197 " discovery\n");
2198 goto reject;
2199 }
2200 goto empty_sendtargets;
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002201 }
2202 if (strncmp("SendTargets", text_in, 11) != 0) {
2203 pr_err("Received Text Data that is not"
2204 " SendTargets, cannot continue.\n");
2205 goto reject;
2206 }
2207 text_ptr = strchr(text_in, '=');
2208 if (!text_ptr) {
2209 pr_err("No \"=\" separator found in Text Data,"
2210 " cannot continue.\n");
2211 goto reject;
2212 }
2213 if (!strncmp("=All", text_ptr, 4)) {
Andy Grover8060b8d2015-01-09 15:13:08 -08002214 cmd->cmd_flags |= ICF_SENDTARGETS_ALL;
Nicholas Bellinger66658892013-06-19 22:45:42 -07002215 } else if (!strncmp("=iqn.", text_ptr, 5) ||
2216 !strncmp("=eui.", text_ptr, 5)) {
Andy Grover8060b8d2015-01-09 15:13:08 -08002217 cmd->cmd_flags |= ICF_SENDTARGETS_SINGLE;
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002218 } else {
2219 pr_err("Unable to locate valid SendTargets=%s value\n", text_ptr);
2220 goto reject;
2221 }
2222
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002223 spin_lock_bh(&conn->cmd_lock);
2224 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
2225 spin_unlock_bh(&conn->cmd_lock);
2226
Sagi Grimberge4f4e802015-02-09 18:07:25 +02002227empty_sendtargets:
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002228 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
2229
2230 if (!(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002231 cmdsn_ret = iscsit_sequence_cmd(conn, cmd,
2232 (unsigned char *)hdr, hdr->cmdsn);
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002233 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellingerba159912013-07-03 03:48:24 -07002234 return -1;
2235
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002236 return 0;
2237 }
2238
2239 return iscsit_execute_cmd(cmd, 0);
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002240
2241reject:
Nicholas Bellingerba159912013-07-03 03:48:24 -07002242 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
2243 (unsigned char *)hdr);
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002244}
2245EXPORT_SYMBOL(iscsit_process_text_cmd);
2246
2247static int
2248iscsit_handle_text_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2249 unsigned char *buf)
2250{
2251 struct iscsi_text *hdr = (struct iscsi_text *)buf;
2252 char *text_in = NULL;
2253 u32 payload_length = ntoh24(hdr->dlength);
2254 int rx_size, rc;
2255
2256 rc = iscsit_setup_text_cmd(conn, cmd, hdr);
2257 if (rc < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002258 return 0;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002259
2260 rx_size = payload_length;
2261 if (payload_length) {
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002262 u32 checksum = 0, data_crc = 0;
2263 u32 padding = 0, pad_bytes = 0;
2264 int niov = 0, rx_got;
2265 struct kvec iov[3];
2266
2267 text_in = kzalloc(payload_length, GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002268 if (!text_in) {
2269 pr_err("Unable to allocate memory for"
2270 " incoming text parameters\n");
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002271 goto reject;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002272 }
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002273 cmd->text_in_ptr = text_in;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002274
2275 memset(iov, 0, 3 * sizeof(struct kvec));
2276 iov[niov].iov_base = text_in;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002277 iov[niov++].iov_len = payload_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002278
2279 padding = ((-payload_length) & 3);
2280 if (padding != 0) {
Nicholas Bellinger76f19282011-07-27 12:16:22 -07002281 iov[niov].iov_base = &pad_bytes;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002282 iov[niov++].iov_len = padding;
2283 rx_size += padding;
2284 pr_debug("Receiving %u additional bytes"
2285 " for padding.\n", padding);
2286 }
2287 if (conn->conn_ops->DataDigest) {
2288 iov[niov].iov_base = &checksum;
2289 iov[niov++].iov_len = ISCSI_CRC_LEN;
2290 rx_size += ISCSI_CRC_LEN;
2291 }
2292
2293 rx_got = rx_data(conn, &iov[0], niov, rx_size);
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002294 if (rx_got != rx_size)
2295 goto reject;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002296
2297 if (conn->conn_ops->DataDigest) {
Herbert Xu69110e32016-01-24 21:19:52 +08002298 iscsit_do_crypto_hash_buf(conn->conn_rx_hash,
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002299 text_in, payload_length,
Nicholas Bellinger76f19282011-07-27 12:16:22 -07002300 padding, (u8 *)&pad_bytes,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002301 (u8 *)&data_crc);
2302
2303 if (checksum != data_crc) {
2304 pr_err("Text data CRC32C DataDigest"
2305 " 0x%08x does not match computed"
2306 " 0x%08x\n", checksum, data_crc);
2307 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
2308 pr_err("Unable to recover from"
2309 " Text Data digest failure while in"
2310 " ERL=0.\n");
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002311 goto reject;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002312 } else {
2313 /*
2314 * Silently drop this PDU and let the
2315 * initiator plug the CmdSN gap.
2316 */
2317 pr_debug("Dropping Text"
2318 " Command CmdSN: 0x%08x due to"
2319 " DataCRC error.\n", hdr->cmdsn);
2320 kfree(text_in);
2321 return 0;
2322 }
2323 } else {
2324 pr_debug("Got CRC32C DataDigest"
2325 " 0x%08x for %u bytes of text data.\n",
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002326 checksum, payload_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002327 }
2328 }
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002329 text_in[payload_length - 1] = '\0';
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002330 pr_debug("Successfully read %d bytes of text"
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002331 " data.\n", payload_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002332 }
2333
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002334 return iscsit_process_text_cmd(conn, cmd, hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002335
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002336reject:
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002337 kfree(cmd->text_in_ptr);
2338 cmd->text_in_ptr = NULL;
Nicholas Bellingerba159912013-07-03 03:48:24 -07002339 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002340}
2341
2342int iscsit_logout_closesession(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2343{
2344 struct iscsi_conn *conn_p;
2345 struct iscsi_session *sess = conn->sess;
2346
2347 pr_debug("Received logout request CLOSESESSION on CID: %hu"
2348 " for SID: %u.\n", conn->cid, conn->sess->sid);
2349
2350 atomic_set(&sess->session_logout, 1);
2351 atomic_set(&conn->conn_logout_remove, 1);
2352 conn->conn_logout_reason = ISCSI_LOGOUT_REASON_CLOSE_SESSION;
2353
2354 iscsit_inc_conn_usage_count(conn);
2355 iscsit_inc_session_usage_count(sess);
2356
2357 spin_lock_bh(&sess->conn_lock);
2358 list_for_each_entry(conn_p, &sess->sess_conn_list, conn_list) {
2359 if (conn_p->conn_state != TARG_CONN_STATE_LOGGED_IN)
2360 continue;
2361
2362 pr_debug("Moving to TARG_CONN_STATE_IN_LOGOUT.\n");
2363 conn_p->conn_state = TARG_CONN_STATE_IN_LOGOUT;
2364 }
2365 spin_unlock_bh(&sess->conn_lock);
2366
2367 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2368
2369 return 0;
2370}
2371
2372int iscsit_logout_closeconnection(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2373{
2374 struct iscsi_conn *l_conn;
2375 struct iscsi_session *sess = conn->sess;
2376
2377 pr_debug("Received logout request CLOSECONNECTION for CID:"
2378 " %hu on CID: %hu.\n", cmd->logout_cid, conn->cid);
2379
2380 /*
2381 * A Logout Request with a CLOSECONNECTION reason code for a CID
2382 * can arrive on a connection with a differing CID.
2383 */
2384 if (conn->cid == cmd->logout_cid) {
2385 spin_lock_bh(&conn->state_lock);
2386 pr_debug("Moving to TARG_CONN_STATE_IN_LOGOUT.\n");
2387 conn->conn_state = TARG_CONN_STATE_IN_LOGOUT;
2388
2389 atomic_set(&conn->conn_logout_remove, 1);
2390 conn->conn_logout_reason = ISCSI_LOGOUT_REASON_CLOSE_CONNECTION;
2391 iscsit_inc_conn_usage_count(conn);
2392
2393 spin_unlock_bh(&conn->state_lock);
2394 } else {
2395 /*
2396 * Handle all different cid CLOSECONNECTION requests in
2397 * iscsit_logout_post_handler_diffcid() as to give enough
2398 * time for any non immediate command's CmdSN to be
2399 * acknowledged on the connection in question.
2400 *
2401 * Here we simply make sure the CID is still around.
2402 */
2403 l_conn = iscsit_get_conn_from_cid(sess,
2404 cmd->logout_cid);
2405 if (!l_conn) {
2406 cmd->logout_response = ISCSI_LOGOUT_CID_NOT_FOUND;
2407 iscsit_add_cmd_to_response_queue(cmd, conn,
2408 cmd->i_state);
2409 return 0;
2410 }
2411
2412 iscsit_dec_conn_usage_count(l_conn);
2413 }
2414
2415 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2416
2417 return 0;
2418}
2419
2420int iscsit_logout_removeconnforrecovery(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2421{
2422 struct iscsi_session *sess = conn->sess;
2423
2424 pr_debug("Received explicit REMOVECONNFORRECOVERY logout for"
2425 " CID: %hu on CID: %hu.\n", cmd->logout_cid, conn->cid);
2426
2427 if (sess->sess_ops->ErrorRecoveryLevel != 2) {
2428 pr_err("Received Logout Request REMOVECONNFORRECOVERY"
2429 " while ERL!=2.\n");
2430 cmd->logout_response = ISCSI_LOGOUT_RECOVERY_UNSUPPORTED;
2431 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2432 return 0;
2433 }
2434
2435 if (conn->cid == cmd->logout_cid) {
2436 pr_err("Received Logout Request REMOVECONNFORRECOVERY"
2437 " with CID: %hu on CID: %hu, implementation error.\n",
2438 cmd->logout_cid, conn->cid);
2439 cmd->logout_response = ISCSI_LOGOUT_CLEANUP_FAILED;
2440 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2441 return 0;
2442 }
2443
2444 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2445
2446 return 0;
2447}
2448
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002449int
2450iscsit_handle_logout_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2451 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002452{
2453 int cmdsn_ret, logout_remove = 0;
2454 u8 reason_code = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002455 struct iscsi_logout *hdr;
2456 struct iscsi_tiqn *tiqn = iscsit_snmp_get_tiqn(conn);
2457
2458 hdr = (struct iscsi_logout *) buf;
2459 reason_code = (hdr->flags & 0x7f);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002460
2461 if (tiqn) {
2462 spin_lock(&tiqn->logout_stats.lock);
2463 if (reason_code == ISCSI_LOGOUT_REASON_CLOSE_SESSION)
2464 tiqn->logout_stats.normal_logouts++;
2465 else
2466 tiqn->logout_stats.abnormal_logouts++;
2467 spin_unlock(&tiqn->logout_stats.lock);
2468 }
2469
2470 pr_debug("Got Logout Request ITT: 0x%08x CmdSN: 0x%08x"
2471 " ExpStatSN: 0x%08x Reason: 0x%02x CID: %hu on CID: %hu\n",
2472 hdr->itt, hdr->cmdsn, hdr->exp_statsn, reason_code,
2473 hdr->cid, conn->cid);
2474
2475 if (conn->conn_state != TARG_CONN_STATE_LOGGED_IN) {
2476 pr_err("Received logout request on connection that"
2477 " is not in logged in state, ignoring request.\n");
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -07002478 iscsit_free_cmd(cmd, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002479 return 0;
2480 }
2481
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002482 cmd->iscsi_opcode = ISCSI_OP_LOGOUT;
2483 cmd->i_state = ISTATE_SEND_LOGOUTRSP;
2484 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
2485 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
2486 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002487 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
2488 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
2489 cmd->logout_cid = be16_to_cpu(hdr->cid);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002490 cmd->logout_reason = reason_code;
2491 cmd->data_direction = DMA_NONE;
2492
2493 /*
2494 * We need to sleep in these cases (by returning 1) until the Logout
2495 * Response gets sent in the tx thread.
2496 */
2497 if ((reason_code == ISCSI_LOGOUT_REASON_CLOSE_SESSION) ||
2498 ((reason_code == ISCSI_LOGOUT_REASON_CLOSE_CONNECTION) &&
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002499 be16_to_cpu(hdr->cid) == conn->cid))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002500 logout_remove = 1;
2501
2502 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07002503 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002504 spin_unlock_bh(&conn->cmd_lock);
2505
2506 if (reason_code != ISCSI_LOGOUT_REASON_RECOVERY)
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002507 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002508
2509 /*
2510 * Immediate commands are executed, well, immediately.
2511 * Non-Immediate Logout Commands are executed in CmdSN order.
2512 */
Andy Groverc6037cc2012-04-03 15:51:02 -07002513 if (cmd->immediate_cmd) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002514 int ret = iscsit_execute_cmd(cmd, 0);
2515
2516 if (ret < 0)
2517 return ret;
2518 } else {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002519 cmdsn_ret = iscsit_sequence_cmd(conn, cmd, buf, hdr->cmdsn);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002520 if (cmdsn_ret == CMDSN_LOWER_THAN_EXP)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002521 logout_remove = 0;
Nicholas Bellingerba159912013-07-03 03:48:24 -07002522 else if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
2523 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002524 }
2525
2526 return logout_remove;
2527}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002528EXPORT_SYMBOL(iscsit_handle_logout_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002529
Varun Prakashd2faaef2016-04-20 00:00:19 +05302530int iscsit_handle_snack(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002531 struct iscsi_conn *conn,
2532 unsigned char *buf)
2533{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002534 struct iscsi_snack *hdr;
2535
2536 hdr = (struct iscsi_snack *) buf;
2537 hdr->flags &= ~ISCSI_FLAG_CMD_FINAL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002538
2539 pr_debug("Got ISCSI_INIT_SNACK, ITT: 0x%08x, ExpStatSN:"
2540 " 0x%08x, Type: 0x%02x, BegRun: 0x%08x, RunLength: 0x%08x,"
2541 " CID: %hu\n", hdr->itt, hdr->exp_statsn, hdr->flags,
2542 hdr->begrun, hdr->runlength, conn->cid);
2543
2544 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
2545 pr_err("Initiator sent SNACK request while in"
2546 " ErrorRecoveryLevel=0.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07002547 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
2548 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002549 }
2550 /*
2551 * SNACK_DATA and SNACK_R2T are both 0, so check which function to
2552 * call from inside iscsi_send_recovery_datain_or_r2t().
2553 */
2554 switch (hdr->flags & ISCSI_FLAG_SNACK_TYPE_MASK) {
2555 case 0:
2556 return iscsit_handle_recovery_datain_or_r2t(conn, buf,
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002557 hdr->itt,
2558 be32_to_cpu(hdr->ttt),
2559 be32_to_cpu(hdr->begrun),
2560 be32_to_cpu(hdr->runlength));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002561 case ISCSI_FLAG_SNACK_TYPE_STATUS:
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002562 return iscsit_handle_status_snack(conn, hdr->itt,
2563 be32_to_cpu(hdr->ttt),
2564 be32_to_cpu(hdr->begrun), be32_to_cpu(hdr->runlength));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002565 case ISCSI_FLAG_SNACK_TYPE_DATA_ACK:
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002566 return iscsit_handle_data_ack(conn, be32_to_cpu(hdr->ttt),
2567 be32_to_cpu(hdr->begrun),
2568 be32_to_cpu(hdr->runlength));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002569 case ISCSI_FLAG_SNACK_TYPE_RDATA:
2570 /* FIXME: Support R-Data SNACK */
2571 pr_err("R-Data SNACK Not Supported.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07002572 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
2573 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002574 default:
2575 pr_err("Unknown SNACK type 0x%02x, protocol"
2576 " error.\n", hdr->flags & 0x0f);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002577 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
2578 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002579 }
2580
2581 return 0;
2582}
Varun Prakashd2faaef2016-04-20 00:00:19 +05302583EXPORT_SYMBOL(iscsit_handle_snack);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002584
2585static void iscsit_rx_thread_wait_for_tcp(struct iscsi_conn *conn)
2586{
2587 if ((conn->sock->sk->sk_shutdown & SEND_SHUTDOWN) ||
2588 (conn->sock->sk->sk_shutdown & RCV_SHUTDOWN)) {
2589 wait_for_completion_interruptible_timeout(
2590 &conn->rx_half_close_comp,
2591 ISCSI_RX_THREAD_TCP_TIMEOUT * HZ);
2592 }
2593}
2594
2595static int iscsit_handle_immediate_data(
2596 struct iscsi_cmd *cmd,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002597 struct iscsi_scsi_req *hdr,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002598 u32 length)
2599{
2600 int iov_ret, rx_got = 0, rx_size = 0;
2601 u32 checksum, iov_count = 0, padding = 0;
2602 struct iscsi_conn *conn = cmd->conn;
2603 struct kvec *iov;
2604
2605 iov_ret = iscsit_map_iovec(cmd, cmd->iov_data, cmd->write_data_done, length);
2606 if (iov_ret < 0)
2607 return IMMEDIATE_DATA_CANNOT_RECOVER;
2608
2609 rx_size = length;
2610 iov_count = iov_ret;
2611 iov = &cmd->iov_data[0];
2612
2613 padding = ((-length) & 3);
2614 if (padding != 0) {
2615 iov[iov_count].iov_base = cmd->pad_bytes;
2616 iov[iov_count++].iov_len = padding;
2617 rx_size += padding;
2618 }
2619
2620 if (conn->conn_ops->DataDigest) {
2621 iov[iov_count].iov_base = &checksum;
2622 iov[iov_count++].iov_len = ISCSI_CRC_LEN;
2623 rx_size += ISCSI_CRC_LEN;
2624 }
2625
2626 rx_got = rx_data(conn, &cmd->iov_data[0], iov_count, rx_size);
2627
2628 iscsit_unmap_iovec(cmd);
2629
2630 if (rx_got != rx_size) {
2631 iscsit_rx_thread_wait_for_tcp(conn);
2632 return IMMEDIATE_DATA_CANNOT_RECOVER;
2633 }
2634
2635 if (conn->conn_ops->DataDigest) {
2636 u32 data_crc;
2637
Herbert Xu69110e32016-01-24 21:19:52 +08002638 data_crc = iscsit_do_crypto_hash_sg(conn->conn_rx_hash, cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002639 cmd->write_data_done, length, padding,
2640 cmd->pad_bytes);
2641
2642 if (checksum != data_crc) {
2643 pr_err("ImmediateData CRC32C DataDigest 0x%08x"
2644 " does not match computed 0x%08x\n", checksum,
2645 data_crc);
2646
2647 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
2648 pr_err("Unable to recover from"
2649 " Immediate Data digest failure while"
2650 " in ERL=0.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07002651 iscsit_reject_cmd(cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002652 ISCSI_REASON_DATA_DIGEST_ERROR,
Nicholas Bellingerba159912013-07-03 03:48:24 -07002653 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002654 return IMMEDIATE_DATA_CANNOT_RECOVER;
2655 } else {
Nicholas Bellingerba159912013-07-03 03:48:24 -07002656 iscsit_reject_cmd(cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002657 ISCSI_REASON_DATA_DIGEST_ERROR,
Nicholas Bellingerba159912013-07-03 03:48:24 -07002658 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002659 return IMMEDIATE_DATA_ERL1_CRC_FAILURE;
2660 }
2661 } else {
2662 pr_debug("Got CRC32C DataDigest 0x%08x for"
2663 " %u bytes of Immediate Data\n", checksum,
2664 length);
2665 }
2666 }
2667
2668 cmd->write_data_done += length;
2669
Andy Groverebf1d952012-04-03 15:51:24 -07002670 if (cmd->write_data_done == cmd->se_cmd.data_length) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002671 spin_lock_bh(&cmd->istate_lock);
2672 cmd->cmd_flags |= ICF_GOT_LAST_DATAOUT;
2673 cmd->i_state = ISTATE_RECEIVED_LAST_DATAOUT;
2674 spin_unlock_bh(&cmd->istate_lock);
2675 }
2676
2677 return IMMEDIATE_DATA_NORMAL_OPERATION;
2678}
2679
2680/*
2681 * Called with sess->conn_lock held.
2682 */
2683/* #warning iscsi_build_conn_drop_async_message() only sends out on connections
2684 with active network interface */
2685static void iscsit_build_conn_drop_async_message(struct iscsi_conn *conn)
2686{
2687 struct iscsi_cmd *cmd;
2688 struct iscsi_conn *conn_p;
Nicholas Bellingerd444edc2014-02-19 23:32:14 +00002689 bool found = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002690
2691 /*
2692 * Only send a Asynchronous Message on connections whos network
2693 * interface is still functional.
2694 */
2695 list_for_each_entry(conn_p, &conn->sess->sess_conn_list, conn_list) {
2696 if (conn_p->conn_state == TARG_CONN_STATE_LOGGED_IN) {
2697 iscsit_inc_conn_usage_count(conn_p);
Nicholas Bellingerd444edc2014-02-19 23:32:14 +00002698 found = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002699 break;
2700 }
2701 }
2702
Nicholas Bellingerd444edc2014-02-19 23:32:14 +00002703 if (!found)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002704 return;
2705
Nicholas Bellinger676687c2014-01-20 03:36:44 +00002706 cmd = iscsit_allocate_cmd(conn_p, TASK_RUNNING);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002707 if (!cmd) {
2708 iscsit_dec_conn_usage_count(conn_p);
2709 return;
2710 }
2711
2712 cmd->logout_cid = conn->cid;
2713 cmd->iscsi_opcode = ISCSI_OP_ASYNC_EVENT;
2714 cmd->i_state = ISTATE_SEND_ASYNCMSG;
2715
2716 spin_lock_bh(&conn_p->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07002717 list_add_tail(&cmd->i_conn_node, &conn_p->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002718 spin_unlock_bh(&conn_p->cmd_lock);
2719
2720 iscsit_add_cmd_to_response_queue(cmd, conn_p, cmd->i_state);
2721 iscsit_dec_conn_usage_count(conn_p);
2722}
2723
2724static int iscsit_send_conn_drop_async_message(
2725 struct iscsi_cmd *cmd,
2726 struct iscsi_conn *conn)
2727{
2728 struct iscsi_async *hdr;
2729
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002730 cmd->iscsi_opcode = ISCSI_OP_ASYNC_EVENT;
2731
2732 hdr = (struct iscsi_async *) cmd->pdu;
2733 hdr->opcode = ISCSI_OP_ASYNC_EVENT;
2734 hdr->flags = ISCSI_FLAG_CMD_FINAL;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04002735 cmd->init_task_tag = RESERVED_ITT;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002736 cmd->targ_xfer_tag = 0xFFFFFFFF;
2737 put_unaligned_be64(0xFFFFFFFFFFFFFFFFULL, &hdr->rsvd4[0]);
2738 cmd->stat_sn = conn->stat_sn++;
2739 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2740 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002741 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002742 hdr->async_event = ISCSI_ASYNC_MSG_DROPPING_CONNECTION;
2743 hdr->param1 = cpu_to_be16(cmd->logout_cid);
2744 hdr->param2 = cpu_to_be16(conn->sess->sess_ops->DefaultTime2Wait);
2745 hdr->param3 = cpu_to_be16(conn->sess->sess_ops->DefaultTime2Retain);
2746
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002747 pr_debug("Sending Connection Dropped Async Message StatSN:"
2748 " 0x%08x, for CID: %hu on CID: %hu\n", cmd->stat_sn,
2749 cmd->logout_cid, conn->cid);
Varun Prakash2854bb22016-04-20 00:00:08 +05302750
2751 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002752}
2753
Andy Grover6f3c0e62012-04-03 15:51:09 -07002754static void iscsit_tx_thread_wait_for_tcp(struct iscsi_conn *conn)
2755{
2756 if ((conn->sock->sk->sk_shutdown & SEND_SHUTDOWN) ||
2757 (conn->sock->sk->sk_shutdown & RCV_SHUTDOWN)) {
2758 wait_for_completion_interruptible_timeout(
2759 &conn->tx_half_close_comp,
2760 ISCSI_TX_THREAD_TCP_TIMEOUT * HZ);
2761 }
2762}
2763
Varun Prakashd2faaef2016-04-20 00:00:19 +05302764void
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002765iscsit_build_datain_pdu(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
2766 struct iscsi_datain *datain, struct iscsi_data_rsp *hdr,
2767 bool set_statsn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002768{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002769 hdr->opcode = ISCSI_OP_SCSI_DATA_IN;
2770 hdr->flags = datain->flags;
2771 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
2772 if (cmd->se_cmd.se_cmd_flags & SCF_OVERFLOW_BIT) {
2773 hdr->flags |= ISCSI_FLAG_DATA_OVERFLOW;
2774 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
2775 } else if (cmd->se_cmd.se_cmd_flags & SCF_UNDERFLOW_BIT) {
2776 hdr->flags |= ISCSI_FLAG_DATA_UNDERFLOW;
2777 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
2778 }
2779 }
2780 hton24(hdr->dlength, datain->length);
2781 if (hdr->flags & ISCSI_FLAG_DATA_ACK)
2782 int_to_scsilun(cmd->se_cmd.orig_fe_lun,
2783 (struct scsi_lun *)&hdr->lun);
2784 else
2785 put_unaligned_le64(0xFFFFFFFFFFFFFFFFULL, &hdr->lun);
2786
2787 hdr->itt = cmd->init_task_tag;
2788
2789 if (hdr->flags & ISCSI_FLAG_DATA_ACK)
2790 hdr->ttt = cpu_to_be32(cmd->targ_xfer_tag);
2791 else
2792 hdr->ttt = cpu_to_be32(0xFFFFFFFF);
2793 if (set_statsn)
2794 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2795 else
2796 hdr->statsn = cpu_to_be32(0xFFFFFFFF);
2797
2798 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002799 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002800 hdr->datasn = cpu_to_be32(datain->data_sn);
2801 hdr->offset = cpu_to_be32(datain->offset);
2802
2803 pr_debug("Built DataIN ITT: 0x%08x, StatSN: 0x%08x,"
2804 " DataSN: 0x%08x, Offset: %u, Length: %u, CID: %hu\n",
2805 cmd->init_task_tag, ntohl(hdr->statsn), ntohl(hdr->datasn),
2806 ntohl(hdr->offset), datain->length, conn->cid);
2807}
Varun Prakashd2faaef2016-04-20 00:00:19 +05302808EXPORT_SYMBOL(iscsit_build_datain_pdu);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002809
2810static int iscsit_send_datain(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2811{
2812 struct iscsi_data_rsp *hdr = (struct iscsi_data_rsp *)&cmd->pdu[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002813 struct iscsi_datain datain;
2814 struct iscsi_datain_req *dr;
Varun Prakash2854bb22016-04-20 00:00:08 +05302815 int eodr = 0, ret;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002816 bool set_statsn = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002817
2818 memset(&datain, 0, sizeof(struct iscsi_datain));
2819 dr = iscsit_get_datain_values(cmd, &datain);
2820 if (!dr) {
2821 pr_err("iscsit_get_datain_values failed for ITT: 0x%08x\n",
2822 cmd->init_task_tag);
2823 return -1;
2824 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002825 /*
2826 * Be paranoid and double check the logic for now.
2827 */
Andy Groverebf1d952012-04-03 15:51:24 -07002828 if ((datain.offset + datain.length) > cmd->se_cmd.data_length) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002829 pr_err("Command ITT: 0x%08x, datain.offset: %u and"
2830 " datain.length: %u exceeds cmd->data_length: %u\n",
2831 cmd->init_task_tag, datain.offset, datain.length,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002832 cmd->se_cmd.data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002833 return -1;
2834 }
2835
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08002836 atomic_long_add(datain.length, &conn->sess->tx_data_octets);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002837 /*
2838 * Special case for successfully execution w/ both DATAIN
2839 * and Sense Data.
2840 */
2841 if ((datain.flags & ISCSI_FLAG_DATA_STATUS) &&
2842 (cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE))
2843 datain.flags &= ~ISCSI_FLAG_DATA_STATUS;
2844 else {
2845 if ((dr->dr_complete == DATAIN_COMPLETE_NORMAL) ||
2846 (dr->dr_complete == DATAIN_COMPLETE_CONNECTION_RECOVERY)) {
2847 iscsit_increment_maxcmdsn(cmd, conn->sess);
2848 cmd->stat_sn = conn->stat_sn++;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002849 set_statsn = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002850 } else if (dr->dr_complete ==
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002851 DATAIN_COMPLETE_WITHIN_COMMAND_RECOVERY)
2852 set_statsn = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002853 }
2854
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002855 iscsit_build_datain_pdu(cmd, conn, &datain, hdr, set_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002856
Varun Prakash2854bb22016-04-20 00:00:08 +05302857 ret = conn->conn_transport->iscsit_xmit_pdu(conn, cmd, dr, &datain, 0);
2858 if (ret < 0)
Andy Grover6f3c0e62012-04-03 15:51:09 -07002859 return ret;
Andy Grover6f3c0e62012-04-03 15:51:09 -07002860
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002861 if (dr->dr_complete) {
Andy Grover6f3c0e62012-04-03 15:51:09 -07002862 eodr = (cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ?
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002863 2 : 1;
2864 iscsit_free_datain_req(cmd, dr);
2865 }
2866
Andy Grover6f3c0e62012-04-03 15:51:09 -07002867 return eodr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002868}
2869
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002870int
2871iscsit_build_logout_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
2872 struct iscsi_logout_rsp *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002873{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002874 struct iscsi_conn *logout_conn = NULL;
2875 struct iscsi_conn_recovery *cr = NULL;
2876 struct iscsi_session *sess = conn->sess;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002877 /*
2878 * The actual shutting down of Sessions and/or Connections
2879 * for CLOSESESSION and CLOSECONNECTION Logout Requests
2880 * is done in scsi_logout_post_handler().
2881 */
2882 switch (cmd->logout_reason) {
2883 case ISCSI_LOGOUT_REASON_CLOSE_SESSION:
2884 pr_debug("iSCSI session logout successful, setting"
2885 " logout response to ISCSI_LOGOUT_SUCCESS.\n");
2886 cmd->logout_response = ISCSI_LOGOUT_SUCCESS;
2887 break;
2888 case ISCSI_LOGOUT_REASON_CLOSE_CONNECTION:
2889 if (cmd->logout_response == ISCSI_LOGOUT_CID_NOT_FOUND)
2890 break;
2891 /*
2892 * For CLOSECONNECTION logout requests carrying
2893 * a matching logout CID -> local CID, the reference
2894 * for the local CID will have been incremented in
2895 * iscsi_logout_closeconnection().
2896 *
2897 * For CLOSECONNECTION logout requests carrying
2898 * a different CID than the connection it arrived
2899 * on, the connection responding to cmd->logout_cid
2900 * is stopped in iscsit_logout_post_handler_diffcid().
2901 */
2902
2903 pr_debug("iSCSI CID: %hu logout on CID: %hu"
2904 " successful.\n", cmd->logout_cid, conn->cid);
2905 cmd->logout_response = ISCSI_LOGOUT_SUCCESS;
2906 break;
2907 case ISCSI_LOGOUT_REASON_RECOVERY:
2908 if ((cmd->logout_response == ISCSI_LOGOUT_RECOVERY_UNSUPPORTED) ||
2909 (cmd->logout_response == ISCSI_LOGOUT_CLEANUP_FAILED))
2910 break;
2911 /*
2912 * If the connection is still active from our point of view
2913 * force connection recovery to occur.
2914 */
2915 logout_conn = iscsit_get_conn_from_cid_rcfr(sess,
2916 cmd->logout_cid);
Andy Groveree1b1b92012-07-12 17:34:54 -07002917 if (logout_conn) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002918 iscsit_connection_reinstatement_rcfr(logout_conn);
2919 iscsit_dec_conn_usage_count(logout_conn);
2920 }
2921
2922 cr = iscsit_get_inactive_connection_recovery_entry(
2923 conn->sess, cmd->logout_cid);
2924 if (!cr) {
2925 pr_err("Unable to locate CID: %hu for"
2926 " REMOVECONNFORRECOVERY Logout Request.\n",
2927 cmd->logout_cid);
2928 cmd->logout_response = ISCSI_LOGOUT_CID_NOT_FOUND;
2929 break;
2930 }
2931
2932 iscsit_discard_cr_cmds_by_expstatsn(cr, cmd->exp_stat_sn);
2933
2934 pr_debug("iSCSI REMOVECONNFORRECOVERY logout"
2935 " for recovery for CID: %hu on CID: %hu successful.\n",
2936 cmd->logout_cid, conn->cid);
2937 cmd->logout_response = ISCSI_LOGOUT_SUCCESS;
2938 break;
2939 default:
2940 pr_err("Unknown cmd->logout_reason: 0x%02x\n",
2941 cmd->logout_reason);
2942 return -1;
2943 }
2944
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002945 hdr->opcode = ISCSI_OP_LOGOUT_RSP;
2946 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2947 hdr->response = cmd->logout_response;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04002948 hdr->itt = cmd->init_task_tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002949 cmd->stat_sn = conn->stat_sn++;
2950 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2951
2952 iscsit_increment_maxcmdsn(cmd, conn->sess);
2953 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002954 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002955
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002956 pr_debug("Built Logout Response ITT: 0x%08x StatSN:"
2957 " 0x%08x Response: 0x%02x CID: %hu on CID: %hu\n",
2958 cmd->init_task_tag, cmd->stat_sn, hdr->response,
2959 cmd->logout_cid, conn->cid);
2960
2961 return 0;
2962}
2963EXPORT_SYMBOL(iscsit_build_logout_rsp);
2964
2965static int
2966iscsit_send_logout(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2967{
Varun Prakash2854bb22016-04-20 00:00:08 +05302968 int rc;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002969
2970 rc = iscsit_build_logout_rsp(cmd, conn,
2971 (struct iscsi_logout_rsp *)&cmd->pdu[0]);
2972 if (rc < 0)
2973 return rc;
2974
Varun Prakash2854bb22016-04-20 00:00:08 +05302975 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002976}
2977
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002978void
2979iscsit_build_nopin_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
2980 struct iscsi_nopin *hdr, bool nopout_response)
2981{
2982 hdr->opcode = ISCSI_OP_NOOP_IN;
2983 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2984 hton24(hdr->dlength, cmd->buf_ptr_size);
2985 if (nopout_response)
2986 put_unaligned_le64(0xFFFFFFFFFFFFFFFFULL, &hdr->lun);
2987 hdr->itt = cmd->init_task_tag;
2988 hdr->ttt = cpu_to_be32(cmd->targ_xfer_tag);
2989 cmd->stat_sn = (nopout_response) ? conn->stat_sn++ :
2990 conn->stat_sn;
2991 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2992
2993 if (nopout_response)
2994 iscsit_increment_maxcmdsn(cmd, conn->sess);
2995
2996 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002997 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002998
2999 pr_debug("Built NOPIN %s Response ITT: 0x%08x, TTT: 0x%08x,"
3000 " StatSN: 0x%08x, Length %u\n", (nopout_response) ?
Colin Ian King3fc6a642016-09-02 15:30:34 +01003001 "Solicited" : "Unsolicited", cmd->init_task_tag,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003002 cmd->targ_xfer_tag, cmd->stat_sn, cmd->buf_ptr_size);
3003}
3004EXPORT_SYMBOL(iscsit_build_nopin_rsp);
3005
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003006/*
3007 * Unsolicited NOPIN, either requesting a response or not.
3008 */
3009static int iscsit_send_unsolicited_nopin(
3010 struct iscsi_cmd *cmd,
3011 struct iscsi_conn *conn,
3012 int want_response)
3013{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003014 struct iscsi_nopin *hdr = (struct iscsi_nopin *)&cmd->pdu[0];
Varun Prakash2854bb22016-04-20 00:00:08 +05303015 int ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003016
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003017 iscsit_build_nopin_rsp(cmd, conn, hdr, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003018
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003019 pr_debug("Sending Unsolicited NOPIN TTT: 0x%08x StatSN:"
3020 " 0x%08x CID: %hu\n", hdr->ttt, cmd->stat_sn, conn->cid);
3021
Varun Prakash2854bb22016-04-20 00:00:08 +05303022 ret = conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
3023 if (ret < 0)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003024 return ret;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003025
3026 spin_lock_bh(&cmd->istate_lock);
3027 cmd->i_state = want_response ?
3028 ISTATE_SENT_NOPIN_WANT_RESPONSE : ISTATE_SENT_STATUS;
3029 spin_unlock_bh(&cmd->istate_lock);
3030
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003031 return 0;
3032}
3033
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003034static int
3035iscsit_send_nopin(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003036{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003037 struct iscsi_nopin *hdr = (struct iscsi_nopin *)&cmd->pdu[0];
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003038
3039 iscsit_build_nopin_rsp(cmd, conn, hdr, true);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003040
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003041 /*
3042 * NOPOUT Ping Data is attached to struct iscsi_cmd->buf_ptr.
3043 * NOPOUT DataSegmentLength is at struct iscsi_cmd->buf_ptr_size.
3044 */
Varun Prakash2854bb22016-04-20 00:00:08 +05303045 pr_debug("Echoing back %u bytes of ping data.\n", cmd->buf_ptr_size);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003046
Varun Prakash2854bb22016-04-20 00:00:08 +05303047 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL,
3048 cmd->buf_ptr,
3049 cmd->buf_ptr_size);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003050}
3051
Andy Grover6f3c0e62012-04-03 15:51:09 -07003052static int iscsit_send_r2t(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003053 struct iscsi_cmd *cmd,
3054 struct iscsi_conn *conn)
3055{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003056 struct iscsi_r2t *r2t;
3057 struct iscsi_r2t_rsp *hdr;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003058 int ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003059
3060 r2t = iscsit_get_r2t_from_list(cmd);
3061 if (!r2t)
3062 return -1;
3063
3064 hdr = (struct iscsi_r2t_rsp *) cmd->pdu;
3065 memset(hdr, 0, ISCSI_HDR_LEN);
3066 hdr->opcode = ISCSI_OP_R2T;
3067 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3068 int_to_scsilun(cmd->se_cmd.orig_fe_lun,
3069 (struct scsi_lun *)&hdr->lun);
Christoph Hellwig66c7db62012-09-26 08:00:39 -04003070 hdr->itt = cmd->init_task_tag;
Varun Prakash85672702016-04-20 00:00:13 +05303071 if (conn->conn_transport->iscsit_get_r2t_ttt)
3072 conn->conn_transport->iscsit_get_r2t_ttt(conn, cmd, r2t);
3073 else
3074 r2t->targ_xfer_tag = session_get_next_ttt(conn->sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003075 hdr->ttt = cpu_to_be32(r2t->targ_xfer_tag);
3076 hdr->statsn = cpu_to_be32(conn->stat_sn);
3077 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003078 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003079 hdr->r2tsn = cpu_to_be32(r2t->r2t_sn);
3080 hdr->data_offset = cpu_to_be32(r2t->offset);
3081 hdr->data_length = cpu_to_be32(r2t->xfer_len);
3082
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003083 pr_debug("Built %sR2T, ITT: 0x%08x, TTT: 0x%08x, StatSN:"
3084 " 0x%08x, R2TSN: 0x%08x, Offset: %u, DDTL: %u, CID: %hu\n",
3085 (!r2t->recovery_r2t) ? "" : "Recovery ", cmd->init_task_tag,
3086 r2t->targ_xfer_tag, ntohl(hdr->statsn), r2t->r2t_sn,
3087 r2t->offset, r2t->xfer_len, conn->cid);
3088
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003089 spin_lock_bh(&cmd->r2t_lock);
3090 r2t->sent_r2t = 1;
3091 spin_unlock_bh(&cmd->r2t_lock);
3092
Varun Prakash2854bb22016-04-20 00:00:08 +05303093 ret = conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Andy Grover6f3c0e62012-04-03 15:51:09 -07003094 if (ret < 0) {
Andy Grover6f3c0e62012-04-03 15:51:09 -07003095 return ret;
3096 }
3097
3098 spin_lock_bh(&cmd->dataout_timeout_lock);
3099 iscsit_start_dataout_timer(cmd, conn);
3100 spin_unlock_bh(&cmd->dataout_timeout_lock);
3101
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003102 return 0;
3103}
3104
3105/*
Andy Grover8b1e1242012-04-03 15:51:12 -07003106 * @recovery: If called from iscsi_task_reassign_complete_write() for
3107 * connection recovery.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003108 */
3109int iscsit_build_r2ts_for_cmd(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003110 struct iscsi_conn *conn,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003111 struct iscsi_cmd *cmd,
Andy Grover8b1e1242012-04-03 15:51:12 -07003112 bool recovery)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003113{
3114 int first_r2t = 1;
3115 u32 offset = 0, xfer_len = 0;
3116
3117 spin_lock_bh(&cmd->r2t_lock);
3118 if (cmd->cmd_flags & ICF_SENT_LAST_R2T) {
3119 spin_unlock_bh(&cmd->r2t_lock);
3120 return 0;
3121 }
3122
Andy Grover8b1e1242012-04-03 15:51:12 -07003123 if (conn->sess->sess_ops->DataSequenceInOrder &&
3124 !recovery)
Andy Groverc6037cc2012-04-03 15:51:02 -07003125 cmd->r2t_offset = max(cmd->r2t_offset, cmd->write_data_done);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003126
3127 while (cmd->outstanding_r2ts < conn->sess->sess_ops->MaxOutstandingR2T) {
3128 if (conn->sess->sess_ops->DataSequenceInOrder) {
3129 offset = cmd->r2t_offset;
3130
Andy Grover8b1e1242012-04-03 15:51:12 -07003131 if (first_r2t && recovery) {
3132 int new_data_end = offset +
3133 conn->sess->sess_ops->MaxBurstLength -
3134 cmd->next_burst_len;
3135
Andy Groverebf1d952012-04-03 15:51:24 -07003136 if (new_data_end > cmd->se_cmd.data_length)
3137 xfer_len = cmd->se_cmd.data_length - offset;
Andy Grover8b1e1242012-04-03 15:51:12 -07003138 else
3139 xfer_len =
3140 conn->sess->sess_ops->MaxBurstLength -
3141 cmd->next_burst_len;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003142 } else {
Andy Grover8b1e1242012-04-03 15:51:12 -07003143 int new_data_end = offset +
3144 conn->sess->sess_ops->MaxBurstLength;
3145
Andy Groverebf1d952012-04-03 15:51:24 -07003146 if (new_data_end > cmd->se_cmd.data_length)
3147 xfer_len = cmd->se_cmd.data_length - offset;
Andy Grover8b1e1242012-04-03 15:51:12 -07003148 else
3149 xfer_len = conn->sess->sess_ops->MaxBurstLength;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003150 }
3151 cmd->r2t_offset += xfer_len;
3152
Andy Groverebf1d952012-04-03 15:51:24 -07003153 if (cmd->r2t_offset == cmd->se_cmd.data_length)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003154 cmd->cmd_flags |= ICF_SENT_LAST_R2T;
3155 } else {
3156 struct iscsi_seq *seq;
3157
3158 seq = iscsit_get_seq_holder_for_r2t(cmd);
3159 if (!seq) {
3160 spin_unlock_bh(&cmd->r2t_lock);
3161 return -1;
3162 }
3163
3164 offset = seq->offset;
3165 xfer_len = seq->xfer_len;
3166
3167 if (cmd->seq_send_order == cmd->seq_count)
3168 cmd->cmd_flags |= ICF_SENT_LAST_R2T;
3169 }
3170 cmd->outstanding_r2ts++;
3171 first_r2t = 0;
3172
3173 if (iscsit_add_r2t_to_list(cmd, offset, xfer_len, 0, 0) < 0) {
3174 spin_unlock_bh(&cmd->r2t_lock);
3175 return -1;
3176 }
3177
3178 if (cmd->cmd_flags & ICF_SENT_LAST_R2T)
3179 break;
3180 }
3181 spin_unlock_bh(&cmd->r2t_lock);
3182
3183 return 0;
3184}
Varun Prakashd2faaef2016-04-20 00:00:19 +05303185EXPORT_SYMBOL(iscsit_build_r2ts_for_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003186
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003187void iscsit_build_rsp_pdu(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
3188 bool inc_stat_sn, struct iscsi_scsi_rsp *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003189{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003190 if (inc_stat_sn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003191 cmd->stat_sn = conn->stat_sn++;
3192
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08003193 atomic_long_inc(&conn->sess->rsp_pdus);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003194
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003195 memset(hdr, 0, ISCSI_HDR_LEN);
3196 hdr->opcode = ISCSI_OP_SCSI_CMD_RSP;
3197 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3198 if (cmd->se_cmd.se_cmd_flags & SCF_OVERFLOW_BIT) {
3199 hdr->flags |= ISCSI_FLAG_CMD_OVERFLOW;
Nicholas Bellinger7e46cf02011-11-15 23:59:00 -08003200 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003201 } else if (cmd->se_cmd.se_cmd_flags & SCF_UNDERFLOW_BIT) {
3202 hdr->flags |= ISCSI_FLAG_CMD_UNDERFLOW;
Nicholas Bellinger7e46cf02011-11-15 23:59:00 -08003203 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003204 }
3205 hdr->response = cmd->iscsi_response;
3206 hdr->cmd_status = cmd->se_cmd.scsi_status;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04003207 hdr->itt = cmd->init_task_tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003208 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3209
3210 iscsit_increment_maxcmdsn(cmd, conn->sess);
3211 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003212 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003213
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003214 pr_debug("Built SCSI Response, ITT: 0x%08x, StatSN: 0x%08x,"
3215 " Response: 0x%02x, SAM Status: 0x%02x, CID: %hu\n",
3216 cmd->init_task_tag, cmd->stat_sn, cmd->se_cmd.scsi_status,
3217 cmd->se_cmd.scsi_status, conn->cid);
3218}
3219EXPORT_SYMBOL(iscsit_build_rsp_pdu);
3220
3221static int iscsit_send_response(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
3222{
3223 struct iscsi_scsi_rsp *hdr = (struct iscsi_scsi_rsp *)&cmd->pdu[0];
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003224 bool inc_stat_sn = (cmd->i_state == ISTATE_SEND_STATUS);
Varun Prakash2854bb22016-04-20 00:00:08 +05303225 void *data_buf = NULL;
3226 u32 padding = 0, data_buf_len = 0;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003227
3228 iscsit_build_rsp_pdu(cmd, conn, inc_stat_sn, hdr);
3229
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003230 /*
3231 * Attach SENSE DATA payload to iSCSI Response PDU
3232 */
3233 if (cmd->se_cmd.sense_buffer &&
3234 ((cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
3235 (cmd->se_cmd.se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003236 put_unaligned_be16(cmd->se_cmd.scsi_sense_length, cmd->sense_buffer);
3237 cmd->se_cmd.scsi_sense_length += sizeof (__be16);
3238
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003239 padding = -(cmd->se_cmd.scsi_sense_length) & 3;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04003240 hton24(hdr->dlength, (u32)cmd->se_cmd.scsi_sense_length);
Varun Prakash2854bb22016-04-20 00:00:08 +05303241 data_buf = cmd->sense_buffer;
3242 data_buf_len = cmd->se_cmd.scsi_sense_length + padding;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003243
3244 if (padding) {
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003245 memset(cmd->sense_buffer +
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003246 cmd->se_cmd.scsi_sense_length, 0, padding);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003247 pr_debug("Adding %u bytes of padding to"
3248 " SENSE.\n", padding);
3249 }
3250
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003251 pr_debug("Attaching SENSE DATA: %u bytes to iSCSI"
3252 " Response PDU\n",
3253 cmd->se_cmd.scsi_sense_length);
3254 }
3255
Varun Prakash2854bb22016-04-20 00:00:08 +05303256 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, data_buf,
3257 data_buf_len);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003258}
3259
3260static u8 iscsit_convert_tcm_tmr_rsp(struct se_tmr_req *se_tmr)
3261{
3262 switch (se_tmr->response) {
3263 case TMR_FUNCTION_COMPLETE:
3264 return ISCSI_TMF_RSP_COMPLETE;
3265 case TMR_TASK_DOES_NOT_EXIST:
3266 return ISCSI_TMF_RSP_NO_TASK;
3267 case TMR_LUN_DOES_NOT_EXIST:
3268 return ISCSI_TMF_RSP_NO_LUN;
3269 case TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED:
3270 return ISCSI_TMF_RSP_NOT_SUPPORTED;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003271 case TMR_FUNCTION_REJECTED:
3272 default:
3273 return ISCSI_TMF_RSP_REJECTED;
3274 }
3275}
3276
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003277void
3278iscsit_build_task_mgt_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
3279 struct iscsi_tm_rsp *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003280{
3281 struct se_tmr_req *se_tmr = cmd->se_cmd.se_tmr_req;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003282
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003283 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP;
Nicholas Bellinger7ae0b102011-11-27 22:25:14 -08003284 hdr->flags = ISCSI_FLAG_CMD_FINAL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003285 hdr->response = iscsit_convert_tcm_tmr_rsp(se_tmr);
Christoph Hellwig66c7db62012-09-26 08:00:39 -04003286 hdr->itt = cmd->init_task_tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003287 cmd->stat_sn = conn->stat_sn++;
3288 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3289
3290 iscsit_increment_maxcmdsn(cmd, conn->sess);
3291 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003292 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003293
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003294 pr_debug("Built Task Management Response ITT: 0x%08x,"
3295 " StatSN: 0x%08x, Response: 0x%02x, CID: %hu\n",
3296 cmd->init_task_tag, cmd->stat_sn, hdr->response, conn->cid);
3297}
3298EXPORT_SYMBOL(iscsit_build_task_mgt_rsp);
3299
3300static int
3301iscsit_send_task_mgt_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
3302{
3303 struct iscsi_tm_rsp *hdr = (struct iscsi_tm_rsp *)&cmd->pdu[0];
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003304
3305 iscsit_build_task_mgt_rsp(cmd, conn, hdr);
3306
Varun Prakash2854bb22016-04-20 00:00:08 +05303307 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003308}
3309
Nicholas Bellinger2f9bc892012-01-16 23:33:48 -08003310static bool iscsit_check_inaddr_any(struct iscsi_np *np)
3311{
3312 bool ret = false;
3313
3314 if (np->np_sockaddr.ss_family == AF_INET6) {
3315 const struct sockaddr_in6 sin6 = {
3316 .sin6_addr = IN6ADDR_ANY_INIT };
3317 struct sockaddr_in6 *sock_in6 =
3318 (struct sockaddr_in6 *)&np->np_sockaddr;
3319
3320 if (!memcmp(sock_in6->sin6_addr.s6_addr,
3321 sin6.sin6_addr.s6_addr, 16))
3322 ret = true;
3323 } else {
3324 struct sockaddr_in * sock_in =
3325 (struct sockaddr_in *)&np->np_sockaddr;
3326
Christoph Hellwigcea0b4c2012-09-26 08:00:38 -04003327 if (sock_in->sin_addr.s_addr == htonl(INADDR_ANY))
Nicholas Bellinger2f9bc892012-01-16 23:33:48 -08003328 ret = true;
3329 }
3330
3331 return ret;
3332}
3333
Andy Grover8b1e1242012-04-03 15:51:12 -07003334#define SENDTARGETS_BUF_LIMIT 32768U
3335
Sagi Grimberg22c7aaa2014-06-10 18:27:59 +03003336static int
3337iscsit_build_sendtargets_response(struct iscsi_cmd *cmd,
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003338 enum iscsit_transport_type network_transport,
3339 int skip_bytes, bool *completed)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003340{
3341 char *payload = NULL;
3342 struct iscsi_conn *conn = cmd->conn;
3343 struct iscsi_portal_group *tpg;
3344 struct iscsi_tiqn *tiqn;
3345 struct iscsi_tpg_np *tpg_np;
3346 int buffer_len, end_of_buf = 0, len = 0, payload_len = 0;
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003347 int target_name_printed;
Andy Grover8b1e1242012-04-03 15:51:12 -07003348 unsigned char buf[ISCSI_IQN_LEN+12]; /* iqn + "TargetName=" + \0 */
Nicholas Bellinger66658892013-06-19 22:45:42 -07003349 unsigned char *text_in = cmd->text_in_ptr, *text_ptr = NULL;
David Disseldorpa6415cd2015-08-01 00:10:12 -07003350 bool active;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003351
Sagi Grimbergbe7dcfb62015-01-26 12:49:06 +02003352 buffer_len = min(conn->conn_ops->MaxRecvDataSegmentLength,
Andy Grover8b1e1242012-04-03 15:51:12 -07003353 SENDTARGETS_BUF_LIMIT);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003354
3355 payload = kzalloc(buffer_len, GFP_KERNEL);
3356 if (!payload) {
3357 pr_err("Unable to allocate memory for sendtargets"
3358 " response.\n");
3359 return -ENOMEM;
3360 }
Nicholas Bellinger66658892013-06-19 22:45:42 -07003361 /*
Andy Grover8060b8d2015-01-09 15:13:08 -08003362 * Locate pointer to iqn./eui. string for ICF_SENDTARGETS_SINGLE
Nicholas Bellinger66658892013-06-19 22:45:42 -07003363 * explicit case..
3364 */
Andy Grover8060b8d2015-01-09 15:13:08 -08003365 if (cmd->cmd_flags & ICF_SENDTARGETS_SINGLE) {
Nicholas Bellinger66658892013-06-19 22:45:42 -07003366 text_ptr = strchr(text_in, '=');
3367 if (!text_ptr) {
3368 pr_err("Unable to locate '=' string in text_in:"
3369 " %s\n", text_in);
Dan Carpenter4f45d322013-06-24 18:46:57 +03003370 kfree(payload);
Nicholas Bellinger66658892013-06-19 22:45:42 -07003371 return -EINVAL;
3372 }
3373 /*
3374 * Skip over '=' character..
3375 */
3376 text_ptr += 1;
3377 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003378
3379 spin_lock(&tiqn_lock);
3380 list_for_each_entry(tiqn, &g_tiqn_list, tiqn_list) {
Andy Grover8060b8d2015-01-09 15:13:08 -08003381 if ((cmd->cmd_flags & ICF_SENDTARGETS_SINGLE) &&
Nicholas Bellinger66658892013-06-19 22:45:42 -07003382 strcmp(tiqn->tiqn, text_ptr)) {
3383 continue;
3384 }
3385
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003386 target_name_printed = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003387
3388 spin_lock(&tiqn->tiqn_tpg_lock);
3389 list_for_each_entry(tpg, &tiqn->tiqn_tpg_list, tpg_list) {
3390
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003391 /* If demo_mode_discovery=0 and generate_node_acls=0
3392 * (demo mode dislabed) do not return
3393 * TargetName+TargetAddress unless a NodeACL exists.
3394 */
3395
3396 if ((tpg->tpg_attrib.generate_node_acls == 0) &&
3397 (tpg->tpg_attrib.demo_mode_discovery == 0) &&
Nicholas Bellinger21aaa232016-01-07 22:09:27 -08003398 (!target_tpg_has_node_acl(&tpg->tpg_se_tpg,
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003399 cmd->conn->sess->sess_ops->InitiatorName))) {
3400 continue;
3401 }
3402
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003403 spin_lock(&tpg->tpg_state_lock);
David Disseldorpa6415cd2015-08-01 00:10:12 -07003404 active = (tpg->tpg_state == TPG_STATE_ACTIVE);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003405 spin_unlock(&tpg->tpg_state_lock);
3406
David Disseldorpa6415cd2015-08-01 00:10:12 -07003407 if (!active && tpg->tpg_attrib.tpg_enabled_sendtargets)
3408 continue;
3409
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003410 spin_lock(&tpg->tpg_np_lock);
3411 list_for_each_entry(tpg_np, &tpg->tpg_gnp_list,
3412 tpg_np_list) {
Nicholas Bellinger2f9bc892012-01-16 23:33:48 -08003413 struct iscsi_np *np = tpg_np->tpg_np;
3414 bool inaddr_any = iscsit_check_inaddr_any(np);
Andy Grover13a3cf02015-08-24 10:26:06 -07003415 struct sockaddr_storage *sockaddr;
Nicholas Bellinger2f9bc892012-01-16 23:33:48 -08003416
Sagi Grimberg22c7aaa2014-06-10 18:27:59 +03003417 if (np->np_network_transport != network_transport)
3418 continue;
3419
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003420 if (!target_name_printed) {
3421 len = sprintf(buf, "TargetName=%s",
3422 tiqn->tiqn);
3423 len += 1;
3424
3425 if ((len + payload_len) > buffer_len) {
3426 spin_unlock(&tpg->tpg_np_lock);
3427 spin_unlock(&tiqn->tiqn_tpg_lock);
3428 end_of_buf = 1;
3429 goto eob;
3430 }
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003431
3432 if (skip_bytes && len <= skip_bytes) {
3433 skip_bytes -= len;
3434 } else {
3435 memcpy(payload + payload_len, buf, len);
3436 payload_len += len;
3437 target_name_printed = 1;
3438 if (len > skip_bytes)
3439 skip_bytes = 0;
3440 }
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003441 }
3442
Andy Grover69d75572015-08-24 10:26:04 -07003443 if (inaddr_any)
3444 sockaddr = &conn->local_sockaddr;
Andy Grover1997e622015-03-31 10:43:18 -07003445 else
Andy Grover69d75572015-08-24 10:26:04 -07003446 sockaddr = &np->np_sockaddr;
Andy Grover1997e622015-03-31 10:43:18 -07003447
Andy Grover69d75572015-08-24 10:26:04 -07003448 len = sprintf(buf, "TargetAddress="
3449 "%pISpc,%hu",
3450 sockaddr,
3451 tpg->tpgt);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003452 len += 1;
3453
3454 if ((len + payload_len) > buffer_len) {
3455 spin_unlock(&tpg->tpg_np_lock);
3456 spin_unlock(&tiqn->tiqn_tpg_lock);
3457 end_of_buf = 1;
3458 goto eob;
3459 }
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003460
3461 if (skip_bytes && len <= skip_bytes) {
3462 skip_bytes -= len;
3463 } else {
3464 memcpy(payload + payload_len, buf, len);
3465 payload_len += len;
3466 if (len > skip_bytes)
3467 skip_bytes = 0;
3468 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003469 }
3470 spin_unlock(&tpg->tpg_np_lock);
3471 }
3472 spin_unlock(&tiqn->tiqn_tpg_lock);
3473eob:
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003474 if (end_of_buf) {
3475 *completed = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003476 break;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003477 }
Nicholas Bellinger66658892013-06-19 22:45:42 -07003478
Andy Grover8060b8d2015-01-09 15:13:08 -08003479 if (cmd->cmd_flags & ICF_SENDTARGETS_SINGLE)
Nicholas Bellinger66658892013-06-19 22:45:42 -07003480 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003481 }
3482 spin_unlock(&tiqn_lock);
3483
3484 cmd->buf_ptr = payload;
3485
3486 return payload_len;
3487}
3488
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003489int
3490iscsit_build_text_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
Sagi Grimberg22c7aaa2014-06-10 18:27:59 +03003491 struct iscsi_text_rsp *hdr,
3492 enum iscsit_transport_type network_transport)
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003493{
3494 int text_length, padding;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003495 bool completed = true;
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003496
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003497 text_length = iscsit_build_sendtargets_response(cmd, network_transport,
3498 cmd->read_data_done,
3499 &completed);
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003500 if (text_length < 0)
3501 return text_length;
3502
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003503 if (completed) {
3504 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3505 } else {
3506 hdr->flags |= ISCSI_FLAG_TEXT_CONTINUE;
3507 cmd->read_data_done += text_length;
3508 if (cmd->targ_xfer_tag == 0xFFFFFFFF)
3509 cmd->targ_xfer_tag = session_get_next_ttt(conn->sess);
3510 }
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003511 hdr->opcode = ISCSI_OP_TEXT_RSP;
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003512 padding = ((-text_length) & 3);
3513 hton24(hdr->dlength, text_length);
3514 hdr->itt = cmd->init_task_tag;
3515 hdr->ttt = cpu_to_be32(cmd->targ_xfer_tag);
3516 cmd->stat_sn = conn->stat_sn++;
3517 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3518
3519 iscsit_increment_maxcmdsn(cmd, conn->sess);
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003520 /*
3521 * Reset maxcmdsn_inc in multi-part text payload exchanges to
3522 * correctly increment MaxCmdSN for each response answering a
3523 * non immediate text request with a valid CmdSN.
3524 */
3525 cmd->maxcmdsn_inc = 0;
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003526 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003527 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003528
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003529 pr_debug("Built Text Response: ITT: 0x%08x, TTT: 0x%08x, StatSN: 0x%08x,"
3530 " Length: %u, CID: %hu F: %d C: %d\n", cmd->init_task_tag,
3531 cmd->targ_xfer_tag, cmd->stat_sn, text_length, conn->cid,
3532 !!(hdr->flags & ISCSI_FLAG_CMD_FINAL),
3533 !!(hdr->flags & ISCSI_FLAG_TEXT_CONTINUE));
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003534
3535 return text_length + padding;
3536}
3537EXPORT_SYMBOL(iscsit_build_text_rsp);
3538
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003539static int iscsit_send_text_rsp(
3540 struct iscsi_cmd *cmd,
3541 struct iscsi_conn *conn)
3542{
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003543 struct iscsi_text_rsp *hdr = (struct iscsi_text_rsp *)cmd->pdu;
Varun Prakash2854bb22016-04-20 00:00:08 +05303544 int text_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003545
Varun Prakash864e5042016-04-20 00:00:15 +05303546 text_length = iscsit_build_text_rsp(cmd, conn, hdr,
3547 conn->conn_transport->transport_type);
Varun Prakash2854bb22016-04-20 00:00:08 +05303548 if (text_length < 0)
3549 return text_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003550
Varun Prakash2854bb22016-04-20 00:00:08 +05303551 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL,
3552 cmd->buf_ptr,
3553 text_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003554}
3555
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003556void
3557iscsit_build_reject(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
3558 struct iscsi_reject *hdr)
3559{
3560 hdr->opcode = ISCSI_OP_REJECT;
Nicholas Bellingerba159912013-07-03 03:48:24 -07003561 hdr->reason = cmd->reject_reason;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003562 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3563 hton24(hdr->dlength, ISCSI_HDR_LEN);
3564 hdr->ffffffff = cpu_to_be32(0xffffffff);
3565 cmd->stat_sn = conn->stat_sn++;
3566 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3567 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003568 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003569
3570}
3571EXPORT_SYMBOL(iscsit_build_reject);
3572
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003573static int iscsit_send_reject(
3574 struct iscsi_cmd *cmd,
3575 struct iscsi_conn *conn)
3576{
Nicholas Bellingerbfbdb312013-05-03 16:46:41 -07003577 struct iscsi_reject *hdr = (struct iscsi_reject *)&cmd->pdu[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003578
Nicholas Bellingerbfbdb312013-05-03 16:46:41 -07003579 iscsit_build_reject(cmd, conn, hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003580
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003581 pr_debug("Built Reject PDU StatSN: 0x%08x, Reason: 0x%02x,"
3582 " CID: %hu\n", ntohl(hdr->statsn), hdr->reason, conn->cid);
3583
Varun Prakash2854bb22016-04-20 00:00:08 +05303584 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL,
3585 cmd->buf_ptr,
3586 ISCSI_HDR_LEN);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003587}
3588
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003589void iscsit_thread_get_cpumask(struct iscsi_conn *conn)
3590{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003591 int ord, cpu;
3592 /*
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003593 * bitmap_id is assigned from iscsit_global->ts_bitmap from
3594 * within iscsit_start_kthreads()
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003595 *
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003596 * Here we use bitmap_id to determine which CPU that this
3597 * iSCSI connection's RX/TX threads will be scheduled to
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003598 * execute upon.
3599 */
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003600 ord = conn->bitmap_id % cpumask_weight(cpu_online_mask);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003601 for_each_online_cpu(cpu) {
3602 if (ord-- == 0) {
3603 cpumask_set_cpu(cpu, conn->conn_cpumask);
3604 return;
3605 }
3606 }
3607 /*
3608 * This should never be reached..
3609 */
3610 dump_stack();
3611 cpumask_setall(conn->conn_cpumask);
3612}
3613
Varun Prakashd2faaef2016-04-20 00:00:19 +05303614int
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003615iscsit_immediate_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003616{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003617 int ret;
3618
3619 switch (state) {
3620 case ISTATE_SEND_R2T:
3621 ret = iscsit_send_r2t(cmd, conn);
3622 if (ret < 0)
3623 goto err;
3624 break;
3625 case ISTATE_REMOVE:
3626 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellinger5159d762014-02-03 12:53:51 -08003627 list_del_init(&cmd->i_conn_node);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003628 spin_unlock_bh(&conn->cmd_lock);
3629
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -07003630 iscsit_free_cmd(cmd, false);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003631 break;
3632 case ISTATE_SEND_NOPIN_WANT_RESPONSE:
3633 iscsit_mod_nopin_response_timer(conn);
3634 ret = iscsit_send_unsolicited_nopin(cmd, conn, 1);
3635 if (ret < 0)
3636 goto err;
3637 break;
3638 case ISTATE_SEND_NOPIN_NO_RESPONSE:
3639 ret = iscsit_send_unsolicited_nopin(cmd, conn, 0);
3640 if (ret < 0)
3641 goto err;
3642 break;
3643 default:
3644 pr_err("Unknown Opcode: 0x%02x ITT:"
3645 " 0x%08x, i_state: %d on CID: %hu\n",
3646 cmd->iscsi_opcode, cmd->init_task_tag, state,
3647 conn->cid);
3648 goto err;
3649 }
3650
3651 return 0;
3652
3653err:
3654 return -1;
3655}
Varun Prakashd2faaef2016-04-20 00:00:19 +05303656EXPORT_SYMBOL(iscsit_immediate_queue);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003657
3658static int
3659iscsit_handle_immediate_queue(struct iscsi_conn *conn)
3660{
3661 struct iscsit_transport *t = conn->conn_transport;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003662 struct iscsi_queue_req *qr;
3663 struct iscsi_cmd *cmd;
3664 u8 state;
3665 int ret;
3666
3667 while ((qr = iscsit_get_cmd_from_immediate_queue(conn))) {
3668 atomic_set(&conn->check_immediate_queue, 0);
3669 cmd = qr->cmd;
3670 state = qr->state;
3671 kmem_cache_free(lio_qr_cache, qr);
3672
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003673 ret = t->iscsit_immediate_queue(conn, cmd, state);
3674 if (ret < 0)
3675 return ret;
3676 }
Andy Grover6f3c0e62012-04-03 15:51:09 -07003677
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003678 return 0;
3679}
Andy Grover6f3c0e62012-04-03 15:51:09 -07003680
Varun Prakashd2faaef2016-04-20 00:00:19 +05303681int
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003682iscsit_response_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
3683{
3684 int ret;
3685
3686check_rsp_state:
3687 switch (state) {
3688 case ISTATE_SEND_DATAIN:
3689 ret = iscsit_send_datain(cmd, conn);
3690 if (ret < 0)
3691 goto err;
3692 else if (!ret)
3693 /* more drs */
3694 goto check_rsp_state;
3695 else if (ret == 1) {
3696 /* all done */
3697 spin_lock_bh(&cmd->istate_lock);
3698 cmd->i_state = ISTATE_SENT_STATUS;
3699 spin_unlock_bh(&cmd->istate_lock);
3700
3701 if (atomic_read(&conn->check_immediate_queue))
3702 return 1;
3703
3704 return 0;
3705 } else if (ret == 2) {
3706 /* Still must send status,
3707 SCF_TRANSPORT_TASK_SENSE was set */
3708 spin_lock_bh(&cmd->istate_lock);
3709 cmd->i_state = ISTATE_SEND_STATUS;
3710 spin_unlock_bh(&cmd->istate_lock);
3711 state = ISTATE_SEND_STATUS;
3712 goto check_rsp_state;
3713 }
3714
3715 break;
3716 case ISTATE_SEND_STATUS:
3717 case ISTATE_SEND_STATUS_RECOVERY:
3718 ret = iscsit_send_response(cmd, conn);
3719 break;
3720 case ISTATE_SEND_LOGOUTRSP:
3721 ret = iscsit_send_logout(cmd, conn);
3722 break;
3723 case ISTATE_SEND_ASYNCMSG:
3724 ret = iscsit_send_conn_drop_async_message(
3725 cmd, conn);
3726 break;
3727 case ISTATE_SEND_NOPIN:
3728 ret = iscsit_send_nopin(cmd, conn);
3729 break;
3730 case ISTATE_SEND_REJECT:
3731 ret = iscsit_send_reject(cmd, conn);
3732 break;
3733 case ISTATE_SEND_TASKMGTRSP:
3734 ret = iscsit_send_task_mgt_rsp(cmd, conn);
3735 if (ret != 0)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003736 break;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003737 ret = iscsit_tmr_post_handler(cmd, conn);
3738 if (ret != 0)
3739 iscsit_fall_back_to_erl0(conn->sess);
3740 break;
3741 case ISTATE_SEND_TEXTRSP:
3742 ret = iscsit_send_text_rsp(cmd, conn);
3743 break;
3744 default:
3745 pr_err("Unknown Opcode: 0x%02x ITT:"
3746 " 0x%08x, i_state: %d on CID: %hu\n",
3747 cmd->iscsi_opcode, cmd->init_task_tag,
3748 state, conn->cid);
3749 goto err;
3750 }
3751 if (ret < 0)
3752 goto err;
3753
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003754 switch (state) {
3755 case ISTATE_SEND_LOGOUTRSP:
3756 if (!iscsit_logout_post_handler(cmd, conn))
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003757 return -ECONNRESET;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003758 /* fall through */
3759 case ISTATE_SEND_STATUS:
3760 case ISTATE_SEND_ASYNCMSG:
3761 case ISTATE_SEND_NOPIN:
3762 case ISTATE_SEND_STATUS_RECOVERY:
3763 case ISTATE_SEND_TEXTRSP:
3764 case ISTATE_SEND_TASKMGTRSP:
Nicholas Bellingerba159912013-07-03 03:48:24 -07003765 case ISTATE_SEND_REJECT:
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003766 spin_lock_bh(&cmd->istate_lock);
3767 cmd->i_state = ISTATE_SENT_STATUS;
3768 spin_unlock_bh(&cmd->istate_lock);
3769 break;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003770 default:
3771 pr_err("Unknown Opcode: 0x%02x ITT:"
3772 " 0x%08x, i_state: %d on CID: %hu\n",
3773 cmd->iscsi_opcode, cmd->init_task_tag,
3774 cmd->i_state, conn->cid);
3775 goto err;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003776 }
3777
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003778 if (atomic_read(&conn->check_immediate_queue))
3779 return 1;
3780
Andy Grover6f3c0e62012-04-03 15:51:09 -07003781 return 0;
3782
3783err:
3784 return -1;
3785}
Varun Prakashd2faaef2016-04-20 00:00:19 +05303786EXPORT_SYMBOL(iscsit_response_queue);
Andy Grover6f3c0e62012-04-03 15:51:09 -07003787
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003788static int iscsit_handle_response_queue(struct iscsi_conn *conn)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003789{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003790 struct iscsit_transport *t = conn->conn_transport;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003791 struct iscsi_queue_req *qr;
3792 struct iscsi_cmd *cmd;
3793 u8 state;
3794 int ret;
3795
3796 while ((qr = iscsit_get_cmd_from_response_queue(conn))) {
3797 cmd = qr->cmd;
3798 state = qr->state;
3799 kmem_cache_free(lio_qr_cache, qr);
3800
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003801 ret = t->iscsit_response_queue(conn, cmd, state);
3802 if (ret == 1 || ret < 0)
3803 return ret;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003804 }
3805
3806 return 0;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003807}
3808
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003809int iscsi_target_tx_thread(void *arg)
3810{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003811 int ret = 0;
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003812 struct iscsi_conn *conn = arg;
Jiang Yi49d33fd2017-05-16 17:57:55 +08003813 bool conn_freed = false;
3814
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003815 /*
3816 * Allow ourselves to be interrupted by SIGINT so that a
3817 * connection recovery / failure event can be triggered externally.
3818 */
3819 allow_signal(SIGINT);
3820
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003821 while (!kthread_should_stop()) {
3822 /*
3823 * Ensure that both TX and RX per connection kthreads
3824 * are scheduled to run on the same CPU.
3825 */
3826 iscsit_thread_check_cpumask(conn, current, 1);
3827
Roland Dreierd5627ac2012-10-31 09:16:46 -07003828 wait_event_interruptible(conn->queues_wq,
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003829 !iscsit_conn_all_queues_empty(conn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003830
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003831 if (signal_pending(current))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003832 goto transport_err;
3833
Nicholas Bellingerfd3a9022013-02-27 17:53:52 -08003834get_immediate:
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003835 ret = iscsit_handle_immediate_queue(conn);
Andy Grover6f3c0e62012-04-03 15:51:09 -07003836 if (ret < 0)
3837 goto transport_err;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003838
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003839 ret = iscsit_handle_response_queue(conn);
Jiang Yi49d33fd2017-05-16 17:57:55 +08003840 if (ret == 1) {
Nicholas Bellingerfd3a9022013-02-27 17:53:52 -08003841 goto get_immediate;
Jiang Yi49d33fd2017-05-16 17:57:55 +08003842 } else if (ret == -ECONNRESET) {
3843 conn_freed = true;
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003844 goto out;
Jiang Yi49d33fd2017-05-16 17:57:55 +08003845 } else if (ret < 0) {
Andy Grover6f3c0e62012-04-03 15:51:09 -07003846 goto transport_err;
Jiang Yi49d33fd2017-05-16 17:57:55 +08003847 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003848 }
3849
3850transport_err:
Nicholas Bellingere5419862015-07-22 23:14:19 -07003851 /*
3852 * Avoid the normal connection failure code-path if this connection
3853 * is still within LOGIN mode, and iscsi_np process context is
3854 * responsible for cleaning up the early connection failure.
3855 */
3856 if (conn->conn_state != TARG_CONN_STATE_IN_LOGIN)
Jiang Yi49d33fd2017-05-16 17:57:55 +08003857 iscsit_take_action_for_connection_exit(conn, &conn_freed);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003858out:
Jiang Yi49d33fd2017-05-16 17:57:55 +08003859 if (!conn_freed) {
3860 while (!kthread_should_stop()) {
3861 msleep(100);
3862 }
3863 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003864 return 0;
3865}
3866
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003867static int iscsi_target_rx_opcode(struct iscsi_conn *conn, unsigned char *buf)
3868{
3869 struct iscsi_hdr *hdr = (struct iscsi_hdr *)buf;
3870 struct iscsi_cmd *cmd;
3871 int ret = 0;
3872
3873 switch (hdr->opcode & ISCSI_OPCODE_MASK) {
3874 case ISCSI_OP_SCSI_CMD:
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003875 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003876 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003877 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003878
3879 ret = iscsit_handle_scsi_cmd(conn, cmd, buf);
3880 break;
3881 case ISCSI_OP_SCSI_DATA_OUT:
3882 ret = iscsit_handle_data_out(conn, buf);
3883 break;
3884 case ISCSI_OP_NOOP_OUT:
3885 cmd = NULL;
3886 if (hdr->ttt == cpu_to_be32(0xFFFFFFFF)) {
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003887 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003888 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003889 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003890 }
3891 ret = iscsit_handle_nop_out(conn, cmd, buf);
3892 break;
3893 case ISCSI_OP_SCSI_TMFUNC:
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003894 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003895 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003896 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003897
3898 ret = iscsit_handle_task_mgt_cmd(conn, cmd, buf);
3899 break;
3900 case ISCSI_OP_TEXT:
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003901 if (hdr->ttt != cpu_to_be32(0xFFFFFFFF)) {
3902 cmd = iscsit_find_cmd_from_itt(conn, hdr->itt);
3903 if (!cmd)
3904 goto reject;
3905 } else {
3906 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
3907 if (!cmd)
3908 goto reject;
3909 }
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07003910
3911 ret = iscsit_handle_text_cmd(conn, cmd, buf);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003912 break;
3913 case ISCSI_OP_LOGOUT:
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003914 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003915 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003916 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003917
3918 ret = iscsit_handle_logout_cmd(conn, cmd, buf);
3919 if (ret > 0)
3920 wait_for_completion_timeout(&conn->conn_logout_comp,
3921 SECONDS_FOR_LOGOUT_COMP * HZ);
3922 break;
3923 case ISCSI_OP_SNACK:
3924 ret = iscsit_handle_snack(conn, buf);
3925 break;
3926 default:
3927 pr_err("Got unknown iSCSI OpCode: 0x%02x\n", hdr->opcode);
3928 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
3929 pr_err("Cannot recover from unknown"
3930 " opcode while ERL=0, closing iSCSI connection.\n");
3931 return -1;
3932 }
Christophe Vu-Brugierc04a6092015-04-19 22:18:33 +02003933 pr_err("Unable to recover from unknown opcode while OFMarker=No,"
3934 " closing iSCSI connection.\n");
3935 ret = -1;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003936 break;
3937 }
3938
3939 return ret;
Nicholas Bellingerba159912013-07-03 03:48:24 -07003940reject:
3941 return iscsit_add_reject(conn, ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003942}
3943
Nicholas Bellingerca82c2b2015-11-05 14:11:59 -08003944static bool iscsi_target_check_conn_state(struct iscsi_conn *conn)
3945{
3946 bool ret;
3947
3948 spin_lock_bh(&conn->state_lock);
3949 ret = (conn->conn_state != TARG_CONN_STATE_LOGGED_IN);
3950 spin_unlock_bh(&conn->state_lock);
3951
3952 return ret;
3953}
3954
Varun Prakashe8205cc2016-04-20 00:00:11 +05303955static void iscsit_get_rx_pdu(struct iscsi_conn *conn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003956{
Varun Prakashe8205cc2016-04-20 00:00:11 +05303957 int ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003958 u8 buffer[ISCSI_HDR_LEN], opcode;
3959 u32 checksum = 0, digest = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003960 struct kvec iov;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003961
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003962 while (!kthread_should_stop()) {
3963 /*
3964 * Ensure that both TX and RX per connection kthreads
3965 * are scheduled to run on the same CPU.
3966 */
3967 iscsit_thread_check_cpumask(conn, current, 0);
3968
3969 memset(buffer, 0, ISCSI_HDR_LEN);
3970 memset(&iov, 0, sizeof(struct kvec));
3971
3972 iov.iov_base = buffer;
3973 iov.iov_len = ISCSI_HDR_LEN;
3974
3975 ret = rx_data(conn, &iov, 1, ISCSI_HDR_LEN);
3976 if (ret != ISCSI_HDR_LEN) {
3977 iscsit_rx_thread_wait_for_tcp(conn);
Varun Prakashe8205cc2016-04-20 00:00:11 +05303978 return;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003979 }
3980
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003981 if (conn->conn_ops->HeaderDigest) {
3982 iov.iov_base = &digest;
3983 iov.iov_len = ISCSI_CRC_LEN;
3984
3985 ret = rx_data(conn, &iov, 1, ISCSI_CRC_LEN);
3986 if (ret != ISCSI_CRC_LEN) {
3987 iscsit_rx_thread_wait_for_tcp(conn);
Varun Prakashe8205cc2016-04-20 00:00:11 +05303988 return;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003989 }
3990
Herbert Xu69110e32016-01-24 21:19:52 +08003991 iscsit_do_crypto_hash_buf(conn->conn_rx_hash,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003992 buffer, ISCSI_HDR_LEN,
3993 0, NULL, (u8 *)&checksum);
3994
3995 if (digest != checksum) {
3996 pr_err("HeaderDigest CRC32C failed,"
3997 " received 0x%08x, computed 0x%08x\n",
3998 digest, checksum);
3999 /*
4000 * Set the PDU to 0xff so it will intentionally
4001 * hit default in the switch below.
4002 */
4003 memset(buffer, 0xff, ISCSI_HDR_LEN);
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08004004 atomic_long_inc(&conn->sess->conn_digest_errors);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004005 } else {
4006 pr_debug("Got HeaderDigest CRC32C"
4007 " 0x%08x\n", checksum);
4008 }
4009 }
4010
4011 if (conn->conn_state == TARG_CONN_STATE_IN_LOGOUT)
Varun Prakashe8205cc2016-04-20 00:00:11 +05304012 return;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004013
4014 opcode = buffer[0] & ISCSI_OPCODE_MASK;
4015
4016 if (conn->sess->sess_ops->SessionType &&
4017 ((!(opcode & ISCSI_OP_TEXT)) ||
4018 (!(opcode & ISCSI_OP_LOGOUT)))) {
4019 pr_err("Received illegal iSCSI Opcode: 0x%02x"
4020 " while in Discovery Session, rejecting.\n", opcode);
Nicholas Bellingerba159912013-07-03 03:48:24 -07004021 iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
4022 buffer);
Varun Prakashe8205cc2016-04-20 00:00:11 +05304023 return;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004024 }
4025
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08004026 ret = iscsi_target_rx_opcode(conn, buffer);
4027 if (ret < 0)
Varun Prakashe8205cc2016-04-20 00:00:11 +05304028 return;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004029 }
Varun Prakashe8205cc2016-04-20 00:00:11 +05304030}
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004031
Varun Prakashe8205cc2016-04-20 00:00:11 +05304032int iscsi_target_rx_thread(void *arg)
4033{
4034 int rc;
4035 struct iscsi_conn *conn = arg;
Jiang Yi49d33fd2017-05-16 17:57:55 +08004036 bool conn_freed = false;
Varun Prakashe8205cc2016-04-20 00:00:11 +05304037
4038 /*
4039 * Allow ourselves to be interrupted by SIGINT so that a
4040 * connection recovery / failure event can be triggered externally.
4041 */
4042 allow_signal(SIGINT);
4043 /*
4044 * Wait for iscsi_post_login_handler() to complete before allowing
4045 * incoming iscsi/tcp socket I/O, and/or failing the connection.
4046 */
4047 rc = wait_for_completion_interruptible(&conn->rx_login_comp);
4048 if (rc < 0 || iscsi_target_check_conn_state(conn))
Jiang Yi49d33fd2017-05-16 17:57:55 +08004049 goto out;
Varun Prakashe8205cc2016-04-20 00:00:11 +05304050
4051 if (!conn->conn_transport->iscsit_get_rx_pdu)
4052 return 0;
4053
4054 conn->conn_transport->iscsit_get_rx_pdu(conn);
4055
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004056 if (!signal_pending(current))
4057 atomic_set(&conn->transport_failed, 1);
Jiang Yi49d33fd2017-05-16 17:57:55 +08004058 iscsit_take_action_for_connection_exit(conn, &conn_freed);
4059
4060out:
4061 if (!conn_freed) {
4062 while (!kthread_should_stop()) {
4063 msleep(100);
4064 }
4065 }
4066
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004067 return 0;
4068}
4069
4070static void iscsit_release_commands_from_conn(struct iscsi_conn *conn)
4071{
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004072 LIST_HEAD(tmp_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004073 struct iscsi_cmd *cmd = NULL, *cmd_tmp = NULL;
4074 struct iscsi_session *sess = conn->sess;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004075 /*
4076 * We expect this function to only ever be called from either RX or TX
4077 * thread context via iscsit_close_connection() once the other context
4078 * has been reset -> returned sleeping pre-handler state.
4079 */
4080 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004081 list_splice_init(&conn->conn_cmd_list, &tmp_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004082
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004083 list_for_each_entry(cmd, &tmp_list, i_conn_node) {
4084 struct se_cmd *se_cmd = &cmd->se_cmd;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004085
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004086 if (se_cmd->se_tfo != NULL) {
4087 spin_lock(&se_cmd->t_state_lock);
4088 se_cmd->transport_state |= CMD_T_FABRIC_STOP;
4089 spin_unlock(&se_cmd->t_state_lock);
4090 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004091 }
4092 spin_unlock_bh(&conn->cmd_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004093
4094 list_for_each_entry_safe(cmd, cmd_tmp, &tmp_list, i_conn_node) {
4095 list_del_init(&cmd->i_conn_node);
4096
4097 iscsit_increment_maxcmdsn(cmd, sess);
4098 iscsit_free_cmd(cmd, true);
4099
4100 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004101}
4102
4103static void iscsit_stop_timers_for_cmds(
4104 struct iscsi_conn *conn)
4105{
4106 struct iscsi_cmd *cmd;
4107
4108 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07004109 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004110 if (cmd->data_direction == DMA_TO_DEVICE)
4111 iscsit_stop_dataout_timer(cmd);
4112 }
4113 spin_unlock_bh(&conn->cmd_lock);
4114}
4115
4116int iscsit_close_connection(
4117 struct iscsi_conn *conn)
4118{
4119 int conn_logout = (conn->conn_state == TARG_CONN_STATE_IN_LOGOUT);
4120 struct iscsi_session *sess = conn->sess;
4121
4122 pr_debug("Closing iSCSI connection CID %hu on SID:"
4123 " %u\n", conn->cid, sess->sid);
4124 /*
Varun Prakashb4869ee2016-04-20 00:00:18 +05304125 * Always up conn_logout_comp for the traditional TCP and HW_OFFLOAD
4126 * case just in case the RX Thread in iscsi_target_rx_opcode() is
4127 * sleeping and the logout response never got sent because the
4128 * connection failed.
Nicholas Bellingerf068fbc2015-02-23 00:57:51 -08004129 *
4130 * However for iser-target, isert_wait4logout() is using conn_logout_comp
4131 * to signal logout response TX interrupt completion. Go ahead and skip
4132 * this for iser since isert_rx_opcode() does not wait on logout failure,
4133 * and to avoid iscsi_conn pointer dereference in iser-target code.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004134 */
Nicholas Bellingerbd027d82016-05-14 22:23:34 -07004135 if (!conn->conn_transport->rdma_shutdown)
Nicholas Bellingerf068fbc2015-02-23 00:57:51 -08004136 complete(&conn->conn_logout_comp);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004137
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08004138 if (!strcmp(current->comm, ISCSI_RX_THREAD_NAME)) {
4139 if (conn->tx_thread &&
4140 cmpxchg(&conn->tx_thread_active, true, false)) {
4141 send_sig(SIGINT, conn->tx_thread, 1);
4142 kthread_stop(conn->tx_thread);
4143 }
4144 } else if (!strcmp(current->comm, ISCSI_TX_THREAD_NAME)) {
4145 if (conn->rx_thread &&
4146 cmpxchg(&conn->rx_thread_active, true, false)) {
4147 send_sig(SIGINT, conn->rx_thread, 1);
4148 kthread_stop(conn->rx_thread);
4149 }
4150 }
4151
4152 spin_lock(&iscsit_global->ts_bitmap_lock);
4153 bitmap_release_region(iscsit_global->ts_bitmap, conn->bitmap_id,
4154 get_order(1));
4155 spin_unlock(&iscsit_global->ts_bitmap_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004156
4157 iscsit_stop_timers_for_cmds(conn);
4158 iscsit_stop_nopin_response_timer(conn);
4159 iscsit_stop_nopin_timer(conn);
Nicholas Bellingerdefd8842014-02-03 12:54:39 -08004160
4161 if (conn->conn_transport->iscsit_wait_conn)
4162 conn->conn_transport->iscsit_wait_conn(conn);
4163
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004164 /*
4165 * During Connection recovery drop unacknowledged out of order
4166 * commands for this connection, and prepare the other commands
4167 * for realligence.
4168 *
4169 * During normal operation clear the out of order commands (but
4170 * do not free the struct iscsi_ooo_cmdsn's) and release all
4171 * struct iscsi_cmds.
4172 */
4173 if (atomic_read(&conn->connection_recovery)) {
4174 iscsit_discard_unacknowledged_ooo_cmdsns_for_conn(conn);
4175 iscsit_prepare_cmds_for_realligance(conn);
4176 } else {
4177 iscsit_clear_ooo_cmdsns_for_conn(conn);
4178 iscsit_release_commands_from_conn(conn);
4179 }
Nicholas Bellingerbbc05042014-06-10 04:03:54 +00004180 iscsit_free_queue_reqs_for_conn(conn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004181
4182 /*
4183 * Handle decrementing session or connection usage count if
4184 * a logout response was not able to be sent because the
4185 * connection failed. Fall back to Session Recovery here.
4186 */
4187 if (atomic_read(&conn->conn_logout_remove)) {
4188 if (conn->conn_logout_reason == ISCSI_LOGOUT_REASON_CLOSE_SESSION) {
4189 iscsit_dec_conn_usage_count(conn);
4190 iscsit_dec_session_usage_count(sess);
4191 }
4192 if (conn->conn_logout_reason == ISCSI_LOGOUT_REASON_CLOSE_CONNECTION)
4193 iscsit_dec_conn_usage_count(conn);
4194
4195 atomic_set(&conn->conn_logout_remove, 0);
4196 atomic_set(&sess->session_reinstatement, 0);
4197 atomic_set(&sess->session_fall_back_to_erl0, 1);
4198 }
4199
4200 spin_lock_bh(&sess->conn_lock);
4201 list_del(&conn->conn_list);
4202
4203 /*
4204 * Attempt to let the Initiator know this connection failed by
4205 * sending an Connection Dropped Async Message on another
4206 * active connection.
4207 */
4208 if (atomic_read(&conn->connection_recovery))
4209 iscsit_build_conn_drop_async_message(conn);
4210
4211 spin_unlock_bh(&sess->conn_lock);
4212
4213 /*
4214 * If connection reinstatement is being performed on this connection,
4215 * up the connection reinstatement semaphore that is being blocked on
4216 * in iscsit_cause_connection_reinstatement().
4217 */
4218 spin_lock_bh(&conn->state_lock);
4219 if (atomic_read(&conn->sleep_on_conn_wait_comp)) {
4220 spin_unlock_bh(&conn->state_lock);
4221 complete(&conn->conn_wait_comp);
4222 wait_for_completion(&conn->conn_post_wait_comp);
4223 spin_lock_bh(&conn->state_lock);
4224 }
4225
4226 /*
4227 * If connection reinstatement is being performed on this connection
4228 * by receiving a REMOVECONNFORRECOVERY logout request, up the
4229 * connection wait rcfr semaphore that is being blocked on
4230 * an iscsit_connection_reinstatement_rcfr().
4231 */
4232 if (atomic_read(&conn->connection_wait_rcfr)) {
4233 spin_unlock_bh(&conn->state_lock);
4234 complete(&conn->conn_wait_rcfr_comp);
4235 wait_for_completion(&conn->conn_post_wait_comp);
4236 spin_lock_bh(&conn->state_lock);
4237 }
4238 atomic_set(&conn->connection_reinstatement, 1);
4239 spin_unlock_bh(&conn->state_lock);
4240
4241 /*
4242 * If any other processes are accessing this connection pointer we
4243 * must wait until they have completed.
4244 */
4245 iscsit_check_conn_usage_count(conn);
4246
Herbert Xu69110e32016-01-24 21:19:52 +08004247 ahash_request_free(conn->conn_tx_hash);
4248 if (conn->conn_rx_hash) {
4249 struct crypto_ahash *tfm;
4250
4251 tfm = crypto_ahash_reqtfm(conn->conn_rx_hash);
4252 ahash_request_free(conn->conn_rx_hash);
4253 crypto_free_ahash(tfm);
4254 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004255
Joern Engelfbecb652014-09-02 17:49:47 -04004256 free_cpumask_var(conn->conn_cpumask);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004257
4258 kfree(conn->conn_ops);
4259 conn->conn_ops = NULL;
4260
Al Virobf6932f2012-07-21 08:55:18 +01004261 if (conn->sock)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004262 sock_release(conn->sock);
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08004263
4264 if (conn->conn_transport->iscsit_free_conn)
4265 conn->conn_transport->iscsit_free_conn(conn);
4266
4267 iscsit_put_transport(conn->conn_transport);
4268
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004269 pr_debug("Moving to TARG_CONN_STATE_FREE.\n");
4270 conn->conn_state = TARG_CONN_STATE_FREE;
4271 kfree(conn);
4272
4273 spin_lock_bh(&sess->conn_lock);
4274 atomic_dec(&sess->nconn);
4275 pr_debug("Decremented iSCSI connection count to %hu from node:"
4276 " %s\n", atomic_read(&sess->nconn),
4277 sess->sess_ops->InitiatorName);
4278 /*
4279 * Make sure that if one connection fails in an non ERL=2 iSCSI
4280 * Session that they all fail.
4281 */
4282 if ((sess->sess_ops->ErrorRecoveryLevel != 2) && !conn_logout &&
4283 !atomic_read(&sess->session_logout))
4284 atomic_set(&sess->session_fall_back_to_erl0, 1);
4285
4286 /*
4287 * If this was not the last connection in the session, and we are
4288 * performing session reinstatement or falling back to ERL=0, call
4289 * iscsit_stop_session() without sleeping to shutdown the other
4290 * active connections.
4291 */
4292 if (atomic_read(&sess->nconn)) {
4293 if (!atomic_read(&sess->session_reinstatement) &&
4294 !atomic_read(&sess->session_fall_back_to_erl0)) {
4295 spin_unlock_bh(&sess->conn_lock);
4296 return 0;
4297 }
4298 if (!atomic_read(&sess->session_stop_active)) {
4299 atomic_set(&sess->session_stop_active, 1);
4300 spin_unlock_bh(&sess->conn_lock);
4301 iscsit_stop_session(sess, 0, 0);
4302 return 0;
4303 }
4304 spin_unlock_bh(&sess->conn_lock);
4305 return 0;
4306 }
4307
4308 /*
4309 * If this was the last connection in the session and one of the
4310 * following is occurring:
4311 *
4312 * Session Reinstatement is not being performed, and are falling back
4313 * to ERL=0 call iscsit_close_session().
4314 *
4315 * Session Logout was requested. iscsit_close_session() will be called
4316 * elsewhere.
4317 *
4318 * Session Continuation is not being performed, start the Time2Retain
4319 * handler and check if sleep_on_sess_wait_sem is active.
4320 */
4321 if (!atomic_read(&sess->session_reinstatement) &&
4322 atomic_read(&sess->session_fall_back_to_erl0)) {
4323 spin_unlock_bh(&sess->conn_lock);
Christoph Hellwig44f33d02016-05-02 15:45:24 +02004324 iscsit_close_session(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004325
4326 return 0;
4327 } else if (atomic_read(&sess->session_logout)) {
4328 pr_debug("Moving to TARG_SESS_STATE_FREE.\n");
4329 sess->session_state = TARG_SESS_STATE_FREE;
4330 spin_unlock_bh(&sess->conn_lock);
4331
4332 if (atomic_read(&sess->sleep_on_sess_wait_comp))
4333 complete(&sess->session_wait_comp);
4334
4335 return 0;
4336 } else {
4337 pr_debug("Moving to TARG_SESS_STATE_FAILED.\n");
4338 sess->session_state = TARG_SESS_STATE_FAILED;
4339
4340 if (!atomic_read(&sess->session_continuation)) {
4341 spin_unlock_bh(&sess->conn_lock);
4342 iscsit_start_time2retain_handler(sess);
4343 } else
4344 spin_unlock_bh(&sess->conn_lock);
4345
4346 if (atomic_read(&sess->sleep_on_sess_wait_comp))
4347 complete(&sess->session_wait_comp);
4348
4349 return 0;
4350 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004351}
4352
Christoph Hellwig44f33d02016-05-02 15:45:24 +02004353/*
4354 * If the iSCSI Session for the iSCSI Initiator Node exists,
4355 * forcefully shutdown the iSCSI NEXUS.
4356 */
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004357int iscsit_close_session(struct iscsi_session *sess)
4358{
Andy Grover60bfcf82013-10-09 11:05:58 -07004359 struct iscsi_portal_group *tpg = sess->tpg;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004360 struct se_portal_group *se_tpg = &tpg->tpg_se_tpg;
4361
4362 if (atomic_read(&sess->nconn)) {
4363 pr_err("%d connection(s) still exist for iSCSI session"
4364 " to %s\n", atomic_read(&sess->nconn),
4365 sess->sess_ops->InitiatorName);
4366 BUG();
4367 }
4368
4369 spin_lock_bh(&se_tpg->session_lock);
4370 atomic_set(&sess->session_logout, 1);
4371 atomic_set(&sess->session_reinstatement, 1);
4372 iscsit_stop_time2retain_timer(sess);
4373 spin_unlock_bh(&se_tpg->session_lock);
4374
4375 /*
4376 * transport_deregister_session_configfs() will clear the
4377 * struct se_node_acl->nacl_sess pointer now as a iscsi_np process context
4378 * can be setting it again with __transport_register_session() in
4379 * iscsi_post_login_handler() again after the iscsit_stop_session()
4380 * completes in iscsi_np context.
4381 */
4382 transport_deregister_session_configfs(sess->se_sess);
4383
4384 /*
4385 * If any other processes are accessing this session pointer we must
4386 * wait until they have completed. If we are in an interrupt (the
4387 * time2retain handler) and contain and active session usage count we
4388 * restart the timer and exit.
4389 */
4390 if (!in_interrupt()) {
4391 if (iscsit_check_session_usage_count(sess) == 1)
4392 iscsit_stop_session(sess, 1, 1);
4393 } else {
4394 if (iscsit_check_session_usage_count(sess) == 2) {
4395 atomic_set(&sess->session_logout, 0);
4396 iscsit_start_time2retain_handler(sess);
4397 return 0;
4398 }
4399 }
4400
4401 transport_deregister_session(sess->se_sess);
4402
4403 if (sess->sess_ops->ErrorRecoveryLevel == 2)
4404 iscsit_free_connection_recovery_entires(sess);
4405
4406 iscsit_free_all_ooo_cmdsns(sess);
4407
4408 spin_lock_bh(&se_tpg->session_lock);
4409 pr_debug("Moving to TARG_SESS_STATE_FREE.\n");
4410 sess->session_state = TARG_SESS_STATE_FREE;
4411 pr_debug("Released iSCSI session from node: %s\n",
4412 sess->sess_ops->InitiatorName);
4413 tpg->nsessions--;
4414 if (tpg->tpg_tiqn)
4415 tpg->tpg_tiqn->tiqn_nsessions--;
4416
4417 pr_debug("Decremented number of active iSCSI Sessions on"
4418 " iSCSI TPG: %hu to %u\n", tpg->tpgt, tpg->nsessions);
4419
4420 spin_lock(&sess_idr_lock);
4421 idr_remove(&sess_idr, sess->session_index);
4422 spin_unlock(&sess_idr_lock);
4423
4424 kfree(sess->sess_ops);
4425 sess->sess_ops = NULL;
4426 spin_unlock_bh(&se_tpg->session_lock);
4427
4428 kfree(sess);
4429 return 0;
4430}
4431
4432static void iscsit_logout_post_handler_closesession(
4433 struct iscsi_conn *conn)
4434{
4435 struct iscsi_session *sess = conn->sess;
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004436 int sleep = 1;
4437 /*
4438 * Traditional iscsi/tcp will invoke this logic from TX thread
4439 * context during session logout, so clear tx_thread_active and
4440 * sleep if iscsit_close_connection() has not already occured.
4441 *
4442 * Since iser-target invokes this logic from it's own workqueue,
4443 * always sleep waiting for RX/TX thread shutdown to complete
4444 * within iscsit_close_connection().
4445 */
Nicholas Bellinger463440e2017-06-03 05:35:47 -07004446 if (!conn->conn_transport->rdma_shutdown) {
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004447 sleep = cmpxchg(&conn->tx_thread_active, true, false);
Nicholas Bellinger463440e2017-06-03 05:35:47 -07004448 if (!sleep)
4449 return;
4450 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004451
4452 atomic_set(&conn->conn_logout_remove, 0);
4453 complete(&conn->conn_logout_comp);
4454
4455 iscsit_dec_conn_usage_count(conn);
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08004456 iscsit_stop_session(sess, sleep, sleep);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004457 iscsit_dec_session_usage_count(sess);
Christoph Hellwig44f33d02016-05-02 15:45:24 +02004458 iscsit_close_session(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004459}
4460
4461static void iscsit_logout_post_handler_samecid(
4462 struct iscsi_conn *conn)
4463{
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004464 int sleep = 1;
4465
Nicholas Bellinger463440e2017-06-03 05:35:47 -07004466 if (!conn->conn_transport->rdma_shutdown) {
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004467 sleep = cmpxchg(&conn->tx_thread_active, true, false);
Nicholas Bellinger463440e2017-06-03 05:35:47 -07004468 if (!sleep)
4469 return;
4470 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004471
4472 atomic_set(&conn->conn_logout_remove, 0);
4473 complete(&conn->conn_logout_comp);
4474
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08004475 iscsit_cause_connection_reinstatement(conn, sleep);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004476 iscsit_dec_conn_usage_count(conn);
4477}
4478
4479static void iscsit_logout_post_handler_diffcid(
4480 struct iscsi_conn *conn,
4481 u16 cid)
4482{
4483 struct iscsi_conn *l_conn;
4484 struct iscsi_session *sess = conn->sess;
Nicholas Bellingerb53b0d992014-09-17 11:45:17 -07004485 bool conn_found = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004486
4487 if (!sess)
4488 return;
4489
4490 spin_lock_bh(&sess->conn_lock);
4491 list_for_each_entry(l_conn, &sess->sess_conn_list, conn_list) {
4492 if (l_conn->cid == cid) {
4493 iscsit_inc_conn_usage_count(l_conn);
Nicholas Bellingerb53b0d992014-09-17 11:45:17 -07004494 conn_found = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004495 break;
4496 }
4497 }
4498 spin_unlock_bh(&sess->conn_lock);
4499
Nicholas Bellingerb53b0d992014-09-17 11:45:17 -07004500 if (!conn_found)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004501 return;
4502
4503 if (l_conn->sock)
4504 l_conn->sock->ops->shutdown(l_conn->sock, RCV_SHUTDOWN);
4505
4506 spin_lock_bh(&l_conn->state_lock);
4507 pr_debug("Moving to TARG_CONN_STATE_IN_LOGOUT.\n");
4508 l_conn->conn_state = TARG_CONN_STATE_IN_LOGOUT;
4509 spin_unlock_bh(&l_conn->state_lock);
4510
4511 iscsit_cause_connection_reinstatement(l_conn, 1);
4512 iscsit_dec_conn_usage_count(l_conn);
4513}
4514
4515/*
4516 * Return of 0 causes the TX thread to restart.
4517 */
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07004518int iscsit_logout_post_handler(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004519 struct iscsi_cmd *cmd,
4520 struct iscsi_conn *conn)
4521{
4522 int ret = 0;
4523
4524 switch (cmd->logout_reason) {
4525 case ISCSI_LOGOUT_REASON_CLOSE_SESSION:
4526 switch (cmd->logout_response) {
4527 case ISCSI_LOGOUT_SUCCESS:
4528 case ISCSI_LOGOUT_CLEANUP_FAILED:
4529 default:
4530 iscsit_logout_post_handler_closesession(conn);
4531 break;
4532 }
4533 ret = 0;
4534 break;
4535 case ISCSI_LOGOUT_REASON_CLOSE_CONNECTION:
4536 if (conn->cid == cmd->logout_cid) {
4537 switch (cmd->logout_response) {
4538 case ISCSI_LOGOUT_SUCCESS:
4539 case ISCSI_LOGOUT_CLEANUP_FAILED:
4540 default:
4541 iscsit_logout_post_handler_samecid(conn);
4542 break;
4543 }
4544 ret = 0;
4545 } else {
4546 switch (cmd->logout_response) {
4547 case ISCSI_LOGOUT_SUCCESS:
4548 iscsit_logout_post_handler_diffcid(conn,
4549 cmd->logout_cid);
4550 break;
4551 case ISCSI_LOGOUT_CID_NOT_FOUND:
4552 case ISCSI_LOGOUT_CLEANUP_FAILED:
4553 default:
4554 break;
4555 }
4556 ret = 1;
4557 }
4558 break;
4559 case ISCSI_LOGOUT_REASON_RECOVERY:
4560 switch (cmd->logout_response) {
4561 case ISCSI_LOGOUT_SUCCESS:
4562 case ISCSI_LOGOUT_CID_NOT_FOUND:
4563 case ISCSI_LOGOUT_RECOVERY_UNSUPPORTED:
4564 case ISCSI_LOGOUT_CLEANUP_FAILED:
4565 default:
4566 break;
4567 }
4568 ret = 1;
4569 break;
4570 default:
4571 break;
4572
4573 }
4574 return ret;
4575}
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07004576EXPORT_SYMBOL(iscsit_logout_post_handler);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004577
4578void iscsit_fail_session(struct iscsi_session *sess)
4579{
4580 struct iscsi_conn *conn;
4581
4582 spin_lock_bh(&sess->conn_lock);
4583 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
4584 pr_debug("Moving to TARG_CONN_STATE_CLEANUP_WAIT.\n");
4585 conn->conn_state = TARG_CONN_STATE_CLEANUP_WAIT;
4586 }
4587 spin_unlock_bh(&sess->conn_lock);
4588
4589 pr_debug("Moving to TARG_SESS_STATE_FAILED.\n");
4590 sess->session_state = TARG_SESS_STATE_FAILED;
4591}
4592
4593int iscsit_free_session(struct iscsi_session *sess)
4594{
4595 u16 conn_count = atomic_read(&sess->nconn);
4596 struct iscsi_conn *conn, *conn_tmp = NULL;
4597 int is_last;
4598
4599 spin_lock_bh(&sess->conn_lock);
4600 atomic_set(&sess->sleep_on_sess_wait_comp, 1);
4601
4602 list_for_each_entry_safe(conn, conn_tmp, &sess->sess_conn_list,
4603 conn_list) {
4604 if (conn_count == 0)
4605 break;
4606
4607 if (list_is_last(&conn->conn_list, &sess->sess_conn_list)) {
4608 is_last = 1;
4609 } else {
4610 iscsit_inc_conn_usage_count(conn_tmp);
4611 is_last = 0;
4612 }
4613 iscsit_inc_conn_usage_count(conn);
4614
4615 spin_unlock_bh(&sess->conn_lock);
4616 iscsit_cause_connection_reinstatement(conn, 1);
4617 spin_lock_bh(&sess->conn_lock);
4618
4619 iscsit_dec_conn_usage_count(conn);
4620 if (is_last == 0)
4621 iscsit_dec_conn_usage_count(conn_tmp);
4622
4623 conn_count--;
4624 }
4625
4626 if (atomic_read(&sess->nconn)) {
4627 spin_unlock_bh(&sess->conn_lock);
4628 wait_for_completion(&sess->session_wait_comp);
4629 } else
4630 spin_unlock_bh(&sess->conn_lock);
4631
Christoph Hellwig44f33d02016-05-02 15:45:24 +02004632 iscsit_close_session(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004633 return 0;
4634}
4635
4636void iscsit_stop_session(
4637 struct iscsi_session *sess,
4638 int session_sleep,
4639 int connection_sleep)
4640{
4641 u16 conn_count = atomic_read(&sess->nconn);
4642 struct iscsi_conn *conn, *conn_tmp = NULL;
4643 int is_last;
4644
4645 spin_lock_bh(&sess->conn_lock);
4646 if (session_sleep)
4647 atomic_set(&sess->sleep_on_sess_wait_comp, 1);
4648
4649 if (connection_sleep) {
4650 list_for_each_entry_safe(conn, conn_tmp, &sess->sess_conn_list,
4651 conn_list) {
4652 if (conn_count == 0)
4653 break;
4654
4655 if (list_is_last(&conn->conn_list, &sess->sess_conn_list)) {
4656 is_last = 1;
4657 } else {
4658 iscsit_inc_conn_usage_count(conn_tmp);
4659 is_last = 0;
4660 }
4661 iscsit_inc_conn_usage_count(conn);
4662
4663 spin_unlock_bh(&sess->conn_lock);
4664 iscsit_cause_connection_reinstatement(conn, 1);
4665 spin_lock_bh(&sess->conn_lock);
4666
4667 iscsit_dec_conn_usage_count(conn);
4668 if (is_last == 0)
4669 iscsit_dec_conn_usage_count(conn_tmp);
4670 conn_count--;
4671 }
4672 } else {
4673 list_for_each_entry(conn, &sess->sess_conn_list, conn_list)
4674 iscsit_cause_connection_reinstatement(conn, 0);
4675 }
4676
4677 if (session_sleep && atomic_read(&sess->nconn)) {
4678 spin_unlock_bh(&sess->conn_lock);
4679 wait_for_completion(&sess->session_wait_comp);
4680 } else
4681 spin_unlock_bh(&sess->conn_lock);
4682}
4683
4684int iscsit_release_sessions_for_tpg(struct iscsi_portal_group *tpg, int force)
4685{
4686 struct iscsi_session *sess;
4687 struct se_portal_group *se_tpg = &tpg->tpg_se_tpg;
4688 struct se_session *se_sess, *se_sess_tmp;
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004689 LIST_HEAD(free_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004690 int session_count = 0;
4691
4692 spin_lock_bh(&se_tpg->session_lock);
4693 if (tpg->nsessions && !force) {
4694 spin_unlock_bh(&se_tpg->session_lock);
4695 return -1;
4696 }
4697
4698 list_for_each_entry_safe(se_sess, se_sess_tmp, &se_tpg->tpg_sess_list,
4699 sess_list) {
4700 sess = (struct iscsi_session *)se_sess->fabric_sess_ptr;
4701
4702 spin_lock(&sess->conn_lock);
4703 if (atomic_read(&sess->session_fall_back_to_erl0) ||
4704 atomic_read(&sess->session_logout) ||
4705 (sess->time2retain_timer_flags & ISCSI_TF_EXPIRED)) {
4706 spin_unlock(&sess->conn_lock);
4707 continue;
4708 }
4709 atomic_set(&sess->session_reinstatement, 1);
Nicholas Bellingerbb1f06f2017-04-25 10:55:12 -07004710 atomic_set(&sess->session_fall_back_to_erl0, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004711 spin_unlock(&sess->conn_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004712
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004713 list_move_tail(&se_sess->sess_list, &free_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004714 }
4715 spin_unlock_bh(&se_tpg->session_lock);
4716
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004717 list_for_each_entry_safe(se_sess, se_sess_tmp, &free_list, sess_list) {
4718 sess = (struct iscsi_session *)se_sess->fabric_sess_ptr;
4719
4720 iscsit_free_session(sess);
4721 session_count++;
4722 }
4723
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004724 pr_debug("Released %d iSCSI Session(s) from Target Portal"
4725 " Group: %hu\n", session_count, tpg->tpgt);
4726 return 0;
4727}
4728
4729MODULE_DESCRIPTION("iSCSI-Target Driver for mainline target infrastructure");
4730MODULE_VERSION("4.1.x");
4731MODULE_AUTHOR("nab@Linux-iSCSI.org");
4732MODULE_LICENSE("GPL");
4733
4734module_init(iscsi_target_init_module);
4735module_exit(iscsi_target_cleanup_module);