blob: 2602b57936d4bca1b52679532ebfa1a8211c6e10 [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>
Bart Van Assche8dcf07b2016-11-14 15:47:14 -080026#include <linux/delay.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010027#include <linux/sched/signal.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000028#include <asm/unaligned.h>
Sagi Grimberg7bfca0c2018-01-25 13:56:46 +020029#include <linux/inet.h>
Bart Van Assche8dcf07b2016-11-14 15:47:14 -080030#include <net/ipv6.h>
Bart Van Asscheba929992015-05-08 10:11:12 +020031#include <scsi/scsi_proto.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000032#include <scsi/iscsi_proto.h>
Andy Groverd28b11692012-04-03 15:51:22 -070033#include <scsi/scsi_tcq.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000034#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050035#include <target/target_core_fabric.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000036
Sagi Grimberg67f091f2015-01-07 14:57:31 +020037#include <target/iscsi/iscsi_target_core.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000038#include "iscsi_target_parameters.h"
39#include "iscsi_target_seq_pdu_list.h"
Nicholas Bellingere48354c2011-07-23 06:43:04 +000040#include "iscsi_target_datain_values.h"
41#include "iscsi_target_erl0.h"
42#include "iscsi_target_erl1.h"
43#include "iscsi_target_erl2.h"
44#include "iscsi_target_login.h"
45#include "iscsi_target_tmr.h"
46#include "iscsi_target_tpg.h"
47#include "iscsi_target_util.h"
48#include "iscsi_target.h"
49#include "iscsi_target_device.h"
Sagi Grimberg67f091f2015-01-07 14:57:31 +020050#include <target/iscsi/iscsi_target_stat.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000051
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -080052#include <target/iscsi/iscsi_transport.h>
53
Nicholas Bellingere48354c2011-07-23 06:43:04 +000054static LIST_HEAD(g_tiqn_list);
55static LIST_HEAD(g_np_list);
56static DEFINE_SPINLOCK(tiqn_lock);
Andy Groveree291e62014-01-24 16:18:54 -080057static DEFINE_MUTEX(np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +000058
59static struct idr tiqn_idr;
Matthew Wilcox31ff0ce2018-06-19 01:23:04 -040060DEFINE_IDA(sess_ida);
Nicholas Bellingere48354c2011-07-23 06:43:04 +000061struct mutex auth_id_lock;
Nicholas Bellingere48354c2011-07-23 06:43:04 +000062
63struct iscsit_global *iscsit_global;
64
Nicholas Bellingere48354c2011-07-23 06:43:04 +000065struct kmem_cache *lio_qr_cache;
66struct kmem_cache *lio_dr_cache;
67struct kmem_cache *lio_ooo_cache;
68struct kmem_cache *lio_r2t_cache;
69
70static int iscsit_handle_immediate_data(struct iscsi_cmd *,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -070071 struct iscsi_scsi_req *, u32);
Nicholas Bellingere48354c2011-07-23 06:43:04 +000072
73struct iscsi_tiqn *iscsit_get_tiqn_for_login(unsigned char *buf)
74{
75 struct iscsi_tiqn *tiqn = NULL;
76
77 spin_lock(&tiqn_lock);
78 list_for_each_entry(tiqn, &g_tiqn_list, tiqn_list) {
79 if (!strcmp(tiqn->tiqn, buf)) {
80
81 spin_lock(&tiqn->tiqn_state_lock);
82 if (tiqn->tiqn_state == TIQN_STATE_ACTIVE) {
83 tiqn->tiqn_access_count++;
84 spin_unlock(&tiqn->tiqn_state_lock);
85 spin_unlock(&tiqn_lock);
86 return tiqn;
87 }
88 spin_unlock(&tiqn->tiqn_state_lock);
89 }
90 }
91 spin_unlock(&tiqn_lock);
92
93 return NULL;
94}
95
96static int iscsit_set_tiqn_shutdown(struct iscsi_tiqn *tiqn)
97{
98 spin_lock(&tiqn->tiqn_state_lock);
99 if (tiqn->tiqn_state == TIQN_STATE_ACTIVE) {
100 tiqn->tiqn_state = TIQN_STATE_SHUTDOWN;
101 spin_unlock(&tiqn->tiqn_state_lock);
102 return 0;
103 }
104 spin_unlock(&tiqn->tiqn_state_lock);
105
106 return -1;
107}
108
109void iscsit_put_tiqn_for_login(struct iscsi_tiqn *tiqn)
110{
111 spin_lock(&tiqn->tiqn_state_lock);
112 tiqn->tiqn_access_count--;
113 spin_unlock(&tiqn->tiqn_state_lock);
114}
115
116/*
117 * Note that IQN formatting is expected to be done in userspace, and
118 * no explict IQN format checks are done here.
119 */
120struct iscsi_tiqn *iscsit_add_tiqn(unsigned char *buf)
121{
122 struct iscsi_tiqn *tiqn = NULL;
123 int ret;
124
Dan Carpenter8f50c7f2011-07-27 14:11:43 +0300125 if (strlen(buf) >= ISCSI_IQN_LEN) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000126 pr_err("Target IQN exceeds %d bytes\n",
127 ISCSI_IQN_LEN);
128 return ERR_PTR(-EINVAL);
129 }
130
Markus Elfring3829f382017-04-09 16:00:39 +0200131 tiqn = kzalloc(sizeof(*tiqn), GFP_KERNEL);
Markus Elfringc46e22f2017-04-09 15:34:50 +0200132 if (!tiqn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000133 return ERR_PTR(-ENOMEM);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000134
135 sprintf(tiqn->tiqn, "%s", buf);
136 INIT_LIST_HEAD(&tiqn->tiqn_list);
137 INIT_LIST_HEAD(&tiqn->tiqn_tpg_list);
138 spin_lock_init(&tiqn->tiqn_state_lock);
139 spin_lock_init(&tiqn->tiqn_tpg_lock);
140 spin_lock_init(&tiqn->sess_err_stats.lock);
141 spin_lock_init(&tiqn->login_stats.lock);
142 spin_lock_init(&tiqn->logout_stats.lock);
143
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000144 tiqn->tiqn_state = TIQN_STATE_ACTIVE;
145
Tejun Heoc9365bd2013-02-27 17:04:43 -0800146 idr_preload(GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000147 spin_lock(&tiqn_lock);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800148
149 ret = idr_alloc(&tiqn_idr, NULL, 0, 0, GFP_NOWAIT);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000150 if (ret < 0) {
Tejun Heoc9365bd2013-02-27 17:04:43 -0800151 pr_err("idr_alloc() failed for tiqn->tiqn_index\n");
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000152 spin_unlock(&tiqn_lock);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800153 idr_preload_end();
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000154 kfree(tiqn);
155 return ERR_PTR(ret);
156 }
Tejun Heoc9365bd2013-02-27 17:04:43 -0800157 tiqn->tiqn_index = ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000158 list_add_tail(&tiqn->tiqn_list, &g_tiqn_list);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800159
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000160 spin_unlock(&tiqn_lock);
Tejun Heoc9365bd2013-02-27 17:04:43 -0800161 idr_preload_end();
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000162
163 pr_debug("CORE[0] - Added iSCSI Target IQN: %s\n", tiqn->tiqn);
164
165 return tiqn;
166
167}
168
169static void iscsit_wait_for_tiqn(struct iscsi_tiqn *tiqn)
170{
171 /*
172 * Wait for accesses to said struct iscsi_tiqn to end.
173 */
174 spin_lock(&tiqn->tiqn_state_lock);
175 while (tiqn->tiqn_access_count != 0) {
176 spin_unlock(&tiqn->tiqn_state_lock);
177 msleep(10);
178 spin_lock(&tiqn->tiqn_state_lock);
179 }
180 spin_unlock(&tiqn->tiqn_state_lock);
181}
182
183void iscsit_del_tiqn(struct iscsi_tiqn *tiqn)
184{
185 /*
186 * iscsit_set_tiqn_shutdown sets tiqn->tiqn_state = TIQN_STATE_SHUTDOWN
187 * while holding tiqn->tiqn_state_lock. This means that all subsequent
188 * attempts to access this struct iscsi_tiqn will fail from both transport
189 * fabric and control code paths.
190 */
191 if (iscsit_set_tiqn_shutdown(tiqn) < 0) {
192 pr_err("iscsit_set_tiqn_shutdown() failed\n");
193 return;
194 }
195
196 iscsit_wait_for_tiqn(tiqn);
197
198 spin_lock(&tiqn_lock);
199 list_del(&tiqn->tiqn_list);
200 idr_remove(&tiqn_idr, tiqn->tiqn_index);
201 spin_unlock(&tiqn_lock);
202
203 pr_debug("CORE[0] - Deleted iSCSI Target IQN: %s\n",
204 tiqn->tiqn);
205 kfree(tiqn);
206}
207
208int iscsit_access_np(struct iscsi_np *np, struct iscsi_portal_group *tpg)
209{
210 int ret;
211 /*
212 * Determine if the network portal is accepting storage traffic.
213 */
214 spin_lock_bh(&np->np_thread_lock);
215 if (np->np_thread_state != ISCSI_NP_THREAD_ACTIVE) {
216 spin_unlock_bh(&np->np_thread_lock);
217 return -1;
218 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000219 spin_unlock_bh(&np->np_thread_lock);
220 /*
221 * Determine if the portal group is accepting storage traffic.
222 */
223 spin_lock_bh(&tpg->tpg_state_lock);
224 if (tpg->tpg_state != TPG_STATE_ACTIVE) {
225 spin_unlock_bh(&tpg->tpg_state_lock);
226 return -1;
227 }
228 spin_unlock_bh(&tpg->tpg_state_lock);
229
230 /*
231 * Here we serialize access across the TIQN+TPG Tuple.
232 */
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700233 ret = down_interruptible(&tpg->np_login_sem);
Nicholas Bellingeree7619f2015-05-19 15:10:44 -0700234 if (ret != 0)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000235 return -1;
236
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700237 spin_lock_bh(&tpg->tpg_state_lock);
238 if (tpg->tpg_state != TPG_STATE_ACTIVE) {
239 spin_unlock_bh(&tpg->tpg_state_lock);
240 up(&tpg->np_login_sem);
241 return -1;
242 }
243 spin_unlock_bh(&tpg->tpg_state_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000244
245 return 0;
246}
247
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700248void iscsit_login_kref_put(struct kref *kref)
249{
250 struct iscsi_tpg_np *tpg_np = container_of(kref,
251 struct iscsi_tpg_np, tpg_np_kref);
252
253 complete(&tpg_np->tpg_np_comp);
254}
255
256int iscsit_deaccess_np(struct iscsi_np *np, struct iscsi_portal_group *tpg,
257 struct iscsi_tpg_np *tpg_np)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000258{
259 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
260
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700261 up(&tpg->np_login_sem);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000262
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700263 if (tpg_np)
264 kref_put(&tpg_np->tpg_np_kref, iscsit_login_kref_put);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000265
266 if (tiqn)
267 iscsit_put_tiqn_for_login(tiqn);
268
269 return 0;
270}
271
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800272bool iscsit_check_np_match(
Andy Grover13a3cf02015-08-24 10:26:06 -0700273 struct sockaddr_storage *sockaddr,
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800274 struct iscsi_np *np,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000275 int network_transport)
276{
277 struct sockaddr_in *sock_in, *sock_in_e;
278 struct sockaddr_in6 *sock_in6, *sock_in6_e;
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800279 bool ip_match = false;
Andy Grover69d75572015-08-24 10:26:04 -0700280 u16 port, port_e;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000281
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800282 if (sockaddr->ss_family == AF_INET6) {
283 sock_in6 = (struct sockaddr_in6 *)sockaddr;
284 sock_in6_e = (struct sockaddr_in6 *)&np->np_sockaddr;
285
286 if (!memcmp(&sock_in6->sin6_addr.in6_u,
287 &sock_in6_e->sin6_addr.in6_u,
288 sizeof(struct in6_addr)))
289 ip_match = true;
290
291 port = ntohs(sock_in6->sin6_port);
Andy Grover69d75572015-08-24 10:26:04 -0700292 port_e = ntohs(sock_in6_e->sin6_port);
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800293 } else {
294 sock_in = (struct sockaddr_in *)sockaddr;
295 sock_in_e = (struct sockaddr_in *)&np->np_sockaddr;
296
297 if (sock_in->sin_addr.s_addr == sock_in_e->sin_addr.s_addr)
298 ip_match = true;
299
300 port = ntohs(sock_in->sin_port);
Andy Grover69d75572015-08-24 10:26:04 -0700301 port_e = ntohs(sock_in_e->sin_port);
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800302 }
303
Andy Grover69d75572015-08-24 10:26:04 -0700304 if (ip_match && (port_e == port) &&
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800305 (np->np_network_transport == network_transport))
306 return true;
307
308 return false;
309}
310
Andy Groveree291e62014-01-24 16:18:54 -0800311/*
312 * Called with mutex np_lock held
313 */
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800314static struct iscsi_np *iscsit_get_np(
Andy Grover13a3cf02015-08-24 10:26:06 -0700315 struct sockaddr_storage *sockaddr,
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800316 int network_transport)
317{
318 struct iscsi_np *np;
319 bool match;
320
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000321 list_for_each_entry(np, &g_np_list, np_list) {
Andy Groveree291e62014-01-24 16:18:54 -0800322 spin_lock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000323 if (np->np_thread_state != ISCSI_NP_THREAD_ACTIVE) {
Andy Groveree291e62014-01-24 16:18:54 -0800324 spin_unlock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000325 continue;
326 }
327
Nicholas Bellinger05b96892013-02-18 20:59:27 -0800328 match = iscsit_check_np_match(sockaddr, np, network_transport);
Christophe Vu-Brugier0bcc2972014-06-06 17:15:16 +0200329 if (match) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000330 /*
331 * Increment the np_exports reference count now to
332 * prevent iscsit_del_np() below from being called
333 * while iscsi_tpg_add_network_portal() is called.
334 */
335 np->np_exports++;
Andy Groveree291e62014-01-24 16:18:54 -0800336 spin_unlock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000337 return np;
338 }
Andy Groveree291e62014-01-24 16:18:54 -0800339 spin_unlock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000340 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000341
342 return NULL;
343}
344
345struct iscsi_np *iscsit_add_np(
Andy Grover13a3cf02015-08-24 10:26:06 -0700346 struct sockaddr_storage *sockaddr,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000347 int network_transport)
348{
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000349 struct iscsi_np *np;
350 int ret;
Andy Groveree291e62014-01-24 16:18:54 -0800351
352 mutex_lock(&np_lock);
353
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000354 /*
355 * Locate the existing struct iscsi_np if already active..
356 */
357 np = iscsit_get_np(sockaddr, network_transport);
Andy Groveree291e62014-01-24 16:18:54 -0800358 if (np) {
359 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000360 return np;
Andy Groveree291e62014-01-24 16:18:54 -0800361 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000362
Markus Elfring3829f382017-04-09 16:00:39 +0200363 np = kzalloc(sizeof(*np), GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000364 if (!np) {
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
Kees Cookf7c95642017-10-22 14:58:45 -0700375 timer_setup(&np->np_login_timer, iscsi_handle_login_thread_timeout, 0);
Bart Van Assche8a47aa92017-05-23 16:48:50 -0700376
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000377 ret = iscsi_target_setup_login_socket(np, sockaddr);
378 if (ret != 0) {
379 kfree(np);
Andy Groveree291e62014-01-24 16:18:54 -0800380 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000381 return ERR_PTR(ret);
382 }
383
384 np->np_thread = kthread_run(iscsi_target_login_thread, np, "iscsi_np");
385 if (IS_ERR(np->np_thread)) {
386 pr_err("Unable to create kthread: iscsi_np\n");
387 ret = PTR_ERR(np->np_thread);
388 kfree(np);
Andy Groveree291e62014-01-24 16:18:54 -0800389 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000390 return ERR_PTR(ret);
391 }
392 /*
393 * Increment the np_exports reference count now to prevent
394 * iscsit_del_np() below from being run while a new call to
395 * iscsi_tpg_add_network_portal() for a matching iscsi_np is
396 * active. We don't need to hold np->np_thread_lock at this
397 * point because iscsi_np has not been added to g_np_list yet.
398 */
399 np->np_exports = 1;
Andy Groveree291e62014-01-24 16:18:54 -0800400 np->np_thread_state = ISCSI_NP_THREAD_ACTIVE;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000401
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000402 list_add_tail(&np->np_list, &g_np_list);
Andy Groveree291e62014-01-24 16:18:54 -0800403 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000404
Andy Grover69d75572015-08-24 10:26:04 -0700405 pr_debug("CORE[0] - Added Network Portal: %pISpc on %s\n",
406 &np->np_sockaddr, np->np_transport->name);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000407
408 return np;
409}
410
411int iscsit_reset_np_thread(
412 struct iscsi_np *np,
413 struct iscsi_tpg_np *tpg_np,
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700414 struct iscsi_portal_group *tpg,
415 bool shutdown)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000416{
417 spin_lock_bh(&np->np_thread_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000418 if (np->np_thread_state == ISCSI_NP_THREAD_INACTIVE) {
419 spin_unlock_bh(&np->np_thread_lock);
420 return 0;
421 }
422 np->np_thread_state = ISCSI_NP_THREAD_RESET;
Nicholas Bellinger978d13d2017-08-04 23:59:31 -0700423 atomic_inc(&np->np_reset_count);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000424
425 if (np->np_thread) {
426 spin_unlock_bh(&np->np_thread_lock);
427 send_sig(SIGINT, np->np_thread, 1);
428 wait_for_completion(&np->np_restart_comp);
429 spin_lock_bh(&np->np_thread_lock);
430 }
431 spin_unlock_bh(&np->np_thread_lock);
432
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700433 if (tpg_np && shutdown) {
434 kref_put(&tpg_np->tpg_np_kref, iscsit_login_kref_put);
435
436 wait_for_completion(&tpg_np->tpg_np_comp);
437 }
438
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000439 return 0;
440}
441
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800442static void iscsit_free_np(struct iscsi_np *np)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000443{
Al Virobf6932f2012-07-21 08:55:18 +0100444 if (np->np_socket)
445 sock_release(np->np_socket);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000446}
447
448int iscsit_del_np(struct iscsi_np *np)
449{
450 spin_lock_bh(&np->np_thread_lock);
451 np->np_exports--;
452 if (np->np_exports) {
Nicholas Bellinger2363d192014-06-03 18:27:52 -0700453 np->enabled = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000454 spin_unlock_bh(&np->np_thread_lock);
455 return 0;
456 }
457 np->np_thread_state = ISCSI_NP_THREAD_SHUTDOWN;
458 spin_unlock_bh(&np->np_thread_lock);
459
460 if (np->np_thread) {
461 /*
462 * We need to send the signal to wakeup Linux/Net
463 * which may be sleeping in sock_accept()..
464 */
465 send_sig(SIGINT, np->np_thread, 1);
466 kthread_stop(np->np_thread);
Nicholas Bellingerdb6077f2013-12-11 15:45:32 -0800467 np->np_thread = NULL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000468 }
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800469
470 np->np_transport->iscsit_free_np(np);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000471
Andy Groveree291e62014-01-24 16:18:54 -0800472 mutex_lock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000473 list_del(&np->np_list);
Andy Groveree291e62014-01-24 16:18:54 -0800474 mutex_unlock(&np_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000475
Andy Grover69d75572015-08-24 10:26:04 -0700476 pr_debug("CORE[0] - Removed Network Portal: %pISpc on %s\n",
477 &np->np_sockaddr, np->np_transport->name);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000478
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800479 iscsit_put_transport(np->np_transport);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000480 kfree(np);
481 return 0;
482}
483
Varun Prakashe8205cc2016-04-20 00:00:11 +0530484static void iscsit_get_rx_pdu(struct iscsi_conn *);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700485
Varun Prakashd2faaef2016-04-20 00:00:19 +0530486int iscsit_queue_rsp(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700487{
Nicholas Bellingera4467012016-10-30 17:30:08 -0700488 return iscsit_add_cmd_to_response_queue(cmd, cmd->conn, cmd->i_state);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700489}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530490EXPORT_SYMBOL(iscsit_queue_rsp);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700491
Varun Prakashd2faaef2016-04-20 00:00:19 +0530492void iscsit_aborted_task(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700493{
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700494 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
Bart Van Assche4412a672017-05-23 16:48:43 -0700500 __iscsit_free_cmd(cmd, true);
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700501}
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 *,
Bart Van Asschee1dfb212017-10-31 11:03:16 -0700505 u32, u32, const void *, void *);
Varun Prakash2854bb22016-04-20 00:00:08 +0530506static 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,
Bart Van Asschee1dfb212017-10-31 11:03:16 -0700526 header_digest);
Varun Prakash2854bb22016-04-20 00:00:08 +0530527
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,
Bart Van Asschee1dfb212017-10-31 11:03:16 -0700553 padding, &cmd->pad_bytes,
554 &cmd->data_crc);
Varun Prakash2854bb22016-04-20 00:00:08 +0530555
556 iov[niov].iov_base = &cmd->data_crc;
557 iov[niov++].iov_len = ISCSI_CRC_LEN;
558 tx_size += ISCSI_CRC_LEN;
559 pr_debug("Attached DataDigest for %u"
560 " bytes opcode 0x%x, CRC 0x%08x\n",
561 data_buf_len, hdr->opcode, cmd->data_crc);
562 }
563 }
564
565 cmd->iov_misc_count = niov;
566 cmd->tx_size = tx_size;
567
568 ret = iscsit_send_tx_data(cmd, conn, 1);
569 if (ret < 0) {
570 iscsit_tx_thread_wait_for_tcp(conn);
571 return ret;
572 }
573
574 return 0;
575}
576
577static int iscsit_map_iovec(struct iscsi_cmd *, struct kvec *, u32, u32);
578static void iscsit_unmap_iovec(struct iscsi_cmd *);
579static u32 iscsit_do_crypto_hash_sg(struct ahash_request *, struct iscsi_cmd *,
580 u32, u32, u32, u8 *);
581static int
582iscsit_xmit_datain_pdu(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
583 const struct iscsi_datain *datain)
584{
585 struct kvec *iov;
586 u32 iov_count = 0, tx_size = 0;
587 int ret, iov_ret;
588
589 iov = &cmd->iov_data[0];
590 iov[iov_count].iov_base = cmd->pdu;
591 iov[iov_count++].iov_len = ISCSI_HDR_LEN;
592 tx_size += ISCSI_HDR_LEN;
593
594 if (conn->conn_ops->HeaderDigest) {
595 u32 *header_digest = (u32 *)&cmd->pdu[ISCSI_HDR_LEN];
596
597 iscsit_do_crypto_hash_buf(conn->conn_tx_hash, cmd->pdu,
598 ISCSI_HDR_LEN, 0, NULL,
Bart Van Asschee1dfb212017-10-31 11:03:16 -0700599 header_digest);
Varun Prakash2854bb22016-04-20 00:00:08 +0530600
601 iov[0].iov_len += ISCSI_CRC_LEN;
602 tx_size += ISCSI_CRC_LEN;
603
604 pr_debug("Attaching CRC32 HeaderDigest for DataIN PDU 0x%08x\n",
605 *header_digest);
606 }
607
608 iov_ret = iscsit_map_iovec(cmd, &cmd->iov_data[1],
609 datain->offset, datain->length);
610 if (iov_ret < 0)
611 return -1;
612
613 iov_count += iov_ret;
614 tx_size += datain->length;
615
616 cmd->padding = ((-datain->length) & 3);
617 if (cmd->padding) {
618 iov[iov_count].iov_base = cmd->pad_bytes;
619 iov[iov_count++].iov_len = cmd->padding;
620 tx_size += cmd->padding;
621
622 pr_debug("Attaching %u padding bytes\n", cmd->padding);
623 }
624
625 if (conn->conn_ops->DataDigest) {
626 cmd->data_crc = iscsit_do_crypto_hash_sg(conn->conn_tx_hash,
627 cmd, datain->offset,
628 datain->length,
629 cmd->padding,
630 cmd->pad_bytes);
631
632 iov[iov_count].iov_base = &cmd->data_crc;
633 iov[iov_count++].iov_len = ISCSI_CRC_LEN;
634 tx_size += ISCSI_CRC_LEN;
635
636 pr_debug("Attached CRC32C DataDigest %d bytes, crc 0x%08x\n",
637 datain->length + cmd->padding, cmd->data_crc);
638 }
639
640 cmd->iov_data_count = iov_count;
641 cmd->tx_size = tx_size;
642
643 ret = iscsit_fe_sendpage_sg(cmd, conn);
644
645 iscsit_unmap_iovec(cmd);
646
647 if (ret < 0) {
648 iscsit_tx_thread_wait_for_tcp(conn);
649 return ret;
650 }
651
652 return 0;
653}
654
655static int iscsit_xmit_pdu(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
656 struct iscsi_datain_req *dr, const void *buf,
657 u32 buf_len)
658{
659 if (dr)
660 return iscsit_xmit_datain_pdu(conn, cmd, buf);
661 else
662 return iscsit_xmit_nondatain_pdu(conn, cmd, buf, buf_len);
663}
664
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700665static enum target_prot_op iscsit_get_sup_prot_ops(struct iscsi_conn *conn)
666{
667 return TARGET_PROT_NORMAL;
668}
669
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800670static struct iscsit_transport iscsi_target_transport = {
671 .name = "iSCSI/TCP",
672 .transport_type = ISCSI_TCP,
Nicholas Bellingerbd027d82016-05-14 22:23:34 -0700673 .rdma_shutdown = false,
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800674 .owner = NULL,
675 .iscsit_setup_np = iscsit_setup_np,
676 .iscsit_accept_np = iscsit_accept_np,
677 .iscsit_free_np = iscsit_free_np,
678 .iscsit_get_login_rx = iscsit_get_login_rx,
679 .iscsit_put_login_tx = iscsit_put_login_tx,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800680 .iscsit_get_dataout = iscsit_build_r2ts_for_cmd,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -0700681 .iscsit_immediate_queue = iscsit_immediate_queue,
682 .iscsit_response_queue = iscsit_response_queue,
683 .iscsit_queue_data_in = iscsit_queue_rsp,
684 .iscsit_queue_status = iscsit_queue_rsp,
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700685 .iscsit_aborted_task = iscsit_aborted_task,
Varun Prakash2854bb22016-04-20 00:00:08 +0530686 .iscsit_xmit_pdu = iscsit_xmit_pdu,
Varun Prakashe8205cc2016-04-20 00:00:11 +0530687 .iscsit_get_rx_pdu = iscsit_get_rx_pdu,
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700688 .iscsit_get_sup_prot_ops = iscsit_get_sup_prot_ops,
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800689};
690
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000691static int __init iscsi_target_init_module(void)
692{
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800693 int ret = 0, size;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000694
695 pr_debug("iSCSI-Target "ISCSIT_VERSION"\n");
Markus Elfring3829f382017-04-09 16:00:39 +0200696 iscsit_global = kzalloc(sizeof(*iscsit_global), GFP_KERNEL);
Markus Elfringc46e22f2017-04-09 15:34:50 +0200697 if (!iscsit_global)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000698 return -1;
Markus Elfringc46e22f2017-04-09 15:34:50 +0200699
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800700 spin_lock_init(&iscsit_global->ts_bitmap_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000701 mutex_init(&auth_id_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000702 idr_init(&tiqn_idr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000703
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200704 ret = target_register_template(&iscsi_ops);
705 if (ret)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000706 goto out;
707
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800708 size = BITS_TO_LONGS(ISCSIT_BITMAP_BITS) * sizeof(long);
709 iscsit_global->ts_bitmap = vzalloc(size);
Markus Elfringc46e22f2017-04-09 15:34:50 +0200710 if (!iscsit_global->ts_bitmap)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000711 goto configfs_out;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000712
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000713 lio_qr_cache = kmem_cache_create("lio_qr_cache",
714 sizeof(struct iscsi_queue_req),
715 __alignof__(struct iscsi_queue_req), 0, NULL);
716 if (!lio_qr_cache) {
717 pr_err("nable to kmem_cache_create() for"
718 " lio_qr_cache\n");
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800719 goto bitmap_out;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000720 }
721
722 lio_dr_cache = kmem_cache_create("lio_dr_cache",
723 sizeof(struct iscsi_datain_req),
724 __alignof__(struct iscsi_datain_req), 0, NULL);
725 if (!lio_dr_cache) {
726 pr_err("Unable to kmem_cache_create() for"
727 " lio_dr_cache\n");
728 goto qr_out;
729 }
730
731 lio_ooo_cache = kmem_cache_create("lio_ooo_cache",
732 sizeof(struct iscsi_ooo_cmdsn),
733 __alignof__(struct iscsi_ooo_cmdsn), 0, NULL);
734 if (!lio_ooo_cache) {
735 pr_err("Unable to kmem_cache_create() for"
736 " lio_ooo_cache\n");
737 goto dr_out;
738 }
739
740 lio_r2t_cache = kmem_cache_create("lio_r2t_cache",
741 sizeof(struct iscsi_r2t), __alignof__(struct iscsi_r2t),
742 0, NULL);
743 if (!lio_r2t_cache) {
744 pr_err("Unable to kmem_cache_create() for"
745 " lio_r2t_cache\n");
746 goto ooo_out;
747 }
748
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800749 iscsit_register_transport(&iscsi_target_transport);
750
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000751 if (iscsit_load_discovery_tpg() < 0)
752 goto r2t_out;
753
754 return ret;
755r2t_out:
Lino Sanfilippo7f2c53b2014-11-30 12:00:11 +0100756 iscsit_unregister_transport(&iscsi_target_transport);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000757 kmem_cache_destroy(lio_r2t_cache);
758ooo_out:
759 kmem_cache_destroy(lio_ooo_cache);
760dr_out:
761 kmem_cache_destroy(lio_dr_cache);
762qr_out:
763 kmem_cache_destroy(lio_qr_cache);
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800764bitmap_out:
765 vfree(iscsit_global->ts_bitmap);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000766configfs_out:
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200767 /* XXX: this probably wants it to be it's own unwind step.. */
768 if (iscsit_global->discovery_tpg)
769 iscsit_tpg_disable_portal_group(iscsit_global->discovery_tpg, 1);
770 target_unregister_template(&iscsi_ops);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000771out:
772 kfree(iscsit_global);
773 return -ENOMEM;
774}
775
776static void __exit iscsi_target_cleanup_module(void)
777{
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000778 iscsit_release_discovery_tpg();
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800779 iscsit_unregister_transport(&iscsi_target_transport);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000780 kmem_cache_destroy(lio_qr_cache);
781 kmem_cache_destroy(lio_dr_cache);
782 kmem_cache_destroy(lio_ooo_cache);
783 kmem_cache_destroy(lio_r2t_cache);
784
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200785 /*
786 * Shutdown discovery sessions and disable discovery TPG
787 */
788 if (iscsit_global->discovery_tpg)
789 iscsit_tpg_disable_portal_group(iscsit_global->discovery_tpg, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000790
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200791 target_unregister_template(&iscsi_ops);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000792
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -0800793 vfree(iscsit_global->ts_bitmap);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000794 kfree(iscsit_global);
795}
796
Varun Prakashd2faaef2016-04-20 00:00:19 +0530797int iscsit_add_reject(
Nicholas Bellingerba159912013-07-03 03:48:24 -0700798 struct iscsi_conn *conn,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000799 u8 reason,
Nicholas Bellingerba159912013-07-03 03:48:24 -0700800 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000801{
802 struct iscsi_cmd *cmd;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000803
Nicholas Bellinger676687c2014-01-20 03:36:44 +0000804 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000805 if (!cmd)
806 return -1;
807
808 cmd->iscsi_opcode = ISCSI_OP_REJECT;
Nicholas Bellingerba159912013-07-03 03:48:24 -0700809 cmd->reject_reason = reason;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000810
Thomas Meyer1c3d5792011-11-17 23:43:40 +0100811 cmd->buf_ptr = kmemdup(buf, ISCSI_HDR_LEN, GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000812 if (!cmd->buf_ptr) {
813 pr_err("Unable to allocate memory for cmd->buf_ptr\n");
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700814 iscsit_free_cmd(cmd, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000815 return -1;
816 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000817
818 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700819 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000820 spin_unlock_bh(&conn->cmd_lock);
821
822 cmd->i_state = ISTATE_SEND_REJECT;
823 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
824
Nicholas Bellingerba159912013-07-03 03:48:24 -0700825 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000826}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530827EXPORT_SYMBOL(iscsit_add_reject);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000828
Nicholas Bellingerba159912013-07-03 03:48:24 -0700829static int iscsit_add_reject_from_cmd(
830 struct iscsi_cmd *cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000831 u8 reason,
Nicholas Bellingerba159912013-07-03 03:48:24 -0700832 bool add_to_conn,
833 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000834{
835 struct iscsi_conn *conn;
Bart Van Asschecfe2b622017-10-31 11:03:17 -0700836 const bool do_put = cmd->se_cmd.se_tfo != NULL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000837
838 if (!cmd->conn) {
839 pr_err("cmd->conn is NULL for ITT: 0x%08x\n",
840 cmd->init_task_tag);
841 return -1;
842 }
843 conn = cmd->conn;
844
845 cmd->iscsi_opcode = ISCSI_OP_REJECT;
Nicholas Bellingerba159912013-07-03 03:48:24 -0700846 cmd->reject_reason = reason;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000847
Thomas Meyer1c3d5792011-11-17 23:43:40 +0100848 cmd->buf_ptr = kmemdup(buf, ISCSI_HDR_LEN, GFP_KERNEL);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000849 if (!cmd->buf_ptr) {
850 pr_err("Unable to allocate memory for cmd->buf_ptr\n");
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -0700851 iscsit_free_cmd(cmd, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000852 return -1;
853 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000854
855 if (add_to_conn) {
856 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -0700857 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000858 spin_unlock_bh(&conn->cmd_lock);
859 }
860
861 cmd->i_state = ISTATE_SEND_REJECT;
862 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800863 /*
864 * Perform the kref_put now if se_cmd has already been setup by
865 * scsit_setup_scsi_cmd()
866 */
Bart Van Asschecfe2b622017-10-31 11:03:17 -0700867 if (do_put) {
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800868 pr_debug("iscsi reject: calling target_put_sess_cmd >>>>>>\n");
Bart Van Asscheafc16602015-04-27 13:52:36 +0200869 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800870 }
Nicholas Bellingerba159912013-07-03 03:48:24 -0700871 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000872}
Nicholas Bellingerba159912013-07-03 03:48:24 -0700873
874static int iscsit_add_reject_cmd(struct iscsi_cmd *cmd, u8 reason,
875 unsigned char *buf)
876{
877 return iscsit_add_reject_from_cmd(cmd, reason, true, buf);
878}
879
880int iscsit_reject_cmd(struct iscsi_cmd *cmd, u8 reason, unsigned char *buf)
881{
882 return iscsit_add_reject_from_cmd(cmd, reason, false, buf);
883}
Varun Prakashd2faaef2016-04-20 00:00:19 +0530884EXPORT_SYMBOL(iscsit_reject_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000885
886/*
887 * Map some portion of the allocated scatterlist to an iovec, suitable for
Andy Groverbfb79ea2012-04-03 15:51:29 -0700888 * kernel sockets to copy data in/out.
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000889 */
890static int iscsit_map_iovec(
891 struct iscsi_cmd *cmd,
892 struct kvec *iov,
893 u32 data_offset,
894 u32 data_length)
895{
896 u32 i = 0;
897 struct scatterlist *sg;
898 unsigned int page_off;
899
900 /*
Andy Groverbfb79ea2012-04-03 15:51:29 -0700901 * We know each entry in t_data_sg contains a page.
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000902 */
Imran Haider2b165092016-05-08 11:17:54 -0400903 u32 ent = data_offset / PAGE_SIZE;
904
905 if (ent >= cmd->se_cmd.t_data_nents) {
906 pr_err("Initial page entry out-of-bounds\n");
907 return -1;
908 }
909
910 sg = &cmd->se_cmd.t_data_sg[ent];
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000911 page_off = (data_offset % PAGE_SIZE);
912
913 cmd->first_data_sg = sg;
914 cmd->first_data_sg_off = page_off;
915
916 while (data_length) {
917 u32 cur_len = min_t(u32, data_length, sg->length - page_off);
918
919 iov[i].iov_base = kmap(sg_page(sg)) + sg->offset + page_off;
920 iov[i].iov_len = cur_len;
921
922 data_length -= cur_len;
923 page_off = 0;
924 sg = sg_next(sg);
925 i++;
926 }
927
928 cmd->kmapped_nents = i;
929
930 return i;
931}
932
933static void iscsit_unmap_iovec(struct iscsi_cmd *cmd)
934{
935 u32 i;
936 struct scatterlist *sg;
937
938 sg = cmd->first_data_sg;
939
940 for (i = 0; i < cmd->kmapped_nents; i++)
941 kunmap(sg_page(&sg[i]));
942}
943
944static void iscsit_ack_from_expstatsn(struct iscsi_conn *conn, u32 exp_statsn)
945{
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700946 LIST_HEAD(ack_list);
947 struct iscsi_cmd *cmd, *cmd_p;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000948
949 conn->exp_statsn = exp_statsn;
950
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800951 if (conn->sess->sess_ops->RDMAExtensions)
952 return;
953
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000954 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700955 list_for_each_entry_safe(cmd, cmd_p, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000956 spin_lock(&cmd->istate_lock);
957 if ((cmd->i_state == ISTATE_SENT_STATUS) &&
Steve Hodgson64c133302012-11-05 18:02:41 -0800958 iscsi_sna_lt(cmd->stat_sn, exp_statsn)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000959 cmd->i_state = ISTATE_REMOVE;
960 spin_unlock(&cmd->istate_lock);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700961 list_move_tail(&cmd->i_conn_node, &ack_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000962 continue;
963 }
964 spin_unlock(&cmd->istate_lock);
965 }
966 spin_unlock_bh(&conn->cmd_lock);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700967
968 list_for_each_entry_safe(cmd, cmd_p, &ack_list, i_conn_node) {
Nicholas Bellinger5159d762014-02-03 12:53:51 -0800969 list_del_init(&cmd->i_conn_node);
Nicholas Bellingerf56cbbb2013-10-03 13:56:14 -0700970 iscsit_free_cmd(cmd, false);
971 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000972}
973
974static int iscsit_allocate_iovecs(struct iscsi_cmd *cmd)
975{
Nicholas Bellingerf80e8ed2012-05-20 17:10:29 -0700976 u32 iov_count = max(1UL, DIV_ROUND_UP(cmd->se_cmd.data_length, PAGE_SIZE));
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000977
Christoph Hellwigc0427f12011-10-12 11:06:56 -0400978 iov_count += ISCSI_IOV_DATA_BUFFER;
Markus Elfringf1725112017-04-09 15:06:00 +0200979 cmd->iov_data = kcalloc(iov_count, sizeof(*cmd->iov_data), GFP_KERNEL);
Markus Elfringc46e22f2017-04-09 15:34:50 +0200980 if (!cmd->iov_data)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000981 return -ENOMEM;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000982
983 cmd->orig_iov_data_count = iov_count;
984 return 0;
985}
986
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800987int iscsit_setup_scsi_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
988 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000989{
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -0800990 int data_direction, payload_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000991 struct iscsi_scsi_req *hdr;
Andy Groverd28b11692012-04-03 15:51:22 -0700992 int iscsi_task_attr;
993 int sam_task_attr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000994
Nicholas Bellinger04f3b312013-11-13 18:54:45 -0800995 atomic_long_inc(&conn->sess->cmd_pdus);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000996
997 hdr = (struct iscsi_scsi_req *) buf;
998 payload_length = ntoh24(hdr->dlength);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000999
1000 /* FIXME; Add checks for AdditionalHeaderSegment */
1001
1002 if (!(hdr->flags & ISCSI_FLAG_CMD_WRITE) &&
1003 !(hdr->flags & ISCSI_FLAG_CMD_FINAL)) {
1004 pr_err("ISCSI_FLAG_CMD_WRITE & ISCSI_FLAG_CMD_FINAL"
1005 " not set. Bad iSCSI Initiator.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001006 return iscsit_add_reject_cmd(cmd,
1007 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001008 }
1009
1010 if (((hdr->flags & ISCSI_FLAG_CMD_READ) ||
1011 (hdr->flags & ISCSI_FLAG_CMD_WRITE)) && !hdr->data_length) {
1012 /*
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001013 * From RFC-3720 Section 10.3.1:
1014 *
1015 * "Either or both of R and W MAY be 1 when either the
1016 * Expected Data Transfer Length and/or Bidirectional Read
1017 * Expected Data Transfer Length are 0"
1018 *
1019 * For this case, go ahead and clear the unnecssary bits
1020 * to avoid any confusion with ->data_direction.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001021 */
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001022 hdr->flags &= ~ISCSI_FLAG_CMD_READ;
1023 hdr->flags &= ~ISCSI_FLAG_CMD_WRITE;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001024
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001025 pr_warn("ISCSI_FLAG_CMD_READ or ISCSI_FLAG_CMD_WRITE"
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001026 " set when Expected Data Transfer Length is 0 for"
Nicholas Bellinger4454b662013-11-25 14:53:57 -08001027 " CDB: 0x%02x, Fixing up flags\n", hdr->cdb[0]);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001028 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001029
1030 if (!(hdr->flags & ISCSI_FLAG_CMD_READ) &&
1031 !(hdr->flags & ISCSI_FLAG_CMD_WRITE) && (hdr->data_length != 0)) {
1032 pr_err("ISCSI_FLAG_CMD_READ and/or ISCSI_FLAG_CMD_WRITE"
1033 " MUST be set if Expected Data Transfer Length is not 0."
1034 " Bad iSCSI Initiator\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001035 return iscsit_add_reject_cmd(cmd,
1036 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001037 }
1038
1039 if ((hdr->flags & ISCSI_FLAG_CMD_READ) &&
1040 (hdr->flags & ISCSI_FLAG_CMD_WRITE)) {
1041 pr_err("Bidirectional operations not supported!\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001042 return iscsit_add_reject_cmd(cmd,
1043 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001044 }
1045
1046 if (hdr->opcode & ISCSI_OP_IMMEDIATE) {
1047 pr_err("Illegally set Immediate Bit in iSCSI Initiator"
1048 " Scsi Command PDU.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001049 return iscsit_add_reject_cmd(cmd,
1050 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001051 }
1052
1053 if (payload_length && !conn->sess->sess_ops->ImmediateData) {
1054 pr_err("ImmediateData=No but DataSegmentLength=%u,"
1055 " protocol error.\n", payload_length);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001056 return iscsit_add_reject_cmd(cmd,
1057 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001058 }
1059
Nicholas Bellingerba159912013-07-03 03:48:24 -07001060 if ((be32_to_cpu(hdr->data_length) == payload_length) &&
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001061 (!(hdr->flags & ISCSI_FLAG_CMD_FINAL))) {
1062 pr_err("Expected Data Transfer Length and Length of"
1063 " Immediate Data are the same, but ISCSI_FLAG_CMD_FINAL"
1064 " bit is not set protocol error\n");
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
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001069 if (payload_length > be32_to_cpu(hdr->data_length)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001070 pr_err("DataSegmentLength: %u is greater than"
1071 " EDTL: %u, protocol error.\n", payload_length,
1072 hdr->data_length);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001073 return iscsit_add_reject_cmd(cmd,
1074 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001075 }
1076
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001077 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001078 pr_err("DataSegmentLength: %u is greater than"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001079 " MaxXmitDataSegmentLength: %u, protocol error.\n",
1080 payload_length, conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001081 return iscsit_add_reject_cmd(cmd,
1082 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001083 }
1084
1085 if (payload_length > conn->sess->sess_ops->FirstBurstLength) {
1086 pr_err("DataSegmentLength: %u is greater than"
1087 " FirstBurstLength: %u, protocol error.\n",
1088 payload_length, conn->sess->sess_ops->FirstBurstLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001089 return iscsit_add_reject_cmd(cmd,
1090 ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001091 }
1092
1093 data_direction = (hdr->flags & ISCSI_FLAG_CMD_WRITE) ? DMA_TO_DEVICE :
1094 (hdr->flags & ISCSI_FLAG_CMD_READ) ? DMA_FROM_DEVICE :
1095 DMA_NONE;
1096
Andy Groverd28b11692012-04-03 15:51:22 -07001097 cmd->data_direction = data_direction;
Andy Groverd28b11692012-04-03 15:51:22 -07001098 iscsi_task_attr = hdr->flags & ISCSI_FLAG_CMD_ATTR_MASK;
1099 /*
1100 * Figure out the SAM Task Attribute for the incoming SCSI CDB
1101 */
1102 if ((iscsi_task_attr == ISCSI_ATTR_UNTAGGED) ||
1103 (iscsi_task_attr == ISCSI_ATTR_SIMPLE))
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001104 sam_task_attr = TCM_SIMPLE_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001105 else if (iscsi_task_attr == ISCSI_ATTR_ORDERED)
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001106 sam_task_attr = TCM_ORDERED_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001107 else if (iscsi_task_attr == ISCSI_ATTR_HEAD_OF_QUEUE)
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001108 sam_task_attr = TCM_HEAD_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001109 else if (iscsi_task_attr == ISCSI_ATTR_ACA)
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001110 sam_task_attr = TCM_ACA_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001111 else {
1112 pr_debug("Unknown iSCSI Task Attribute: 0x%02x, using"
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001113 " TCM_SIMPLE_TAG\n", iscsi_task_attr);
1114 sam_task_attr = TCM_SIMPLE_TAG;
Andy Groverd28b11692012-04-03 15:51:22 -07001115 }
1116
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001117 cmd->iscsi_opcode = ISCSI_OP_SCSI_CMD;
1118 cmd->i_state = ISTATE_NEW_CMD;
1119 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
1120 cmd->immediate_data = (payload_length) ? 1 : 0;
1121 cmd->unsolicited_data = ((!(hdr->flags & ISCSI_FLAG_CMD_FINAL) &&
1122 (hdr->flags & ISCSI_FLAG_CMD_WRITE)) ? 1 : 0);
1123 if (cmd->unsolicited_data)
1124 cmd->cmd_flags |= ICF_NON_IMMEDIATE_UNSOLICITED_DATA;
1125
1126 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
Alexei Potashnik95473082015-07-21 15:07:56 -07001127 if (hdr->flags & ISCSI_FLAG_CMD_READ)
Sagi Grimbergc1e34b62015-01-26 12:49:05 +02001128 cmd->targ_xfer_tag = session_get_next_ttt(conn->sess);
Alexei Potashnik95473082015-07-21 15:07:56 -07001129 else
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001130 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001131 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
1132 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001133 cmd->first_burst_len = payload_length;
1134
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001135 if (!conn->sess->sess_ops->RDMAExtensions &&
1136 cmd->data_direction == DMA_FROM_DEVICE) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001137 struct iscsi_datain_req *dr;
1138
1139 dr = iscsit_allocate_datain_req();
1140 if (!dr)
Nicholas Bellingerba159912013-07-03 03:48:24 -07001141 return iscsit_add_reject_cmd(cmd,
1142 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001143
1144 iscsit_attach_datain_req(cmd, dr);
1145 }
1146
1147 /*
Andy Grover065ca1e2012-04-03 15:51:23 -07001148 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
1149 */
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001150 transport_init_se_cmd(&cmd->se_cmd, &iscsi_ops,
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001151 conn->sess->se_sess, be32_to_cpu(hdr->data_length),
1152 cmd->data_direction, sam_task_attr,
1153 cmd->sense_buffer + 2);
Andy Grover065ca1e2012-04-03 15:51:23 -07001154
1155 pr_debug("Got SCSI Command, ITT: 0x%08x, CmdSN: 0x%08x,"
1156 " ExpXferLen: %u, Length: %u, CID: %hu\n", hdr->itt,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001157 hdr->cmdsn, be32_to_cpu(hdr->data_length), payload_length,
1158 conn->cid);
1159
Bart Van Assche1cad1a62020-02-12 21:09:00 -08001160 target_get_sess_cmd(&cmd->se_cmd, true);
Andy Grover065ca1e2012-04-03 15:51:23 -07001161
Christoph Hellwigde103c92012-11-06 12:24:09 -08001162 cmd->sense_reason = transport_lookup_cmd_lun(&cmd->se_cmd,
1163 scsilun_to_int(&hdr->lun));
1164 if (cmd->sense_reason)
1165 goto attach_cmd;
1166
Bart Van Assche649ee052015-04-14 13:26:44 +02001167 /* only used for printks or comparing with ->ref_task_tag */
1168 cmd->se_cmd.tag = (__force u32)cmd->init_task_tag;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001169 cmd->sense_reason = target_setup_cmd_from_cdb(&cmd->se_cmd, hdr->cdb);
1170 if (cmd->sense_reason) {
1171 if (cmd->sense_reason == TCM_OUT_OF_RESOURCES) {
Nicholas Bellingerba159912013-07-03 03:48:24 -07001172 return iscsit_add_reject_cmd(cmd,
1173 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001174 }
Christoph Hellwigde103c92012-11-06 12:24:09 -08001175
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001176 goto attach_cmd;
1177 }
Andy Grovera12f41f2012-04-03 15:51:20 -07001178
Christoph Hellwigde103c92012-11-06 12:24:09 -08001179 if (iscsit_build_pdu_and_seq_lists(cmd, payload_length) < 0) {
Nicholas Bellingerba159912013-07-03 03:48:24 -07001180 return iscsit_add_reject_cmd(cmd,
1181 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001182 }
1183
1184attach_cmd:
1185 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07001186 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001187 spin_unlock_bh(&conn->cmd_lock);
1188 /*
1189 * Check if we need to delay processing because of ALUA
1190 * Active/NonOptimized primary access state..
1191 */
1192 core_alua_check_nonop_delay(&cmd->se_cmd);
Andy Groverbfb79ea2012-04-03 15:51:29 -07001193
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001194 return 0;
1195}
1196EXPORT_SYMBOL(iscsit_setup_scsi_cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001197
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001198void iscsit_set_unsoliticed_dataout(struct iscsi_cmd *cmd)
1199{
1200 iscsit_set_dataout_sequence_values(cmd);
1201
1202 spin_lock_bh(&cmd->dataout_timeout_lock);
1203 iscsit_start_dataout_timer(cmd, cmd->conn);
1204 spin_unlock_bh(&cmd->dataout_timeout_lock);
1205}
1206EXPORT_SYMBOL(iscsit_set_unsoliticed_dataout);
1207
1208int iscsit_process_scsi_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1209 struct iscsi_scsi_req *hdr)
1210{
1211 int cmdsn_ret = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001212 /*
1213 * Check the CmdSN against ExpCmdSN/MaxCmdSN here if
1214 * the Immediate Bit is not set, and no Immediate
1215 * Data is attached.
1216 *
1217 * A PDU/CmdSN carrying Immediate Data can only
1218 * be processed after the DataCRC has passed.
1219 * If the DataCRC fails, the CmdSN MUST NOT
1220 * be acknowledged. (See below)
1221 */
1222 if (!cmd->immediate_data) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001223 cmdsn_ret = iscsit_sequence_cmd(conn, cmd,
1224 (unsigned char *)hdr, hdr->cmdsn);
1225 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
1226 return -1;
1227 else if (cmdsn_ret == CMDSN_LOWER_THAN_EXP) {
Bart Van Asscheafc16602015-04-27 13:52:36 +02001228 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger7e32da52011-10-28 13:32:35 -07001229 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001230 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001231 }
1232
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001233 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001234
1235 /*
1236 * If no Immediate Data is attached, it's OK to return now.
1237 */
1238 if (!cmd->immediate_data) {
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001239 if (!cmd->sense_reason && cmd->unsolicited_data)
1240 iscsit_set_unsoliticed_dataout(cmd);
1241 if (!cmd->sense_reason)
1242 return 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001243
Bart Van Asscheafc16602015-04-27 13:52:36 +02001244 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001245 return 0;
1246 }
1247
1248 /*
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001249 * Early CHECK_CONDITIONs with ImmediateData never make it to command
1250 * execution. These exceptions are processed in CmdSN order using
1251 * iscsit_check_received_cmdsn() in iscsit_get_immediate_data() below.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001252 */
Bart Van Assche8fa40112017-05-23 16:48:45 -07001253 if (cmd->sense_reason)
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001254 return 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001255 /*
1256 * Call directly into transport_generic_new_cmd() to perform
1257 * the backend memory allocation.
1258 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001259 cmd->sense_reason = transport_generic_new_cmd(&cmd->se_cmd);
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001260 if (cmd->sense_reason)
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001261 return 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001262
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001263 return 0;
1264}
1265EXPORT_SYMBOL(iscsit_process_scsi_cmd);
1266
1267static int
1268iscsit_get_immediate_data(struct iscsi_cmd *cmd, struct iscsi_scsi_req *hdr,
1269 bool dump_payload)
1270{
1271 int cmdsn_ret = 0, immed_ret = IMMEDIATE_DATA_NORMAL_OPERATION;
1272 /*
1273 * Special case for Unsupported SAM WRITE Opcodes and ImmediateData=Yes.
1274 */
Christophe Vu-Brugier0bcc2972014-06-06 17:15:16 +02001275 if (dump_payload)
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001276 goto after_immediate_data;
Nicholas Bellingerabb85a92017-06-07 20:29:50 -07001277 /*
1278 * Check for underflow case where both EDTL and immediate data payload
1279 * exceeds what is presented by CDB's TRANSFER LENGTH, and what has
1280 * already been set in target_cmd_size_check() as se_cmd->data_length.
1281 *
1282 * For this special case, fail the command and dump the immediate data
1283 * payload.
1284 */
1285 if (cmd->first_burst_len > cmd->se_cmd.data_length) {
1286 cmd->sense_reason = TCM_INVALID_CDB_FIELD;
1287 goto after_immediate_data;
1288 }
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001289
1290 immed_ret = iscsit_handle_immediate_data(cmd, hdr,
1291 cmd->first_burst_len);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001292after_immediate_data:
1293 if (immed_ret == IMMEDIATE_DATA_NORMAL_OPERATION) {
1294 /*
1295 * A PDU/CmdSN carrying Immediate Data passed
1296 * DataCRC, check against ExpCmdSN/MaxCmdSN if
1297 * Immediate Bit is not set.
1298 */
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001299 cmdsn_ret = iscsit_sequence_cmd(cmd->conn, cmd,
1300 (unsigned char *)hdr, hdr->cmdsn);
Nicholas Bellinger9d86a2b2013-08-22 00:05:45 -07001301 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001302 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001303
Nicholas Bellinger9d86a2b2013-08-22 00:05:45 -07001304 if (cmd->sense_reason || cmdsn_ret == CMDSN_LOWER_THAN_EXP) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001305 int rc;
1306
1307 rc = iscsit_dump_data_payload(cmd->conn,
1308 cmd->first_burst_len, 1);
Bart Van Asscheafc16602015-04-27 13:52:36 +02001309 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001310 return rc;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001311 } else if (cmd->unsolicited_data)
1312 iscsit_set_unsoliticed_dataout(cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001313
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001314 } else if (immed_ret == IMMEDIATE_DATA_ERL1_CRC_FAILURE) {
1315 /*
1316 * Immediate Data failed DataCRC and ERL>=1,
1317 * silently drop this PDU and let the initiator
1318 * plug the CmdSN gap.
1319 *
1320 * FIXME: Send Unsolicited NOPIN with reserved
1321 * TTT here to help the initiator figure out
1322 * the missing CmdSN, although they should be
1323 * intelligent enough to determine the missing
1324 * CmdSN and issue a retry to plug the sequence.
1325 */
1326 cmd->i_state = ISTATE_REMOVE;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001327 iscsit_add_cmd_to_immediate_queue(cmd, cmd->conn, cmd->i_state);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001328 } else /* immed_ret == IMMEDIATE_DATA_CANNOT_RECOVER */
1329 return -1;
1330
1331 return 0;
1332}
1333
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001334static int
1335iscsit_handle_scsi_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1336 unsigned char *buf)
1337{
1338 struct iscsi_scsi_req *hdr = (struct iscsi_scsi_req *)buf;
1339 int rc, immed_data;
1340 bool dump_payload = false;
1341
1342 rc = iscsit_setup_scsi_cmd(conn, cmd, buf);
1343 if (rc < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001344 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001345 /*
1346 * Allocation iovecs needed for struct socket operations for
1347 * traditional iSCSI block I/O.
1348 */
1349 if (iscsit_allocate_iovecs(cmd) < 0) {
Mike Christieb815fc12015-04-10 02:47:27 -05001350 return iscsit_reject_cmd(cmd,
Nicholas Bellingerba159912013-07-03 03:48:24 -07001351 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001352 }
1353 immed_data = cmd->immediate_data;
1354
1355 rc = iscsit_process_scsi_cmd(conn, cmd, hdr);
1356 if (rc < 0)
1357 return rc;
1358 else if (rc > 0)
1359 dump_payload = true;
1360
1361 if (!immed_data)
1362 return 0;
1363
1364 return iscsit_get_immediate_data(cmd, hdr, dump_payload);
1365}
1366
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001367static u32 iscsit_do_crypto_hash_sg(
Herbert Xu69110e32016-01-24 21:19:52 +08001368 struct ahash_request *hash,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001369 struct iscsi_cmd *cmd,
1370 u32 data_offset,
1371 u32 data_length,
1372 u32 padding,
1373 u8 *pad_bytes)
1374{
1375 u32 data_crc;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001376 struct scatterlist *sg;
1377 unsigned int page_off;
1378
Herbert Xu69110e32016-01-24 21:19:52 +08001379 crypto_ahash_init(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001380
1381 sg = cmd->first_data_sg;
1382 page_off = cmd->first_data_sg_off;
1383
Varun Prakash549a2ca2020-08-25 18:05:10 +05301384 if (data_length && page_off) {
1385 struct scatterlist first_sg;
1386 u32 len = min_t(u32, data_length, sg->length - page_off);
1387
1388 sg_init_table(&first_sg, 1);
1389 sg_set_page(&first_sg, sg_page(sg), len, sg->offset + page_off);
1390
1391 ahash_request_set_crypt(hash, &first_sg, NULL, len);
1392 crypto_ahash_update(hash);
1393
1394 data_length -= len;
1395 sg = sg_next(sg);
1396 }
1397
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001398 while (data_length) {
Varun Prakash549a2ca2020-08-25 18:05:10 +05301399 u32 cur_len = min_t(u32, data_length, sg->length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001400
Herbert Xu69110e32016-01-24 21:19:52 +08001401 ahash_request_set_crypt(hash, sg, NULL, cur_len);
1402 crypto_ahash_update(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001403
1404 data_length -= cur_len;
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
Bart Van Asschee1dfb212017-10-31 11:03:16 -07001424static void iscsit_do_crypto_hash_buf(struct ahash_request *hash,
1425 const void *buf, u32 payload_length, u32 padding,
1426 const void *pad_bytes, void *data_crc)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001427{
Herbert Xu69110e32016-01-24 21:19:52 +08001428 struct scatterlist sg[2];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001429
Herbert Xu69110e32016-01-24 21:19:52 +08001430 sg_init_table(sg, ARRAY_SIZE(sg));
1431 sg_set_buf(sg, buf, payload_length);
Laura Abbott679fcae2018-09-04 11:47:40 -07001432 if (padding)
1433 sg_set_buf(sg + 1, pad_bytes, padding);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001434
Herbert Xu69110e32016-01-24 21:19:52 +08001435 ahash_request_set_crypt(hash, sg, data_crc, payload_length + padding);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001436
Herbert Xu69110e32016-01-24 21:19:52 +08001437 crypto_ahash_digest(hash);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001438}
1439
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001440int
Varun Prakash9a584bf2017-01-13 20:53:21 +05301441__iscsit_check_dataout_hdr(struct iscsi_conn *conn, void *buf,
1442 struct iscsi_cmd *cmd, u32 payload_length,
1443 bool *success)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001444{
Varun Prakash9a584bf2017-01-13 20:53:21 +05301445 struct iscsi_data *hdr = buf;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001446 struct se_cmd *se_cmd;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001447 int rc;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001448
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001449 /* iSCSI write */
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08001450 atomic_long_add(payload_length, &conn->sess->rx_data_octets);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001451
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001452 pr_debug("Got DataOut ITT: 0x%08x, TTT: 0x%08x,"
1453 " DataSN: 0x%08x, Offset: %u, Length: %u, CID: %hu\n",
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001454 hdr->itt, hdr->ttt, hdr->datasn, ntohl(hdr->offset),
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001455 payload_length, conn->cid);
1456
1457 if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT) {
1458 pr_err("Command ITT: 0x%08x received DataOUT after"
1459 " last DataOUT received, dumping payload\n",
1460 cmd->init_task_tag);
1461 return iscsit_dump_data_payload(conn, payload_length, 1);
1462 }
1463
1464 if (cmd->data_direction != DMA_TO_DEVICE) {
1465 pr_err("Command ITT: 0x%08x received DataOUT for a"
1466 " NON-WRITE command.\n", cmd->init_task_tag);
Nicholas Bellinger97c99b472014-06-20 10:59:57 -07001467 return iscsit_dump_data_payload(conn, payload_length, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001468 }
1469 se_cmd = &cmd->se_cmd;
1470 iscsit_mod_dataout_timer(cmd);
1471
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001472 if ((be32_to_cpu(hdr->offset) + payload_length) > cmd->se_cmd.data_length) {
Bart Van Asschede3493a2017-10-31 11:03:15 -07001473 pr_err("DataOut Offset: %u, Length %u greater than iSCSI Command EDTL %u, protocol error.\n",
1474 be32_to_cpu(hdr->offset), payload_length,
1475 cmd->se_cmd.data_length);
Nicholas Bellingerba159912013-07-03 03:48:24 -07001476 return iscsit_reject_cmd(cmd, ISCSI_REASON_BOOKMARK_INVALID, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001477 }
1478
1479 if (cmd->unsolicited_data) {
1480 int dump_unsolicited_data = 0;
1481
1482 if (conn->sess->sess_ops->InitialR2T) {
1483 pr_err("Received unexpected unsolicited data"
1484 " while InitialR2T=Yes, protocol error.\n");
1485 transport_send_check_condition_and_sense(&cmd->se_cmd,
1486 TCM_UNEXPECTED_UNSOLICITED_DATA, 0);
1487 return -1;
1488 }
1489 /*
1490 * Special case for dealing with Unsolicited DataOUT
1491 * and Unsupported SAM WRITE Opcodes and SE resource allocation
1492 * failures;
1493 */
1494
1495 /* Something's amiss if we're not in WRITE_PENDING state... */
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001496 WARN_ON(se_cmd->t_state != TRANSPORT_WRITE_PENDING);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001497 if (!(se_cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001498 dump_unsolicited_data = 1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001499
1500 if (dump_unsolicited_data) {
1501 /*
1502 * Check if a delayed TASK_ABORTED status needs to
1503 * be sent now if the ISCSI_FLAG_CMD_FINAL has been
Bart Van Assche5a342522015-10-22 15:53:22 -07001504 * received with the unsolicited data out.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001505 */
1506 if (hdr->flags & ISCSI_FLAG_CMD_FINAL)
1507 iscsit_stop_dataout_timer(cmd);
1508
1509 transport_check_aborted_status(se_cmd,
1510 (hdr->flags & ISCSI_FLAG_CMD_FINAL));
1511 return iscsit_dump_data_payload(conn, payload_length, 1);
1512 }
1513 } else {
1514 /*
1515 * For the normal solicited data path:
1516 *
1517 * Check for a delayed TASK_ABORTED status and dump any
1518 * incoming data out payload if one exists. Also, when the
1519 * ISCSI_FLAG_CMD_FINAL is set to denote the end of the current
1520 * data out sequence, we decrement outstanding_r2ts. Once
1521 * outstanding_r2ts reaches zero, go ahead and send the delayed
1522 * TASK_ABORTED status.
1523 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001524 if (se_cmd->transport_state & CMD_T_ABORTED) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001525 if (hdr->flags & ISCSI_FLAG_CMD_FINAL)
1526 if (--cmd->outstanding_r2ts < 1) {
1527 iscsit_stop_dataout_timer(cmd);
1528 transport_check_aborted_status(
1529 se_cmd, 1);
1530 }
1531
1532 return iscsit_dump_data_payload(conn, payload_length, 1);
1533 }
1534 }
1535 /*
Bart Van Assche0d5efb82016-12-23 14:37:52 +01001536 * Perform DataSN, DataSequenceInOrder, DataPDUInOrder, and
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001537 * within-command recovery checks before receiving the payload.
1538 */
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001539 rc = iscsit_check_pre_dataout(cmd, buf);
1540 if (rc == DATAOUT_WITHIN_COMMAND_RECOVERY)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001541 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001542 else if (rc == DATAOUT_CANNOT_RECOVER)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001543 return -1;
Varun Prakash9a584bf2017-01-13 20:53:21 +05301544 *success = true;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001545 return 0;
1546}
Varun Prakash9a584bf2017-01-13 20:53:21 +05301547EXPORT_SYMBOL(__iscsit_check_dataout_hdr);
1548
1549int
1550iscsit_check_dataout_hdr(struct iscsi_conn *conn, void *buf,
1551 struct iscsi_cmd **out_cmd)
1552{
1553 struct iscsi_data *hdr = buf;
1554 struct iscsi_cmd *cmd;
1555 u32 payload_length = ntoh24(hdr->dlength);
1556 int rc;
1557 bool success = false;
1558
1559 if (!payload_length) {
1560 pr_warn_ratelimited("DataOUT payload is ZERO, ignoring.\n");
1561 return 0;
1562 }
1563
1564 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
1565 pr_err_ratelimited("DataSegmentLength: %u is greater than"
1566 " MaxXmitDataSegmentLength: %u\n", payload_length,
1567 conn->conn_ops->MaxXmitDataSegmentLength);
1568 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR, buf);
1569 }
1570
1571 cmd = iscsit_find_cmd_from_itt_or_dump(conn, hdr->itt, payload_length);
1572 if (!cmd)
1573 return 0;
1574
1575 rc = __iscsit_check_dataout_hdr(conn, buf, cmd, payload_length, &success);
1576
1577 if (success)
1578 *out_cmd = cmd;
1579
1580 return rc;
1581}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001582EXPORT_SYMBOL(iscsit_check_dataout_hdr);
1583
1584static int
1585iscsit_get_dataout(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1586 struct iscsi_data *hdr)
1587{
1588 struct kvec *iov;
1589 u32 checksum, iov_count = 0, padding = 0, rx_got = 0, rx_size = 0;
1590 u32 payload_length = ntoh24(hdr->dlength);
1591 int iov_ret, data_crc_failed = 0;
1592
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001593 rx_size += payload_length;
1594 iov = &cmd->iov_data[0];
1595
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001596 iov_ret = iscsit_map_iovec(cmd, iov, be32_to_cpu(hdr->offset),
1597 payload_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001598 if (iov_ret < 0)
1599 return -1;
1600
1601 iov_count += iov_ret;
1602
1603 padding = ((-payload_length) & 3);
1604 if (padding != 0) {
1605 iov[iov_count].iov_base = cmd->pad_bytes;
1606 iov[iov_count++].iov_len = padding;
1607 rx_size += padding;
1608 pr_debug("Receiving %u padding bytes.\n", padding);
1609 }
1610
1611 if (conn->conn_ops->DataDigest) {
1612 iov[iov_count].iov_base = &checksum;
1613 iov[iov_count++].iov_len = ISCSI_CRC_LEN;
1614 rx_size += ISCSI_CRC_LEN;
1615 }
1616
1617 rx_got = rx_data(conn, &cmd->iov_data[0], iov_count, rx_size);
1618
1619 iscsit_unmap_iovec(cmd);
1620
1621 if (rx_got != rx_size)
1622 return -1;
1623
1624 if (conn->conn_ops->DataDigest) {
1625 u32 data_crc;
1626
Herbert Xu69110e32016-01-24 21:19:52 +08001627 data_crc = iscsit_do_crypto_hash_sg(conn->conn_rx_hash, cmd,
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001628 be32_to_cpu(hdr->offset),
1629 payload_length, padding,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001630 cmd->pad_bytes);
1631
1632 if (checksum != data_crc) {
1633 pr_err("ITT: 0x%08x, Offset: %u, Length: %u,"
1634 " DataSN: 0x%08x, CRC32C DataDigest 0x%08x"
1635 " does not match computed 0x%08x\n",
1636 hdr->itt, hdr->offset, payload_length,
1637 hdr->datasn, checksum, data_crc);
1638 data_crc_failed = 1;
1639 } else {
1640 pr_debug("Got CRC32C DataDigest 0x%08x for"
1641 " %u bytes of Data Out\n", checksum,
1642 payload_length);
1643 }
1644 }
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001645
1646 return data_crc_failed;
1647}
1648
1649int
1650iscsit_check_dataout_payload(struct iscsi_cmd *cmd, struct iscsi_data *hdr,
1651 bool data_crc_failed)
1652{
1653 struct iscsi_conn *conn = cmd->conn;
1654 int rc, ooo_cmdsn;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001655 /*
1656 * Increment post receive data and CRC values or perform
1657 * within-command recovery.
1658 */
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001659 rc = iscsit_check_post_dataout(cmd, (unsigned char *)hdr, data_crc_failed);
1660 if ((rc == DATAOUT_NORMAL) || (rc == DATAOUT_WITHIN_COMMAND_RECOVERY))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001661 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001662 else if (rc == DATAOUT_SEND_R2T) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001663 iscsit_set_dataout_sequence_values(cmd);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001664 conn->conn_transport->iscsit_get_dataout(conn, cmd, false);
1665 } else if (rc == DATAOUT_SEND_TO_TRANSPORT) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001666 /*
1667 * Handle extra special case for out of order
1668 * Unsolicited Data Out.
1669 */
1670 spin_lock_bh(&cmd->istate_lock);
1671 ooo_cmdsn = (cmd->cmd_flags & ICF_OOO_CMDSN);
1672 cmd->cmd_flags |= ICF_GOT_LAST_DATAOUT;
1673 cmd->i_state = ISTATE_RECEIVED_LAST_DATAOUT;
1674 spin_unlock_bh(&cmd->istate_lock);
1675
1676 iscsit_stop_dataout_timer(cmd);
Christoph Hellwig67441b62012-07-08 15:58:42 -04001677 if (ooo_cmdsn)
1678 return 0;
1679 target_execute_cmd(&cmd->se_cmd);
1680 return 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001681 } else /* DATAOUT_CANNOT_RECOVER */
1682 return -1;
1683
1684 return 0;
1685}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001686EXPORT_SYMBOL(iscsit_check_dataout_payload);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001687
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001688static int iscsit_handle_data_out(struct iscsi_conn *conn, unsigned char *buf)
1689{
Nicholas Bellingerdbcbc952013-11-06 20:55:39 -08001690 struct iscsi_cmd *cmd = NULL;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001691 struct iscsi_data *hdr = (struct iscsi_data *)buf;
1692 int rc;
1693 bool data_crc_failed = false;
1694
1695 rc = iscsit_check_dataout_hdr(conn, buf, &cmd);
1696 if (rc < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001697 return 0;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001698 else if (!cmd)
1699 return 0;
1700
1701 rc = iscsit_get_dataout(conn, cmd, hdr);
1702 if (rc < 0)
1703 return rc;
1704 else if (rc > 0)
1705 data_crc_failed = true;
1706
1707 return iscsit_check_dataout_payload(cmd, hdr, data_crc_failed);
1708}
1709
Nicholas Bellinger778de362013-06-14 16:07:47 -07001710int iscsit_setup_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1711 struct iscsi_nopout *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001712{
Nicholas Bellinger778de362013-06-14 16:07:47 -07001713 u32 payload_length = ntoh24(hdr->dlength);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001714
Arshad Hussaina3662602014-03-14 15:28:59 -07001715 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL)) {
1716 pr_err("NopOUT Flag's, Left Most Bit not set, protocol error.\n");
1717 if (!cmd)
1718 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1719 (unsigned char *)hdr);
1720
1721 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
1722 (unsigned char *)hdr);
1723 }
1724
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001725 if (hdr->itt == RESERVED_ITT && !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001726 pr_err("NOPOUT ITT is reserved, but Immediate Bit is"
1727 " not set, protocol error.\n");
Nicholas Bellinger28aaa952013-08-23 22:28:56 -07001728 if (!cmd)
1729 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1730 (unsigned char *)hdr);
1731
Nicholas Bellingerba159912013-07-03 03:48:24 -07001732 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
1733 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001734 }
1735
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001736 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001737 pr_err("NOPOUT Ping Data DataSegmentLength: %u is"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001738 " greater than MaxXmitDataSegmentLength: %u, protocol"
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001739 " error.\n", payload_length,
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07001740 conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellinger28aaa952013-08-23 22:28:56 -07001741 if (!cmd)
1742 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1743 (unsigned char *)hdr);
1744
Nicholas Bellingerba159912013-07-03 03:48:24 -07001745 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
1746 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001747 }
1748
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001749 pr_debug("Got NOPOUT Ping %s ITT: 0x%08x, TTT: 0x%08x,"
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001750 " CmdSN: 0x%08x, ExpStatSN: 0x%08x, Length: %u\n",
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001751 hdr->itt == RESERVED_ITT ? "Response" : "Request",
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001752 hdr->itt, hdr->ttt, hdr->cmdsn, hdr->exp_statsn,
1753 payload_length);
1754 /*
1755 * This is not a response to a Unsolicited NopIN, which means
1756 * it can either be a NOPOUT ping request (with a valid ITT),
1757 * or a NOPOUT not requesting a NOPIN (with a reserved ITT).
1758 * Either way, make sure we allocate an struct iscsi_cmd, as both
1759 * can contain ping data.
1760 */
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001761 if (hdr->ttt == cpu_to_be32(0xFFFFFFFF)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001762 cmd->iscsi_opcode = ISCSI_OP_NOOP_OUT;
1763 cmd->i_state = ISTATE_SEND_NOPIN;
1764 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ?
1765 1 : 0);
1766 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
1767 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001768 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
1769 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001770 cmd->data_direction = DMA_NONE;
1771 }
1772
Nicholas Bellinger778de362013-06-14 16:07:47 -07001773 return 0;
1774}
1775EXPORT_SYMBOL(iscsit_setup_nop_out);
1776
1777int iscsit_process_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1778 struct iscsi_nopout *hdr)
1779{
1780 struct iscsi_cmd *cmd_p = NULL;
1781 int cmdsn_ret = 0;
1782 /*
1783 * Initiator is expecting a NopIN ping reply..
1784 */
1785 if (hdr->itt != RESERVED_ITT) {
Nicholas Bellinger7cbfcc92014-05-01 13:44:56 -07001786 if (!cmd)
1787 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
1788 (unsigned char *)hdr);
Nicholas Bellinger778de362013-06-14 16:07:47 -07001789
1790 spin_lock_bh(&conn->cmd_lock);
1791 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
1792 spin_unlock_bh(&conn->cmd_lock);
1793
1794 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
1795
1796 if (hdr->opcode & ISCSI_OP_IMMEDIATE) {
1797 iscsit_add_cmd_to_response_queue(cmd, conn,
1798 cmd->i_state);
1799 return 0;
1800 }
1801
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001802 cmdsn_ret = iscsit_sequence_cmd(conn, cmd,
1803 (unsigned char *)hdr, hdr->cmdsn);
Nicholas Bellinger778de362013-06-14 16:07:47 -07001804 if (cmdsn_ret == CMDSN_LOWER_THAN_EXP)
1805 return 0;
Nicholas Bellinger778de362013-06-14 16:07:47 -07001806 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellingerba159912013-07-03 03:48:24 -07001807 return -1;
Nicholas Bellinger778de362013-06-14 16:07:47 -07001808
1809 return 0;
1810 }
1811 /*
1812 * This was a response to a unsolicited NOPIN ping.
1813 */
1814 if (hdr->ttt != cpu_to_be32(0xFFFFFFFF)) {
1815 cmd_p = iscsit_find_cmd_from_ttt(conn, be32_to_cpu(hdr->ttt));
1816 if (!cmd_p)
1817 return -EINVAL;
1818
1819 iscsit_stop_nopin_response_timer(conn);
1820
1821 cmd_p->i_state = ISTATE_REMOVE;
1822 iscsit_add_cmd_to_immediate_queue(cmd_p, conn, cmd_p->i_state);
1823
1824 iscsit_start_nopin_timer(conn);
1825 return 0;
1826 }
1827 /*
1828 * Otherwise, initiator is not expecting a NOPIN is response.
1829 * Just ignore for now.
1830 */
Varun Prakash1a40f0a2016-09-15 21:20:11 +05301831
1832 if (cmd)
1833 iscsit_free_cmd(cmd, false);
1834
Nicholas Bellinger778de362013-06-14 16:07:47 -07001835 return 0;
1836}
1837EXPORT_SYMBOL(iscsit_process_nop_out);
1838
1839static int iscsit_handle_nop_out(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1840 unsigned char *buf)
1841{
1842 unsigned char *ping_data = NULL;
1843 struct iscsi_nopout *hdr = (struct iscsi_nopout *)buf;
1844 struct kvec *iov = NULL;
1845 u32 payload_length = ntoh24(hdr->dlength);
1846 int ret;
1847
1848 ret = iscsit_setup_nop_out(conn, cmd, hdr);
1849 if (ret < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07001850 return 0;
Nicholas Bellinger778de362013-06-14 16:07:47 -07001851 /*
1852 * Handle NOP-OUT payload for traditional iSCSI sockets
1853 */
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001854 if (payload_length && hdr->ttt == cpu_to_be32(0xFFFFFFFF)) {
Nicholas Bellinger778de362013-06-14 16:07:47 -07001855 u32 checksum, data_crc, padding = 0;
1856 int niov = 0, rx_got, rx_size = payload_length;
1857
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001858 ping_data = kzalloc(payload_length + 1, GFP_KERNEL);
1859 if (!ping_data) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001860 ret = -1;
1861 goto out;
1862 }
1863
1864 iov = &cmd->iov_misc[0];
1865 iov[niov].iov_base = ping_data;
1866 iov[niov++].iov_len = payload_length;
1867
1868 padding = ((-payload_length) & 3);
1869 if (padding != 0) {
1870 pr_debug("Receiving %u additional bytes"
1871 " for padding.\n", padding);
1872 iov[niov].iov_base = &cmd->pad_bytes;
1873 iov[niov++].iov_len = padding;
1874 rx_size += padding;
1875 }
1876 if (conn->conn_ops->DataDigest) {
1877 iov[niov].iov_base = &checksum;
1878 iov[niov++].iov_len = ISCSI_CRC_LEN;
1879 rx_size += ISCSI_CRC_LEN;
1880 }
1881
1882 rx_got = rx_data(conn, &cmd->iov_misc[0], niov, rx_size);
1883 if (rx_got != rx_size) {
1884 ret = -1;
1885 goto out;
1886 }
1887
1888 if (conn->conn_ops->DataDigest) {
Bart Van Asschee1dfb212017-10-31 11:03:16 -07001889 iscsit_do_crypto_hash_buf(conn->conn_rx_hash, ping_data,
1890 payload_length, padding,
1891 cmd->pad_bytes, &data_crc);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001892
1893 if (checksum != data_crc) {
1894 pr_err("Ping data CRC32C DataDigest"
1895 " 0x%08x does not match computed 0x%08x\n",
1896 checksum, data_crc);
1897 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
1898 pr_err("Unable to recover from"
1899 " NOPOUT Ping DataCRC failure while in"
1900 " ERL=0.\n");
1901 ret = -1;
1902 goto out;
1903 } else {
1904 /*
1905 * Silently drop this PDU and let the
1906 * initiator plug the CmdSN gap.
1907 */
1908 pr_debug("Dropping NOPOUT"
1909 " Command CmdSN: 0x%08x due to"
1910 " DataCRC error.\n", hdr->cmdsn);
1911 ret = 0;
1912 goto out;
1913 }
1914 } else {
1915 pr_debug("Got CRC32C DataDigest"
1916 " 0x%08x for %u bytes of ping data.\n",
1917 checksum, payload_length);
1918 }
1919 }
1920
1921 ping_data[payload_length] = '\0';
1922 /*
1923 * Attach ping data to struct iscsi_cmd->buf_ptr.
1924 */
Jörn Engel8359cf42011-11-24 02:05:51 +01001925 cmd->buf_ptr = ping_data;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001926 cmd->buf_ptr_size = payload_length;
1927
1928 pr_debug("Got %u bytes of NOPOUT ping"
1929 " data.\n", payload_length);
1930 pr_debug("Ping Data: \"%s\"\n", ping_data);
1931 }
1932
Nicholas Bellinger778de362013-06-14 16:07:47 -07001933 return iscsit_process_nop_out(conn, cmd, hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001934out:
1935 if (cmd)
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -07001936 iscsit_free_cmd(cmd, false);
Nicholas Bellinger778de362013-06-14 16:07:47 -07001937
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001938 kfree(ping_data);
1939 return ret;
1940}
1941
Bart Van Asschee381fe92017-01-06 11:32:08 +01001942static enum tcm_tmreq_table iscsit_convert_tmf(u8 iscsi_tmf)
1943{
1944 switch (iscsi_tmf) {
1945 case ISCSI_TM_FUNC_ABORT_TASK:
1946 return TMR_ABORT_TASK;
1947 case ISCSI_TM_FUNC_ABORT_TASK_SET:
1948 return TMR_ABORT_TASK_SET;
1949 case ISCSI_TM_FUNC_CLEAR_ACA:
1950 return TMR_CLEAR_ACA;
1951 case ISCSI_TM_FUNC_CLEAR_TASK_SET:
1952 return TMR_CLEAR_TASK_SET;
1953 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET:
1954 return TMR_LUN_RESET;
1955 case ISCSI_TM_FUNC_TARGET_WARM_RESET:
1956 return TMR_TARGET_WARM_RESET;
1957 case ISCSI_TM_FUNC_TARGET_COLD_RESET:
1958 return TMR_TARGET_COLD_RESET;
1959 default:
1960 return TMR_UNKNOWN;
1961 }
1962}
1963
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08001964int
1965iscsit_handle_task_mgt_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
1966 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001967{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001968 struct se_tmr_req *se_tmr;
1969 struct iscsi_tmr_req *tmr_req;
1970 struct iscsi_tm *hdr;
Nicholas Bellinger186a9642013-07-03 03:11:48 -07001971 int out_of_order_cmdsn = 0, ret;
Bart Van Assche59b69862017-01-05 12:39:57 +01001972 u8 function, tcm_function = TMR_UNKNOWN;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001973
1974 hdr = (struct iscsi_tm *) buf;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001975 hdr->flags &= ~ISCSI_FLAG_CMD_FINAL;
1976 function = hdr->flags;
1977
1978 pr_debug("Got Task Management Request ITT: 0x%08x, CmdSN:"
1979 " 0x%08x, Function: 0x%02x, RefTaskTag: 0x%08x, RefCmdSN:"
1980 " 0x%08x, CID: %hu\n", hdr->itt, hdr->cmdsn, function,
1981 hdr->rtt, hdr->refcmdsn, conn->cid);
1982
1983 if ((function != ISCSI_TM_FUNC_ABORT_TASK) &&
1984 ((function != ISCSI_TM_FUNC_TASK_REASSIGN) &&
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001985 hdr->rtt != RESERVED_ITT)) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001986 pr_err("RefTaskTag should be set to 0xFFFFFFFF.\n");
Christoph Hellwig66c7db62012-09-26 08:00:39 -04001987 hdr->rtt = RESERVED_ITT;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001988 }
1989
1990 if ((function == ISCSI_TM_FUNC_TASK_REASSIGN) &&
1991 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
1992 pr_err("Task Management Request TASK_REASSIGN not"
1993 " issued as immediate command, bad iSCSI Initiator"
1994 "implementation\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07001995 return iscsit_add_reject_cmd(cmd,
1996 ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001997 }
1998 if ((function != ISCSI_TM_FUNC_ABORT_TASK) &&
Christoph Hellwig50e5c872012-09-26 08:00:40 -04001999 be32_to_cpu(hdr->refcmdsn) != ISCSI_RESERVED_TAG)
2000 hdr->refcmdsn = cpu_to_be32(ISCSI_RESERVED_TAG);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002001
Andy Groverd28b11692012-04-03 15:51:22 -07002002 cmd->data_direction = DMA_NONE;
Markus Elfring3829f382017-04-09 16:00:39 +02002003 cmd->tmr_req = kzalloc(sizeof(*cmd->tmr_req), GFP_KERNEL);
Nicholas Bellingerae072722017-10-27 12:32:59 -07002004 if (!cmd->tmr_req) {
Nicholas Bellingerba159912013-07-03 03:48:24 -07002005 return iscsit_add_reject_cmd(cmd,
2006 ISCSI_REASON_BOOKMARK_NO_RESOURCES,
2007 buf);
Nicholas Bellingerae072722017-10-27 12:32:59 -07002008 }
2009
2010 transport_init_se_cmd(&cmd->se_cmd, &iscsi_ops,
2011 conn->sess->se_sess, 0, DMA_NONE,
2012 TCM_SIMPLE_TAG, cmd->sense_buffer + 2);
2013
Bart Van Assche1cad1a62020-02-12 21:09:00 -08002014 target_get_sess_cmd(&cmd->se_cmd, true);
Andy Groverd28b11692012-04-03 15:51:22 -07002015
2016 /*
2017 * TASK_REASSIGN for ERL=2 / connection stays inside of
2018 * LIO-Target $FABRIC_MOD
2019 */
2020 if (function != ISCSI_TM_FUNC_TASK_REASSIGN) {
Bart Van Asschee381fe92017-01-06 11:32:08 +01002021 tcm_function = iscsit_convert_tmf(function);
2022 if (tcm_function == TMR_UNKNOWN) {
Andy Groverd28b11692012-04-03 15:51:22 -07002023 pr_err("Unknown iSCSI TMR Function:"
2024 " 0x%02x\n", function);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002025 return iscsit_add_reject_cmd(cmd,
2026 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Andy Groverd28b11692012-04-03 15:51:22 -07002027 }
Bart Van Assche59b69862017-01-05 12:39:57 +01002028 }
2029 ret = core_tmr_alloc_req(&cmd->se_cmd, cmd->tmr_req, tcm_function,
2030 GFP_KERNEL);
2031 if (ret < 0)
2032 return iscsit_add_reject_cmd(cmd,
Nicholas Bellingerba159912013-07-03 03:48:24 -07002033 ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Andy Groverd28b11692012-04-03 15:51:22 -07002034
Bart Van Assche59b69862017-01-05 12:39:57 +01002035 cmd->tmr_req->se_tmr_req = cmd->se_cmd.se_tmr_req;
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 Bellinger3fc9fb12017-10-27 20:52:56 -07002111 if (cmdsn_ret == CMDSN_HIGHER_THAN_EXP) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002112 out_of_order_cmdsn = 1;
Nicholas Bellinger3fc9fb12017-10-27 20:52:56 -07002113 } else if (cmdsn_ret == CMDSN_LOWER_THAN_EXP) {
2114 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002115 return 0;
Nicholas Bellinger3fc9fb12017-10-27 20:52:56 -07002116 } else if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER) {
Nicholas Bellingerba159912013-07-03 03:48:24 -07002117 return -1;
Nicholas Bellinger3fc9fb12017-10-27 20:52:56 -07002118 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002119 }
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002120 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002121
Nicholas Bellinger5a4c8662011-10-28 13:37:19 -07002122 if (out_of_order_cmdsn || !(hdr->opcode & ISCSI_OP_IMMEDIATE))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002123 return 0;
2124 /*
2125 * Found the referenced task, send to transport for processing.
2126 */
2127 if (se_tmr->call_transport)
2128 return transport_generic_handle_tmr(&cmd->se_cmd);
2129
2130 /*
2131 * Could not find the referenced LUN, task, or Task Management
2132 * command not authorized or supported. Change state and
2133 * let the tx_thread send the response.
2134 *
2135 * For connection recovery, this is also the default action for
2136 * TMR TASK_REASSIGN.
2137 */
2138 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
Nicholas Bellingerae072722017-10-27 12:32:59 -07002139 target_put_sess_cmd(&cmd->se_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002140 return 0;
2141}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002142EXPORT_SYMBOL(iscsit_handle_task_mgt_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002143
2144/* #warning FIXME: Support Text Command parameters besides SendTargets */
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002145int
2146iscsit_setup_text_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2147 struct iscsi_text *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002148{
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002149 u32 payload_length = ntoh24(hdr->dlength);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002150
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07002151 if (payload_length > conn->conn_ops->MaxXmitDataSegmentLength) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002152 pr_err("Unable to accept text parameter length: %u"
Nicholas Bellinger21f5aa72012-09-29 21:51:26 -07002153 "greater than MaxXmitDataSegmentLength %u.\n",
2154 payload_length, conn->conn_ops->MaxXmitDataSegmentLength);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002155 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
2156 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002157 }
2158
Nicholas Bellinger122f8af2013-11-13 14:33:24 -08002159 if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL) ||
2160 (hdr->flags & ISCSI_FLAG_TEXT_CONTINUE)) {
2161 pr_err("Multi sequence text commands currently not supported\n");
2162 return iscsit_reject_cmd(cmd, ISCSI_REASON_CMD_NOT_SUPPORTED,
2163 (unsigned char *)hdr);
2164 }
2165
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002166 pr_debug("Got Text Request: ITT: 0x%08x, CmdSN: 0x%08x,"
2167 " ExpStatSN: 0x%08x, Length: %u\n", hdr->itt, hdr->cmdsn,
2168 hdr->exp_statsn, payload_length);
2169
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002170 cmd->iscsi_opcode = ISCSI_OP_TEXT;
2171 cmd->i_state = ISTATE_SEND_TEXTRSP;
2172 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
2173 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
2174 cmd->targ_xfer_tag = 0xFFFFFFFF;
2175 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
2176 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
2177 cmd->data_direction = DMA_NONE;
Varun Prakashea8dc5b2017-07-23 20:03:33 +05302178 kfree(cmd->text_in_ptr);
Sagi Grimberge4f4e802015-02-09 18:07:25 +02002179 cmd->text_in_ptr = NULL;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002180
2181 return 0;
2182}
2183EXPORT_SYMBOL(iscsit_setup_text_cmd);
2184
2185int
2186iscsit_process_text_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2187 struct iscsi_text *hdr)
2188{
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002189 unsigned char *text_in = cmd->text_in_ptr, *text_ptr;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002190 int cmdsn_ret;
2191
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002192 if (!text_in) {
Sagi Grimberge4f4e802015-02-09 18:07:25 +02002193 cmd->targ_xfer_tag = be32_to_cpu(hdr->ttt);
2194 if (cmd->targ_xfer_tag == 0xFFFFFFFF) {
2195 pr_err("Unable to locate text_in buffer for sendtargets"
2196 " discovery\n");
2197 goto reject;
2198 }
2199 goto empty_sendtargets;
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002200 }
2201 if (strncmp("SendTargets", text_in, 11) != 0) {
2202 pr_err("Received Text Data that is not"
2203 " SendTargets, cannot continue.\n");
2204 goto reject;
2205 }
2206 text_ptr = strchr(text_in, '=');
2207 if (!text_ptr) {
2208 pr_err("No \"=\" separator found in Text Data,"
2209 " cannot continue.\n");
2210 goto reject;
2211 }
2212 if (!strncmp("=All", text_ptr, 4)) {
Andy Grover8060b8d2015-01-09 15:13:08 -08002213 cmd->cmd_flags |= ICF_SENDTARGETS_ALL;
Nicholas Bellinger66658892013-06-19 22:45:42 -07002214 } else if (!strncmp("=iqn.", text_ptr, 5) ||
2215 !strncmp("=eui.", text_ptr, 5)) {
Andy Grover8060b8d2015-01-09 15:13:08 -08002216 cmd->cmd_flags |= ICF_SENDTARGETS_SINGLE;
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002217 } else {
2218 pr_err("Unable to locate valid SendTargets=%s value\n", text_ptr);
2219 goto reject;
2220 }
2221
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002222 spin_lock_bh(&conn->cmd_lock);
2223 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
2224 spin_unlock_bh(&conn->cmd_lock);
2225
Sagi Grimberge4f4e802015-02-09 18:07:25 +02002226empty_sendtargets:
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002227 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
2228
2229 if (!(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002230 cmdsn_ret = iscsit_sequence_cmd(conn, cmd,
2231 (unsigned char *)hdr, hdr->cmdsn);
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002232 if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
Nicholas Bellingerba159912013-07-03 03:48:24 -07002233 return -1;
2234
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002235 return 0;
2236 }
2237
2238 return iscsit_execute_cmd(cmd, 0);
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002239
2240reject:
Nicholas Bellingerba159912013-07-03 03:48:24 -07002241 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR,
2242 (unsigned char *)hdr);
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002243}
2244EXPORT_SYMBOL(iscsit_process_text_cmd);
2245
2246static int
2247iscsit_handle_text_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2248 unsigned char *buf)
2249{
2250 struct iscsi_text *hdr = (struct iscsi_text *)buf;
2251 char *text_in = NULL;
2252 u32 payload_length = ntoh24(hdr->dlength);
2253 int rx_size, rc;
2254
2255 rc = iscsit_setup_text_cmd(conn, cmd, hdr);
2256 if (rc < 0)
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002257 return 0;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002258
2259 rx_size = payload_length;
2260 if (payload_length) {
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002261 u32 checksum = 0, data_crc = 0;
2262 u32 padding = 0, pad_bytes = 0;
2263 int niov = 0, rx_got;
2264 struct kvec iov[3];
2265
2266 text_in = kzalloc(payload_length, GFP_KERNEL);
Markus Elfringc46e22f2017-04-09 15:34:50 +02002267 if (!text_in)
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002268 goto reject;
Markus Elfringc46e22f2017-04-09 15:34:50 +02002269
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002270 cmd->text_in_ptr = text_in;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002271
2272 memset(iov, 0, 3 * sizeof(struct kvec));
2273 iov[niov].iov_base = text_in;
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002274 iov[niov++].iov_len = payload_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002275
2276 padding = ((-payload_length) & 3);
2277 if (padding != 0) {
Nicholas Bellinger76f19282011-07-27 12:16:22 -07002278 iov[niov].iov_base = &pad_bytes;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002279 iov[niov++].iov_len = padding;
2280 rx_size += padding;
2281 pr_debug("Receiving %u additional bytes"
2282 " for padding.\n", padding);
2283 }
2284 if (conn->conn_ops->DataDigest) {
2285 iov[niov].iov_base = &checksum;
2286 iov[niov++].iov_len = ISCSI_CRC_LEN;
2287 rx_size += ISCSI_CRC_LEN;
2288 }
2289
2290 rx_got = rx_data(conn, &iov[0], niov, rx_size);
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002291 if (rx_got != rx_size)
2292 goto reject;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002293
2294 if (conn->conn_ops->DataDigest) {
Bart Van Asschee1dfb212017-10-31 11:03:16 -07002295 iscsit_do_crypto_hash_buf(conn->conn_rx_hash, text_in,
2296 payload_length, padding,
2297 &pad_bytes, &data_crc);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002298
2299 if (checksum != data_crc) {
2300 pr_err("Text data CRC32C DataDigest"
2301 " 0x%08x does not match computed"
2302 " 0x%08x\n", checksum, data_crc);
2303 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
2304 pr_err("Unable to recover from"
2305 " Text Data digest failure while in"
2306 " ERL=0.\n");
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002307 goto reject;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002308 } else {
2309 /*
2310 * Silently drop this PDU and let the
2311 * initiator plug the CmdSN gap.
2312 */
2313 pr_debug("Dropping Text"
2314 " Command CmdSN: 0x%08x due to"
2315 " DataCRC error.\n", hdr->cmdsn);
2316 kfree(text_in);
2317 return 0;
2318 }
2319 } else {
2320 pr_debug("Got CRC32C DataDigest"
2321 " 0x%08x for %u bytes of text data.\n",
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002322 checksum, payload_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002323 }
2324 }
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002325 text_in[payload_length - 1] = '\0';
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002326 pr_debug("Successfully read %d bytes of text"
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002327 " data.\n", payload_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002328 }
2329
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002330 return iscsit_process_text_cmd(conn, cmd, hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002331
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07002332reject:
Nicholas Bellinger9864ca92013-06-19 22:43:11 -07002333 kfree(cmd->text_in_ptr);
2334 cmd->text_in_ptr = NULL;
Nicholas Bellingerba159912013-07-03 03:48:24 -07002335 return iscsit_reject_cmd(cmd, ISCSI_REASON_PROTOCOL_ERROR, buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002336}
2337
2338int iscsit_logout_closesession(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2339{
2340 struct iscsi_conn *conn_p;
2341 struct iscsi_session *sess = conn->sess;
2342
2343 pr_debug("Received logout request CLOSESESSION on CID: %hu"
2344 " for SID: %u.\n", conn->cid, conn->sess->sid);
2345
2346 atomic_set(&sess->session_logout, 1);
2347 atomic_set(&conn->conn_logout_remove, 1);
2348 conn->conn_logout_reason = ISCSI_LOGOUT_REASON_CLOSE_SESSION;
2349
2350 iscsit_inc_conn_usage_count(conn);
2351 iscsit_inc_session_usage_count(sess);
2352
2353 spin_lock_bh(&sess->conn_lock);
2354 list_for_each_entry(conn_p, &sess->sess_conn_list, conn_list) {
2355 if (conn_p->conn_state != TARG_CONN_STATE_LOGGED_IN)
2356 continue;
2357
2358 pr_debug("Moving to TARG_CONN_STATE_IN_LOGOUT.\n");
2359 conn_p->conn_state = TARG_CONN_STATE_IN_LOGOUT;
2360 }
2361 spin_unlock_bh(&sess->conn_lock);
2362
2363 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2364
2365 return 0;
2366}
2367
2368int iscsit_logout_closeconnection(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2369{
2370 struct iscsi_conn *l_conn;
2371 struct iscsi_session *sess = conn->sess;
2372
2373 pr_debug("Received logout request CLOSECONNECTION for CID:"
2374 " %hu on CID: %hu.\n", cmd->logout_cid, conn->cid);
2375
2376 /*
2377 * A Logout Request with a CLOSECONNECTION reason code for a CID
2378 * can arrive on a connection with a differing CID.
2379 */
2380 if (conn->cid == cmd->logout_cid) {
2381 spin_lock_bh(&conn->state_lock);
2382 pr_debug("Moving to TARG_CONN_STATE_IN_LOGOUT.\n");
2383 conn->conn_state = TARG_CONN_STATE_IN_LOGOUT;
2384
2385 atomic_set(&conn->conn_logout_remove, 1);
2386 conn->conn_logout_reason = ISCSI_LOGOUT_REASON_CLOSE_CONNECTION;
2387 iscsit_inc_conn_usage_count(conn);
2388
2389 spin_unlock_bh(&conn->state_lock);
2390 } else {
2391 /*
2392 * Handle all different cid CLOSECONNECTION requests in
2393 * iscsit_logout_post_handler_diffcid() as to give enough
2394 * time for any non immediate command's CmdSN to be
2395 * acknowledged on the connection in question.
2396 *
2397 * Here we simply make sure the CID is still around.
2398 */
2399 l_conn = iscsit_get_conn_from_cid(sess,
2400 cmd->logout_cid);
2401 if (!l_conn) {
2402 cmd->logout_response = ISCSI_LOGOUT_CID_NOT_FOUND;
2403 iscsit_add_cmd_to_response_queue(cmd, conn,
2404 cmd->i_state);
2405 return 0;
2406 }
2407
2408 iscsit_dec_conn_usage_count(l_conn);
2409 }
2410
2411 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2412
2413 return 0;
2414}
2415
2416int iscsit_logout_removeconnforrecovery(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2417{
2418 struct iscsi_session *sess = conn->sess;
2419
2420 pr_debug("Received explicit REMOVECONNFORRECOVERY logout for"
2421 " CID: %hu on CID: %hu.\n", cmd->logout_cid, conn->cid);
2422
2423 if (sess->sess_ops->ErrorRecoveryLevel != 2) {
2424 pr_err("Received Logout Request REMOVECONNFORRECOVERY"
2425 " while ERL!=2.\n");
2426 cmd->logout_response = ISCSI_LOGOUT_RECOVERY_UNSUPPORTED;
2427 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2428 return 0;
2429 }
2430
2431 if (conn->cid == cmd->logout_cid) {
2432 pr_err("Received Logout Request REMOVECONNFORRECOVERY"
2433 " with CID: %hu on CID: %hu, implementation error.\n",
2434 cmd->logout_cid, conn->cid);
2435 cmd->logout_response = ISCSI_LOGOUT_CLEANUP_FAILED;
2436 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2437 return 0;
2438 }
2439
2440 iscsit_add_cmd_to_response_queue(cmd, conn, cmd->i_state);
2441
2442 return 0;
2443}
2444
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002445int
2446iscsit_handle_logout_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
2447 unsigned char *buf)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002448{
2449 int cmdsn_ret, logout_remove = 0;
2450 u8 reason_code = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002451 struct iscsi_logout *hdr;
2452 struct iscsi_tiqn *tiqn = iscsit_snmp_get_tiqn(conn);
2453
2454 hdr = (struct iscsi_logout *) buf;
2455 reason_code = (hdr->flags & 0x7f);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002456
2457 if (tiqn) {
2458 spin_lock(&tiqn->logout_stats.lock);
2459 if (reason_code == ISCSI_LOGOUT_REASON_CLOSE_SESSION)
2460 tiqn->logout_stats.normal_logouts++;
2461 else
2462 tiqn->logout_stats.abnormal_logouts++;
2463 spin_unlock(&tiqn->logout_stats.lock);
2464 }
2465
2466 pr_debug("Got Logout Request ITT: 0x%08x CmdSN: 0x%08x"
2467 " ExpStatSN: 0x%08x Reason: 0x%02x CID: %hu on CID: %hu\n",
2468 hdr->itt, hdr->cmdsn, hdr->exp_statsn, reason_code,
2469 hdr->cid, conn->cid);
2470
2471 if (conn->conn_state != TARG_CONN_STATE_LOGGED_IN) {
2472 pr_err("Received logout request on connection that"
2473 " is not in logged in state, ignoring request.\n");
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -07002474 iscsit_free_cmd(cmd, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002475 return 0;
2476 }
2477
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002478 cmd->iscsi_opcode = ISCSI_OP_LOGOUT;
2479 cmd->i_state = ISTATE_SEND_LOGOUTRSP;
2480 cmd->immediate_cmd = ((hdr->opcode & ISCSI_OP_IMMEDIATE) ? 1 : 0);
2481 conn->sess->init_task_tag = cmd->init_task_tag = hdr->itt;
2482 cmd->targ_xfer_tag = 0xFFFFFFFF;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002483 cmd->cmd_sn = be32_to_cpu(hdr->cmdsn);
2484 cmd->exp_stat_sn = be32_to_cpu(hdr->exp_statsn);
2485 cmd->logout_cid = be16_to_cpu(hdr->cid);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002486 cmd->logout_reason = reason_code;
2487 cmd->data_direction = DMA_NONE;
2488
2489 /*
2490 * We need to sleep in these cases (by returning 1) until the Logout
2491 * Response gets sent in the tx thread.
2492 */
2493 if ((reason_code == ISCSI_LOGOUT_REASON_CLOSE_SESSION) ||
2494 ((reason_code == ISCSI_LOGOUT_REASON_CLOSE_CONNECTION) &&
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002495 be16_to_cpu(hdr->cid) == conn->cid))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002496 logout_remove = 1;
2497
2498 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07002499 list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002500 spin_unlock_bh(&conn->cmd_lock);
2501
2502 if (reason_code != ISCSI_LOGOUT_REASON_RECOVERY)
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002503 iscsit_ack_from_expstatsn(conn, be32_to_cpu(hdr->exp_statsn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002504
2505 /*
2506 * Immediate commands are executed, well, immediately.
2507 * Non-Immediate Logout Commands are executed in CmdSN order.
2508 */
Andy Groverc6037cc2012-04-03 15:51:02 -07002509 if (cmd->immediate_cmd) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002510 int ret = iscsit_execute_cmd(cmd, 0);
2511
2512 if (ret < 0)
2513 return ret;
2514 } else {
Nicholas Bellinger561bf152013-07-03 03:58:58 -07002515 cmdsn_ret = iscsit_sequence_cmd(conn, cmd, buf, hdr->cmdsn);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002516 if (cmdsn_ret == CMDSN_LOWER_THAN_EXP)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002517 logout_remove = 0;
Nicholas Bellingerba159912013-07-03 03:48:24 -07002518 else if (cmdsn_ret == CMDSN_ERROR_CANNOT_RECOVER)
2519 return -1;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002520 }
2521
2522 return logout_remove;
2523}
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002524EXPORT_SYMBOL(iscsit_handle_logout_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002525
Varun Prakashd2faaef2016-04-20 00:00:19 +05302526int iscsit_handle_snack(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002527 struct iscsi_conn *conn,
2528 unsigned char *buf)
2529{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002530 struct iscsi_snack *hdr;
2531
2532 hdr = (struct iscsi_snack *) buf;
2533 hdr->flags &= ~ISCSI_FLAG_CMD_FINAL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002534
2535 pr_debug("Got ISCSI_INIT_SNACK, ITT: 0x%08x, ExpStatSN:"
2536 " 0x%08x, Type: 0x%02x, BegRun: 0x%08x, RunLength: 0x%08x,"
2537 " CID: %hu\n", hdr->itt, hdr->exp_statsn, hdr->flags,
2538 hdr->begrun, hdr->runlength, conn->cid);
2539
2540 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
2541 pr_err("Initiator sent SNACK request while in"
2542 " ErrorRecoveryLevel=0.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07002543 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
2544 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002545 }
2546 /*
2547 * SNACK_DATA and SNACK_R2T are both 0, so check which function to
2548 * call from inside iscsi_send_recovery_datain_or_r2t().
2549 */
2550 switch (hdr->flags & ISCSI_FLAG_SNACK_TYPE_MASK) {
2551 case 0:
2552 return iscsit_handle_recovery_datain_or_r2t(conn, buf,
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002553 hdr->itt,
2554 be32_to_cpu(hdr->ttt),
2555 be32_to_cpu(hdr->begrun),
2556 be32_to_cpu(hdr->runlength));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002557 case ISCSI_FLAG_SNACK_TYPE_STATUS:
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002558 return iscsit_handle_status_snack(conn, hdr->itt,
2559 be32_to_cpu(hdr->ttt),
2560 be32_to_cpu(hdr->begrun), be32_to_cpu(hdr->runlength));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002561 case ISCSI_FLAG_SNACK_TYPE_DATA_ACK:
Christoph Hellwig50e5c872012-09-26 08:00:40 -04002562 return iscsit_handle_data_ack(conn, be32_to_cpu(hdr->ttt),
2563 be32_to_cpu(hdr->begrun),
2564 be32_to_cpu(hdr->runlength));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002565 case ISCSI_FLAG_SNACK_TYPE_RDATA:
2566 /* FIXME: Support R-Data SNACK */
2567 pr_err("R-Data SNACK Not Supported.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07002568 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
2569 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002570 default:
2571 pr_err("Unknown SNACK type 0x%02x, protocol"
2572 " error.\n", hdr->flags & 0x0f);
Nicholas Bellingerba159912013-07-03 03:48:24 -07002573 return iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
2574 buf);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002575 }
2576
2577 return 0;
2578}
Varun Prakashd2faaef2016-04-20 00:00:19 +05302579EXPORT_SYMBOL(iscsit_handle_snack);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002580
2581static void iscsit_rx_thread_wait_for_tcp(struct iscsi_conn *conn)
2582{
2583 if ((conn->sock->sk->sk_shutdown & SEND_SHUTDOWN) ||
2584 (conn->sock->sk->sk_shutdown & RCV_SHUTDOWN)) {
2585 wait_for_completion_interruptible_timeout(
2586 &conn->rx_half_close_comp,
2587 ISCSI_RX_THREAD_TCP_TIMEOUT * HZ);
2588 }
2589}
2590
2591static int iscsit_handle_immediate_data(
2592 struct iscsi_cmd *cmd,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08002593 struct iscsi_scsi_req *hdr,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002594 u32 length)
2595{
2596 int iov_ret, rx_got = 0, rx_size = 0;
2597 u32 checksum, iov_count = 0, padding = 0;
2598 struct iscsi_conn *conn = cmd->conn;
2599 struct kvec *iov;
2600
2601 iov_ret = iscsit_map_iovec(cmd, cmd->iov_data, cmd->write_data_done, length);
2602 if (iov_ret < 0)
2603 return IMMEDIATE_DATA_CANNOT_RECOVER;
2604
2605 rx_size = length;
2606 iov_count = iov_ret;
2607 iov = &cmd->iov_data[0];
2608
2609 padding = ((-length) & 3);
2610 if (padding != 0) {
2611 iov[iov_count].iov_base = cmd->pad_bytes;
2612 iov[iov_count++].iov_len = padding;
2613 rx_size += padding;
2614 }
2615
2616 if (conn->conn_ops->DataDigest) {
2617 iov[iov_count].iov_base = &checksum;
2618 iov[iov_count++].iov_len = ISCSI_CRC_LEN;
2619 rx_size += ISCSI_CRC_LEN;
2620 }
2621
2622 rx_got = rx_data(conn, &cmd->iov_data[0], iov_count, rx_size);
2623
2624 iscsit_unmap_iovec(cmd);
2625
2626 if (rx_got != rx_size) {
2627 iscsit_rx_thread_wait_for_tcp(conn);
2628 return IMMEDIATE_DATA_CANNOT_RECOVER;
2629 }
2630
2631 if (conn->conn_ops->DataDigest) {
2632 u32 data_crc;
2633
Herbert Xu69110e32016-01-24 21:19:52 +08002634 data_crc = iscsit_do_crypto_hash_sg(conn->conn_rx_hash, cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002635 cmd->write_data_done, length, padding,
2636 cmd->pad_bytes);
2637
2638 if (checksum != data_crc) {
2639 pr_err("ImmediateData CRC32C DataDigest 0x%08x"
2640 " does not match computed 0x%08x\n", checksum,
2641 data_crc);
2642
2643 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
2644 pr_err("Unable to recover from"
2645 " Immediate Data digest failure while"
2646 " in ERL=0.\n");
Nicholas Bellingerba159912013-07-03 03:48:24 -07002647 iscsit_reject_cmd(cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002648 ISCSI_REASON_DATA_DIGEST_ERROR,
Nicholas Bellingerba159912013-07-03 03:48:24 -07002649 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002650 return IMMEDIATE_DATA_CANNOT_RECOVER;
2651 } else {
Nicholas Bellingerba159912013-07-03 03:48:24 -07002652 iscsit_reject_cmd(cmd,
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002653 ISCSI_REASON_DATA_DIGEST_ERROR,
Nicholas Bellingerba159912013-07-03 03:48:24 -07002654 (unsigned char *)hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002655 return IMMEDIATE_DATA_ERL1_CRC_FAILURE;
2656 }
2657 } else {
2658 pr_debug("Got CRC32C DataDigest 0x%08x for"
2659 " %u bytes of Immediate Data\n", checksum,
2660 length);
2661 }
2662 }
2663
2664 cmd->write_data_done += length;
2665
Andy Groverebf1d952012-04-03 15:51:24 -07002666 if (cmd->write_data_done == cmd->se_cmd.data_length) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002667 spin_lock_bh(&cmd->istate_lock);
2668 cmd->cmd_flags |= ICF_GOT_LAST_DATAOUT;
2669 cmd->i_state = ISTATE_RECEIVED_LAST_DATAOUT;
2670 spin_unlock_bh(&cmd->istate_lock);
2671 }
2672
2673 return IMMEDIATE_DATA_NORMAL_OPERATION;
2674}
2675
2676/*
2677 * Called with sess->conn_lock held.
2678 */
2679/* #warning iscsi_build_conn_drop_async_message() only sends out on connections
2680 with active network interface */
2681static void iscsit_build_conn_drop_async_message(struct iscsi_conn *conn)
2682{
2683 struct iscsi_cmd *cmd;
2684 struct iscsi_conn *conn_p;
Nicholas Bellingerd444edc2014-02-19 23:32:14 +00002685 bool found = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002686
2687 /*
2688 * Only send a Asynchronous Message on connections whos network
2689 * interface is still functional.
2690 */
2691 list_for_each_entry(conn_p, &conn->sess->sess_conn_list, conn_list) {
2692 if (conn_p->conn_state == TARG_CONN_STATE_LOGGED_IN) {
2693 iscsit_inc_conn_usage_count(conn_p);
Nicholas Bellingerd444edc2014-02-19 23:32:14 +00002694 found = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002695 break;
2696 }
2697 }
2698
Nicholas Bellingerd444edc2014-02-19 23:32:14 +00002699 if (!found)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002700 return;
2701
Nicholas Bellinger676687c2014-01-20 03:36:44 +00002702 cmd = iscsit_allocate_cmd(conn_p, TASK_RUNNING);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002703 if (!cmd) {
2704 iscsit_dec_conn_usage_count(conn_p);
2705 return;
2706 }
2707
2708 cmd->logout_cid = conn->cid;
2709 cmd->iscsi_opcode = ISCSI_OP_ASYNC_EVENT;
2710 cmd->i_state = ISTATE_SEND_ASYNCMSG;
2711
2712 spin_lock_bh(&conn_p->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07002713 list_add_tail(&cmd->i_conn_node, &conn_p->conn_cmd_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002714 spin_unlock_bh(&conn_p->cmd_lock);
2715
2716 iscsit_add_cmd_to_response_queue(cmd, conn_p, cmd->i_state);
2717 iscsit_dec_conn_usage_count(conn_p);
2718}
2719
2720static int iscsit_send_conn_drop_async_message(
2721 struct iscsi_cmd *cmd,
2722 struct iscsi_conn *conn)
2723{
2724 struct iscsi_async *hdr;
2725
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002726 cmd->iscsi_opcode = ISCSI_OP_ASYNC_EVENT;
2727
2728 hdr = (struct iscsi_async *) cmd->pdu;
2729 hdr->opcode = ISCSI_OP_ASYNC_EVENT;
2730 hdr->flags = ISCSI_FLAG_CMD_FINAL;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04002731 cmd->init_task_tag = RESERVED_ITT;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002732 cmd->targ_xfer_tag = 0xFFFFFFFF;
2733 put_unaligned_be64(0xFFFFFFFFFFFFFFFFULL, &hdr->rsvd4[0]);
2734 cmd->stat_sn = conn->stat_sn++;
2735 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2736 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002737 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002738 hdr->async_event = ISCSI_ASYNC_MSG_DROPPING_CONNECTION;
2739 hdr->param1 = cpu_to_be16(cmd->logout_cid);
2740 hdr->param2 = cpu_to_be16(conn->sess->sess_ops->DefaultTime2Wait);
2741 hdr->param3 = cpu_to_be16(conn->sess->sess_ops->DefaultTime2Retain);
2742
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002743 pr_debug("Sending Connection Dropped Async Message StatSN:"
2744 " 0x%08x, for CID: %hu on CID: %hu\n", cmd->stat_sn,
2745 cmd->logout_cid, conn->cid);
Varun Prakash2854bb22016-04-20 00:00:08 +05302746
2747 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002748}
2749
Andy Grover6f3c0e62012-04-03 15:51:09 -07002750static void iscsit_tx_thread_wait_for_tcp(struct iscsi_conn *conn)
2751{
2752 if ((conn->sock->sk->sk_shutdown & SEND_SHUTDOWN) ||
2753 (conn->sock->sk->sk_shutdown & RCV_SHUTDOWN)) {
2754 wait_for_completion_interruptible_timeout(
2755 &conn->tx_half_close_comp,
2756 ISCSI_TX_THREAD_TCP_TIMEOUT * HZ);
2757 }
2758}
2759
Varun Prakashd2faaef2016-04-20 00:00:19 +05302760void
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002761iscsit_build_datain_pdu(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
2762 struct iscsi_datain *datain, struct iscsi_data_rsp *hdr,
2763 bool set_statsn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002764{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002765 hdr->opcode = ISCSI_OP_SCSI_DATA_IN;
2766 hdr->flags = datain->flags;
2767 if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
2768 if (cmd->se_cmd.se_cmd_flags & SCF_OVERFLOW_BIT) {
2769 hdr->flags |= ISCSI_FLAG_DATA_OVERFLOW;
2770 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
2771 } else if (cmd->se_cmd.se_cmd_flags & SCF_UNDERFLOW_BIT) {
2772 hdr->flags |= ISCSI_FLAG_DATA_UNDERFLOW;
2773 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
2774 }
2775 }
2776 hton24(hdr->dlength, datain->length);
2777 if (hdr->flags & ISCSI_FLAG_DATA_ACK)
2778 int_to_scsilun(cmd->se_cmd.orig_fe_lun,
2779 (struct scsi_lun *)&hdr->lun);
2780 else
2781 put_unaligned_le64(0xFFFFFFFFFFFFFFFFULL, &hdr->lun);
2782
2783 hdr->itt = cmd->init_task_tag;
2784
2785 if (hdr->flags & ISCSI_FLAG_DATA_ACK)
2786 hdr->ttt = cpu_to_be32(cmd->targ_xfer_tag);
2787 else
2788 hdr->ttt = cpu_to_be32(0xFFFFFFFF);
2789 if (set_statsn)
2790 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2791 else
2792 hdr->statsn = cpu_to_be32(0xFFFFFFFF);
2793
2794 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002795 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002796 hdr->datasn = cpu_to_be32(datain->data_sn);
2797 hdr->offset = cpu_to_be32(datain->offset);
2798
2799 pr_debug("Built DataIN ITT: 0x%08x, StatSN: 0x%08x,"
2800 " DataSN: 0x%08x, Offset: %u, Length: %u, CID: %hu\n",
2801 cmd->init_task_tag, ntohl(hdr->statsn), ntohl(hdr->datasn),
2802 ntohl(hdr->offset), datain->length, conn->cid);
2803}
Varun Prakashd2faaef2016-04-20 00:00:19 +05302804EXPORT_SYMBOL(iscsit_build_datain_pdu);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002805
2806static int iscsit_send_datain(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2807{
2808 struct iscsi_data_rsp *hdr = (struct iscsi_data_rsp *)&cmd->pdu[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002809 struct iscsi_datain datain;
2810 struct iscsi_datain_req *dr;
Varun Prakash2854bb22016-04-20 00:00:08 +05302811 int eodr = 0, ret;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002812 bool set_statsn = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002813
2814 memset(&datain, 0, sizeof(struct iscsi_datain));
2815 dr = iscsit_get_datain_values(cmd, &datain);
2816 if (!dr) {
2817 pr_err("iscsit_get_datain_values failed for ITT: 0x%08x\n",
2818 cmd->init_task_tag);
2819 return -1;
2820 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002821 /*
2822 * Be paranoid and double check the logic for now.
2823 */
Andy Groverebf1d952012-04-03 15:51:24 -07002824 if ((datain.offset + datain.length) > cmd->se_cmd.data_length) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002825 pr_err("Command ITT: 0x%08x, datain.offset: %u and"
2826 " datain.length: %u exceeds cmd->data_length: %u\n",
2827 cmd->init_task_tag, datain.offset, datain.length,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002828 cmd->se_cmd.data_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002829 return -1;
2830 }
2831
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08002832 atomic_long_add(datain.length, &conn->sess->tx_data_octets);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002833 /*
2834 * Special case for successfully execution w/ both DATAIN
2835 * and Sense Data.
2836 */
2837 if ((datain.flags & ISCSI_FLAG_DATA_STATUS) &&
2838 (cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE))
2839 datain.flags &= ~ISCSI_FLAG_DATA_STATUS;
2840 else {
2841 if ((dr->dr_complete == DATAIN_COMPLETE_NORMAL) ||
2842 (dr->dr_complete == DATAIN_COMPLETE_CONNECTION_RECOVERY)) {
2843 iscsit_increment_maxcmdsn(cmd, conn->sess);
2844 cmd->stat_sn = conn->stat_sn++;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002845 set_statsn = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002846 } else if (dr->dr_complete ==
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002847 DATAIN_COMPLETE_WITHIN_COMMAND_RECOVERY)
2848 set_statsn = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002849 }
2850
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002851 iscsit_build_datain_pdu(cmd, conn, &datain, hdr, set_statsn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002852
Varun Prakash2854bb22016-04-20 00:00:08 +05302853 ret = conn->conn_transport->iscsit_xmit_pdu(conn, cmd, dr, &datain, 0);
2854 if (ret < 0)
Andy Grover6f3c0e62012-04-03 15:51:09 -07002855 return ret;
Andy Grover6f3c0e62012-04-03 15:51:09 -07002856
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002857 if (dr->dr_complete) {
Andy Grover6f3c0e62012-04-03 15:51:09 -07002858 eodr = (cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ?
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002859 2 : 1;
2860 iscsit_free_datain_req(cmd, dr);
2861 }
2862
Andy Grover6f3c0e62012-04-03 15:51:09 -07002863 return eodr;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002864}
2865
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002866int
2867iscsit_build_logout_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
2868 struct iscsi_logout_rsp *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002869{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002870 struct iscsi_conn *logout_conn = NULL;
2871 struct iscsi_conn_recovery *cr = NULL;
2872 struct iscsi_session *sess = conn->sess;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002873 /*
2874 * The actual shutting down of Sessions and/or Connections
2875 * for CLOSESESSION and CLOSECONNECTION Logout Requests
2876 * is done in scsi_logout_post_handler().
2877 */
2878 switch (cmd->logout_reason) {
2879 case ISCSI_LOGOUT_REASON_CLOSE_SESSION:
2880 pr_debug("iSCSI session logout successful, setting"
2881 " logout response to ISCSI_LOGOUT_SUCCESS.\n");
2882 cmd->logout_response = ISCSI_LOGOUT_SUCCESS;
2883 break;
2884 case ISCSI_LOGOUT_REASON_CLOSE_CONNECTION:
2885 if (cmd->logout_response == ISCSI_LOGOUT_CID_NOT_FOUND)
2886 break;
2887 /*
2888 * For CLOSECONNECTION logout requests carrying
2889 * a matching logout CID -> local CID, the reference
2890 * for the local CID will have been incremented in
2891 * iscsi_logout_closeconnection().
2892 *
2893 * For CLOSECONNECTION logout requests carrying
2894 * a different CID than the connection it arrived
2895 * on, the connection responding to cmd->logout_cid
2896 * is stopped in iscsit_logout_post_handler_diffcid().
2897 */
2898
2899 pr_debug("iSCSI CID: %hu logout on CID: %hu"
2900 " successful.\n", cmd->logout_cid, conn->cid);
2901 cmd->logout_response = ISCSI_LOGOUT_SUCCESS;
2902 break;
2903 case ISCSI_LOGOUT_REASON_RECOVERY:
2904 if ((cmd->logout_response == ISCSI_LOGOUT_RECOVERY_UNSUPPORTED) ||
2905 (cmd->logout_response == ISCSI_LOGOUT_CLEANUP_FAILED))
2906 break;
2907 /*
2908 * If the connection is still active from our point of view
2909 * force connection recovery to occur.
2910 */
2911 logout_conn = iscsit_get_conn_from_cid_rcfr(sess,
2912 cmd->logout_cid);
Andy Groveree1b1b92012-07-12 17:34:54 -07002913 if (logout_conn) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002914 iscsit_connection_reinstatement_rcfr(logout_conn);
2915 iscsit_dec_conn_usage_count(logout_conn);
2916 }
2917
2918 cr = iscsit_get_inactive_connection_recovery_entry(
2919 conn->sess, cmd->logout_cid);
2920 if (!cr) {
2921 pr_err("Unable to locate CID: %hu for"
2922 " REMOVECONNFORRECOVERY Logout Request.\n",
2923 cmd->logout_cid);
2924 cmd->logout_response = ISCSI_LOGOUT_CID_NOT_FOUND;
2925 break;
2926 }
2927
2928 iscsit_discard_cr_cmds_by_expstatsn(cr, cmd->exp_stat_sn);
2929
2930 pr_debug("iSCSI REMOVECONNFORRECOVERY logout"
2931 " for recovery for CID: %hu on CID: %hu successful.\n",
2932 cmd->logout_cid, conn->cid);
2933 cmd->logout_response = ISCSI_LOGOUT_SUCCESS;
2934 break;
2935 default:
2936 pr_err("Unknown cmd->logout_reason: 0x%02x\n",
2937 cmd->logout_reason);
2938 return -1;
2939 }
2940
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002941 hdr->opcode = ISCSI_OP_LOGOUT_RSP;
2942 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2943 hdr->response = cmd->logout_response;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04002944 hdr->itt = cmd->init_task_tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002945 cmd->stat_sn = conn->stat_sn++;
2946 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2947
2948 iscsit_increment_maxcmdsn(cmd, conn->sess);
2949 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002950 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002951
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002952 pr_debug("Built Logout Response ITT: 0x%08x StatSN:"
2953 " 0x%08x Response: 0x%02x CID: %hu on CID: %hu\n",
2954 cmd->init_task_tag, cmd->stat_sn, hdr->response,
2955 cmd->logout_cid, conn->cid);
2956
2957 return 0;
2958}
2959EXPORT_SYMBOL(iscsit_build_logout_rsp);
2960
2961static int
2962iscsit_send_logout(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
2963{
Varun Prakash2854bb22016-04-20 00:00:08 +05302964 int rc;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002965
2966 rc = iscsit_build_logout_rsp(cmd, conn,
2967 (struct iscsi_logout_rsp *)&cmd->pdu[0]);
2968 if (rc < 0)
2969 return rc;
2970
Varun Prakash2854bb22016-04-20 00:00:08 +05302971 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00002972}
2973
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002974void
2975iscsit_build_nopin_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
2976 struct iscsi_nopin *hdr, bool nopout_response)
2977{
2978 hdr->opcode = ISCSI_OP_NOOP_IN;
2979 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2980 hton24(hdr->dlength, cmd->buf_ptr_size);
2981 if (nopout_response)
2982 put_unaligned_le64(0xFFFFFFFFFFFFFFFFULL, &hdr->lun);
2983 hdr->itt = cmd->init_task_tag;
2984 hdr->ttt = cpu_to_be32(cmd->targ_xfer_tag);
2985 cmd->stat_sn = (nopout_response) ? conn->stat_sn++ :
2986 conn->stat_sn;
2987 hdr->statsn = cpu_to_be32(cmd->stat_sn);
2988
2989 if (nopout_response)
2990 iscsit_increment_maxcmdsn(cmd, conn->sess);
2991
2992 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07002993 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002994
2995 pr_debug("Built NOPIN %s Response ITT: 0x%08x, TTT: 0x%08x,"
2996 " StatSN: 0x%08x, Length %u\n", (nopout_response) ?
Colin Ian King3fc6a642016-09-02 15:30:34 +01002997 "Solicited" : "Unsolicited", cmd->init_task_tag,
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07002998 cmd->targ_xfer_tag, cmd->stat_sn, cmd->buf_ptr_size);
2999}
3000EXPORT_SYMBOL(iscsit_build_nopin_rsp);
3001
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003002/*
3003 * Unsolicited NOPIN, either requesting a response or not.
3004 */
3005static int iscsit_send_unsolicited_nopin(
3006 struct iscsi_cmd *cmd,
3007 struct iscsi_conn *conn,
3008 int want_response)
3009{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003010 struct iscsi_nopin *hdr = (struct iscsi_nopin *)&cmd->pdu[0];
Varun Prakash2854bb22016-04-20 00:00:08 +05303011 int ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003012
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003013 iscsit_build_nopin_rsp(cmd, conn, hdr, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003014
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003015 pr_debug("Sending Unsolicited NOPIN TTT: 0x%08x StatSN:"
3016 " 0x%08x CID: %hu\n", hdr->ttt, cmd->stat_sn, conn->cid);
3017
Varun Prakash2854bb22016-04-20 00:00:08 +05303018 ret = conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
3019 if (ret < 0)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003020 return ret;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003021
3022 spin_lock_bh(&cmd->istate_lock);
3023 cmd->i_state = want_response ?
3024 ISTATE_SENT_NOPIN_WANT_RESPONSE : ISTATE_SENT_STATUS;
3025 spin_unlock_bh(&cmd->istate_lock);
3026
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003027 return 0;
3028}
3029
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003030static int
3031iscsit_send_nopin(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003032{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003033 struct iscsi_nopin *hdr = (struct iscsi_nopin *)&cmd->pdu[0];
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003034
3035 iscsit_build_nopin_rsp(cmd, conn, hdr, true);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003036
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003037 /*
3038 * NOPOUT Ping Data is attached to struct iscsi_cmd->buf_ptr.
3039 * NOPOUT DataSegmentLength is at struct iscsi_cmd->buf_ptr_size.
3040 */
Varun Prakash2854bb22016-04-20 00:00:08 +05303041 pr_debug("Echoing back %u bytes of ping data.\n", cmd->buf_ptr_size);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003042
Varun Prakash2854bb22016-04-20 00:00:08 +05303043 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL,
3044 cmd->buf_ptr,
3045 cmd->buf_ptr_size);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003046}
3047
Andy Grover6f3c0e62012-04-03 15:51:09 -07003048static int iscsit_send_r2t(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003049 struct iscsi_cmd *cmd,
3050 struct iscsi_conn *conn)
3051{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003052 struct iscsi_r2t *r2t;
3053 struct iscsi_r2t_rsp *hdr;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003054 int ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003055
3056 r2t = iscsit_get_r2t_from_list(cmd);
3057 if (!r2t)
3058 return -1;
3059
3060 hdr = (struct iscsi_r2t_rsp *) cmd->pdu;
3061 memset(hdr, 0, ISCSI_HDR_LEN);
3062 hdr->opcode = ISCSI_OP_R2T;
3063 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3064 int_to_scsilun(cmd->se_cmd.orig_fe_lun,
3065 (struct scsi_lun *)&hdr->lun);
Christoph Hellwig66c7db62012-09-26 08:00:39 -04003066 hdr->itt = cmd->init_task_tag;
Varun Prakash85672702016-04-20 00:00:13 +05303067 if (conn->conn_transport->iscsit_get_r2t_ttt)
3068 conn->conn_transport->iscsit_get_r2t_ttt(conn, cmd, r2t);
3069 else
3070 r2t->targ_xfer_tag = session_get_next_ttt(conn->sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003071 hdr->ttt = cpu_to_be32(r2t->targ_xfer_tag);
3072 hdr->statsn = cpu_to_be32(conn->stat_sn);
3073 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003074 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003075 hdr->r2tsn = cpu_to_be32(r2t->r2t_sn);
3076 hdr->data_offset = cpu_to_be32(r2t->offset);
3077 hdr->data_length = cpu_to_be32(r2t->xfer_len);
3078
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003079 pr_debug("Built %sR2T, ITT: 0x%08x, TTT: 0x%08x, StatSN:"
3080 " 0x%08x, R2TSN: 0x%08x, Offset: %u, DDTL: %u, CID: %hu\n",
3081 (!r2t->recovery_r2t) ? "" : "Recovery ", cmd->init_task_tag,
3082 r2t->targ_xfer_tag, ntohl(hdr->statsn), r2t->r2t_sn,
3083 r2t->offset, r2t->xfer_len, conn->cid);
3084
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003085 spin_lock_bh(&cmd->r2t_lock);
3086 r2t->sent_r2t = 1;
3087 spin_unlock_bh(&cmd->r2t_lock);
3088
Varun Prakash2854bb22016-04-20 00:00:08 +05303089 ret = conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Andy Grover6f3c0e62012-04-03 15:51:09 -07003090 if (ret < 0) {
Andy Grover6f3c0e62012-04-03 15:51:09 -07003091 return ret;
3092 }
3093
3094 spin_lock_bh(&cmd->dataout_timeout_lock);
3095 iscsit_start_dataout_timer(cmd, conn);
3096 spin_unlock_bh(&cmd->dataout_timeout_lock);
3097
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003098 return 0;
3099}
3100
3101/*
Andy Grover8b1e1242012-04-03 15:51:12 -07003102 * @recovery: If called from iscsi_task_reassign_complete_write() for
3103 * connection recovery.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003104 */
3105int iscsit_build_r2ts_for_cmd(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003106 struct iscsi_conn *conn,
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003107 struct iscsi_cmd *cmd,
Andy Grover8b1e1242012-04-03 15:51:12 -07003108 bool recovery)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003109{
3110 int first_r2t = 1;
3111 u32 offset = 0, xfer_len = 0;
3112
3113 spin_lock_bh(&cmd->r2t_lock);
3114 if (cmd->cmd_flags & ICF_SENT_LAST_R2T) {
3115 spin_unlock_bh(&cmd->r2t_lock);
3116 return 0;
3117 }
3118
Andy Grover8b1e1242012-04-03 15:51:12 -07003119 if (conn->sess->sess_ops->DataSequenceInOrder &&
3120 !recovery)
Andy Groverc6037cc2012-04-03 15:51:02 -07003121 cmd->r2t_offset = max(cmd->r2t_offset, cmd->write_data_done);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003122
3123 while (cmd->outstanding_r2ts < conn->sess->sess_ops->MaxOutstandingR2T) {
3124 if (conn->sess->sess_ops->DataSequenceInOrder) {
3125 offset = cmd->r2t_offset;
3126
Andy Grover8b1e1242012-04-03 15:51:12 -07003127 if (first_r2t && recovery) {
3128 int new_data_end = offset +
3129 conn->sess->sess_ops->MaxBurstLength -
3130 cmd->next_burst_len;
3131
Andy Groverebf1d952012-04-03 15:51:24 -07003132 if (new_data_end > cmd->se_cmd.data_length)
3133 xfer_len = cmd->se_cmd.data_length - offset;
Andy Grover8b1e1242012-04-03 15:51:12 -07003134 else
3135 xfer_len =
3136 conn->sess->sess_ops->MaxBurstLength -
3137 cmd->next_burst_len;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003138 } else {
Andy Grover8b1e1242012-04-03 15:51:12 -07003139 int new_data_end = offset +
3140 conn->sess->sess_ops->MaxBurstLength;
3141
Andy Groverebf1d952012-04-03 15:51:24 -07003142 if (new_data_end > cmd->se_cmd.data_length)
3143 xfer_len = cmd->se_cmd.data_length - offset;
Andy Grover8b1e1242012-04-03 15:51:12 -07003144 else
3145 xfer_len = conn->sess->sess_ops->MaxBurstLength;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003146 }
3147 cmd->r2t_offset += xfer_len;
3148
Andy Groverebf1d952012-04-03 15:51:24 -07003149 if (cmd->r2t_offset == cmd->se_cmd.data_length)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003150 cmd->cmd_flags |= ICF_SENT_LAST_R2T;
3151 } else {
3152 struct iscsi_seq *seq;
3153
3154 seq = iscsit_get_seq_holder_for_r2t(cmd);
3155 if (!seq) {
3156 spin_unlock_bh(&cmd->r2t_lock);
3157 return -1;
3158 }
3159
3160 offset = seq->offset;
3161 xfer_len = seq->xfer_len;
3162
3163 if (cmd->seq_send_order == cmd->seq_count)
3164 cmd->cmd_flags |= ICF_SENT_LAST_R2T;
3165 }
3166 cmd->outstanding_r2ts++;
3167 first_r2t = 0;
3168
3169 if (iscsit_add_r2t_to_list(cmd, offset, xfer_len, 0, 0) < 0) {
3170 spin_unlock_bh(&cmd->r2t_lock);
3171 return -1;
3172 }
3173
3174 if (cmd->cmd_flags & ICF_SENT_LAST_R2T)
3175 break;
3176 }
3177 spin_unlock_bh(&cmd->r2t_lock);
3178
3179 return 0;
3180}
Varun Prakashd2faaef2016-04-20 00:00:19 +05303181EXPORT_SYMBOL(iscsit_build_r2ts_for_cmd);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003182
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003183void iscsit_build_rsp_pdu(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
3184 bool inc_stat_sn, struct iscsi_scsi_rsp *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003185{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003186 if (inc_stat_sn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003187 cmd->stat_sn = conn->stat_sn++;
3188
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08003189 atomic_long_inc(&conn->sess->rsp_pdus);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003190
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003191 memset(hdr, 0, ISCSI_HDR_LEN);
3192 hdr->opcode = ISCSI_OP_SCSI_CMD_RSP;
3193 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3194 if (cmd->se_cmd.se_cmd_flags & SCF_OVERFLOW_BIT) {
3195 hdr->flags |= ISCSI_FLAG_CMD_OVERFLOW;
Nicholas Bellinger7e46cf02011-11-15 23:59:00 -08003196 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003197 } else if (cmd->se_cmd.se_cmd_flags & SCF_UNDERFLOW_BIT) {
3198 hdr->flags |= ISCSI_FLAG_CMD_UNDERFLOW;
Nicholas Bellinger7e46cf02011-11-15 23:59:00 -08003199 hdr->residual_count = cpu_to_be32(cmd->se_cmd.residual_count);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003200 }
3201 hdr->response = cmd->iscsi_response;
3202 hdr->cmd_status = cmd->se_cmd.scsi_status;
Christoph Hellwig66c7db62012-09-26 08:00:39 -04003203 hdr->itt = cmd->init_task_tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003204 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3205
3206 iscsit_increment_maxcmdsn(cmd, conn->sess);
3207 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003208 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003209
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003210 pr_debug("Built SCSI Response, ITT: 0x%08x, StatSN: 0x%08x,"
3211 " Response: 0x%02x, SAM Status: 0x%02x, CID: %hu\n",
3212 cmd->init_task_tag, cmd->stat_sn, cmd->se_cmd.scsi_status,
3213 cmd->se_cmd.scsi_status, conn->cid);
3214}
3215EXPORT_SYMBOL(iscsit_build_rsp_pdu);
3216
3217static int iscsit_send_response(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
3218{
3219 struct iscsi_scsi_rsp *hdr = (struct iscsi_scsi_rsp *)&cmd->pdu[0];
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003220 bool inc_stat_sn = (cmd->i_state == ISTATE_SEND_STATUS);
Varun Prakash2854bb22016-04-20 00:00:08 +05303221 void *data_buf = NULL;
3222 u32 padding = 0, data_buf_len = 0;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003223
3224 iscsit_build_rsp_pdu(cmd, conn, inc_stat_sn, hdr);
3225
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003226 /*
3227 * Attach SENSE DATA payload to iSCSI Response PDU
3228 */
3229 if (cmd->se_cmd.sense_buffer &&
3230 ((cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
3231 (cmd->se_cmd.se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003232 put_unaligned_be16(cmd->se_cmd.scsi_sense_length, cmd->sense_buffer);
3233 cmd->se_cmd.scsi_sense_length += sizeof (__be16);
3234
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003235 padding = -(cmd->se_cmd.scsi_sense_length) & 3;
Christoph Hellwig50e5c872012-09-26 08:00:40 -04003236 hton24(hdr->dlength, (u32)cmd->se_cmd.scsi_sense_length);
Varun Prakash2854bb22016-04-20 00:00:08 +05303237 data_buf = cmd->sense_buffer;
3238 data_buf_len = cmd->se_cmd.scsi_sense_length + padding;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003239
3240 if (padding) {
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003241 memset(cmd->sense_buffer +
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003242 cmd->se_cmd.scsi_sense_length, 0, padding);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003243 pr_debug("Adding %u bytes of padding to"
3244 " SENSE.\n", padding);
3245 }
3246
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003247 pr_debug("Attaching SENSE DATA: %u bytes to iSCSI"
3248 " Response PDU\n",
3249 cmd->se_cmd.scsi_sense_length);
3250 }
3251
Varun Prakash2854bb22016-04-20 00:00:08 +05303252 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, data_buf,
3253 data_buf_len);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003254}
3255
3256static u8 iscsit_convert_tcm_tmr_rsp(struct se_tmr_req *se_tmr)
3257{
3258 switch (se_tmr->response) {
3259 case TMR_FUNCTION_COMPLETE:
3260 return ISCSI_TMF_RSP_COMPLETE;
3261 case TMR_TASK_DOES_NOT_EXIST:
3262 return ISCSI_TMF_RSP_NO_TASK;
3263 case TMR_LUN_DOES_NOT_EXIST:
3264 return ISCSI_TMF_RSP_NO_LUN;
3265 case TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED:
3266 return ISCSI_TMF_RSP_NOT_SUPPORTED;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003267 case TMR_FUNCTION_REJECTED:
3268 default:
3269 return ISCSI_TMF_RSP_REJECTED;
3270 }
3271}
3272
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003273void
3274iscsit_build_task_mgt_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
3275 struct iscsi_tm_rsp *hdr)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003276{
3277 struct se_tmr_req *se_tmr = cmd->se_cmd.se_tmr_req;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003278
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003279 hdr->opcode = ISCSI_OP_SCSI_TMFUNC_RSP;
Nicholas Bellinger7ae0b102011-11-27 22:25:14 -08003280 hdr->flags = ISCSI_FLAG_CMD_FINAL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003281 hdr->response = iscsit_convert_tcm_tmr_rsp(se_tmr);
Christoph Hellwig66c7db62012-09-26 08:00:39 -04003282 hdr->itt = cmd->init_task_tag;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003283 cmd->stat_sn = conn->stat_sn++;
3284 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3285
3286 iscsit_increment_maxcmdsn(cmd, conn->sess);
3287 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003288 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003289
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003290 pr_debug("Built Task Management Response ITT: 0x%08x,"
3291 " StatSN: 0x%08x, Response: 0x%02x, CID: %hu\n",
3292 cmd->init_task_tag, cmd->stat_sn, hdr->response, conn->cid);
3293}
3294EXPORT_SYMBOL(iscsit_build_task_mgt_rsp);
3295
3296static int
3297iscsit_send_task_mgt_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
3298{
3299 struct iscsi_tm_rsp *hdr = (struct iscsi_tm_rsp *)&cmd->pdu[0];
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003300
3301 iscsit_build_task_mgt_rsp(cmd, conn, hdr);
3302
Varun Prakash2854bb22016-04-20 00:00:08 +05303303 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL, NULL, 0);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003304}
3305
Andy Grover8b1e1242012-04-03 15:51:12 -07003306#define SENDTARGETS_BUF_LIMIT 32768U
3307
Sagi Grimberg22c7aaa2014-06-10 18:27:59 +03003308static int
3309iscsit_build_sendtargets_response(struct iscsi_cmd *cmd,
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003310 enum iscsit_transport_type network_transport,
3311 int skip_bytes, bool *completed)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003312{
3313 char *payload = NULL;
3314 struct iscsi_conn *conn = cmd->conn;
3315 struct iscsi_portal_group *tpg;
3316 struct iscsi_tiqn *tiqn;
3317 struct iscsi_tpg_np *tpg_np;
3318 int buffer_len, end_of_buf = 0, len = 0, payload_len = 0;
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003319 int target_name_printed;
Andy Grover8b1e1242012-04-03 15:51:12 -07003320 unsigned char buf[ISCSI_IQN_LEN+12]; /* iqn + "TargetName=" + \0 */
Nicholas Bellinger66658892013-06-19 22:45:42 -07003321 unsigned char *text_in = cmd->text_in_ptr, *text_ptr = NULL;
David Disseldorpa6415cd2015-08-01 00:10:12 -07003322 bool active;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003323
Sagi Grimbergbe7dcfb2015-01-26 12:49:06 +02003324 buffer_len = min(conn->conn_ops->MaxRecvDataSegmentLength,
Andy Grover8b1e1242012-04-03 15:51:12 -07003325 SENDTARGETS_BUF_LIMIT);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003326
3327 payload = kzalloc(buffer_len, GFP_KERNEL);
Markus Elfringc46e22f2017-04-09 15:34:50 +02003328 if (!payload)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003329 return -ENOMEM;
Markus Elfringc46e22f2017-04-09 15:34:50 +02003330
Nicholas Bellinger66658892013-06-19 22:45:42 -07003331 /*
Andy Grover8060b8d2015-01-09 15:13:08 -08003332 * Locate pointer to iqn./eui. string for ICF_SENDTARGETS_SINGLE
Nicholas Bellinger66658892013-06-19 22:45:42 -07003333 * explicit case..
3334 */
Andy Grover8060b8d2015-01-09 15:13:08 -08003335 if (cmd->cmd_flags & ICF_SENDTARGETS_SINGLE) {
Nicholas Bellinger66658892013-06-19 22:45:42 -07003336 text_ptr = strchr(text_in, '=');
3337 if (!text_ptr) {
3338 pr_err("Unable to locate '=' string in text_in:"
3339 " %s\n", text_in);
Dan Carpenter4f45d322013-06-24 18:46:57 +03003340 kfree(payload);
Nicholas Bellinger66658892013-06-19 22:45:42 -07003341 return -EINVAL;
3342 }
3343 /*
3344 * Skip over '=' character..
3345 */
3346 text_ptr += 1;
3347 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003348
3349 spin_lock(&tiqn_lock);
3350 list_for_each_entry(tiqn, &g_tiqn_list, tiqn_list) {
Andy Grover8060b8d2015-01-09 15:13:08 -08003351 if ((cmd->cmd_flags & ICF_SENDTARGETS_SINGLE) &&
Nicholas Bellinger66658892013-06-19 22:45:42 -07003352 strcmp(tiqn->tiqn, text_ptr)) {
3353 continue;
3354 }
3355
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003356 target_name_printed = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003357
3358 spin_lock(&tiqn->tiqn_tpg_lock);
3359 list_for_each_entry(tpg, &tiqn->tiqn_tpg_list, tpg_list) {
3360
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003361 /* If demo_mode_discovery=0 and generate_node_acls=0
3362 * (demo mode dislabed) do not return
3363 * TargetName+TargetAddress unless a NodeACL exists.
3364 */
3365
3366 if ((tpg->tpg_attrib.generate_node_acls == 0) &&
3367 (tpg->tpg_attrib.demo_mode_discovery == 0) &&
Nicholas Bellinger21aaa232016-01-07 22:09:27 -08003368 (!target_tpg_has_node_acl(&tpg->tpg_se_tpg,
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003369 cmd->conn->sess->sess_ops->InitiatorName))) {
3370 continue;
3371 }
3372
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003373 spin_lock(&tpg->tpg_state_lock);
David Disseldorpa6415cd2015-08-01 00:10:12 -07003374 active = (tpg->tpg_state == TPG_STATE_ACTIVE);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003375 spin_unlock(&tpg->tpg_state_lock);
3376
David Disseldorpa6415cd2015-08-01 00:10:12 -07003377 if (!active && tpg->tpg_attrib.tpg_enabled_sendtargets)
3378 continue;
3379
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003380 spin_lock(&tpg->tpg_np_lock);
3381 list_for_each_entry(tpg_np, &tpg->tpg_gnp_list,
3382 tpg_np_list) {
Nicholas Bellinger2f9bc892012-01-16 23:33:48 -08003383 struct iscsi_np *np = tpg_np->tpg_np;
Andy Grover13a3cf02015-08-24 10:26:06 -07003384 struct sockaddr_storage *sockaddr;
Nicholas Bellinger2f9bc892012-01-16 23:33:48 -08003385
Sagi Grimberg22c7aaa2014-06-10 18:27:59 +03003386 if (np->np_network_transport != network_transport)
3387 continue;
3388
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003389 if (!target_name_printed) {
3390 len = sprintf(buf, "TargetName=%s",
3391 tiqn->tiqn);
3392 len += 1;
3393
3394 if ((len + payload_len) > buffer_len) {
3395 spin_unlock(&tpg->tpg_np_lock);
3396 spin_unlock(&tiqn->tiqn_tpg_lock);
3397 end_of_buf = 1;
3398 goto eob;
3399 }
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003400
3401 if (skip_bytes && len <= skip_bytes) {
3402 skip_bytes -= len;
3403 } else {
3404 memcpy(payload + payload_len, buf, len);
3405 payload_len += len;
3406 target_name_printed = 1;
3407 if (len > skip_bytes)
3408 skip_bytes = 0;
3409 }
Thomas Glanzmann2dd1d532013-10-07 23:13:46 +02003410 }
3411
Sagi Grimberg7bfca0c2018-01-25 13:56:46 +02003412 if (inet_addr_is_any((struct sockaddr *)&np->np_sockaddr))
Andy Grover69d75572015-08-24 10:26:04 -07003413 sockaddr = &conn->local_sockaddr;
Andy Grover1997e622015-03-31 10:43:18 -07003414 else
Andy Grover69d75572015-08-24 10:26:04 -07003415 sockaddr = &np->np_sockaddr;
Andy Grover1997e622015-03-31 10:43:18 -07003416
Andy Grover69d75572015-08-24 10:26:04 -07003417 len = sprintf(buf, "TargetAddress="
3418 "%pISpc,%hu",
3419 sockaddr,
3420 tpg->tpgt);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003421 len += 1;
3422
3423 if ((len + payload_len) > buffer_len) {
3424 spin_unlock(&tpg->tpg_np_lock);
3425 spin_unlock(&tiqn->tiqn_tpg_lock);
3426 end_of_buf = 1;
3427 goto eob;
3428 }
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003429
3430 if (skip_bytes && len <= skip_bytes) {
3431 skip_bytes -= len;
3432 } else {
3433 memcpy(payload + payload_len, buf, len);
3434 payload_len += len;
3435 if (len > skip_bytes)
3436 skip_bytes = 0;
3437 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003438 }
3439 spin_unlock(&tpg->tpg_np_lock);
3440 }
3441 spin_unlock(&tiqn->tiqn_tpg_lock);
3442eob:
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003443 if (end_of_buf) {
3444 *completed = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003445 break;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003446 }
Nicholas Bellinger66658892013-06-19 22:45:42 -07003447
Andy Grover8060b8d2015-01-09 15:13:08 -08003448 if (cmd->cmd_flags & ICF_SENDTARGETS_SINGLE)
Nicholas Bellinger66658892013-06-19 22:45:42 -07003449 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003450 }
3451 spin_unlock(&tiqn_lock);
3452
3453 cmd->buf_ptr = payload;
3454
3455 return payload_len;
3456}
3457
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003458int
3459iscsit_build_text_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
Sagi Grimberg22c7aaa2014-06-10 18:27:59 +03003460 struct iscsi_text_rsp *hdr,
3461 enum iscsit_transport_type network_transport)
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003462{
3463 int text_length, padding;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003464 bool completed = true;
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003465
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003466 text_length = iscsit_build_sendtargets_response(cmd, network_transport,
3467 cmd->read_data_done,
3468 &completed);
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003469 if (text_length < 0)
3470 return text_length;
3471
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003472 if (completed) {
Varun Prakash310d40a2017-07-23 20:03:45 +05303473 hdr->flags = ISCSI_FLAG_CMD_FINAL;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003474 } else {
Varun Prakash310d40a2017-07-23 20:03:45 +05303475 hdr->flags = ISCSI_FLAG_TEXT_CONTINUE;
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003476 cmd->read_data_done += text_length;
3477 if (cmd->targ_xfer_tag == 0xFFFFFFFF)
3478 cmd->targ_xfer_tag = session_get_next_ttt(conn->sess);
3479 }
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003480 hdr->opcode = ISCSI_OP_TEXT_RSP;
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003481 padding = ((-text_length) & 3);
3482 hton24(hdr->dlength, text_length);
3483 hdr->itt = cmd->init_task_tag;
3484 hdr->ttt = cpu_to_be32(cmd->targ_xfer_tag);
3485 cmd->stat_sn = conn->stat_sn++;
3486 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3487
3488 iscsit_increment_maxcmdsn(cmd, conn->sess);
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003489 /*
3490 * Reset maxcmdsn_inc in multi-part text payload exchanges to
3491 * correctly increment MaxCmdSN for each response answering a
3492 * non immediate text request with a valid CmdSN.
3493 */
3494 cmd->maxcmdsn_inc = 0;
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003495 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003496 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003497
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003498 pr_debug("Built Text Response: ITT: 0x%08x, TTT: 0x%08x, StatSN: 0x%08x,"
3499 " Length: %u, CID: %hu F: %d C: %d\n", cmd->init_task_tag,
3500 cmd->targ_xfer_tag, cmd->stat_sn, text_length, conn->cid,
3501 !!(hdr->flags & ISCSI_FLAG_CMD_FINAL),
3502 !!(hdr->flags & ISCSI_FLAG_TEXT_CONTINUE));
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003503
3504 return text_length + padding;
3505}
3506EXPORT_SYMBOL(iscsit_build_text_rsp);
3507
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003508static int iscsit_send_text_rsp(
3509 struct iscsi_cmd *cmd,
3510 struct iscsi_conn *conn)
3511{
Nicholas Bellinger889c8a62013-06-14 18:49:55 -07003512 struct iscsi_text_rsp *hdr = (struct iscsi_text_rsp *)cmd->pdu;
Varun Prakash2854bb22016-04-20 00:00:08 +05303513 int text_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003514
Varun Prakash864e5042016-04-20 00:00:15 +05303515 text_length = iscsit_build_text_rsp(cmd, conn, hdr,
3516 conn->conn_transport->transport_type);
Varun Prakash2854bb22016-04-20 00:00:08 +05303517 if (text_length < 0)
3518 return text_length;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003519
Varun Prakash2854bb22016-04-20 00:00:08 +05303520 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL,
3521 cmd->buf_ptr,
3522 text_length);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003523}
3524
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003525void
3526iscsit_build_reject(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
3527 struct iscsi_reject *hdr)
3528{
3529 hdr->opcode = ISCSI_OP_REJECT;
Nicholas Bellingerba159912013-07-03 03:48:24 -07003530 hdr->reason = cmd->reject_reason;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003531 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
3532 hton24(hdr->dlength, ISCSI_HDR_LEN);
3533 hdr->ffffffff = cpu_to_be32(0xffffffff);
3534 cmd->stat_sn = conn->stat_sn++;
3535 hdr->statsn = cpu_to_be32(cmd->stat_sn);
3536 hdr->exp_cmdsn = cpu_to_be32(conn->sess->exp_cmd_sn);
Roland Dreier109e2382015-07-23 14:53:32 -07003537 hdr->max_cmdsn = cpu_to_be32((u32) atomic_read(&conn->sess->max_cmd_sn));
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003538
3539}
3540EXPORT_SYMBOL(iscsit_build_reject);
3541
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003542static int iscsit_send_reject(
3543 struct iscsi_cmd *cmd,
3544 struct iscsi_conn *conn)
3545{
Nicholas Bellingerbfbdb312013-05-03 16:46:41 -07003546 struct iscsi_reject *hdr = (struct iscsi_reject *)&cmd->pdu[0];
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003547
Nicholas Bellingerbfbdb312013-05-03 16:46:41 -07003548 iscsit_build_reject(cmd, conn, hdr);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003549
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003550 pr_debug("Built Reject PDU StatSN: 0x%08x, Reason: 0x%02x,"
3551 " CID: %hu\n", ntohl(hdr->statsn), hdr->reason, conn->cid);
3552
Varun Prakash2854bb22016-04-20 00:00:08 +05303553 return conn->conn_transport->iscsit_xmit_pdu(conn, cmd, NULL,
3554 cmd->buf_ptr,
3555 ISCSI_HDR_LEN);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003556}
3557
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003558void iscsit_thread_get_cpumask(struct iscsi_conn *conn)
3559{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003560 int ord, cpu;
3561 /*
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003562 * bitmap_id is assigned from iscsit_global->ts_bitmap from
3563 * within iscsit_start_kthreads()
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003564 *
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003565 * Here we use bitmap_id to determine which CPU that this
3566 * iSCSI connection's RX/TX threads will be scheduled to
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003567 * execute upon.
3568 */
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003569 ord = conn->bitmap_id % cpumask_weight(cpu_online_mask);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003570 for_each_online_cpu(cpu) {
3571 if (ord-- == 0) {
3572 cpumask_set_cpu(cpu, conn->conn_cpumask);
3573 return;
3574 }
3575 }
3576 /*
3577 * This should never be reached..
3578 */
3579 dump_stack();
3580 cpumask_setall(conn->conn_cpumask);
3581}
3582
Varun Prakashd2faaef2016-04-20 00:00:19 +05303583int
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003584iscsit_immediate_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003585{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003586 int ret;
3587
3588 switch (state) {
3589 case ISTATE_SEND_R2T:
3590 ret = iscsit_send_r2t(cmd, conn);
3591 if (ret < 0)
3592 goto err;
3593 break;
3594 case ISTATE_REMOVE:
3595 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellinger5159d762014-02-03 12:53:51 -08003596 list_del_init(&cmd->i_conn_node);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003597 spin_unlock_bh(&conn->cmd_lock);
3598
Nicholas Bellingeraafc9d12013-05-31 00:49:41 -07003599 iscsit_free_cmd(cmd, false);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003600 break;
3601 case ISTATE_SEND_NOPIN_WANT_RESPONSE:
3602 iscsit_mod_nopin_response_timer(conn);
3603 ret = iscsit_send_unsolicited_nopin(cmd, conn, 1);
3604 if (ret < 0)
3605 goto err;
3606 break;
3607 case ISTATE_SEND_NOPIN_NO_RESPONSE:
3608 ret = iscsit_send_unsolicited_nopin(cmd, conn, 0);
3609 if (ret < 0)
3610 goto err;
3611 break;
3612 default:
3613 pr_err("Unknown Opcode: 0x%02x ITT:"
3614 " 0x%08x, i_state: %d on CID: %hu\n",
3615 cmd->iscsi_opcode, cmd->init_task_tag, state,
3616 conn->cid);
3617 goto err;
3618 }
3619
3620 return 0;
3621
3622err:
3623 return -1;
3624}
Varun Prakashd2faaef2016-04-20 00:00:19 +05303625EXPORT_SYMBOL(iscsit_immediate_queue);
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003626
3627static int
3628iscsit_handle_immediate_queue(struct iscsi_conn *conn)
3629{
3630 struct iscsit_transport *t = conn->conn_transport;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003631 struct iscsi_queue_req *qr;
3632 struct iscsi_cmd *cmd;
3633 u8 state;
3634 int ret;
3635
3636 while ((qr = iscsit_get_cmd_from_immediate_queue(conn))) {
3637 atomic_set(&conn->check_immediate_queue, 0);
3638 cmd = qr->cmd;
3639 state = qr->state;
3640 kmem_cache_free(lio_qr_cache, qr);
3641
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003642 ret = t->iscsit_immediate_queue(conn, cmd, state);
3643 if (ret < 0)
3644 return ret;
3645 }
Andy Grover6f3c0e62012-04-03 15:51:09 -07003646
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003647 return 0;
3648}
Andy Grover6f3c0e62012-04-03 15:51:09 -07003649
Varun Prakashd2faaef2016-04-20 00:00:19 +05303650int
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003651iscsit_response_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
3652{
3653 int ret;
3654
3655check_rsp_state:
3656 switch (state) {
3657 case ISTATE_SEND_DATAIN:
3658 ret = iscsit_send_datain(cmd, conn);
3659 if (ret < 0)
3660 goto err;
3661 else if (!ret)
3662 /* more drs */
3663 goto check_rsp_state;
3664 else if (ret == 1) {
3665 /* all done */
3666 spin_lock_bh(&cmd->istate_lock);
3667 cmd->i_state = ISTATE_SENT_STATUS;
3668 spin_unlock_bh(&cmd->istate_lock);
3669
3670 if (atomic_read(&conn->check_immediate_queue))
3671 return 1;
3672
3673 return 0;
3674 } else if (ret == 2) {
3675 /* Still must send status,
3676 SCF_TRANSPORT_TASK_SENSE was set */
3677 spin_lock_bh(&cmd->istate_lock);
3678 cmd->i_state = ISTATE_SEND_STATUS;
3679 spin_unlock_bh(&cmd->istate_lock);
3680 state = ISTATE_SEND_STATUS;
3681 goto check_rsp_state;
3682 }
3683
3684 break;
3685 case ISTATE_SEND_STATUS:
3686 case ISTATE_SEND_STATUS_RECOVERY:
3687 ret = iscsit_send_response(cmd, conn);
3688 break;
3689 case ISTATE_SEND_LOGOUTRSP:
3690 ret = iscsit_send_logout(cmd, conn);
3691 break;
3692 case ISTATE_SEND_ASYNCMSG:
3693 ret = iscsit_send_conn_drop_async_message(
3694 cmd, conn);
3695 break;
3696 case ISTATE_SEND_NOPIN:
3697 ret = iscsit_send_nopin(cmd, conn);
3698 break;
3699 case ISTATE_SEND_REJECT:
3700 ret = iscsit_send_reject(cmd, conn);
3701 break;
3702 case ISTATE_SEND_TASKMGTRSP:
3703 ret = iscsit_send_task_mgt_rsp(cmd, conn);
3704 if (ret != 0)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003705 break;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003706 ret = iscsit_tmr_post_handler(cmd, conn);
3707 if (ret != 0)
3708 iscsit_fall_back_to_erl0(conn->sess);
3709 break;
3710 case ISTATE_SEND_TEXTRSP:
3711 ret = iscsit_send_text_rsp(cmd, conn);
3712 break;
3713 default:
3714 pr_err("Unknown Opcode: 0x%02x ITT:"
3715 " 0x%08x, i_state: %d on CID: %hu\n",
3716 cmd->iscsi_opcode, cmd->init_task_tag,
3717 state, conn->cid);
3718 goto err;
3719 }
3720 if (ret < 0)
3721 goto err;
3722
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003723 switch (state) {
3724 case ISTATE_SEND_LOGOUTRSP:
3725 if (!iscsit_logout_post_handler(cmd, conn))
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003726 return -ECONNRESET;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003727 /* fall through */
3728 case ISTATE_SEND_STATUS:
3729 case ISTATE_SEND_ASYNCMSG:
3730 case ISTATE_SEND_NOPIN:
3731 case ISTATE_SEND_STATUS_RECOVERY:
3732 case ISTATE_SEND_TEXTRSP:
3733 case ISTATE_SEND_TASKMGTRSP:
Nicholas Bellingerba159912013-07-03 03:48:24 -07003734 case ISTATE_SEND_REJECT:
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003735 spin_lock_bh(&cmd->istate_lock);
3736 cmd->i_state = ISTATE_SENT_STATUS;
3737 spin_unlock_bh(&cmd->istate_lock);
3738 break;
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003739 default:
3740 pr_err("Unknown Opcode: 0x%02x ITT:"
3741 " 0x%08x, i_state: %d on CID: %hu\n",
3742 cmd->iscsi_opcode, cmd->init_task_tag,
3743 cmd->i_state, conn->cid);
3744 goto err;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003745 }
3746
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003747 if (atomic_read(&conn->check_immediate_queue))
3748 return 1;
3749
Andy Grover6f3c0e62012-04-03 15:51:09 -07003750 return 0;
3751
3752err:
3753 return -1;
3754}
Varun Prakashd2faaef2016-04-20 00:00:19 +05303755EXPORT_SYMBOL(iscsit_response_queue);
Andy Grover6f3c0e62012-04-03 15:51:09 -07003756
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003757static int iscsit_handle_response_queue(struct iscsi_conn *conn)
Andy Grover6f3c0e62012-04-03 15:51:09 -07003758{
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003759 struct iscsit_transport *t = conn->conn_transport;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003760 struct iscsi_queue_req *qr;
3761 struct iscsi_cmd *cmd;
3762 u8 state;
3763 int ret;
3764
3765 while ((qr = iscsit_get_cmd_from_response_queue(conn))) {
3766 cmd = qr->cmd;
3767 state = qr->state;
3768 kmem_cache_free(lio_qr_cache, qr);
3769
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003770 ret = t->iscsit_response_queue(conn, cmd, state);
3771 if (ret == 1 || ret < 0)
3772 return ret;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003773 }
3774
3775 return 0;
Andy Grover6f3c0e62012-04-03 15:51:09 -07003776}
3777
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003778int iscsi_target_tx_thread(void *arg)
3779{
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003780 int ret = 0;
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003781 struct iscsi_conn *conn = arg;
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003782 bool conn_freed = false;
3783
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003784 /*
3785 * Allow ourselves to be interrupted by SIGINT so that a
3786 * connection recovery / failure event can be triggered externally.
3787 */
3788 allow_signal(SIGINT);
3789
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003790 while (!kthread_should_stop()) {
3791 /*
3792 * Ensure that both TX and RX per connection kthreads
3793 * are scheduled to run on the same CPU.
3794 */
3795 iscsit_thread_check_cpumask(conn, current, 1);
3796
Roland Dreierd5627ac2012-10-31 09:16:46 -07003797 wait_event_interruptible(conn->queues_wq,
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003798 !iscsit_conn_all_queues_empty(conn));
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003799
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003800 if (signal_pending(current))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003801 goto transport_err;
3802
Nicholas Bellingerfd3a9022013-02-27 17:53:52 -08003803get_immediate:
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003804 ret = iscsit_handle_immediate_queue(conn);
Andy Grover6f3c0e62012-04-03 15:51:09 -07003805 if (ret < 0)
3806 goto transport_err;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003807
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07003808 ret = iscsit_handle_response_queue(conn);
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003809 if (ret == 1) {
Nicholas Bellingerfd3a9022013-02-27 17:53:52 -08003810 goto get_immediate;
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003811 } else if (ret == -ECONNRESET) {
3812 conn_freed = true;
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08003813 goto out;
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003814 } else if (ret < 0) {
Andy Grover6f3c0e62012-04-03 15:51:09 -07003815 goto transport_err;
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003816 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003817 }
3818
3819transport_err:
Nicholas Bellingere5419862015-07-22 23:14:19 -07003820 /*
3821 * Avoid the normal connection failure code-path if this connection
3822 * is still within LOGIN mode, and iscsi_np process context is
3823 * responsible for cleaning up the early connection failure.
3824 */
3825 if (conn->conn_state != TARG_CONN_STATE_IN_LOGIN)
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003826 iscsit_take_action_for_connection_exit(conn, &conn_freed);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003827out:
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08003828 if (!conn_freed) {
3829 while (!kthread_should_stop()) {
3830 msleep(100);
3831 }
3832 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003833 return 0;
3834}
3835
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003836static int iscsi_target_rx_opcode(struct iscsi_conn *conn, unsigned char *buf)
3837{
3838 struct iscsi_hdr *hdr = (struct iscsi_hdr *)buf;
3839 struct iscsi_cmd *cmd;
3840 int ret = 0;
3841
3842 switch (hdr->opcode & ISCSI_OPCODE_MASK) {
3843 case ISCSI_OP_SCSI_CMD:
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003844 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003845 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003846 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003847
3848 ret = iscsit_handle_scsi_cmd(conn, cmd, buf);
3849 break;
3850 case ISCSI_OP_SCSI_DATA_OUT:
3851 ret = iscsit_handle_data_out(conn, buf);
3852 break;
3853 case ISCSI_OP_NOOP_OUT:
3854 cmd = NULL;
3855 if (hdr->ttt == cpu_to_be32(0xFFFFFFFF)) {
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003856 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003857 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003858 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003859 }
3860 ret = iscsit_handle_nop_out(conn, cmd, buf);
3861 break;
3862 case ISCSI_OP_SCSI_TMFUNC:
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003863 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003864 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003865 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003866
3867 ret = iscsit_handle_task_mgt_cmd(conn, cmd, buf);
3868 break;
3869 case ISCSI_OP_TEXT:
Sagi Grimberge4f4e802015-02-09 18:07:25 +02003870 if (hdr->ttt != cpu_to_be32(0xFFFFFFFF)) {
3871 cmd = iscsit_find_cmd_from_itt(conn, hdr->itt);
3872 if (!cmd)
3873 goto reject;
3874 } else {
3875 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
3876 if (!cmd)
3877 goto reject;
3878 }
Nicholas Bellinger64534aa2013-06-14 16:46:16 -07003879
3880 ret = iscsit_handle_text_cmd(conn, cmd, buf);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003881 break;
3882 case ISCSI_OP_LOGOUT:
Nicholas Bellinger676687c2014-01-20 03:36:44 +00003883 cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003884 if (!cmd)
Nicholas Bellingerba159912013-07-03 03:48:24 -07003885 goto reject;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003886
3887 ret = iscsit_handle_logout_cmd(conn, cmd, buf);
3888 if (ret > 0)
3889 wait_for_completion_timeout(&conn->conn_logout_comp,
3890 SECONDS_FOR_LOGOUT_COMP * HZ);
3891 break;
3892 case ISCSI_OP_SNACK:
3893 ret = iscsit_handle_snack(conn, buf);
3894 break;
3895 default:
3896 pr_err("Got unknown iSCSI OpCode: 0x%02x\n", hdr->opcode);
3897 if (!conn->sess->sess_ops->ErrorRecoveryLevel) {
3898 pr_err("Cannot recover from unknown"
3899 " opcode while ERL=0, closing iSCSI connection.\n");
3900 return -1;
3901 }
Christophe Vu-Brugierc04a6092015-04-19 22:18:33 +02003902 pr_err("Unable to recover from unknown opcode while OFMarker=No,"
3903 " closing iSCSI connection.\n");
3904 ret = -1;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003905 break;
3906 }
3907
3908 return ret;
Nicholas Bellingerba159912013-07-03 03:48:24 -07003909reject:
3910 return iscsit_add_reject(conn, ISCSI_REASON_BOOKMARK_NO_RESOURCES, buf);
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003911}
3912
Nicholas Bellingerca82c2b2015-11-05 14:11:59 -08003913static bool iscsi_target_check_conn_state(struct iscsi_conn *conn)
3914{
3915 bool ret;
3916
3917 spin_lock_bh(&conn->state_lock);
3918 ret = (conn->conn_state != TARG_CONN_STATE_LOGGED_IN);
3919 spin_unlock_bh(&conn->state_lock);
3920
3921 return ret;
3922}
3923
Varun Prakashe8205cc2016-04-20 00:00:11 +05303924static void iscsit_get_rx_pdu(struct iscsi_conn *conn)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003925{
Varun Prakashe8205cc2016-04-20 00:00:11 +05303926 int ret;
Laura Abbott679fcae2018-09-04 11:47:40 -07003927 u8 *buffer, opcode;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003928 u32 checksum = 0, digest = 0;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003929 struct kvec iov;
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003930
Laura Abbott679fcae2018-09-04 11:47:40 -07003931 buffer = kcalloc(ISCSI_HDR_LEN, sizeof(*buffer), GFP_KERNEL);
3932 if (!buffer)
3933 return;
3934
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003935 while (!kthread_should_stop()) {
3936 /*
3937 * Ensure that both TX and RX per connection kthreads
3938 * are scheduled to run on the same CPU.
3939 */
3940 iscsit_thread_check_cpumask(conn, current, 0);
3941
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003942 memset(&iov, 0, sizeof(struct kvec));
3943
3944 iov.iov_base = buffer;
3945 iov.iov_len = ISCSI_HDR_LEN;
3946
3947 ret = rx_data(conn, &iov, 1, ISCSI_HDR_LEN);
3948 if (ret != ISCSI_HDR_LEN) {
3949 iscsit_rx_thread_wait_for_tcp(conn);
Laura Abbott679fcae2018-09-04 11:47:40 -07003950 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003951 }
3952
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003953 if (conn->conn_ops->HeaderDigest) {
3954 iov.iov_base = &digest;
3955 iov.iov_len = ISCSI_CRC_LEN;
3956
3957 ret = rx_data(conn, &iov, 1, ISCSI_CRC_LEN);
3958 if (ret != ISCSI_CRC_LEN) {
3959 iscsit_rx_thread_wait_for_tcp(conn);
Laura Abbott679fcae2018-09-04 11:47:40 -07003960 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003961 }
3962
Bart Van Asschee1dfb212017-10-31 11:03:16 -07003963 iscsit_do_crypto_hash_buf(conn->conn_rx_hash, buffer,
3964 ISCSI_HDR_LEN, 0, NULL,
3965 &checksum);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003966
3967 if (digest != checksum) {
3968 pr_err("HeaderDigest CRC32C failed,"
3969 " received 0x%08x, computed 0x%08x\n",
3970 digest, checksum);
3971 /*
3972 * Set the PDU to 0xff so it will intentionally
3973 * hit default in the switch below.
3974 */
3975 memset(buffer, 0xff, ISCSI_HDR_LEN);
Nicholas Bellinger04f3b312013-11-13 18:54:45 -08003976 atomic_long_inc(&conn->sess->conn_digest_errors);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003977 } else {
3978 pr_debug("Got HeaderDigest CRC32C"
3979 " 0x%08x\n", checksum);
3980 }
3981 }
3982
3983 if (conn->conn_state == TARG_CONN_STATE_IN_LOGOUT)
Laura Abbott679fcae2018-09-04 11:47:40 -07003984 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003985
3986 opcode = buffer[0] & ISCSI_OPCODE_MASK;
3987
3988 if (conn->sess->sess_ops->SessionType &&
3989 ((!(opcode & ISCSI_OP_TEXT)) ||
3990 (!(opcode & ISCSI_OP_LOGOUT)))) {
3991 pr_err("Received illegal iSCSI Opcode: 0x%02x"
3992 " while in Discovery Session, rejecting.\n", opcode);
Nicholas Bellingerba159912013-07-03 03:48:24 -07003993 iscsit_add_reject(conn, ISCSI_REASON_PROTOCOL_ERROR,
3994 buffer);
Laura Abbott679fcae2018-09-04 11:47:40 -07003995 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00003996 }
3997
Nicholas Bellinger3e1c81a2013-03-06 22:18:24 -08003998 ret = iscsi_target_rx_opcode(conn, buffer);
3999 if (ret < 0)
Laura Abbott679fcae2018-09-04 11:47:40 -07004000 break;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004001 }
Laura Abbott679fcae2018-09-04 11:47:40 -07004002
4003 kfree(buffer);
Varun Prakashe8205cc2016-04-20 00:00:11 +05304004}
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004005
Varun Prakashe8205cc2016-04-20 00:00:11 +05304006int iscsi_target_rx_thread(void *arg)
4007{
4008 int rc;
4009 struct iscsi_conn *conn = arg;
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08004010 bool conn_freed = false;
Varun Prakashe8205cc2016-04-20 00:00:11 +05304011
4012 /*
4013 * Allow ourselves to be interrupted by SIGINT so that a
4014 * connection recovery / failure event can be triggered externally.
4015 */
4016 allow_signal(SIGINT);
4017 /*
4018 * Wait for iscsi_post_login_handler() to complete before allowing
4019 * incoming iscsi/tcp socket I/O, and/or failing the connection.
4020 */
4021 rc = wait_for_completion_interruptible(&conn->rx_login_comp);
4022 if (rc < 0 || iscsi_target_check_conn_state(conn))
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08004023 goto out;
Varun Prakashe8205cc2016-04-20 00:00:11 +05304024
4025 if (!conn->conn_transport->iscsit_get_rx_pdu)
4026 return 0;
4027
4028 conn->conn_transport->iscsit_get_rx_pdu(conn);
4029
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004030 if (!signal_pending(current))
4031 atomic_set(&conn->transport_failed, 1);
Jiang Yi5e0cf5e2017-05-16 17:57:55 +08004032 iscsit_take_action_for_connection_exit(conn, &conn_freed);
4033
4034out:
4035 if (!conn_freed) {
4036 while (!kthread_should_stop()) {
4037 msleep(100);
4038 }
4039 }
4040
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004041 return 0;
4042}
4043
4044static void iscsit_release_commands_from_conn(struct iscsi_conn *conn)
4045{
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004046 LIST_HEAD(tmp_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004047 struct iscsi_cmd *cmd = NULL, *cmd_tmp = NULL;
4048 struct iscsi_session *sess = conn->sess;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004049 /*
4050 * We expect this function to only ever be called from either RX or TX
4051 * thread context via iscsit_close_connection() once the other context
4052 * has been reset -> returned sleeping pre-handler state.
4053 */
4054 spin_lock_bh(&conn->cmd_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004055 list_splice_init(&conn->conn_cmd_list, &tmp_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004056
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004057 list_for_each_entry(cmd, &tmp_list, i_conn_node) {
4058 struct se_cmd *se_cmd = &cmd->se_cmd;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004059
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004060 if (se_cmd->se_tfo != NULL) {
Bart Van Asschef4a9fd52019-01-25 10:34:56 -08004061 spin_lock_irq(&se_cmd->t_state_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004062 se_cmd->transport_state |= CMD_T_FABRIC_STOP;
Bart Van Asschef4a9fd52019-01-25 10:34:56 -08004063 spin_unlock_irq(&se_cmd->t_state_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004064 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004065 }
4066 spin_unlock_bh(&conn->cmd_lock);
Nicholas Bellinger064cdd22016-06-02 14:56:45 -07004067
4068 list_for_each_entry_safe(cmd, cmd_tmp, &tmp_list, i_conn_node) {
4069 list_del_init(&cmd->i_conn_node);
4070
4071 iscsit_increment_maxcmdsn(cmd, sess);
4072 iscsit_free_cmd(cmd, true);
4073
4074 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004075}
4076
4077static void iscsit_stop_timers_for_cmds(
4078 struct iscsi_conn *conn)
4079{
4080 struct iscsi_cmd *cmd;
4081
4082 spin_lock_bh(&conn->cmd_lock);
Andy Grover2fbb4712012-04-03 15:51:01 -07004083 list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004084 if (cmd->data_direction == DMA_TO_DEVICE)
4085 iscsit_stop_dataout_timer(cmd);
4086 }
4087 spin_unlock_bh(&conn->cmd_lock);
4088}
4089
4090int iscsit_close_connection(
4091 struct iscsi_conn *conn)
4092{
4093 int conn_logout = (conn->conn_state == TARG_CONN_STATE_IN_LOGOUT);
4094 struct iscsi_session *sess = conn->sess;
4095
4096 pr_debug("Closing iSCSI connection CID %hu on SID:"
4097 " %u\n", conn->cid, sess->sid);
4098 /*
Varun Prakashb4869ee2016-04-20 00:00:18 +05304099 * Always up conn_logout_comp for the traditional TCP and HW_OFFLOAD
4100 * case just in case the RX Thread in iscsi_target_rx_opcode() is
4101 * sleeping and the logout response never got sent because the
4102 * connection failed.
Nicholas Bellingerf068fbc2015-02-23 00:57:51 -08004103 *
4104 * However for iser-target, isert_wait4logout() is using conn_logout_comp
4105 * to signal logout response TX interrupt completion. Go ahead and skip
4106 * this for iser since isert_rx_opcode() does not wait on logout failure,
4107 * and to avoid iscsi_conn pointer dereference in iser-target code.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004108 */
Nicholas Bellingerbd027d82016-05-14 22:23:34 -07004109 if (!conn->conn_transport->rdma_shutdown)
Nicholas Bellingerf068fbc2015-02-23 00:57:51 -08004110 complete(&conn->conn_logout_comp);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004111
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08004112 if (!strcmp(current->comm, ISCSI_RX_THREAD_NAME)) {
4113 if (conn->tx_thread &&
4114 cmpxchg(&conn->tx_thread_active, true, false)) {
4115 send_sig(SIGINT, conn->tx_thread, 1);
4116 kthread_stop(conn->tx_thread);
4117 }
4118 } else if (!strcmp(current->comm, ISCSI_TX_THREAD_NAME)) {
4119 if (conn->rx_thread &&
4120 cmpxchg(&conn->rx_thread_active, true, false)) {
4121 send_sig(SIGINT, conn->rx_thread, 1);
4122 kthread_stop(conn->rx_thread);
4123 }
4124 }
4125
4126 spin_lock(&iscsit_global->ts_bitmap_lock);
4127 bitmap_release_region(iscsit_global->ts_bitmap, conn->bitmap_id,
4128 get_order(1));
4129 spin_unlock(&iscsit_global->ts_bitmap_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004130
4131 iscsit_stop_timers_for_cmds(conn);
4132 iscsit_stop_nopin_response_timer(conn);
4133 iscsit_stop_nopin_timer(conn);
Nicholas Bellingerdefd8842014-02-03 12:54:39 -08004134
Bart Van Asschec66b2b52020-02-12 21:08:59 -08004135 if (conn->conn_transport->iscsit_wait_conn)
4136 conn->conn_transport->iscsit_wait_conn(conn);
4137
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004138 /*
4139 * During Connection recovery drop unacknowledged out of order
4140 * commands for this connection, and prepare the other commands
Bart Van Assche53c561d2016-12-23 14:40:24 +01004141 * for reallegiance.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004142 *
4143 * During normal operation clear the out of order commands (but
4144 * do not free the struct iscsi_ooo_cmdsn's) and release all
4145 * struct iscsi_cmds.
4146 */
4147 if (atomic_read(&conn->connection_recovery)) {
4148 iscsit_discard_unacknowledged_ooo_cmdsns_for_conn(conn);
Bart Van Assche53c561d2016-12-23 14:40:24 +01004149 iscsit_prepare_cmds_for_reallegiance(conn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004150 } else {
4151 iscsit_clear_ooo_cmdsns_for_conn(conn);
4152 iscsit_release_commands_from_conn(conn);
4153 }
Nicholas Bellingerbbc05042014-06-10 04:03:54 +00004154 iscsit_free_queue_reqs_for_conn(conn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004155
4156 /*
4157 * Handle decrementing session or connection usage count if
4158 * a logout response was not able to be sent because the
4159 * connection failed. Fall back to Session Recovery here.
4160 */
4161 if (atomic_read(&conn->conn_logout_remove)) {
4162 if (conn->conn_logout_reason == ISCSI_LOGOUT_REASON_CLOSE_SESSION) {
4163 iscsit_dec_conn_usage_count(conn);
4164 iscsit_dec_session_usage_count(sess);
4165 }
4166 if (conn->conn_logout_reason == ISCSI_LOGOUT_REASON_CLOSE_CONNECTION)
4167 iscsit_dec_conn_usage_count(conn);
4168
4169 atomic_set(&conn->conn_logout_remove, 0);
4170 atomic_set(&sess->session_reinstatement, 0);
4171 atomic_set(&sess->session_fall_back_to_erl0, 1);
4172 }
4173
4174 spin_lock_bh(&sess->conn_lock);
4175 list_del(&conn->conn_list);
4176
4177 /*
4178 * Attempt to let the Initiator know this connection failed by
4179 * sending an Connection Dropped Async Message on another
4180 * active connection.
4181 */
4182 if (atomic_read(&conn->connection_recovery))
4183 iscsit_build_conn_drop_async_message(conn);
4184
4185 spin_unlock_bh(&sess->conn_lock);
4186
4187 /*
4188 * If connection reinstatement is being performed on this connection,
4189 * up the connection reinstatement semaphore that is being blocked on
4190 * in iscsit_cause_connection_reinstatement().
4191 */
4192 spin_lock_bh(&conn->state_lock);
4193 if (atomic_read(&conn->sleep_on_conn_wait_comp)) {
4194 spin_unlock_bh(&conn->state_lock);
4195 complete(&conn->conn_wait_comp);
4196 wait_for_completion(&conn->conn_post_wait_comp);
4197 spin_lock_bh(&conn->state_lock);
4198 }
4199
4200 /*
4201 * If connection reinstatement is being performed on this connection
4202 * by receiving a REMOVECONNFORRECOVERY logout request, up the
4203 * connection wait rcfr semaphore that is being blocked on
4204 * an iscsit_connection_reinstatement_rcfr().
4205 */
4206 if (atomic_read(&conn->connection_wait_rcfr)) {
4207 spin_unlock_bh(&conn->state_lock);
4208 complete(&conn->conn_wait_rcfr_comp);
4209 wait_for_completion(&conn->conn_post_wait_comp);
4210 spin_lock_bh(&conn->state_lock);
4211 }
4212 atomic_set(&conn->connection_reinstatement, 1);
4213 spin_unlock_bh(&conn->state_lock);
4214
4215 /*
4216 * If any other processes are accessing this connection pointer we
4217 * must wait until they have completed.
4218 */
4219 iscsit_check_conn_usage_count(conn);
4220
Herbert Xu69110e32016-01-24 21:19:52 +08004221 ahash_request_free(conn->conn_tx_hash);
4222 if (conn->conn_rx_hash) {
4223 struct crypto_ahash *tfm;
4224
4225 tfm = crypto_ahash_reqtfm(conn->conn_rx_hash);
4226 ahash_request_free(conn->conn_rx_hash);
4227 crypto_free_ahash(tfm);
4228 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004229
Al Virobf6932f2012-07-21 08:55:18 +01004230 if (conn->sock)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004231 sock_release(conn->sock);
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -08004232
4233 if (conn->conn_transport->iscsit_free_conn)
4234 conn->conn_transport->iscsit_free_conn(conn);
4235
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004236 pr_debug("Moving to TARG_CONN_STATE_FREE.\n");
4237 conn->conn_state = TARG_CONN_STATE_FREE;
Mike Christie05a86e72018-08-27 14:45:16 -05004238 iscsit_free_conn(conn);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004239
4240 spin_lock_bh(&sess->conn_lock);
4241 atomic_dec(&sess->nconn);
4242 pr_debug("Decremented iSCSI connection count to %hu from node:"
4243 " %s\n", atomic_read(&sess->nconn),
4244 sess->sess_ops->InitiatorName);
4245 /*
4246 * Make sure that if one connection fails in an non ERL=2 iSCSI
4247 * Session that they all fail.
4248 */
4249 if ((sess->sess_ops->ErrorRecoveryLevel != 2) && !conn_logout &&
4250 !atomic_read(&sess->session_logout))
4251 atomic_set(&sess->session_fall_back_to_erl0, 1);
4252
4253 /*
4254 * If this was not the last connection in the session, and we are
4255 * performing session reinstatement or falling back to ERL=0, call
4256 * iscsit_stop_session() without sleeping to shutdown the other
4257 * active connections.
4258 */
4259 if (atomic_read(&sess->nconn)) {
4260 if (!atomic_read(&sess->session_reinstatement) &&
4261 !atomic_read(&sess->session_fall_back_to_erl0)) {
4262 spin_unlock_bh(&sess->conn_lock);
4263 return 0;
4264 }
4265 if (!atomic_read(&sess->session_stop_active)) {
4266 atomic_set(&sess->session_stop_active, 1);
4267 spin_unlock_bh(&sess->conn_lock);
4268 iscsit_stop_session(sess, 0, 0);
4269 return 0;
4270 }
4271 spin_unlock_bh(&sess->conn_lock);
4272 return 0;
4273 }
4274
4275 /*
4276 * If this was the last connection in the session and one of the
4277 * following is occurring:
4278 *
4279 * Session Reinstatement is not being performed, and are falling back
4280 * to ERL=0 call iscsit_close_session().
4281 *
4282 * Session Logout was requested. iscsit_close_session() will be called
4283 * elsewhere.
4284 *
4285 * Session Continuation is not being performed, start the Time2Retain
4286 * handler and check if sleep_on_sess_wait_sem is active.
4287 */
4288 if (!atomic_read(&sess->session_reinstatement) &&
4289 atomic_read(&sess->session_fall_back_to_erl0)) {
4290 spin_unlock_bh(&sess->conn_lock);
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004291 complete_all(&sess->session_wait_comp);
Christoph Hellwig44f33d02016-05-02 15:45:24 +02004292 iscsit_close_session(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004293
4294 return 0;
4295 } else if (atomic_read(&sess->session_logout)) {
4296 pr_debug("Moving to TARG_SESS_STATE_FREE.\n");
4297 sess->session_state = TARG_SESS_STATE_FREE;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004298
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004299 if (atomic_read(&sess->session_close)) {
4300 spin_unlock_bh(&sess->conn_lock);
4301 complete_all(&sess->session_wait_comp);
4302 iscsit_close_session(sess);
4303 } else {
4304 spin_unlock_bh(&sess->conn_lock);
4305 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004306
4307 return 0;
4308 } else {
4309 pr_debug("Moving to TARG_SESS_STATE_FAILED.\n");
4310 sess->session_state = TARG_SESS_STATE_FAILED;
4311
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004312 if (!atomic_read(&sess->session_continuation))
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004313 iscsit_start_time2retain_handler(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004314
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004315 if (atomic_read(&sess->session_close)) {
4316 spin_unlock_bh(&sess->conn_lock);
4317 complete_all(&sess->session_wait_comp);
4318 iscsit_close_session(sess);
4319 } else {
4320 spin_unlock_bh(&sess->conn_lock);
4321 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004322
4323 return 0;
4324 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004325}
4326
Christoph Hellwig44f33d02016-05-02 15:45:24 +02004327/*
4328 * If the iSCSI Session for the iSCSI Initiator Node exists,
4329 * forcefully shutdown the iSCSI NEXUS.
4330 */
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004331int iscsit_close_session(struct iscsi_session *sess)
4332{
Andy Grover60bfcf82013-10-09 11:05:58 -07004333 struct iscsi_portal_group *tpg = sess->tpg;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004334 struct se_portal_group *se_tpg = &tpg->tpg_se_tpg;
4335
4336 if (atomic_read(&sess->nconn)) {
4337 pr_err("%d connection(s) still exist for iSCSI session"
4338 " to %s\n", atomic_read(&sess->nconn),
4339 sess->sess_ops->InitiatorName);
4340 BUG();
4341 }
4342
4343 spin_lock_bh(&se_tpg->session_lock);
4344 atomic_set(&sess->session_logout, 1);
4345 atomic_set(&sess->session_reinstatement, 1);
4346 iscsit_stop_time2retain_timer(sess);
4347 spin_unlock_bh(&se_tpg->session_lock);
4348
4349 /*
4350 * transport_deregister_session_configfs() will clear the
4351 * struct se_node_acl->nacl_sess pointer now as a iscsi_np process context
4352 * can be setting it again with __transport_register_session() in
4353 * iscsi_post_login_handler() again after the iscsit_stop_session()
4354 * completes in iscsi_np context.
4355 */
4356 transport_deregister_session_configfs(sess->se_sess);
4357
4358 /*
4359 * If any other processes are accessing this session pointer we must
4360 * wait until they have completed. If we are in an interrupt (the
4361 * time2retain handler) and contain and active session usage count we
4362 * restart the timer and exit.
4363 */
4364 if (!in_interrupt()) {
4365 if (iscsit_check_session_usage_count(sess) == 1)
4366 iscsit_stop_session(sess, 1, 1);
4367 } else {
4368 if (iscsit_check_session_usage_count(sess) == 2) {
4369 atomic_set(&sess->session_logout, 0);
4370 iscsit_start_time2retain_handler(sess);
4371 return 0;
4372 }
4373 }
4374
4375 transport_deregister_session(sess->se_sess);
4376
4377 if (sess->sess_ops->ErrorRecoveryLevel == 2)
4378 iscsit_free_connection_recovery_entires(sess);
4379
4380 iscsit_free_all_ooo_cmdsns(sess);
4381
4382 spin_lock_bh(&se_tpg->session_lock);
4383 pr_debug("Moving to TARG_SESS_STATE_FREE.\n");
4384 sess->session_state = TARG_SESS_STATE_FREE;
4385 pr_debug("Released iSCSI session from node: %s\n",
4386 sess->sess_ops->InitiatorName);
4387 tpg->nsessions--;
4388 if (tpg->tpg_tiqn)
4389 tpg->tpg_tiqn->tiqn_nsessions--;
4390
4391 pr_debug("Decremented number of active iSCSI Sessions on"
4392 " iSCSI TPG: %hu to %u\n", tpg->tpgt, tpg->nsessions);
4393
Matthew Wilcox31ff0ce2018-06-19 01:23:04 -04004394 ida_free(&sess_ida, sess->session_index);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004395 kfree(sess->sess_ops);
4396 sess->sess_ops = NULL;
4397 spin_unlock_bh(&se_tpg->session_lock);
4398
4399 kfree(sess);
4400 return 0;
4401}
4402
4403static void iscsit_logout_post_handler_closesession(
4404 struct iscsi_conn *conn)
4405{
4406 struct iscsi_session *sess = conn->sess;
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004407 int sleep = 1;
4408 /*
4409 * Traditional iscsi/tcp will invoke this logic from TX thread
4410 * context during session logout, so clear tx_thread_active and
4411 * sleep if iscsit_close_connection() has not already occured.
4412 *
4413 * Since iser-target invokes this logic from it's own workqueue,
4414 * always sleep waiting for RX/TX thread shutdown to complete
4415 * within iscsit_close_connection().
4416 */
Nicholas Bellinger105fa2f2017-06-03 05:35:47 -07004417 if (!conn->conn_transport->rdma_shutdown) {
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004418 sleep = cmpxchg(&conn->tx_thread_active, true, false);
Nicholas Bellinger105fa2f2017-06-03 05:35:47 -07004419 if (!sleep)
4420 return;
4421 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004422
4423 atomic_set(&conn->conn_logout_remove, 0);
4424 complete(&conn->conn_logout_comp);
4425
4426 iscsit_dec_conn_usage_count(conn);
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004427 atomic_set(&sess->session_close, 1);
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08004428 iscsit_stop_session(sess, sleep, sleep);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004429 iscsit_dec_session_usage_count(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004430}
4431
4432static void iscsit_logout_post_handler_samecid(
4433 struct iscsi_conn *conn)
4434{
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004435 int sleep = 1;
4436
Nicholas Bellinger105fa2f2017-06-03 05:35:47 -07004437 if (!conn->conn_transport->rdma_shutdown) {
Nicholas Bellinger007d0382015-07-23 22:30:31 +00004438 sleep = cmpxchg(&conn->tx_thread_active, true, false);
Nicholas Bellinger105fa2f2017-06-03 05:35:47 -07004439 if (!sleep)
4440 return;
4441 }
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004442
4443 atomic_set(&conn->conn_logout_remove, 0);
4444 complete(&conn->conn_logout_comp);
4445
Nicholas Bellinger88dcd2d2015-02-26 22:19:15 -08004446 iscsit_cause_connection_reinstatement(conn, sleep);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004447 iscsit_dec_conn_usage_count(conn);
4448}
4449
4450static void iscsit_logout_post_handler_diffcid(
4451 struct iscsi_conn *conn,
4452 u16 cid)
4453{
4454 struct iscsi_conn *l_conn;
4455 struct iscsi_session *sess = conn->sess;
Nicholas Bellingerb53b0d992014-09-17 11:45:17 -07004456 bool conn_found = false;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004457
4458 if (!sess)
4459 return;
4460
4461 spin_lock_bh(&sess->conn_lock);
4462 list_for_each_entry(l_conn, &sess->sess_conn_list, conn_list) {
4463 if (l_conn->cid == cid) {
4464 iscsit_inc_conn_usage_count(l_conn);
Nicholas Bellingerb53b0d992014-09-17 11:45:17 -07004465 conn_found = true;
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004466 break;
4467 }
4468 }
4469 spin_unlock_bh(&sess->conn_lock);
4470
Nicholas Bellingerb53b0d992014-09-17 11:45:17 -07004471 if (!conn_found)
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004472 return;
4473
4474 if (l_conn->sock)
4475 l_conn->sock->ops->shutdown(l_conn->sock, RCV_SHUTDOWN);
4476
4477 spin_lock_bh(&l_conn->state_lock);
4478 pr_debug("Moving to TARG_CONN_STATE_IN_LOGOUT.\n");
4479 l_conn->conn_state = TARG_CONN_STATE_IN_LOGOUT;
4480 spin_unlock_bh(&l_conn->state_lock);
4481
4482 iscsit_cause_connection_reinstatement(l_conn, 1);
4483 iscsit_dec_conn_usage_count(l_conn);
4484}
4485
4486/*
4487 * Return of 0 causes the TX thread to restart.
4488 */
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07004489int iscsit_logout_post_handler(
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004490 struct iscsi_cmd *cmd,
4491 struct iscsi_conn *conn)
4492{
4493 int ret = 0;
4494
4495 switch (cmd->logout_reason) {
4496 case ISCSI_LOGOUT_REASON_CLOSE_SESSION:
4497 switch (cmd->logout_response) {
4498 case ISCSI_LOGOUT_SUCCESS:
4499 case ISCSI_LOGOUT_CLEANUP_FAILED:
4500 default:
4501 iscsit_logout_post_handler_closesession(conn);
4502 break;
4503 }
4504 ret = 0;
4505 break;
4506 case ISCSI_LOGOUT_REASON_CLOSE_CONNECTION:
4507 if (conn->cid == cmd->logout_cid) {
4508 switch (cmd->logout_response) {
4509 case ISCSI_LOGOUT_SUCCESS:
4510 case ISCSI_LOGOUT_CLEANUP_FAILED:
4511 default:
4512 iscsit_logout_post_handler_samecid(conn);
4513 break;
4514 }
4515 ret = 0;
4516 } else {
4517 switch (cmd->logout_response) {
4518 case ISCSI_LOGOUT_SUCCESS:
4519 iscsit_logout_post_handler_diffcid(conn,
4520 cmd->logout_cid);
4521 break;
4522 case ISCSI_LOGOUT_CID_NOT_FOUND:
4523 case ISCSI_LOGOUT_CLEANUP_FAILED:
4524 default:
4525 break;
4526 }
4527 ret = 1;
4528 }
4529 break;
4530 case ISCSI_LOGOUT_REASON_RECOVERY:
4531 switch (cmd->logout_response) {
4532 case ISCSI_LOGOUT_SUCCESS:
4533 case ISCSI_LOGOUT_CID_NOT_FOUND:
4534 case ISCSI_LOGOUT_RECOVERY_UNSUPPORTED:
4535 case ISCSI_LOGOUT_CLEANUP_FAILED:
4536 default:
4537 break;
4538 }
4539 ret = 1;
4540 break;
4541 default:
4542 break;
4543
4544 }
4545 return ret;
4546}
Nicholas Bellinger2ec5a8c2013-03-20 15:29:15 -07004547EXPORT_SYMBOL(iscsit_logout_post_handler);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004548
4549void iscsit_fail_session(struct iscsi_session *sess)
4550{
4551 struct iscsi_conn *conn;
4552
4553 spin_lock_bh(&sess->conn_lock);
4554 list_for_each_entry(conn, &sess->sess_conn_list, conn_list) {
4555 pr_debug("Moving to TARG_CONN_STATE_CLEANUP_WAIT.\n");
4556 conn->conn_state = TARG_CONN_STATE_CLEANUP_WAIT;
4557 }
4558 spin_unlock_bh(&sess->conn_lock);
4559
4560 pr_debug("Moving to TARG_SESS_STATE_FAILED.\n");
4561 sess->session_state = TARG_SESS_STATE_FAILED;
4562}
4563
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004564void iscsit_stop_session(
4565 struct iscsi_session *sess,
4566 int session_sleep,
4567 int connection_sleep)
4568{
4569 u16 conn_count = atomic_read(&sess->nconn);
4570 struct iscsi_conn *conn, *conn_tmp = NULL;
4571 int is_last;
4572
4573 spin_lock_bh(&sess->conn_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004574
4575 if (connection_sleep) {
4576 list_for_each_entry_safe(conn, conn_tmp, &sess->sess_conn_list,
4577 conn_list) {
4578 if (conn_count == 0)
4579 break;
4580
4581 if (list_is_last(&conn->conn_list, &sess->sess_conn_list)) {
4582 is_last = 1;
4583 } else {
4584 iscsit_inc_conn_usage_count(conn_tmp);
4585 is_last = 0;
4586 }
4587 iscsit_inc_conn_usage_count(conn);
4588
4589 spin_unlock_bh(&sess->conn_lock);
4590 iscsit_cause_connection_reinstatement(conn, 1);
4591 spin_lock_bh(&sess->conn_lock);
4592
4593 iscsit_dec_conn_usage_count(conn);
4594 if (is_last == 0)
4595 iscsit_dec_conn_usage_count(conn_tmp);
4596 conn_count--;
4597 }
4598 } else {
4599 list_for_each_entry(conn, &sess->sess_conn_list, conn_list)
4600 iscsit_cause_connection_reinstatement(conn, 0);
4601 }
4602
4603 if (session_sleep && atomic_read(&sess->nconn)) {
4604 spin_unlock_bh(&sess->conn_lock);
4605 wait_for_completion(&sess->session_wait_comp);
4606 } else
4607 spin_unlock_bh(&sess->conn_lock);
4608}
4609
4610int iscsit_release_sessions_for_tpg(struct iscsi_portal_group *tpg, int force)
4611{
4612 struct iscsi_session *sess;
4613 struct se_portal_group *se_tpg = &tpg->tpg_se_tpg;
4614 struct se_session *se_sess, *se_sess_tmp;
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004615 LIST_HEAD(free_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004616 int session_count = 0;
4617
4618 spin_lock_bh(&se_tpg->session_lock);
4619 if (tpg->nsessions && !force) {
4620 spin_unlock_bh(&se_tpg->session_lock);
4621 return -1;
4622 }
4623
4624 list_for_each_entry_safe(se_sess, se_sess_tmp, &se_tpg->tpg_sess_list,
4625 sess_list) {
4626 sess = (struct iscsi_session *)se_sess->fabric_sess_ptr;
4627
4628 spin_lock(&sess->conn_lock);
4629 if (atomic_read(&sess->session_fall_back_to_erl0) ||
4630 atomic_read(&sess->session_logout) ||
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004631 atomic_read(&sess->session_close) ||
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004632 (sess->time2retain_timer_flags & ISCSI_TF_EXPIRED)) {
4633 spin_unlock(&sess->conn_lock);
4634 continue;
4635 }
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004636 iscsit_inc_session_usage_count(sess);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004637 atomic_set(&sess->session_reinstatement, 1);
Nicholas Bellinger197b8062017-04-25 10:55:12 -07004638 atomic_set(&sess->session_fall_back_to_erl0, 1);
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004639 atomic_set(&sess->session_close, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004640 spin_unlock(&sess->conn_lock);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004641
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004642 list_move_tail(&se_sess->sess_list, &free_list);
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004643 }
4644 spin_unlock_bh(&se_tpg->session_lock);
4645
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004646 list_for_each_entry_safe(se_sess, se_sess_tmp, &free_list, sess_list) {
4647 sess = (struct iscsi_session *)se_sess->fabric_sess_ptr;
4648
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004649 list_del_init(&se_sess->sess_list);
Maurizio Lombardi4b05ecf2020-03-13 18:06:54 +01004650 iscsit_stop_session(sess, 1, 1);
Maurizio Lombardi8b0d0d82020-03-13 18:06:55 +01004651 iscsit_dec_session_usage_count(sess);
Nicholas Bellinger417c20a2015-07-22 00:24:09 -07004652 session_count++;
4653 }
4654
Nicholas Bellingere48354c2011-07-23 06:43:04 +00004655 pr_debug("Released %d iSCSI Session(s) from Target Portal"
4656 " Group: %hu\n", session_count, tpg->tpgt);
4657 return 0;
4658}
4659
4660MODULE_DESCRIPTION("iSCSI-Target Driver for mainline target infrastructure");
4661MODULE_VERSION("4.1.x");
4662MODULE_AUTHOR("nab@Linux-iSCSI.org");
4663MODULE_LICENSE("GPL");
4664
4665module_init(iscsi_target_init_module);
4666module_exit(iscsi_target_cleanup_module);