• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * iSCSI lib functions
3  *
4  * Copyright (C) 2006 Red Hat, Inc.  All rights reserved.
5  * Copyright (C) 2004 - 2006 Mike Christie
6  * Copyright (C) 2004 - 2005 Dmitry Yusupov
7  * Copyright (C) 2004 - 2005 Alex Aizman
8  * maintained by open-iscsi@googlegroups.com
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23  */
24 #include <linux/types.h>
25 #include <linux/kfifo.h>
26 #include <linux/delay.h>
27 #include <linux/log2.h>
28 #include <linux/slab.h>
29 #include <linux/module.h>
30 #include <asm/unaligned.h>
31 #include <net/tcp.h>
32 #include <scsi/scsi_cmnd.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_eh.h>
35 #include <scsi/scsi_tcq.h>
36 #include <scsi/scsi_host.h>
37 #include <scsi/scsi.h>
38 #include <scsi/iscsi_proto.h>
39 #include <scsi/scsi_transport.h>
40 #include <scsi/scsi_transport_iscsi.h>
41 #include <scsi/libiscsi.h>
42 
43 static int iscsi_dbg_lib_conn;
44 module_param_named(debug_libiscsi_conn, iscsi_dbg_lib_conn, int,
45 		   S_IRUGO | S_IWUSR);
46 MODULE_PARM_DESC(debug_libiscsi_conn,
47 		 "Turn on debugging for connections in libiscsi module. "
48 		 "Set to 1 to turn on, and zero to turn off. Default is off.");
49 
50 static int iscsi_dbg_lib_session;
51 module_param_named(debug_libiscsi_session, iscsi_dbg_lib_session, int,
52 		   S_IRUGO | S_IWUSR);
53 MODULE_PARM_DESC(debug_libiscsi_session,
54 		 "Turn on debugging for sessions in libiscsi module. "
55 		 "Set to 1 to turn on, and zero to turn off. Default is off.");
56 
57 static int iscsi_dbg_lib_eh;
58 module_param_named(debug_libiscsi_eh, iscsi_dbg_lib_eh, int,
59 		   S_IRUGO | S_IWUSR);
60 MODULE_PARM_DESC(debug_libiscsi_eh,
61 		 "Turn on debugging for error handling in libiscsi module. "
62 		 "Set to 1 to turn on, and zero to turn off. Default is off.");
63 
64 #define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...)			\
65 	do {							\
66 		if (iscsi_dbg_lib_conn)				\
67 			iscsi_conn_printk(KERN_INFO, _conn,	\
68 					     "%s " dbg_fmt,	\
69 					     __func__, ##arg);	\
70 	} while (0);
71 
72 #define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...)			\
73 	do {								\
74 		if (iscsi_dbg_lib_session)				\
75 			iscsi_session_printk(KERN_INFO, _session,	\
76 					     "%s " dbg_fmt,		\
77 					     __func__, ##arg);		\
78 	} while (0);
79 
80 #define ISCSI_DBG_EH(_session, dbg_fmt, arg...)				\
81 	do {								\
82 		if (iscsi_dbg_lib_eh)					\
83 			iscsi_session_printk(KERN_INFO, _session,	\
84 					     "%s " dbg_fmt,		\
85 					     __func__, ##arg);		\
86 	} while (0);
87 
iscsi_conn_queue_work(struct iscsi_conn * conn)88 inline void iscsi_conn_queue_work(struct iscsi_conn *conn)
89 {
90 	struct Scsi_Host *shost = conn->session->host;
91 	struct iscsi_host *ihost = shost_priv(shost);
92 
93 	if (ihost->workq)
94 		queue_work(ihost->workq, &conn->xmitwork);
95 }
96 EXPORT_SYMBOL_GPL(iscsi_conn_queue_work);
97 
__iscsi_update_cmdsn(struct iscsi_session * session,uint32_t exp_cmdsn,uint32_t max_cmdsn)98 static void __iscsi_update_cmdsn(struct iscsi_session *session,
99 				 uint32_t exp_cmdsn, uint32_t max_cmdsn)
100 {
101 	/*
102 	 * standard specifies this check for when to update expected and
103 	 * max sequence numbers
104 	 */
105 	if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1))
106 		return;
107 
108 	if (exp_cmdsn != session->exp_cmdsn &&
109 	    !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn))
110 		session->exp_cmdsn = exp_cmdsn;
111 
112 	if (max_cmdsn != session->max_cmdsn &&
113 	    !iscsi_sna_lt(max_cmdsn, session->max_cmdsn))
114 		session->max_cmdsn = max_cmdsn;
115 }
116 
iscsi_update_cmdsn(struct iscsi_session * session,struct iscsi_nopin * hdr)117 void iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr)
118 {
119 	__iscsi_update_cmdsn(session, be32_to_cpu(hdr->exp_cmdsn),
120 			     be32_to_cpu(hdr->max_cmdsn));
121 }
122 EXPORT_SYMBOL_GPL(iscsi_update_cmdsn);
123 
124 /**
125  * iscsi_prep_data_out_pdu - initialize Data-Out
126  * @task: scsi command task
127  * @r2t: R2T info
128  * @hdr: iscsi data in pdu
129  *
130  * Notes:
131  *	Initialize Data-Out within this R2T sequence and finds
132  *	proper data_offset within this SCSI command.
133  *
134  *	This function is called with connection lock taken.
135  **/
iscsi_prep_data_out_pdu(struct iscsi_task * task,struct iscsi_r2t_info * r2t,struct iscsi_data * hdr)136 void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t,
137 			   struct iscsi_data *hdr)
138 {
139 	struct iscsi_conn *conn = task->conn;
140 	unsigned int left = r2t->data_length - r2t->sent;
141 
142 	task->hdr_len = sizeof(struct iscsi_data);
143 
144 	memset(hdr, 0, sizeof(struct iscsi_data));
145 	hdr->ttt = r2t->ttt;
146 	hdr->datasn = cpu_to_be32(r2t->datasn);
147 	r2t->datasn++;
148 	hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
149 	hdr->lun = task->lun;
150 	hdr->itt = task->hdr_itt;
151 	hdr->exp_statsn = r2t->exp_statsn;
152 	hdr->offset = cpu_to_be32(r2t->data_offset + r2t->sent);
153 	if (left > conn->max_xmit_dlength) {
154 		hton24(hdr->dlength, conn->max_xmit_dlength);
155 		r2t->data_count = conn->max_xmit_dlength;
156 		hdr->flags = 0;
157 	} else {
158 		hton24(hdr->dlength, left);
159 		r2t->data_count = left;
160 		hdr->flags = ISCSI_FLAG_CMD_FINAL;
161 	}
162 	conn->dataout_pdus_cnt++;
163 }
164 EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu);
165 
iscsi_add_hdr(struct iscsi_task * task,unsigned len)166 static int iscsi_add_hdr(struct iscsi_task *task, unsigned len)
167 {
168 	unsigned exp_len = task->hdr_len + len;
169 
170 	if (exp_len > task->hdr_max) {
171 		WARN_ON(1);
172 		return -EINVAL;
173 	}
174 
175 	WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */
176 	task->hdr_len = exp_len;
177 	return 0;
178 }
179 
180 /*
181  * make an extended cdb AHS
182  */
iscsi_prep_ecdb_ahs(struct iscsi_task * task)183 static int iscsi_prep_ecdb_ahs(struct iscsi_task *task)
184 {
185 	struct scsi_cmnd *cmd = task->sc;
186 	unsigned rlen, pad_len;
187 	unsigned short ahslength;
188 	struct iscsi_ecdb_ahdr *ecdb_ahdr;
189 	int rc;
190 
191 	ecdb_ahdr = iscsi_next_hdr(task);
192 	rlen = cmd->cmd_len - ISCSI_CDB_SIZE;
193 
194 	BUG_ON(rlen > sizeof(ecdb_ahdr->ecdb));
195 	ahslength = rlen + sizeof(ecdb_ahdr->reserved);
196 
197 	pad_len = iscsi_padding(rlen);
198 
199 	rc = iscsi_add_hdr(task, sizeof(ecdb_ahdr->ahslength) +
200 	                   sizeof(ecdb_ahdr->ahstype) + ahslength + pad_len);
201 	if (rc)
202 		return rc;
203 
204 	if (pad_len)
205 		memset(&ecdb_ahdr->ecdb[rlen], 0, pad_len);
206 
207 	ecdb_ahdr->ahslength = cpu_to_be16(ahslength);
208 	ecdb_ahdr->ahstype = ISCSI_AHSTYPE_CDB;
209 	ecdb_ahdr->reserved = 0;
210 	memcpy(ecdb_ahdr->ecdb, cmd->cmnd + ISCSI_CDB_SIZE, rlen);
211 
212 	ISCSI_DBG_SESSION(task->conn->session,
213 			  "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
214 		          "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
215 		          "%u\n", cmd->cmd_len, rlen, pad_len, ahslength,
216 		          task->hdr_len);
217 	return 0;
218 }
219 
iscsi_prep_bidi_ahs(struct iscsi_task * task)220 static int iscsi_prep_bidi_ahs(struct iscsi_task *task)
221 {
222 	struct scsi_cmnd *sc = task->sc;
223 	struct iscsi_rlength_ahdr *rlen_ahdr;
224 	int rc;
225 
226 	rlen_ahdr = iscsi_next_hdr(task);
227 	rc = iscsi_add_hdr(task, sizeof(*rlen_ahdr));
228 	if (rc)
229 		return rc;
230 
231 	rlen_ahdr->ahslength =
232 		cpu_to_be16(sizeof(rlen_ahdr->read_length) +
233 						  sizeof(rlen_ahdr->reserved));
234 	rlen_ahdr->ahstype = ISCSI_AHSTYPE_RLENGTH;
235 	rlen_ahdr->reserved = 0;
236 	rlen_ahdr->read_length = cpu_to_be32(scsi_in(sc)->length);
237 
238 	ISCSI_DBG_SESSION(task->conn->session,
239 			  "bidi-in rlen_ahdr->read_length(%d) "
240 		          "rlen_ahdr->ahslength(%d)\n",
241 		          be32_to_cpu(rlen_ahdr->read_length),
242 		          be16_to_cpu(rlen_ahdr->ahslength));
243 	return 0;
244 }
245 
246 /**
247  * iscsi_check_tmf_restrictions - check if a task is affected by TMF
248  * @task: iscsi task
249  * @opcode: opcode to check for
250  *
251  * During TMF a task has to be checked if it's affected.
252  * All unrelated I/O can be passed through, but I/O to the
253  * affected LUN should be restricted.
254  * If 'fast_abort' is set we won't be sending any I/O to the
255  * affected LUN.
256  * Otherwise the target is waiting for all TTTs to be completed,
257  * so we have to send all outstanding Data-Out PDUs to the target.
258  */
iscsi_check_tmf_restrictions(struct iscsi_task * task,int opcode)259 static int iscsi_check_tmf_restrictions(struct iscsi_task *task, int opcode)
260 {
261 	struct iscsi_conn *conn = task->conn;
262 	struct iscsi_tm *tmf = &conn->tmhdr;
263 	u64 hdr_lun;
264 
265 	if (conn->tmf_state == TMF_INITIAL)
266 		return 0;
267 
268 	if ((tmf->opcode & ISCSI_OPCODE_MASK) != ISCSI_OP_SCSI_TMFUNC)
269 		return 0;
270 
271 	switch (ISCSI_TM_FUNC_VALUE(tmf)) {
272 	case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET:
273 		/*
274 		 * Allow PDUs for unrelated LUNs
275 		 */
276 		hdr_lun = scsilun_to_int(&tmf->lun);
277 		if (hdr_lun != task->sc->device->lun)
278 			return 0;
279 		/* fall through */
280 	case ISCSI_TM_FUNC_TARGET_WARM_RESET:
281 		/*
282 		 * Fail all SCSI cmd PDUs
283 		 */
284 		if (opcode != ISCSI_OP_SCSI_DATA_OUT) {
285 			iscsi_conn_printk(KERN_INFO, conn,
286 					  "task [op %x itt "
287 					  "0x%x/0x%x] "
288 					  "rejected.\n",
289 					  opcode, task->itt,
290 					  task->hdr_itt);
291 			return -EACCES;
292 		}
293 		/*
294 		 * And also all data-out PDUs in response to R2T
295 		 * if fast_abort is set.
296 		 */
297 		if (conn->session->fast_abort) {
298 			iscsi_conn_printk(KERN_INFO, conn,
299 					  "task [op %x itt "
300 					  "0x%x/0x%x] fast abort.\n",
301 					  opcode, task->itt,
302 					  task->hdr_itt);
303 			return -EACCES;
304 		}
305 		break;
306 	case ISCSI_TM_FUNC_ABORT_TASK:
307 		/*
308 		 * the caller has already checked if the task
309 		 * they want to abort was in the pending queue so if
310 		 * we are here the cmd pdu has gone out already, and
311 		 * we will only hit this for data-outs
312 		 */
313 		if (opcode == ISCSI_OP_SCSI_DATA_OUT &&
314 		    task->hdr_itt == tmf->rtt) {
315 			ISCSI_DBG_SESSION(conn->session,
316 					  "Preventing task %x/%x from sending "
317 					  "data-out due to abort task in "
318 					  "progress\n", task->itt,
319 					  task->hdr_itt);
320 			return -EACCES;
321 		}
322 		break;
323 	}
324 
325 	return 0;
326 }
327 
328 /**
329  * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
330  * @task: iscsi task
331  *
332  * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
333  * fields like dlength or final based on how much data it sends
334  */
iscsi_prep_scsi_cmd_pdu(struct iscsi_task * task)335 static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
336 {
337 	struct iscsi_conn *conn = task->conn;
338 	struct iscsi_session *session = conn->session;
339 	struct scsi_cmnd *sc = task->sc;
340 	struct iscsi_scsi_req *hdr;
341 	unsigned hdrlength, cmd_len, transfer_length;
342 	itt_t itt;
343 	int rc;
344 
345 	rc = iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_CMD);
346 	if (rc)
347 		return rc;
348 
349 	if (conn->session->tt->alloc_pdu) {
350 		rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD);
351 		if (rc)
352 			return rc;
353 	}
354 	hdr = (struct iscsi_scsi_req *)task->hdr;
355 	itt = hdr->itt;
356 	memset(hdr, 0, sizeof(*hdr));
357 
358 	if (session->tt->parse_pdu_itt)
359 		hdr->itt = task->hdr_itt = itt;
360 	else
361 		hdr->itt = task->hdr_itt = build_itt(task->itt,
362 						     task->conn->session->age);
363 	task->hdr_len = 0;
364 	rc = iscsi_add_hdr(task, sizeof(*hdr));
365 	if (rc)
366 		return rc;
367 	hdr->opcode = ISCSI_OP_SCSI_CMD;
368 	hdr->flags = ISCSI_ATTR_SIMPLE;
369 	int_to_scsilun(sc->device->lun, &hdr->lun);
370 	task->lun = hdr->lun;
371 	hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
372 	cmd_len = sc->cmd_len;
373 	if (cmd_len < ISCSI_CDB_SIZE)
374 		memset(&hdr->cdb[cmd_len], 0, ISCSI_CDB_SIZE - cmd_len);
375 	else if (cmd_len > ISCSI_CDB_SIZE) {
376 		rc = iscsi_prep_ecdb_ahs(task);
377 		if (rc)
378 			return rc;
379 		cmd_len = ISCSI_CDB_SIZE;
380 	}
381 	memcpy(hdr->cdb, sc->cmnd, cmd_len);
382 
383 	task->imm_count = 0;
384 	if (scsi_bidi_cmnd(sc)) {
385 		hdr->flags |= ISCSI_FLAG_CMD_READ;
386 		rc = iscsi_prep_bidi_ahs(task);
387 		if (rc)
388 			return rc;
389 	}
390 
391 	if (scsi_get_prot_op(sc) != SCSI_PROT_NORMAL)
392 		task->protected = true;
393 
394 	transfer_length = scsi_transfer_length(sc);
395 	hdr->data_length = cpu_to_be32(transfer_length);
396 	if (sc->sc_data_direction == DMA_TO_DEVICE) {
397 		struct iscsi_r2t_info *r2t = &task->unsol_r2t;
398 
399 		hdr->flags |= ISCSI_FLAG_CMD_WRITE;
400 		/*
401 		 * Write counters:
402 		 *
403 		 *	imm_count	bytes to be sent right after
404 		 *			SCSI PDU Header
405 		 *
406 		 *	unsol_count	bytes(as Data-Out) to be sent
407 		 *			without	R2T ack right after
408 		 *			immediate data
409 		 *
410 		 *	r2t data_length bytes to be sent via R2T ack's
411 		 *
412 		 *      pad_count       bytes to be sent as zero-padding
413 		 */
414 		memset(r2t, 0, sizeof(*r2t));
415 
416 		if (session->imm_data_en) {
417 			if (transfer_length >= session->first_burst)
418 				task->imm_count = min(session->first_burst,
419 							conn->max_xmit_dlength);
420 			else
421 				task->imm_count = min(transfer_length,
422 						      conn->max_xmit_dlength);
423 			hton24(hdr->dlength, task->imm_count);
424 		} else
425 			zero_data(hdr->dlength);
426 
427 		if (!session->initial_r2t_en) {
428 			r2t->data_length = min(session->first_burst,
429 					       transfer_length) -
430 					       task->imm_count;
431 			r2t->data_offset = task->imm_count;
432 			r2t->ttt = cpu_to_be32(ISCSI_RESERVED_TAG);
433 			r2t->exp_statsn = cpu_to_be32(conn->exp_statsn);
434 		}
435 
436 		if (!task->unsol_r2t.data_length)
437 			/* No unsolicit Data-Out's */
438 			hdr->flags |= ISCSI_FLAG_CMD_FINAL;
439 	} else {
440 		hdr->flags |= ISCSI_FLAG_CMD_FINAL;
441 		zero_data(hdr->dlength);
442 
443 		if (sc->sc_data_direction == DMA_FROM_DEVICE)
444 			hdr->flags |= ISCSI_FLAG_CMD_READ;
445 	}
446 
447 	/* calculate size of additional header segments (AHSs) */
448 	hdrlength = task->hdr_len - sizeof(*hdr);
449 
450 	WARN_ON(hdrlength & (ISCSI_PAD_LEN-1));
451 	hdrlength /= ISCSI_PAD_LEN;
452 
453 	WARN_ON(hdrlength >= 256);
454 	hdr->hlength = hdrlength & 0xFF;
455 	hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn);
456 
457 	if (session->tt->init_task && session->tt->init_task(task))
458 		return -EIO;
459 
460 	task->state = ISCSI_TASK_RUNNING;
461 	session->cmdsn++;
462 
463 	conn->scsicmd_pdus_cnt++;
464 	ISCSI_DBG_SESSION(session, "iscsi prep [%s cid %d sc %p cdb 0x%x "
465 			  "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
466 			  scsi_bidi_cmnd(sc) ? "bidirectional" :
467 			  sc->sc_data_direction == DMA_TO_DEVICE ?
468 			  "write" : "read", conn->id, sc, sc->cmnd[0],
469 			  task->itt, transfer_length,
470 			  scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0,
471 			  session->cmdsn,
472 			  session->max_cmdsn - session->exp_cmdsn + 1);
473 	return 0;
474 }
475 
476 /**
477  * iscsi_free_task - free a task
478  * @task: iscsi cmd task
479  *
480  * Must be called with session back_lock.
481  * This function returns the scsi command to scsi-ml or cleans
482  * up mgmt tasks then returns the task to the pool.
483  */
iscsi_free_task(struct iscsi_task * task)484 static void iscsi_free_task(struct iscsi_task *task)
485 {
486 	struct iscsi_conn *conn = task->conn;
487 	struct iscsi_session *session = conn->session;
488 	struct scsi_cmnd *sc = task->sc;
489 	int oldstate = task->state;
490 
491 	ISCSI_DBG_SESSION(session, "freeing task itt 0x%x state %d sc %p\n",
492 			  task->itt, task->state, task->sc);
493 
494 	session->tt->cleanup_task(task);
495 	task->state = ISCSI_TASK_FREE;
496 	task->sc = NULL;
497 	/*
498 	 * login task is preallocated so do not free
499 	 */
500 	if (conn->login_task == task)
501 		return;
502 
503 	kfifo_in(&session->cmdpool.queue, (void*)&task, sizeof(void*));
504 
505 	if (sc) {
506 		/* SCSI eh reuses commands to verify us */
507 		sc->SCp.ptr = NULL;
508 		/*
509 		 * queue command may call this to free the task, so
510 		 * it will decide how to return sc to scsi-ml.
511 		 */
512 		if (oldstate != ISCSI_TASK_REQUEUE_SCSIQ)
513 			sc->scsi_done(sc);
514 	}
515 }
516 
__iscsi_get_task(struct iscsi_task * task)517 void __iscsi_get_task(struct iscsi_task *task)
518 {
519 	atomic_inc(&task->refcount);
520 }
521 EXPORT_SYMBOL_GPL(__iscsi_get_task);
522 
__iscsi_put_task(struct iscsi_task * task)523 void __iscsi_put_task(struct iscsi_task *task)
524 {
525 	if (atomic_dec_and_test(&task->refcount))
526 		iscsi_free_task(task);
527 }
528 EXPORT_SYMBOL_GPL(__iscsi_put_task);
529 
iscsi_put_task(struct iscsi_task * task)530 void iscsi_put_task(struct iscsi_task *task)
531 {
532 	struct iscsi_session *session = task->conn->session;
533 
534 	/* regular RX path uses back_lock */
535 	spin_lock_bh(&session->back_lock);
536 	__iscsi_put_task(task);
537 	spin_unlock_bh(&session->back_lock);
538 }
539 EXPORT_SYMBOL_GPL(iscsi_put_task);
540 
541 /**
542  * iscsi_complete_task - finish a task
543  * @task: iscsi cmd task
544  * @state: state to complete task with
545  *
546  * Must be called with session back_lock.
547  */
iscsi_complete_task(struct iscsi_task * task,int state)548 static void iscsi_complete_task(struct iscsi_task *task, int state)
549 {
550 	struct iscsi_conn *conn = task->conn;
551 
552 	ISCSI_DBG_SESSION(conn->session,
553 			  "complete task itt 0x%x state %d sc %p\n",
554 			  task->itt, task->state, task->sc);
555 	if (task->state == ISCSI_TASK_COMPLETED ||
556 	    task->state == ISCSI_TASK_ABRT_TMF ||
557 	    task->state == ISCSI_TASK_ABRT_SESS_RECOV ||
558 	    task->state == ISCSI_TASK_REQUEUE_SCSIQ)
559 		return;
560 	WARN_ON_ONCE(task->state == ISCSI_TASK_FREE);
561 	task->state = state;
562 
563 	spin_lock_bh(&conn->taskqueuelock);
564 	if (!list_empty(&task->running)) {
565 		pr_debug_once("%s while task on list", __func__);
566 		list_del_init(&task->running);
567 	}
568 	spin_unlock_bh(&conn->taskqueuelock);
569 
570 	if (conn->task == task)
571 		conn->task = NULL;
572 
573 	if (READ_ONCE(conn->ping_task) == task)
574 		WRITE_ONCE(conn->ping_task, NULL);
575 
576 	/* release get from queueing */
577 	__iscsi_put_task(task);
578 }
579 
580 /**
581  * iscsi_complete_scsi_task - finish scsi task normally
582  * @task: iscsi task for scsi cmd
583  * @exp_cmdsn: expected cmd sn in cpu format
584  * @max_cmdsn: max cmd sn in cpu format
585  *
586  * This is used when drivers do not need or cannot perform
587  * lower level pdu processing.
588  *
589  * Called with session back_lock
590  */
iscsi_complete_scsi_task(struct iscsi_task * task,uint32_t exp_cmdsn,uint32_t max_cmdsn)591 void iscsi_complete_scsi_task(struct iscsi_task *task,
592 			      uint32_t exp_cmdsn, uint32_t max_cmdsn)
593 {
594 	struct iscsi_conn *conn = task->conn;
595 
596 	ISCSI_DBG_SESSION(conn->session, "[itt 0x%x]\n", task->itt);
597 
598 	conn->last_recv = jiffies;
599 	__iscsi_update_cmdsn(conn->session, exp_cmdsn, max_cmdsn);
600 	iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
601 }
602 EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task);
603 
604 
605 /*
606  * session back_lock must be held and if not called for a task that is
607  * still pending or from the xmit thread, then xmit thread must
608  * be suspended.
609  */
fail_scsi_task(struct iscsi_task * task,int err)610 static void fail_scsi_task(struct iscsi_task *task, int err)
611 {
612 	struct iscsi_conn *conn = task->conn;
613 	struct scsi_cmnd *sc;
614 	int state;
615 
616 	/*
617 	 * if a command completes and we get a successful tmf response
618 	 * we will hit this because the scsi eh abort code does not take
619 	 * a ref to the task.
620 	 */
621 	sc = task->sc;
622 	if (!sc)
623 		return;
624 
625 	if (task->state == ISCSI_TASK_PENDING) {
626 		/*
627 		 * cmd never made it to the xmit thread, so we should not count
628 		 * the cmd in the sequencing
629 		 */
630 		conn->session->queued_cmdsn--;
631 		/* it was never sent so just complete like normal */
632 		state = ISCSI_TASK_COMPLETED;
633 	} else if (err == DID_TRANSPORT_DISRUPTED)
634 		state = ISCSI_TASK_ABRT_SESS_RECOV;
635 	else
636 		state = ISCSI_TASK_ABRT_TMF;
637 
638 	sc->result = err << 16;
639 	if (!scsi_bidi_cmnd(sc))
640 		scsi_set_resid(sc, scsi_bufflen(sc));
641 	else {
642 		scsi_out(sc)->resid = scsi_out(sc)->length;
643 		scsi_in(sc)->resid = scsi_in(sc)->length;
644 	}
645 
646 	/* regular RX path uses back_lock */
647 	spin_lock_bh(&conn->session->back_lock);
648 	iscsi_complete_task(task, state);
649 	spin_unlock_bh(&conn->session->back_lock);
650 }
651 
iscsi_prep_mgmt_task(struct iscsi_conn * conn,struct iscsi_task * task)652 static int iscsi_prep_mgmt_task(struct iscsi_conn *conn,
653 				struct iscsi_task *task)
654 {
655 	struct iscsi_session *session = conn->session;
656 	struct iscsi_hdr *hdr = task->hdr;
657 	struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
658 	uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK;
659 
660 	if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
661 		return -ENOTCONN;
662 
663 	if (opcode != ISCSI_OP_LOGIN && opcode != ISCSI_OP_TEXT)
664 		nop->exp_statsn = cpu_to_be32(conn->exp_statsn);
665 	/*
666 	 * pre-format CmdSN for outgoing PDU.
667 	 */
668 	nop->cmdsn = cpu_to_be32(session->cmdsn);
669 	if (hdr->itt != RESERVED_ITT) {
670 		/*
671 		 * TODO: We always use immediate for normal session pdus.
672 		 * If we start to send tmfs or nops as non-immediate then
673 		 * we should start checking the cmdsn numbers for mgmt tasks.
674 		 *
675 		 * During discovery sessions iscsid sends TEXT as non immediate,
676 		 * but we always only send one PDU at a time.
677 		 */
678 		if (conn->c_stage == ISCSI_CONN_STARTED &&
679 		    !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
680 			session->queued_cmdsn++;
681 			session->cmdsn++;
682 		}
683 	}
684 
685 	if (session->tt->init_task && session->tt->init_task(task))
686 		return -EIO;
687 
688 	if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
689 		session->state = ISCSI_STATE_LOGGING_OUT;
690 
691 	task->state = ISCSI_TASK_RUNNING;
692 	ISCSI_DBG_SESSION(session, "mgmtpdu [op 0x%x hdr->itt 0x%x "
693 			  "datalen %d]\n", hdr->opcode & ISCSI_OPCODE_MASK,
694 			  hdr->itt, task->data_count);
695 	return 0;
696 }
697 
698 static struct iscsi_task *
__iscsi_conn_send_pdu(struct iscsi_conn * conn,struct iscsi_hdr * hdr,char * data,uint32_t data_size)699 __iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
700 		      char *data, uint32_t data_size)
701 {
702 	struct iscsi_session *session = conn->session;
703 	struct iscsi_host *ihost = shost_priv(session->host);
704 	uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK;
705 	struct iscsi_task *task;
706 	itt_t itt;
707 
708 	if (session->state == ISCSI_STATE_TERMINATE)
709 		return NULL;
710 
711 	if (opcode == ISCSI_OP_LOGIN || opcode == ISCSI_OP_TEXT) {
712 		/*
713 		 * Login and Text are sent serially, in
714 		 * request-followed-by-response sequence.
715 		 * Same task can be used. Same ITT must be used.
716 		 * Note that login_task is preallocated at conn_create().
717 		 */
718 		if (conn->login_task->state != ISCSI_TASK_FREE) {
719 			iscsi_conn_printk(KERN_ERR, conn, "Login/Text in "
720 					  "progress. Cannot start new task.\n");
721 			return NULL;
722 		}
723 
724 		if (data_size > ISCSI_DEF_MAX_RECV_SEG_LEN) {
725 			iscsi_conn_printk(KERN_ERR, conn, "Invalid buffer len of %u for login task. Max len is %u\n", data_size, ISCSI_DEF_MAX_RECV_SEG_LEN);
726 			return NULL;
727 		}
728 
729 		task = conn->login_task;
730 	} else {
731 		if (session->state != ISCSI_STATE_LOGGED_IN)
732 			return NULL;
733 
734 		if (data_size != 0) {
735 			iscsi_conn_printk(KERN_ERR, conn, "Can not send data buffer of len %u for op 0x%x\n", data_size, opcode);
736 			return NULL;
737 		}
738 
739 		BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
740 		BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
741 
742 		if (!kfifo_out(&session->cmdpool.queue,
743 				 (void*)&task, sizeof(void*)))
744 			return NULL;
745 	}
746 	/*
747 	 * released in complete pdu for task we expect a response for, and
748 	 * released by the lld when it has transmitted the task for
749 	 * pdus we do not expect a response for.
750 	 */
751 	atomic_set(&task->refcount, 1);
752 	task->conn = conn;
753 	task->sc = NULL;
754 	INIT_LIST_HEAD(&task->running);
755 	task->state = ISCSI_TASK_PENDING;
756 
757 	if (data_size) {
758 		memcpy(task->data, data, data_size);
759 		task->data_count = data_size;
760 	} else
761 		task->data_count = 0;
762 
763 	if (conn->session->tt->alloc_pdu) {
764 		if (conn->session->tt->alloc_pdu(task, hdr->opcode)) {
765 			iscsi_conn_printk(KERN_ERR, conn, "Could not allocate "
766 					 "pdu for mgmt task.\n");
767 			goto free_task;
768 		}
769 	}
770 
771 	itt = task->hdr->itt;
772 	task->hdr_len = sizeof(struct iscsi_hdr);
773 	memcpy(task->hdr, hdr, sizeof(struct iscsi_hdr));
774 
775 	if (hdr->itt != RESERVED_ITT) {
776 		if (session->tt->parse_pdu_itt)
777 			task->hdr->itt = itt;
778 		else
779 			task->hdr->itt = build_itt(task->itt,
780 						   task->conn->session->age);
781 	}
782 
783 	if (unlikely(READ_ONCE(conn->ping_task) == INVALID_SCSI_TASK))
784 		WRITE_ONCE(conn->ping_task, task);
785 
786 	if (!ihost->workq) {
787 		if (iscsi_prep_mgmt_task(conn, task))
788 			goto free_task;
789 
790 		if (session->tt->xmit_task(task))
791 			goto free_task;
792 	} else {
793 		spin_lock_bh(&conn->taskqueuelock);
794 		list_add_tail(&task->running, &conn->mgmtqueue);
795 		spin_unlock_bh(&conn->taskqueuelock);
796 		iscsi_conn_queue_work(conn);
797 	}
798 
799 	return task;
800 
801 free_task:
802 	/* regular RX path uses back_lock */
803 	spin_lock_bh(&session->back_lock);
804 	__iscsi_put_task(task);
805 	spin_unlock_bh(&session->back_lock);
806 	return NULL;
807 }
808 
iscsi_conn_send_pdu(struct iscsi_cls_conn * cls_conn,struct iscsi_hdr * hdr,char * data,uint32_t data_size)809 int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
810 			char *data, uint32_t data_size)
811 {
812 	struct iscsi_conn *conn = cls_conn->dd_data;
813 	struct iscsi_session *session = conn->session;
814 	int err = 0;
815 
816 	spin_lock_bh(&session->frwd_lock);
817 	if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size))
818 		err = -EPERM;
819 	spin_unlock_bh(&session->frwd_lock);
820 	return err;
821 }
822 EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
823 
824 /**
825  * iscsi_cmd_rsp - SCSI Command Response processing
826  * @conn: iscsi connection
827  * @hdr: iscsi header
828  * @task: scsi command task
829  * @data: cmd data buffer
830  * @datalen: len of buffer
831  *
832  * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
833  * then completes the command and task.
834  **/
iscsi_scsi_cmd_rsp(struct iscsi_conn * conn,struct iscsi_hdr * hdr,struct iscsi_task * task,char * data,int datalen)835 static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
836 			       struct iscsi_task *task, char *data,
837 			       int datalen)
838 {
839 	struct iscsi_scsi_rsp *rhdr = (struct iscsi_scsi_rsp *)hdr;
840 	struct iscsi_session *session = conn->session;
841 	struct scsi_cmnd *sc = task->sc;
842 
843 	iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
844 	conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
845 
846 	sc->result = (DID_OK << 16) | rhdr->cmd_status;
847 
848 	if (task->protected) {
849 		sector_t sector;
850 		u8 ascq;
851 
852 		/**
853 		 * Transports that didn't implement check_protection
854 		 * callback but still published T10-PI support to scsi-mid
855 		 * deserve this BUG_ON.
856 		 **/
857 		BUG_ON(!session->tt->check_protection);
858 
859 		ascq = session->tt->check_protection(task, &sector);
860 		if (ascq) {
861 			sc->result = DRIVER_SENSE << 24 |
862 				     SAM_STAT_CHECK_CONDITION;
863 			scsi_build_sense_buffer(1, sc->sense_buffer,
864 						ILLEGAL_REQUEST, 0x10, ascq);
865 			scsi_set_sense_information(sc->sense_buffer,
866 						   SCSI_SENSE_BUFFERSIZE,
867 						   sector);
868 			goto out;
869 		}
870 	}
871 
872 	if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) {
873 		sc->result = DID_ERROR << 16;
874 		goto out;
875 	}
876 
877 	if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) {
878 		uint16_t senselen;
879 
880 		if (datalen < 2) {
881 invalid_datalen:
882 			iscsi_conn_printk(KERN_ERR,  conn,
883 					 "Got CHECK_CONDITION but invalid data "
884 					 "buffer size of %d\n", datalen);
885 			sc->result = DID_BAD_TARGET << 16;
886 			goto out;
887 		}
888 
889 		senselen = get_unaligned_be16(data);
890 		if (datalen < senselen)
891 			goto invalid_datalen;
892 
893 		memcpy(sc->sense_buffer, data + 2,
894 		       min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
895 		ISCSI_DBG_SESSION(session, "copied %d bytes of sense\n",
896 				  min_t(uint16_t, senselen,
897 				  SCSI_SENSE_BUFFERSIZE));
898 	}
899 
900 	if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW |
901 			   ISCSI_FLAG_CMD_BIDI_OVERFLOW)) {
902 		int res_count = be32_to_cpu(rhdr->bi_residual_count);
903 
904 		if (scsi_bidi_cmnd(sc) && res_count > 0 &&
905 				(rhdr->flags & ISCSI_FLAG_CMD_BIDI_OVERFLOW ||
906 				 res_count <= scsi_in(sc)->length))
907 			scsi_in(sc)->resid = res_count;
908 		else
909 			sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
910 	}
911 
912 	if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW |
913 	                   ISCSI_FLAG_CMD_OVERFLOW)) {
914 		int res_count = be32_to_cpu(rhdr->residual_count);
915 
916 		if (res_count > 0 &&
917 		    (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
918 		     res_count <= scsi_bufflen(sc)))
919 			/* write side for bidi or uni-io set_resid */
920 			scsi_set_resid(sc, res_count);
921 		else
922 			sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
923 	}
924 out:
925 	ISCSI_DBG_SESSION(session, "cmd rsp done [sc %p res %d itt 0x%x]\n",
926 			  sc, sc->result, task->itt);
927 	conn->scsirsp_pdus_cnt++;
928 	iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
929 }
930 
931 /**
932  * iscsi_data_in_rsp - SCSI Data-In Response processing
933  * @conn: iscsi connection
934  * @hdr:  iscsi pdu
935  * @task: scsi command task
936  **/
937 static void
iscsi_data_in_rsp(struct iscsi_conn * conn,struct iscsi_hdr * hdr,struct iscsi_task * task)938 iscsi_data_in_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
939 		  struct iscsi_task *task)
940 {
941 	struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)hdr;
942 	struct scsi_cmnd *sc = task->sc;
943 
944 	if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS))
945 		return;
946 
947 	iscsi_update_cmdsn(conn->session, (struct iscsi_nopin *)hdr);
948 	sc->result = (DID_OK << 16) | rhdr->cmd_status;
949 	conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
950 	if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
951 	                   ISCSI_FLAG_DATA_OVERFLOW)) {
952 		int res_count = be32_to_cpu(rhdr->residual_count);
953 
954 		if (res_count > 0 &&
955 		    (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
956 		     res_count <= scsi_in(sc)->length))
957 			scsi_in(sc)->resid = res_count;
958 		else
959 			sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
960 	}
961 
962 	ISCSI_DBG_SESSION(conn->session, "data in with status done "
963 			  "[sc %p res %d itt 0x%x]\n",
964 			  sc, sc->result, task->itt);
965 	conn->scsirsp_pdus_cnt++;
966 	iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
967 }
968 
iscsi_tmf_rsp(struct iscsi_conn * conn,struct iscsi_hdr * hdr)969 static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
970 {
971 	struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr;
972 
973 	conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
974 	conn->tmfrsp_pdus_cnt++;
975 
976 	if (conn->tmf_state != TMF_QUEUED)
977 		return;
978 
979 	if (tmf->response == ISCSI_TMF_RSP_COMPLETE)
980 		conn->tmf_state = TMF_SUCCESS;
981 	else if (tmf->response == ISCSI_TMF_RSP_NO_TASK)
982 		conn->tmf_state = TMF_NOT_FOUND;
983 	else
984 		conn->tmf_state = TMF_FAILED;
985 	wake_up(&conn->ehwait);
986 }
987 
iscsi_send_nopout(struct iscsi_conn * conn,struct iscsi_nopin * rhdr)988 static int iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
989 {
990         struct iscsi_nopout hdr;
991 	struct iscsi_task *task;
992 
993 	if (!rhdr) {
994 		if (READ_ONCE(conn->ping_task))
995 			return -EINVAL;
996 		WRITE_ONCE(conn->ping_task, INVALID_SCSI_TASK);
997 	}
998 
999 	memset(&hdr, 0, sizeof(struct iscsi_nopout));
1000 	hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE;
1001 	hdr.flags = ISCSI_FLAG_CMD_FINAL;
1002 
1003 	if (rhdr) {
1004 		hdr.lun = rhdr->lun;
1005 		hdr.ttt = rhdr->ttt;
1006 		hdr.itt = RESERVED_ITT;
1007 	} else
1008 		hdr.ttt = RESERVED_ITT;
1009 
1010 	task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
1011 	if (!task) {
1012 		if (!rhdr)
1013 			WRITE_ONCE(conn->ping_task, NULL);
1014 		iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n");
1015 		return -EIO;
1016 	} else if (!rhdr) {
1017 		/* only track our nops */
1018 		conn->last_ping = jiffies;
1019 	}
1020 
1021 	return 0;
1022 }
1023 
iscsi_nop_out_rsp(struct iscsi_task * task,struct iscsi_nopin * nop,char * data,int datalen)1024 static int iscsi_nop_out_rsp(struct iscsi_task *task,
1025 			     struct iscsi_nopin *nop, char *data, int datalen)
1026 {
1027 	struct iscsi_conn *conn = task->conn;
1028 	int rc = 0;
1029 
1030 	if (READ_ONCE(conn->ping_task) != task) {
1031 		/*
1032 		 * If this is not in response to one of our
1033 		 * nops then it must be from userspace.
1034 		 */
1035 		if (iscsi_recv_pdu(conn->cls_conn, (struct iscsi_hdr *)nop,
1036 				   data, datalen))
1037 			rc = ISCSI_ERR_CONN_FAILED;
1038 	} else
1039 		mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout);
1040 	iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
1041 	return rc;
1042 }
1043 
iscsi_handle_reject(struct iscsi_conn * conn,struct iscsi_hdr * hdr,char * data,int datalen)1044 static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1045 			       char *data, int datalen)
1046 {
1047 	struct iscsi_reject *reject = (struct iscsi_reject *)hdr;
1048 	struct iscsi_hdr rejected_pdu;
1049 	int opcode, rc = 0;
1050 
1051 	conn->exp_statsn = be32_to_cpu(reject->statsn) + 1;
1052 
1053 	if (ntoh24(reject->dlength) > datalen ||
1054 	    ntoh24(reject->dlength) < sizeof(struct iscsi_hdr)) {
1055 		iscsi_conn_printk(KERN_ERR, conn, "Cannot handle rejected "
1056 				  "pdu. Invalid data length (pdu dlength "
1057 				  "%u, datalen %d\n", ntoh24(reject->dlength),
1058 				  datalen);
1059 		return ISCSI_ERR_PROTO;
1060 	}
1061 	memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr));
1062 	opcode = rejected_pdu.opcode & ISCSI_OPCODE_MASK;
1063 
1064 	switch (reject->reason) {
1065 	case ISCSI_REASON_DATA_DIGEST_ERROR:
1066 		iscsi_conn_printk(KERN_ERR, conn,
1067 				  "pdu (op 0x%x itt 0x%x) rejected "
1068 				  "due to DataDigest error.\n",
1069 				  opcode, rejected_pdu.itt);
1070 		break;
1071 	case ISCSI_REASON_IMM_CMD_REJECT:
1072 		iscsi_conn_printk(KERN_ERR, conn,
1073 				  "pdu (op 0x%x itt 0x%x) rejected. Too many "
1074 				  "immediate commands.\n",
1075 				  opcode, rejected_pdu.itt);
1076 		/*
1077 		 * We only send one TMF at a time so if the target could not
1078 		 * handle it, then it should get fixed (RFC mandates that
1079 		 * a target can handle one immediate TMF per conn).
1080 		 *
1081 		 * For nops-outs, we could have sent more than one if
1082 		 * the target is sending us lots of nop-ins
1083 		 */
1084 		if (opcode != ISCSI_OP_NOOP_OUT)
1085 			return 0;
1086 
1087 		 if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
1088 			/*
1089 			 * nop-out in response to target's nop-out rejected.
1090 			 * Just resend.
1091 			 */
1092 			/* In RX path we are under back lock */
1093 			spin_unlock(&conn->session->back_lock);
1094 			spin_lock(&conn->session->frwd_lock);
1095 			iscsi_send_nopout(conn,
1096 					  (struct iscsi_nopin*)&rejected_pdu);
1097 			spin_unlock(&conn->session->frwd_lock);
1098 			spin_lock(&conn->session->back_lock);
1099 		} else {
1100 			struct iscsi_task *task;
1101 			/*
1102 			 * Our nop as ping got dropped. We know the target
1103 			 * and transport are ok so just clean up
1104 			 */
1105 			task = iscsi_itt_to_task(conn, rejected_pdu.itt);
1106 			if (!task) {
1107 				iscsi_conn_printk(KERN_ERR, conn,
1108 						 "Invalid pdu reject. Could "
1109 						 "not lookup rejected task.\n");
1110 				rc = ISCSI_ERR_BAD_ITT;
1111 			} else
1112 				rc = iscsi_nop_out_rsp(task,
1113 					(struct iscsi_nopin*)&rejected_pdu,
1114 					NULL, 0);
1115 		}
1116 		break;
1117 	default:
1118 		iscsi_conn_printk(KERN_ERR, conn,
1119 				  "pdu (op 0x%x itt 0x%x) rejected. Reason "
1120 				  "code 0x%x\n", rejected_pdu.opcode,
1121 				  rejected_pdu.itt, reject->reason);
1122 		break;
1123 	}
1124 	return rc;
1125 }
1126 
1127 /**
1128  * iscsi_itt_to_task - look up task by itt
1129  * @conn: iscsi connection
1130  * @itt: itt
1131  *
1132  * This should be used for mgmt tasks like login and nops, or if
1133  * the LDD's itt space does not include the session age.
1134  *
1135  * The session back_lock must be held.
1136  */
iscsi_itt_to_task(struct iscsi_conn * conn,itt_t itt)1137 struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
1138 {
1139 	struct iscsi_session *session = conn->session;
1140 	int i;
1141 
1142 	if (itt == RESERVED_ITT)
1143 		return NULL;
1144 
1145 	if (session->tt->parse_pdu_itt)
1146 		session->tt->parse_pdu_itt(conn, itt, &i, NULL);
1147 	else
1148 		i = get_itt(itt);
1149 	if (i >= session->cmds_max)
1150 		return NULL;
1151 
1152 	return session->cmds[i];
1153 }
1154 EXPORT_SYMBOL_GPL(iscsi_itt_to_task);
1155 
1156 /**
1157  * __iscsi_complete_pdu - complete pdu
1158  * @conn: iscsi conn
1159  * @hdr: iscsi header
1160  * @data: data buffer
1161  * @datalen: len of data buffer
1162  *
1163  * Completes pdu processing by freeing any resources allocated at
1164  * queuecommand or send generic. session back_lock must be held and verify
1165  * itt must have been called.
1166  */
__iscsi_complete_pdu(struct iscsi_conn * conn,struct iscsi_hdr * hdr,char * data,int datalen)1167 int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1168 			 char *data, int datalen)
1169 {
1170 	struct iscsi_session *session = conn->session;
1171 	int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
1172 	struct iscsi_task *task;
1173 	uint32_t itt;
1174 
1175 	conn->last_recv = jiffies;
1176 	rc = iscsi_verify_itt(conn, hdr->itt);
1177 	if (rc)
1178 		return rc;
1179 
1180 	if (hdr->itt != RESERVED_ITT)
1181 		itt = get_itt(hdr->itt);
1182 	else
1183 		itt = ~0U;
1184 
1185 	ISCSI_DBG_SESSION(session, "[op 0x%x cid %d itt 0x%x len %d]\n",
1186 			  opcode, conn->id, itt, datalen);
1187 
1188 	if (itt == ~0U) {
1189 		iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1190 
1191 		switch(opcode) {
1192 		case ISCSI_OP_NOOP_IN:
1193 			if (datalen) {
1194 				rc = ISCSI_ERR_PROTO;
1195 				break;
1196 			}
1197 
1198 			if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
1199 				break;
1200 
1201 			/* In RX path we are under back lock */
1202 			spin_unlock(&session->back_lock);
1203 			spin_lock(&session->frwd_lock);
1204 			iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
1205 			spin_unlock(&session->frwd_lock);
1206 			spin_lock(&session->back_lock);
1207 			break;
1208 		case ISCSI_OP_REJECT:
1209 			rc = iscsi_handle_reject(conn, hdr, data, datalen);
1210 			break;
1211 		case ISCSI_OP_ASYNC_EVENT:
1212 			conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1213 			if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1214 				rc = ISCSI_ERR_CONN_FAILED;
1215 			break;
1216 		default:
1217 			rc = ISCSI_ERR_BAD_OPCODE;
1218 			break;
1219 		}
1220 		goto out;
1221 	}
1222 
1223 	switch(opcode) {
1224 	case ISCSI_OP_SCSI_CMD_RSP:
1225 	case ISCSI_OP_SCSI_DATA_IN:
1226 		task = iscsi_itt_to_ctask(conn, hdr->itt);
1227 		if (!task)
1228 			return ISCSI_ERR_BAD_ITT;
1229 		task->last_xfer = jiffies;
1230 		break;
1231 	case ISCSI_OP_R2T:
1232 		/*
1233 		 * LLD handles R2Ts if they need to.
1234 		 */
1235 		return 0;
1236 	case ISCSI_OP_LOGOUT_RSP:
1237 	case ISCSI_OP_LOGIN_RSP:
1238 	case ISCSI_OP_TEXT_RSP:
1239 	case ISCSI_OP_SCSI_TMFUNC_RSP:
1240 	case ISCSI_OP_NOOP_IN:
1241 		task = iscsi_itt_to_task(conn, hdr->itt);
1242 		if (!task)
1243 			return ISCSI_ERR_BAD_ITT;
1244 		break;
1245 	default:
1246 		return ISCSI_ERR_BAD_OPCODE;
1247 	}
1248 
1249 	switch(opcode) {
1250 	case ISCSI_OP_SCSI_CMD_RSP:
1251 		iscsi_scsi_cmd_rsp(conn, hdr, task, data, datalen);
1252 		break;
1253 	case ISCSI_OP_SCSI_DATA_IN:
1254 		iscsi_data_in_rsp(conn, hdr, task);
1255 		break;
1256 	case ISCSI_OP_LOGOUT_RSP:
1257 		iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1258 		if (datalen) {
1259 			rc = ISCSI_ERR_PROTO;
1260 			break;
1261 		}
1262 		conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1263 		goto recv_pdu;
1264 	case ISCSI_OP_LOGIN_RSP:
1265 	case ISCSI_OP_TEXT_RSP:
1266 		iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1267 		/*
1268 		 * login related PDU's exp_statsn is handled in
1269 		 * userspace
1270 		 */
1271 		goto recv_pdu;
1272 	case ISCSI_OP_SCSI_TMFUNC_RSP:
1273 		iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1274 		if (datalen) {
1275 			rc = ISCSI_ERR_PROTO;
1276 			break;
1277 		}
1278 
1279 		iscsi_tmf_rsp(conn, hdr);
1280 		iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
1281 		break;
1282 	case ISCSI_OP_NOOP_IN:
1283 		iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1284 		if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) {
1285 			rc = ISCSI_ERR_PROTO;
1286 			break;
1287 		}
1288 		conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1289 
1290 		rc = iscsi_nop_out_rsp(task, (struct iscsi_nopin*)hdr,
1291 				       data, datalen);
1292 		break;
1293 	default:
1294 		rc = ISCSI_ERR_BAD_OPCODE;
1295 		break;
1296 	}
1297 
1298 out:
1299 	return rc;
1300 recv_pdu:
1301 	if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1302 		rc = ISCSI_ERR_CONN_FAILED;
1303 	iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
1304 	return rc;
1305 }
1306 EXPORT_SYMBOL_GPL(__iscsi_complete_pdu);
1307 
iscsi_complete_pdu(struct iscsi_conn * conn,struct iscsi_hdr * hdr,char * data,int datalen)1308 int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1309 		       char *data, int datalen)
1310 {
1311 	int rc;
1312 
1313 	spin_lock(&conn->session->back_lock);
1314 	rc = __iscsi_complete_pdu(conn, hdr, data, datalen);
1315 	spin_unlock(&conn->session->back_lock);
1316 	return rc;
1317 }
1318 EXPORT_SYMBOL_GPL(iscsi_complete_pdu);
1319 
iscsi_verify_itt(struct iscsi_conn * conn,itt_t itt)1320 int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
1321 {
1322 	struct iscsi_session *session = conn->session;
1323 	int age = 0, i = 0;
1324 
1325 	if (itt == RESERVED_ITT)
1326 		return 0;
1327 
1328 	if (session->tt->parse_pdu_itt)
1329 		session->tt->parse_pdu_itt(conn, itt, &i, &age);
1330 	else {
1331 		i = get_itt(itt);
1332 		age = ((__force u32)itt >> ISCSI_AGE_SHIFT) & ISCSI_AGE_MASK;
1333 	}
1334 
1335 	if (age != session->age) {
1336 		iscsi_conn_printk(KERN_ERR, conn,
1337 				  "received itt %x expected session age (%x)\n",
1338 				  (__force u32)itt, session->age);
1339 		return ISCSI_ERR_BAD_ITT;
1340 	}
1341 
1342 	if (i >= session->cmds_max) {
1343 		iscsi_conn_printk(KERN_ERR, conn,
1344 				  "received invalid itt index %u (max cmds "
1345 				   "%u.\n", i, session->cmds_max);
1346 		return ISCSI_ERR_BAD_ITT;
1347 	}
1348 	return 0;
1349 }
1350 EXPORT_SYMBOL_GPL(iscsi_verify_itt);
1351 
1352 /**
1353  * iscsi_itt_to_ctask - look up ctask by itt
1354  * @conn: iscsi connection
1355  * @itt: itt
1356  *
1357  * This should be used for cmd tasks.
1358  *
1359  * The session back_lock must be held.
1360  */
iscsi_itt_to_ctask(struct iscsi_conn * conn,itt_t itt)1361 struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt)
1362 {
1363 	struct iscsi_task *task;
1364 
1365 	if (iscsi_verify_itt(conn, itt))
1366 		return NULL;
1367 
1368 	task = iscsi_itt_to_task(conn, itt);
1369 	if (!task || !task->sc)
1370 		return NULL;
1371 
1372 	if (task->sc->SCp.phase != conn->session->age) {
1373 		iscsi_session_printk(KERN_ERR, conn->session,
1374 				  "task's session age %d, expected %d\n",
1375 				  task->sc->SCp.phase, conn->session->age);
1376 		return NULL;
1377 	}
1378 
1379 	return task;
1380 }
1381 EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask);
1382 
iscsi_session_failure(struct iscsi_session * session,enum iscsi_err err)1383 void iscsi_session_failure(struct iscsi_session *session,
1384 			   enum iscsi_err err)
1385 {
1386 	struct iscsi_conn *conn;
1387 
1388 	spin_lock_bh(&session->frwd_lock);
1389 	conn = session->leadconn;
1390 	if (session->state == ISCSI_STATE_TERMINATE || !conn) {
1391 		spin_unlock_bh(&session->frwd_lock);
1392 		return;
1393 	}
1394 
1395 	iscsi_get_conn(conn->cls_conn);
1396 	spin_unlock_bh(&session->frwd_lock);
1397 	/*
1398 	 * if the host is being removed bypass the connection
1399 	 * recovery initialization because we are going to kill
1400 	 * the session.
1401 	 */
1402 	if (err == ISCSI_ERR_INVALID_HOST)
1403 		iscsi_conn_error_event(conn->cls_conn, err);
1404 	else
1405 		iscsi_conn_failure(conn, err);
1406 	iscsi_put_conn(conn->cls_conn);
1407 }
1408 EXPORT_SYMBOL_GPL(iscsi_session_failure);
1409 
iscsi_conn_failure(struct iscsi_conn * conn,enum iscsi_err err)1410 void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
1411 {
1412 	struct iscsi_session *session = conn->session;
1413 
1414 	spin_lock_bh(&session->frwd_lock);
1415 	if (session->state == ISCSI_STATE_FAILED) {
1416 		spin_unlock_bh(&session->frwd_lock);
1417 		return;
1418 	}
1419 
1420 	if (conn->stop_stage == 0)
1421 		session->state = ISCSI_STATE_FAILED;
1422 	spin_unlock_bh(&session->frwd_lock);
1423 
1424 	set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1425 	set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
1426 	iscsi_conn_error_event(conn->cls_conn, err);
1427 }
1428 EXPORT_SYMBOL_GPL(iscsi_conn_failure);
1429 
iscsi_check_cmdsn_window_closed(struct iscsi_conn * conn)1430 static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
1431 {
1432 	struct iscsi_session *session = conn->session;
1433 
1434 	/*
1435 	 * Check for iSCSI window and take care of CmdSN wrap-around
1436 	 */
1437 	if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) {
1438 		ISCSI_DBG_SESSION(session, "iSCSI CmdSN closed. ExpCmdSn "
1439 				  "%u MaxCmdSN %u CmdSN %u/%u\n",
1440 				  session->exp_cmdsn, session->max_cmdsn,
1441 				  session->cmdsn, session->queued_cmdsn);
1442 		return -ENOSPC;
1443 	}
1444 	return 0;
1445 }
1446 
iscsi_xmit_task(struct iscsi_conn * conn)1447 static int iscsi_xmit_task(struct iscsi_conn *conn)
1448 {
1449 	struct iscsi_task *task = conn->task;
1450 	int rc;
1451 
1452 	if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx))
1453 		return -ENODATA;
1454 
1455 	spin_lock_bh(&conn->session->back_lock);
1456 	if (conn->task == NULL) {
1457 		spin_unlock_bh(&conn->session->back_lock);
1458 		return -ENODATA;
1459 	}
1460 	__iscsi_get_task(task);
1461 	spin_unlock_bh(&conn->session->back_lock);
1462 	spin_unlock_bh(&conn->session->frwd_lock);
1463 	rc = conn->session->tt->xmit_task(task);
1464 	spin_lock_bh(&conn->session->frwd_lock);
1465 	if (!rc) {
1466 		/* done with this task */
1467 		task->last_xfer = jiffies;
1468 		conn->task = NULL;
1469 	}
1470 	/* regular RX path uses back_lock */
1471 	spin_lock(&conn->session->back_lock);
1472 	__iscsi_put_task(task);
1473 	spin_unlock(&conn->session->back_lock);
1474 	return rc;
1475 }
1476 
1477 /**
1478  * iscsi_requeue_task - requeue task to run from session workqueue
1479  * @task: task to requeue
1480  *
1481  * LLDs that need to run a task from the session workqueue should call
1482  * this. The session frwd_lock must be held. This should only be called
1483  * by software drivers.
1484  */
iscsi_requeue_task(struct iscsi_task * task)1485 void iscsi_requeue_task(struct iscsi_task *task)
1486 {
1487 	struct iscsi_conn *conn = task->conn;
1488 
1489 	/*
1490 	 * this may be on the requeue list already if the xmit_task callout
1491 	 * is handling the r2ts while we are adding new ones
1492 	 */
1493 	spin_lock_bh(&conn->taskqueuelock);
1494 	if (list_empty(&task->running))
1495 		list_add_tail(&task->running, &conn->requeue);
1496 	spin_unlock_bh(&conn->taskqueuelock);
1497 	iscsi_conn_queue_work(conn);
1498 }
1499 EXPORT_SYMBOL_GPL(iscsi_requeue_task);
1500 
1501 /**
1502  * iscsi_data_xmit - xmit any command into the scheduled connection
1503  * @conn: iscsi connection
1504  *
1505  * Notes:
1506  *	The function can return -EAGAIN in which case the caller must
1507  *	re-schedule it again later or recover. '0' return code means
1508  *	successful xmit.
1509  **/
iscsi_data_xmit(struct iscsi_conn * conn)1510 static int iscsi_data_xmit(struct iscsi_conn *conn)
1511 {
1512 	struct iscsi_task *task;
1513 	int rc = 0;
1514 
1515 	spin_lock_bh(&conn->session->frwd_lock);
1516 	if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
1517 		ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n");
1518 		spin_unlock_bh(&conn->session->frwd_lock);
1519 		return -ENODATA;
1520 	}
1521 
1522 	if (conn->task) {
1523 		rc = iscsi_xmit_task(conn);
1524 	        if (rc)
1525 		        goto done;
1526 	}
1527 
1528 	/*
1529 	 * process mgmt pdus like nops before commands since we should
1530 	 * only have one nop-out as a ping from us and targets should not
1531 	 * overflow us with nop-ins
1532 	 */
1533 	spin_lock_bh(&conn->taskqueuelock);
1534 check_mgmt:
1535 	while (!list_empty(&conn->mgmtqueue)) {
1536 		conn->task = list_entry(conn->mgmtqueue.next,
1537 					 struct iscsi_task, running);
1538 		list_del_init(&conn->task->running);
1539 		spin_unlock_bh(&conn->taskqueuelock);
1540 		if (iscsi_prep_mgmt_task(conn, conn->task)) {
1541 			/* regular RX path uses back_lock */
1542 			spin_lock_bh(&conn->session->back_lock);
1543 			__iscsi_put_task(conn->task);
1544 			spin_unlock_bh(&conn->session->back_lock);
1545 			conn->task = NULL;
1546 			spin_lock_bh(&conn->taskqueuelock);
1547 			continue;
1548 		}
1549 		rc = iscsi_xmit_task(conn);
1550 		if (rc)
1551 			goto done;
1552 		spin_lock_bh(&conn->taskqueuelock);
1553 	}
1554 
1555 	/* process pending command queue */
1556 	while (!list_empty(&conn->cmdqueue)) {
1557 		conn->task = list_entry(conn->cmdqueue.next, struct iscsi_task,
1558 					running);
1559 		list_del_init(&conn->task->running);
1560 		spin_unlock_bh(&conn->taskqueuelock);
1561 		if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
1562 			fail_scsi_task(conn->task, DID_IMM_RETRY);
1563 			spin_lock_bh(&conn->taskqueuelock);
1564 			continue;
1565 		}
1566 		rc = iscsi_prep_scsi_cmd_pdu(conn->task);
1567 		if (rc) {
1568 			if (rc == -ENOMEM || rc == -EACCES)
1569 				fail_scsi_task(conn->task, DID_IMM_RETRY);
1570 			else
1571 				fail_scsi_task(conn->task, DID_ABORT);
1572 			spin_lock_bh(&conn->taskqueuelock);
1573 			continue;
1574 		}
1575 		rc = iscsi_xmit_task(conn);
1576 		if (rc)
1577 			goto done;
1578 		/*
1579 		 * we could continuously get new task requests so
1580 		 * we need to check the mgmt queue for nops that need to
1581 		 * be sent to aviod starvation
1582 		 */
1583 		spin_lock_bh(&conn->taskqueuelock);
1584 		if (!list_empty(&conn->mgmtqueue))
1585 			goto check_mgmt;
1586 	}
1587 
1588 	while (!list_empty(&conn->requeue)) {
1589 		/*
1590 		 * we always do fastlogout - conn stop code will clean up.
1591 		 */
1592 		if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
1593 			break;
1594 
1595 		task = list_entry(conn->requeue.next, struct iscsi_task,
1596 				  running);
1597 		if (iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_DATA_OUT))
1598 			break;
1599 
1600 		conn->task = task;
1601 		list_del_init(&conn->task->running);
1602 		conn->task->state = ISCSI_TASK_RUNNING;
1603 		spin_unlock_bh(&conn->taskqueuelock);
1604 		rc = iscsi_xmit_task(conn);
1605 		if (rc)
1606 			goto done;
1607 		spin_lock_bh(&conn->taskqueuelock);
1608 		if (!list_empty(&conn->mgmtqueue))
1609 			goto check_mgmt;
1610 	}
1611 	spin_unlock_bh(&conn->taskqueuelock);
1612 	spin_unlock_bh(&conn->session->frwd_lock);
1613 	return -ENODATA;
1614 
1615 done:
1616 	spin_unlock_bh(&conn->session->frwd_lock);
1617 	return rc;
1618 }
1619 
iscsi_xmitworker(struct work_struct * work)1620 static void iscsi_xmitworker(struct work_struct *work)
1621 {
1622 	struct iscsi_conn *conn =
1623 		container_of(work, struct iscsi_conn, xmitwork);
1624 	int rc;
1625 	/*
1626 	 * serialize Xmit worker on a per-connection basis.
1627 	 */
1628 	do {
1629 		rc = iscsi_data_xmit(conn);
1630 	} while (rc >= 0 || rc == -EAGAIN);
1631 }
1632 
iscsi_alloc_task(struct iscsi_conn * conn,struct scsi_cmnd * sc)1633 static inline struct iscsi_task *iscsi_alloc_task(struct iscsi_conn *conn,
1634 						  struct scsi_cmnd *sc)
1635 {
1636 	struct iscsi_task *task;
1637 
1638 	if (!kfifo_out(&conn->session->cmdpool.queue,
1639 			 (void *) &task, sizeof(void *)))
1640 		return NULL;
1641 
1642 	sc->SCp.phase = conn->session->age;
1643 	sc->SCp.ptr = (char *) task;
1644 
1645 	atomic_set(&task->refcount, 1);
1646 	task->state = ISCSI_TASK_PENDING;
1647 	task->conn = conn;
1648 	task->sc = sc;
1649 	task->have_checked_conn = false;
1650 	task->last_timeout = jiffies;
1651 	task->last_xfer = jiffies;
1652 	task->protected = false;
1653 	INIT_LIST_HEAD(&task->running);
1654 	return task;
1655 }
1656 
1657 enum {
1658 	FAILURE_BAD_HOST = 1,
1659 	FAILURE_SESSION_FAILED,
1660 	FAILURE_SESSION_FREED,
1661 	FAILURE_WINDOW_CLOSED,
1662 	FAILURE_OOM,
1663 	FAILURE_SESSION_TERMINATE,
1664 	FAILURE_SESSION_IN_RECOVERY,
1665 	FAILURE_SESSION_RECOVERY_TIMEOUT,
1666 	FAILURE_SESSION_LOGGING_OUT,
1667 	FAILURE_SESSION_NOT_READY,
1668 };
1669 
iscsi_queuecommand(struct Scsi_Host * host,struct scsi_cmnd * sc)1670 int iscsi_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *sc)
1671 {
1672 	struct iscsi_cls_session *cls_session;
1673 	struct iscsi_host *ihost;
1674 	int reason = 0;
1675 	struct iscsi_session *session;
1676 	struct iscsi_conn *conn;
1677 	struct iscsi_task *task = NULL;
1678 
1679 	sc->result = 0;
1680 	sc->SCp.ptr = NULL;
1681 
1682 	ihost = shost_priv(host);
1683 
1684 	cls_session = starget_to_session(scsi_target(sc->device));
1685 	session = cls_session->dd_data;
1686 	spin_lock_bh(&session->frwd_lock);
1687 
1688 	reason = iscsi_session_chkready(cls_session);
1689 	if (reason) {
1690 		sc->result = reason;
1691 		goto fault;
1692 	}
1693 
1694 	if (session->state != ISCSI_STATE_LOGGED_IN) {
1695 		/*
1696 		 * to handle the race between when we set the recovery state
1697 		 * and block the session we requeue here (commands could
1698 		 * be entering our queuecommand while a block is starting
1699 		 * up because the block code is not locked)
1700 		 */
1701 		switch (session->state) {
1702 		case ISCSI_STATE_FAILED:
1703 			/*
1704 			 * cmds should fail during shutdown, if the session
1705 			 * state is bad, allowing completion to happen
1706 			 */
1707 			if (unlikely(system_state != SYSTEM_RUNNING)) {
1708 				reason = FAILURE_SESSION_FAILED;
1709 				sc->result = DID_NO_CONNECT << 16;
1710 				break;
1711 			}
1712 		case ISCSI_STATE_IN_RECOVERY:
1713 			reason = FAILURE_SESSION_IN_RECOVERY;
1714 			sc->result = DID_IMM_RETRY << 16;
1715 			break;
1716 		case ISCSI_STATE_LOGGING_OUT:
1717 			reason = FAILURE_SESSION_LOGGING_OUT;
1718 			sc->result = DID_IMM_RETRY << 16;
1719 			break;
1720 		case ISCSI_STATE_RECOVERY_FAILED:
1721 			reason = FAILURE_SESSION_RECOVERY_TIMEOUT;
1722 			sc->result = DID_TRANSPORT_FAILFAST << 16;
1723 			break;
1724 		case ISCSI_STATE_TERMINATE:
1725 			reason = FAILURE_SESSION_TERMINATE;
1726 			sc->result = DID_NO_CONNECT << 16;
1727 			break;
1728 		default:
1729 			reason = FAILURE_SESSION_FREED;
1730 			sc->result = DID_NO_CONNECT << 16;
1731 		}
1732 		goto fault;
1733 	}
1734 
1735 	conn = session->leadconn;
1736 	if (!conn) {
1737 		reason = FAILURE_SESSION_FREED;
1738 		sc->result = DID_NO_CONNECT << 16;
1739 		goto fault;
1740 	}
1741 
1742 	if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
1743 		reason = FAILURE_SESSION_IN_RECOVERY;
1744 		sc->result = DID_REQUEUE << 16;
1745 		goto fault;
1746 	}
1747 
1748 	if (iscsi_check_cmdsn_window_closed(conn)) {
1749 		reason = FAILURE_WINDOW_CLOSED;
1750 		goto reject;
1751 	}
1752 
1753 	task = iscsi_alloc_task(conn, sc);
1754 	if (!task) {
1755 		reason = FAILURE_OOM;
1756 		goto reject;
1757 	}
1758 
1759 	if (!ihost->workq) {
1760 		reason = iscsi_prep_scsi_cmd_pdu(task);
1761 		if (reason) {
1762 			if (reason == -ENOMEM ||  reason == -EACCES) {
1763 				reason = FAILURE_OOM;
1764 				goto prepd_reject;
1765 			} else {
1766 				sc->result = DID_ABORT << 16;
1767 				goto prepd_fault;
1768 			}
1769 		}
1770 		if (session->tt->xmit_task(task)) {
1771 			session->cmdsn--;
1772 			reason = FAILURE_SESSION_NOT_READY;
1773 			goto prepd_reject;
1774 		}
1775 	} else {
1776 		spin_lock_bh(&conn->taskqueuelock);
1777 		list_add_tail(&task->running, &conn->cmdqueue);
1778 		spin_unlock_bh(&conn->taskqueuelock);
1779 		iscsi_conn_queue_work(conn);
1780 	}
1781 
1782 	session->queued_cmdsn++;
1783 	spin_unlock_bh(&session->frwd_lock);
1784 	return 0;
1785 
1786 prepd_reject:
1787 	iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ);
1788 reject:
1789 	spin_unlock_bh(&session->frwd_lock);
1790 	ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n",
1791 			  sc->cmnd[0], reason);
1792 	return SCSI_MLQUEUE_TARGET_BUSY;
1793 
1794 prepd_fault:
1795 	iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ);
1796 fault:
1797 	spin_unlock_bh(&session->frwd_lock);
1798 	ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n",
1799 			  sc->cmnd[0], reason);
1800 	if (!scsi_bidi_cmnd(sc))
1801 		scsi_set_resid(sc, scsi_bufflen(sc));
1802 	else {
1803 		scsi_out(sc)->resid = scsi_out(sc)->length;
1804 		scsi_in(sc)->resid = scsi_in(sc)->length;
1805 	}
1806 	sc->scsi_done(sc);
1807 	return 0;
1808 }
1809 EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1810 
iscsi_target_alloc(struct scsi_target * starget)1811 int iscsi_target_alloc(struct scsi_target *starget)
1812 {
1813 	struct iscsi_cls_session *cls_session = starget_to_session(starget);
1814 	struct iscsi_session *session = cls_session->dd_data;
1815 
1816 	starget->can_queue = session->scsi_cmds_max;
1817 	return 0;
1818 }
1819 EXPORT_SYMBOL_GPL(iscsi_target_alloc);
1820 
iscsi_tmf_timedout(unsigned long data)1821 static void iscsi_tmf_timedout(unsigned long data)
1822 {
1823 	struct iscsi_conn *conn = (struct iscsi_conn *)data;
1824 	struct iscsi_session *session = conn->session;
1825 
1826 	spin_lock(&session->frwd_lock);
1827 	if (conn->tmf_state == TMF_QUEUED) {
1828 		conn->tmf_state = TMF_TIMEDOUT;
1829 		ISCSI_DBG_EH(session, "tmf timedout\n");
1830 		/* unblock eh_abort() */
1831 		wake_up(&conn->ehwait);
1832 	}
1833 	spin_unlock(&session->frwd_lock);
1834 }
1835 
iscsi_exec_task_mgmt_fn(struct iscsi_conn * conn,struct iscsi_tm * hdr,int age,int timeout)1836 static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
1837 				   struct iscsi_tm *hdr, int age,
1838 				   int timeout)
1839 {
1840 	struct iscsi_session *session = conn->session;
1841 	struct iscsi_task *task;
1842 
1843 	task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
1844 				      NULL, 0);
1845 	if (!task) {
1846 		spin_unlock_bh(&session->frwd_lock);
1847 		iscsi_conn_printk(KERN_ERR, conn, "Could not send TMF.\n");
1848 		iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1849 		spin_lock_bh(&session->frwd_lock);
1850 		return -EPERM;
1851 	}
1852 	conn->tmfcmd_pdus_cnt++;
1853 	conn->tmf_timer.expires = timeout * HZ + jiffies;
1854 	conn->tmf_timer.function = iscsi_tmf_timedout;
1855 	conn->tmf_timer.data = (unsigned long)conn;
1856 	add_timer(&conn->tmf_timer);
1857 	ISCSI_DBG_EH(session, "tmf set timeout\n");
1858 
1859 	spin_unlock_bh(&session->frwd_lock);
1860 	mutex_unlock(&session->eh_mutex);
1861 
1862 	/*
1863 	 * block eh thread until:
1864 	 *
1865 	 * 1) tmf response
1866 	 * 2) tmf timeout
1867 	 * 3) session is terminated or restarted or userspace has
1868 	 * given up on recovery
1869 	 */
1870 	wait_event_interruptible(conn->ehwait, age != session->age ||
1871 				 session->state != ISCSI_STATE_LOGGED_IN ||
1872 				 conn->tmf_state != TMF_QUEUED);
1873 	if (signal_pending(current))
1874 		flush_signals(current);
1875 	del_timer_sync(&conn->tmf_timer);
1876 
1877 	mutex_lock(&session->eh_mutex);
1878 	spin_lock_bh(&session->frwd_lock);
1879 	/* if the session drops it will clean up the task */
1880 	if (age != session->age ||
1881 	    session->state != ISCSI_STATE_LOGGED_IN)
1882 		return -ENOTCONN;
1883 	return 0;
1884 }
1885 
1886 /*
1887  * Fail commands. session lock held and recv side suspended and xmit
1888  * thread flushed
1889  */
fail_scsi_tasks(struct iscsi_conn * conn,u64 lun,int error)1890 static void fail_scsi_tasks(struct iscsi_conn *conn, u64 lun, int error)
1891 {
1892 	struct iscsi_task *task;
1893 	int i;
1894 
1895 	for (i = 0; i < conn->session->cmds_max; i++) {
1896 		task = conn->session->cmds[i];
1897 		if (!task->sc || task->state == ISCSI_TASK_FREE)
1898 			continue;
1899 
1900 		if (lun != -1 && lun != task->sc->device->lun)
1901 			continue;
1902 
1903 		ISCSI_DBG_SESSION(conn->session,
1904 				  "failing sc %p itt 0x%x state %d\n",
1905 				  task->sc, task->itt, task->state);
1906 		fail_scsi_task(task, error);
1907 	}
1908 }
1909 
1910 /**
1911  * iscsi_suspend_queue - suspend iscsi_queuecommand
1912  * @conn: iscsi conn to stop queueing IO on
1913  *
1914  * This grabs the session frwd_lock to make sure no one is in
1915  * xmit_task/queuecommand, and then sets suspend to prevent
1916  * new commands from being queued. This only needs to be called
1917  * by offload drivers that need to sync a path like ep disconnect
1918  * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1919  * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1920  */
iscsi_suspend_queue(struct iscsi_conn * conn)1921 void iscsi_suspend_queue(struct iscsi_conn *conn)
1922 {
1923 	spin_lock_bh(&conn->session->frwd_lock);
1924 	set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1925 	spin_unlock_bh(&conn->session->frwd_lock);
1926 }
1927 EXPORT_SYMBOL_GPL(iscsi_suspend_queue);
1928 
1929 /**
1930  * iscsi_suspend_tx - suspend iscsi_data_xmit
1931  * @conn: iscsi conn tp stop processing IO on.
1932  *
1933  * This function sets the suspend bit to prevent iscsi_data_xmit
1934  * from sending new IO, and if work is queued on the xmit thread
1935  * it will wait for it to be completed.
1936  */
iscsi_suspend_tx(struct iscsi_conn * conn)1937 void iscsi_suspend_tx(struct iscsi_conn *conn)
1938 {
1939 	struct Scsi_Host *shost = conn->session->host;
1940 	struct iscsi_host *ihost = shost_priv(shost);
1941 
1942 	set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1943 	if (ihost->workq)
1944 		flush_workqueue(ihost->workq);
1945 }
1946 EXPORT_SYMBOL_GPL(iscsi_suspend_tx);
1947 
iscsi_start_tx(struct iscsi_conn * conn)1948 static void iscsi_start_tx(struct iscsi_conn *conn)
1949 {
1950 	clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1951 	iscsi_conn_queue_work(conn);
1952 }
1953 
1954 /*
1955  * We want to make sure a ping is in flight. It has timed out.
1956  * And we are not busy processing a pdu that is making
1957  * progress but got started before the ping and is taking a while
1958  * to complete so the ping is just stuck behind it in a queue.
1959  */
iscsi_has_ping_timed_out(struct iscsi_conn * conn)1960 static int iscsi_has_ping_timed_out(struct iscsi_conn *conn)
1961 {
1962 	if (READ_ONCE(conn->ping_task) &&
1963 	    time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) +
1964 			   (conn->ping_timeout * HZ), jiffies))
1965 		return 1;
1966 	else
1967 		return 0;
1968 }
1969 
iscsi_eh_cmd_timed_out(struct scsi_cmnd * sc)1970 static enum blk_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *sc)
1971 {
1972 	enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED;
1973 	struct iscsi_task *task = NULL, *running_task;
1974 	struct iscsi_cls_session *cls_session;
1975 	struct iscsi_session *session;
1976 	struct iscsi_conn *conn;
1977 	int i;
1978 
1979 	cls_session = starget_to_session(scsi_target(sc->device));
1980 	session = cls_session->dd_data;
1981 
1982 	ISCSI_DBG_EH(session, "scsi cmd %p timedout\n", sc);
1983 
1984 	spin_lock_bh(&session->frwd_lock);
1985 	task = (struct iscsi_task *)sc->SCp.ptr;
1986 	if (!task) {
1987 		/*
1988 		 * Raced with completion. Blk layer has taken ownership
1989 		 * so let timeout code complete it now.
1990 		 */
1991 		rc = BLK_EH_HANDLED;
1992 		goto done;
1993 	}
1994 
1995 	if (session->state != ISCSI_STATE_LOGGED_IN) {
1996 		/*
1997 		 * During shutdown, if session is prematurely disconnected,
1998 		 * recovery won't happen and there will be hung cmds. Not
1999 		 * handling cmds would trigger EH, also bad in this case.
2000 		 * Instead, handle cmd, allow completion to happen and let
2001 		 * upper layer to deal with the result.
2002 		 */
2003 		if (unlikely(system_state != SYSTEM_RUNNING)) {
2004 			sc->result = DID_NO_CONNECT << 16;
2005 			ISCSI_DBG_EH(session, "sc on shutdown, handled\n");
2006 			rc = BLK_EH_HANDLED;
2007 			goto done;
2008 		}
2009 		/*
2010 		 * We are probably in the middle of iscsi recovery so let
2011 		 * that complete and handle the error.
2012 		 */
2013 		rc = BLK_EH_RESET_TIMER;
2014 		goto done;
2015 	}
2016 
2017 	conn = session->leadconn;
2018 	if (!conn) {
2019 		/* In the middle of shuting down */
2020 		rc = BLK_EH_RESET_TIMER;
2021 		goto done;
2022 	}
2023 
2024 	/*
2025 	 * If we have sent (at least queued to the network layer) a pdu or
2026 	 * recvd one for the task since the last timeout ask for
2027 	 * more time. If on the next timeout we have not made progress
2028 	 * we can check if it is the task or connection when we send the
2029 	 * nop as a ping.
2030 	 */
2031 	if (time_after(task->last_xfer, task->last_timeout)) {
2032 		ISCSI_DBG_EH(session, "Command making progress. Asking "
2033 			     "scsi-ml for more time to complete. "
2034 			     "Last data xfer at %lu. Last timeout was at "
2035 			     "%lu\n.", task->last_xfer, task->last_timeout);
2036 		task->have_checked_conn = false;
2037 		rc = BLK_EH_RESET_TIMER;
2038 		goto done;
2039 	}
2040 
2041 	if (!conn->recv_timeout && !conn->ping_timeout)
2042 		goto done;
2043 	/*
2044 	 * if the ping timedout then we are in the middle of cleaning up
2045 	 * and can let the iscsi eh handle it
2046 	 */
2047 	if (iscsi_has_ping_timed_out(conn)) {
2048 		rc = BLK_EH_RESET_TIMER;
2049 		goto done;
2050 	}
2051 
2052 	for (i = 0; i < conn->session->cmds_max; i++) {
2053 		running_task = conn->session->cmds[i];
2054 		if (!running_task->sc || running_task == task ||
2055 		     running_task->state != ISCSI_TASK_RUNNING)
2056 			continue;
2057 
2058 		/*
2059 		 * Only check if cmds started before this one have made
2060 		 * progress, or this could never fail
2061 		 */
2062 		if (time_after(running_task->sc->jiffies_at_alloc,
2063 			       task->sc->jiffies_at_alloc))
2064 			continue;
2065 
2066 		if (time_after(running_task->last_xfer, task->last_timeout)) {
2067 			/*
2068 			 * This task has not made progress, but a task
2069 			 * started before us has transferred data since
2070 			 * we started/last-checked. We could be queueing
2071 			 * too many tasks or the LU is bad.
2072 			 *
2073 			 * If the device is bad the cmds ahead of us on
2074 			 * other devs will complete, and this loop will
2075 			 * eventually fail starting the scsi eh.
2076 			 */
2077 			ISCSI_DBG_EH(session, "Command has not made progress "
2078 				     "but commands ahead of it have. "
2079 				     "Asking scsi-ml for more time to "
2080 				     "complete. Our last xfer vs running task "
2081 				     "last xfer %lu/%lu. Last check %lu.\n",
2082 				     task->last_xfer, running_task->last_xfer,
2083 				     task->last_timeout);
2084 			rc = BLK_EH_RESET_TIMER;
2085 			goto done;
2086 		}
2087 	}
2088 
2089 	/* Assumes nop timeout is shorter than scsi cmd timeout */
2090 	if (task->have_checked_conn)
2091 		goto done;
2092 
2093 	/*
2094 	 * Checking the transport already or nop from a cmd timeout still
2095 	 * running
2096 	 */
2097 	if (READ_ONCE(conn->ping_task)) {
2098 		task->have_checked_conn = true;
2099 		rc = BLK_EH_RESET_TIMER;
2100 		goto done;
2101 	}
2102 
2103 	/* Make sure there is a transport check done */
2104 	iscsi_send_nopout(conn, NULL);
2105 	task->have_checked_conn = true;
2106 	rc = BLK_EH_RESET_TIMER;
2107 
2108 done:
2109 	if (task)
2110 		task->last_timeout = jiffies;
2111 	spin_unlock_bh(&session->frwd_lock);
2112 	ISCSI_DBG_EH(session, "return %s\n", rc == BLK_EH_RESET_TIMER ?
2113 		     "timer reset" : "shutdown or nh");
2114 	return rc;
2115 }
2116 
iscsi_check_transport_timeouts(unsigned long data)2117 static void iscsi_check_transport_timeouts(unsigned long data)
2118 {
2119 	struct iscsi_conn *conn = (struct iscsi_conn *)data;
2120 	struct iscsi_session *session = conn->session;
2121 	unsigned long recv_timeout, next_timeout = 0, last_recv;
2122 
2123 	spin_lock(&session->frwd_lock);
2124 	if (session->state != ISCSI_STATE_LOGGED_IN)
2125 		goto done;
2126 
2127 	recv_timeout = conn->recv_timeout;
2128 	if (!recv_timeout)
2129 		goto done;
2130 
2131 	recv_timeout *= HZ;
2132 	last_recv = conn->last_recv;
2133 
2134 	if (iscsi_has_ping_timed_out(conn)) {
2135 		iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs "
2136 				  "expired, recv timeout %d, last rx %lu, "
2137 				  "last ping %lu, now %lu\n",
2138 				  conn->ping_timeout, conn->recv_timeout,
2139 				  last_recv, conn->last_ping, jiffies);
2140 		spin_unlock(&session->frwd_lock);
2141 		iscsi_conn_failure(conn, ISCSI_ERR_NOP_TIMEDOUT);
2142 		return;
2143 	}
2144 
2145 	if (time_before_eq(last_recv + recv_timeout, jiffies)) {
2146 		/* send a ping to try to provoke some traffic */
2147 		ISCSI_DBG_CONN(conn, "Sending nopout as ping\n");
2148 		if (iscsi_send_nopout(conn, NULL))
2149 			next_timeout = jiffies + (1 * HZ);
2150 		else
2151 			next_timeout = conn->last_ping + (conn->ping_timeout * HZ);
2152 	} else
2153 		next_timeout = last_recv + recv_timeout;
2154 
2155 	ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout);
2156 	mod_timer(&conn->transport_timer, next_timeout);
2157 done:
2158 	spin_unlock(&session->frwd_lock);
2159 }
2160 
iscsi_prep_abort_task_pdu(struct iscsi_task * task,struct iscsi_tm * hdr)2161 static void iscsi_prep_abort_task_pdu(struct iscsi_task *task,
2162 				      struct iscsi_tm *hdr)
2163 {
2164 	memset(hdr, 0, sizeof(*hdr));
2165 	hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2166 	hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK;
2167 	hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2168 	hdr->lun = task->lun;
2169 	hdr->rtt = task->hdr_itt;
2170 	hdr->refcmdsn = task->cmdsn;
2171 }
2172 
iscsi_eh_abort(struct scsi_cmnd * sc)2173 int iscsi_eh_abort(struct scsi_cmnd *sc)
2174 {
2175 	struct iscsi_cls_session *cls_session;
2176 	struct iscsi_session *session;
2177 	struct iscsi_conn *conn;
2178 	struct iscsi_task *task;
2179 	struct iscsi_tm *hdr;
2180 	int rc, age;
2181 
2182 	cls_session = starget_to_session(scsi_target(sc->device));
2183 	session = cls_session->dd_data;
2184 
2185 	ISCSI_DBG_EH(session, "aborting sc %p\n", sc);
2186 
2187 	mutex_lock(&session->eh_mutex);
2188 	spin_lock_bh(&session->frwd_lock);
2189 	/*
2190 	 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2191 	 * got the command.
2192 	 */
2193 	if (!sc->SCp.ptr) {
2194 		ISCSI_DBG_EH(session, "sc never reached iscsi layer or "
2195 				      "it completed.\n");
2196 		spin_unlock_bh(&session->frwd_lock);
2197 		mutex_unlock(&session->eh_mutex);
2198 		return SUCCESS;
2199 	}
2200 
2201 	/*
2202 	 * If we are not logged in or we have started a new session
2203 	 * then let the host reset code handle this
2204 	 */
2205 	if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN ||
2206 	    sc->SCp.phase != session->age) {
2207 		spin_unlock_bh(&session->frwd_lock);
2208 		mutex_unlock(&session->eh_mutex);
2209 		ISCSI_DBG_EH(session, "failing abort due to dropped "
2210 				  "session.\n");
2211 		return FAILED;
2212 	}
2213 
2214 	conn = session->leadconn;
2215 	conn->eh_abort_cnt++;
2216 	age = session->age;
2217 
2218 	task = (struct iscsi_task *)sc->SCp.ptr;
2219 	ISCSI_DBG_EH(session, "aborting [sc %p itt 0x%x]\n",
2220 		     sc, task->itt);
2221 
2222 	/* task completed before time out */
2223 	if (!task->sc) {
2224 		ISCSI_DBG_EH(session, "sc completed while abort in progress\n");
2225 		goto success;
2226 	}
2227 
2228 	if (task->state == ISCSI_TASK_PENDING) {
2229 		fail_scsi_task(task, DID_ABORT);
2230 		goto success;
2231 	}
2232 
2233 	/* only have one tmf outstanding at a time */
2234 	if (conn->tmf_state != TMF_INITIAL)
2235 		goto failed;
2236 	conn->tmf_state = TMF_QUEUED;
2237 
2238 	hdr = &conn->tmhdr;
2239 	iscsi_prep_abort_task_pdu(task, hdr);
2240 
2241 	if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) {
2242 		rc = FAILED;
2243 		goto failed;
2244 	}
2245 
2246 	switch (conn->tmf_state) {
2247 	case TMF_SUCCESS:
2248 		spin_unlock_bh(&session->frwd_lock);
2249 		/*
2250 		 * stop tx side incase the target had sent a abort rsp but
2251 		 * the initiator was still writing out data.
2252 		 */
2253 		iscsi_suspend_tx(conn);
2254 		/*
2255 		 * we do not stop the recv side because targets have been
2256 		 * good and have never sent us a successful tmf response
2257 		 * then sent more data for the cmd.
2258 		 */
2259 		spin_lock_bh(&session->frwd_lock);
2260 		fail_scsi_task(task, DID_ABORT);
2261 		conn->tmf_state = TMF_INITIAL;
2262 		memset(hdr, 0, sizeof(*hdr));
2263 		spin_unlock_bh(&session->frwd_lock);
2264 		iscsi_start_tx(conn);
2265 		goto success_unlocked;
2266 	case TMF_TIMEDOUT:
2267 		spin_unlock_bh(&session->frwd_lock);
2268 		iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
2269 		goto failed_unlocked;
2270 	case TMF_NOT_FOUND:
2271 		if (!sc->SCp.ptr) {
2272 			conn->tmf_state = TMF_INITIAL;
2273 			memset(hdr, 0, sizeof(*hdr));
2274 			/* task completed before tmf abort response */
2275 			ISCSI_DBG_EH(session, "sc completed while abort	in "
2276 					      "progress\n");
2277 			goto success;
2278 		}
2279 		/* fall through */
2280 	default:
2281 		conn->tmf_state = TMF_INITIAL;
2282 		goto failed;
2283 	}
2284 
2285 success:
2286 	spin_unlock_bh(&session->frwd_lock);
2287 success_unlocked:
2288 	ISCSI_DBG_EH(session, "abort success [sc %p itt 0x%x]\n",
2289 		     sc, task->itt);
2290 	mutex_unlock(&session->eh_mutex);
2291 	return SUCCESS;
2292 
2293 failed:
2294 	spin_unlock_bh(&session->frwd_lock);
2295 failed_unlocked:
2296 	ISCSI_DBG_EH(session, "abort failed [sc %p itt 0x%x]\n", sc,
2297 		     task ? task->itt : 0);
2298 	mutex_unlock(&session->eh_mutex);
2299 	return FAILED;
2300 }
2301 EXPORT_SYMBOL_GPL(iscsi_eh_abort);
2302 
iscsi_prep_lun_reset_pdu(struct scsi_cmnd * sc,struct iscsi_tm * hdr)2303 static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2304 {
2305 	memset(hdr, 0, sizeof(*hdr));
2306 	hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2307 	hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2308 	hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2309 	int_to_scsilun(sc->device->lun, &hdr->lun);
2310 	hdr->rtt = RESERVED_ITT;
2311 }
2312 
iscsi_eh_device_reset(struct scsi_cmnd * sc)2313 int iscsi_eh_device_reset(struct scsi_cmnd *sc)
2314 {
2315 	struct iscsi_cls_session *cls_session;
2316 	struct iscsi_session *session;
2317 	struct iscsi_conn *conn;
2318 	struct iscsi_tm *hdr;
2319 	int rc = FAILED;
2320 
2321 	cls_session = starget_to_session(scsi_target(sc->device));
2322 	session = cls_session->dd_data;
2323 
2324 	ISCSI_DBG_EH(session, "LU Reset [sc %p lun %llu]\n", sc,
2325 		     sc->device->lun);
2326 
2327 	mutex_lock(&session->eh_mutex);
2328 	spin_lock_bh(&session->frwd_lock);
2329 	/*
2330 	 * Just check if we are not logged in. We cannot check for
2331 	 * the phase because the reset could come from a ioctl.
2332 	 */
2333 	if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2334 		goto unlock;
2335 	conn = session->leadconn;
2336 
2337 	/* only have one tmf outstanding at a time */
2338 	if (conn->tmf_state != TMF_INITIAL)
2339 		goto unlock;
2340 	conn->tmf_state = TMF_QUEUED;
2341 
2342 	hdr = &conn->tmhdr;
2343 	iscsi_prep_lun_reset_pdu(sc, hdr);
2344 
2345 	if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
2346 				    session->lu_reset_timeout)) {
2347 		rc = FAILED;
2348 		goto unlock;
2349 	}
2350 
2351 	switch (conn->tmf_state) {
2352 	case TMF_SUCCESS:
2353 		break;
2354 	case TMF_TIMEDOUT:
2355 		spin_unlock_bh(&session->frwd_lock);
2356 		iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
2357 		goto done;
2358 	default:
2359 		conn->tmf_state = TMF_INITIAL;
2360 		goto unlock;
2361 	}
2362 
2363 	rc = SUCCESS;
2364 	spin_unlock_bh(&session->frwd_lock);
2365 
2366 	iscsi_suspend_tx(conn);
2367 
2368 	spin_lock_bh(&session->frwd_lock);
2369 	memset(hdr, 0, sizeof(*hdr));
2370 	fail_scsi_tasks(conn, sc->device->lun, DID_ERROR);
2371 	conn->tmf_state = TMF_INITIAL;
2372 	spin_unlock_bh(&session->frwd_lock);
2373 
2374 	iscsi_start_tx(conn);
2375 	goto done;
2376 
2377 unlock:
2378 	spin_unlock_bh(&session->frwd_lock);
2379 done:
2380 	ISCSI_DBG_EH(session, "dev reset result = %s\n",
2381 		     rc == SUCCESS ? "SUCCESS" : "FAILED");
2382 	mutex_unlock(&session->eh_mutex);
2383 	return rc;
2384 }
2385 EXPORT_SYMBOL_GPL(iscsi_eh_device_reset);
2386 
iscsi_session_recovery_timedout(struct iscsi_cls_session * cls_session)2387 void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session)
2388 {
2389 	struct iscsi_session *session = cls_session->dd_data;
2390 
2391 	spin_lock_bh(&session->frwd_lock);
2392 	if (session->state != ISCSI_STATE_LOGGED_IN) {
2393 		session->state = ISCSI_STATE_RECOVERY_FAILED;
2394 		if (session->leadconn)
2395 			wake_up(&session->leadconn->ehwait);
2396 	}
2397 	spin_unlock_bh(&session->frwd_lock);
2398 }
2399 EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout);
2400 
2401 /**
2402  * iscsi_eh_session_reset - drop session and attempt relogin
2403  * @sc: scsi command
2404  *
2405  * This function will wait for a relogin, session termination from
2406  * userspace, or a recovery/replacement timeout.
2407  */
iscsi_eh_session_reset(struct scsi_cmnd * sc)2408 int iscsi_eh_session_reset(struct scsi_cmnd *sc)
2409 {
2410 	struct iscsi_cls_session *cls_session;
2411 	struct iscsi_session *session;
2412 	struct iscsi_conn *conn;
2413 
2414 	cls_session = starget_to_session(scsi_target(sc->device));
2415 	session = cls_session->dd_data;
2416 	conn = session->leadconn;
2417 
2418 	mutex_lock(&session->eh_mutex);
2419 	spin_lock_bh(&session->frwd_lock);
2420 	if (session->state == ISCSI_STATE_TERMINATE) {
2421 failed:
2422 		ISCSI_DBG_EH(session,
2423 			     "failing session reset: Could not log back into "
2424 			     "%s [age %d]\n", session->targetname,
2425 			     session->age);
2426 		spin_unlock_bh(&session->frwd_lock);
2427 		mutex_unlock(&session->eh_mutex);
2428 		return FAILED;
2429 	}
2430 
2431 	spin_unlock_bh(&session->frwd_lock);
2432 	mutex_unlock(&session->eh_mutex);
2433 	/*
2434 	 * we drop the lock here but the leadconn cannot be destoyed while
2435 	 * we are in the scsi eh
2436 	 */
2437 	iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
2438 
2439 	ISCSI_DBG_EH(session, "wait for relogin\n");
2440 	wait_event_interruptible(conn->ehwait,
2441 				 session->state == ISCSI_STATE_TERMINATE ||
2442 				 session->state == ISCSI_STATE_LOGGED_IN ||
2443 				 session->state == ISCSI_STATE_RECOVERY_FAILED);
2444 	if (signal_pending(current))
2445 		flush_signals(current);
2446 
2447 	mutex_lock(&session->eh_mutex);
2448 	spin_lock_bh(&session->frwd_lock);
2449 	if (session->state == ISCSI_STATE_LOGGED_IN) {
2450 		ISCSI_DBG_EH(session,
2451 			     "session reset succeeded for %s,%s\n",
2452 			     session->targetname, conn->persistent_address);
2453 	} else
2454 		goto failed;
2455 	spin_unlock_bh(&session->frwd_lock);
2456 	mutex_unlock(&session->eh_mutex);
2457 	return SUCCESS;
2458 }
2459 EXPORT_SYMBOL_GPL(iscsi_eh_session_reset);
2460 
iscsi_prep_tgt_reset_pdu(struct scsi_cmnd * sc,struct iscsi_tm * hdr)2461 static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2462 {
2463 	memset(hdr, 0, sizeof(*hdr));
2464 	hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2465 	hdr->flags = ISCSI_TM_FUNC_TARGET_WARM_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2466 	hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2467 	hdr->rtt = RESERVED_ITT;
2468 }
2469 
2470 /**
2471  * iscsi_eh_target_reset - reset target
2472  * @sc: scsi command
2473  *
2474  * This will attempt to send a warm target reset.
2475  */
iscsi_eh_target_reset(struct scsi_cmnd * sc)2476 int iscsi_eh_target_reset(struct scsi_cmnd *sc)
2477 {
2478 	struct iscsi_cls_session *cls_session;
2479 	struct iscsi_session *session;
2480 	struct iscsi_conn *conn;
2481 	struct iscsi_tm *hdr;
2482 	int rc = FAILED;
2483 
2484 	cls_session = starget_to_session(scsi_target(sc->device));
2485 	session = cls_session->dd_data;
2486 
2487 	ISCSI_DBG_EH(session, "tgt Reset [sc %p tgt %s]\n", sc,
2488 		     session->targetname);
2489 
2490 	mutex_lock(&session->eh_mutex);
2491 	spin_lock_bh(&session->frwd_lock);
2492 	/*
2493 	 * Just check if we are not logged in. We cannot check for
2494 	 * the phase because the reset could come from a ioctl.
2495 	 */
2496 	if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2497 		goto unlock;
2498 	conn = session->leadconn;
2499 
2500 	/* only have one tmf outstanding at a time */
2501 	if (conn->tmf_state != TMF_INITIAL)
2502 		goto unlock;
2503 	conn->tmf_state = TMF_QUEUED;
2504 
2505 	hdr = &conn->tmhdr;
2506 	iscsi_prep_tgt_reset_pdu(sc, hdr);
2507 
2508 	if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
2509 				    session->tgt_reset_timeout)) {
2510 		rc = FAILED;
2511 		goto unlock;
2512 	}
2513 
2514 	switch (conn->tmf_state) {
2515 	case TMF_SUCCESS:
2516 		break;
2517 	case TMF_TIMEDOUT:
2518 		spin_unlock_bh(&session->frwd_lock);
2519 		iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
2520 		goto done;
2521 	default:
2522 		conn->tmf_state = TMF_INITIAL;
2523 		goto unlock;
2524 	}
2525 
2526 	rc = SUCCESS;
2527 	spin_unlock_bh(&session->frwd_lock);
2528 
2529 	iscsi_suspend_tx(conn);
2530 
2531 	spin_lock_bh(&session->frwd_lock);
2532 	memset(hdr, 0, sizeof(*hdr));
2533 	fail_scsi_tasks(conn, -1, DID_ERROR);
2534 	conn->tmf_state = TMF_INITIAL;
2535 	spin_unlock_bh(&session->frwd_lock);
2536 
2537 	iscsi_start_tx(conn);
2538 	goto done;
2539 
2540 unlock:
2541 	spin_unlock_bh(&session->frwd_lock);
2542 done:
2543 	ISCSI_DBG_EH(session, "tgt %s reset result = %s\n", session->targetname,
2544 		     rc == SUCCESS ? "SUCCESS" : "FAILED");
2545 	mutex_unlock(&session->eh_mutex);
2546 	return rc;
2547 }
2548 EXPORT_SYMBOL_GPL(iscsi_eh_target_reset);
2549 
2550 /**
2551  * iscsi_eh_recover_target - reset target and possibly the session
2552  * @sc: scsi command
2553  *
2554  * This will attempt to send a warm target reset. If that fails,
2555  * we will escalate to ERL0 session recovery.
2556  */
iscsi_eh_recover_target(struct scsi_cmnd * sc)2557 int iscsi_eh_recover_target(struct scsi_cmnd *sc)
2558 {
2559 	int rc;
2560 
2561 	rc = iscsi_eh_target_reset(sc);
2562 	if (rc == FAILED)
2563 		rc = iscsi_eh_session_reset(sc);
2564 	return rc;
2565 }
2566 EXPORT_SYMBOL_GPL(iscsi_eh_recover_target);
2567 
2568 /*
2569  * Pre-allocate a pool of @max items of @item_size. By default, the pool
2570  * should be accessed via kfifo_{get,put} on q->queue.
2571  * Optionally, the caller can obtain the array of object pointers
2572  * by passing in a non-NULL @items pointer
2573  */
2574 int
iscsi_pool_init(struct iscsi_pool * q,int max,void *** items,int item_size)2575 iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size)
2576 {
2577 	int i, num_arrays = 1;
2578 
2579 	memset(q, 0, sizeof(*q));
2580 
2581 	q->max = max;
2582 
2583 	/* If the user passed an items pointer, he wants a copy of
2584 	 * the array. */
2585 	if (items)
2586 		num_arrays++;
2587 	q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL);
2588 	if (q->pool == NULL)
2589 		return -ENOMEM;
2590 
2591 	kfifo_init(&q->queue, (void*)q->pool, max * sizeof(void*));
2592 
2593 	for (i = 0; i < max; i++) {
2594 		q->pool[i] = kzalloc(item_size, GFP_KERNEL);
2595 		if (q->pool[i] == NULL) {
2596 			q->max = i;
2597 			goto enomem;
2598 		}
2599 		kfifo_in(&q->queue, (void*)&q->pool[i], sizeof(void*));
2600 	}
2601 
2602 	if (items) {
2603 		*items = q->pool + max;
2604 		memcpy(*items, q->pool, max * sizeof(void *));
2605 	}
2606 
2607 	return 0;
2608 
2609 enomem:
2610 	iscsi_pool_free(q);
2611 	return -ENOMEM;
2612 }
2613 EXPORT_SYMBOL_GPL(iscsi_pool_init);
2614 
iscsi_pool_free(struct iscsi_pool * q)2615 void iscsi_pool_free(struct iscsi_pool *q)
2616 {
2617 	int i;
2618 
2619 	for (i = 0; i < q->max; i++)
2620 		kfree(q->pool[i]);
2621 	kfree(q->pool);
2622 }
2623 EXPORT_SYMBOL_GPL(iscsi_pool_free);
2624 
2625 /**
2626  * iscsi_host_add - add host to system
2627  * @shost: scsi host
2628  * @pdev: parent device
2629  *
2630  * This should be called by partial offload and software iscsi drivers
2631  * to add a host to the system.
2632  */
iscsi_host_add(struct Scsi_Host * shost,struct device * pdev)2633 int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev)
2634 {
2635 	if (!shost->can_queue)
2636 		shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX;
2637 
2638 	if (!shost->cmd_per_lun)
2639 		shost->cmd_per_lun = ISCSI_DEF_CMD_PER_LUN;
2640 
2641 	if (!shost->transportt->eh_timed_out)
2642 		shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out;
2643 	return scsi_add_host(shost, pdev);
2644 }
2645 EXPORT_SYMBOL_GPL(iscsi_host_add);
2646 
2647 /**
2648  * iscsi_host_alloc - allocate a host and driver data
2649  * @sht: scsi host template
2650  * @dd_data_size: driver host data size
2651  * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
2652  *
2653  * This should be called by partial offload and software iscsi drivers.
2654  * To access the driver specific memory use the iscsi_host_priv() macro.
2655  */
iscsi_host_alloc(struct scsi_host_template * sht,int dd_data_size,bool xmit_can_sleep)2656 struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
2657 				   int dd_data_size, bool xmit_can_sleep)
2658 {
2659 	struct Scsi_Host *shost;
2660 	struct iscsi_host *ihost;
2661 
2662 	shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size);
2663 	if (!shost)
2664 		return NULL;
2665 	ihost = shost_priv(shost);
2666 
2667 	if (xmit_can_sleep) {
2668 		snprintf(ihost->workq_name, sizeof(ihost->workq_name),
2669 			"iscsi_q_%d", shost->host_no);
2670 		ihost->workq = create_singlethread_workqueue(ihost->workq_name);
2671 		if (!ihost->workq)
2672 			goto free_host;
2673 	}
2674 
2675 	spin_lock_init(&ihost->lock);
2676 	ihost->state = ISCSI_HOST_SETUP;
2677 	ihost->num_sessions = 0;
2678 	init_waitqueue_head(&ihost->session_removal_wq);
2679 	return shost;
2680 
2681 free_host:
2682 	scsi_host_put(shost);
2683 	return NULL;
2684 }
2685 EXPORT_SYMBOL_GPL(iscsi_host_alloc);
2686 
iscsi_notify_host_removed(struct iscsi_cls_session * cls_session)2687 static void iscsi_notify_host_removed(struct iscsi_cls_session *cls_session)
2688 {
2689 	iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_INVALID_HOST);
2690 }
2691 
2692 /**
2693  * iscsi_host_remove - remove host and sessions
2694  * @shost: scsi host
2695  *
2696  * If there are any sessions left, this will initiate the removal and wait
2697  * for the completion.
2698  */
iscsi_host_remove(struct Scsi_Host * shost)2699 void iscsi_host_remove(struct Scsi_Host *shost)
2700 {
2701 	struct iscsi_host *ihost = shost_priv(shost);
2702 	unsigned long flags;
2703 
2704 	spin_lock_irqsave(&ihost->lock, flags);
2705 	ihost->state = ISCSI_HOST_REMOVED;
2706 	spin_unlock_irqrestore(&ihost->lock, flags);
2707 
2708 	iscsi_host_for_each_session(shost, iscsi_notify_host_removed);
2709 	wait_event_interruptible(ihost->session_removal_wq,
2710 				 ihost->num_sessions == 0);
2711 	if (signal_pending(current))
2712 		flush_signals(current);
2713 
2714 	scsi_remove_host(shost);
2715 	if (ihost->workq)
2716 		destroy_workqueue(ihost->workq);
2717 }
2718 EXPORT_SYMBOL_GPL(iscsi_host_remove);
2719 
iscsi_host_free(struct Scsi_Host * shost)2720 void iscsi_host_free(struct Scsi_Host *shost)
2721 {
2722 	struct iscsi_host *ihost = shost_priv(shost);
2723 
2724 	kfree(ihost->netdev);
2725 	kfree(ihost->hwaddress);
2726 	kfree(ihost->initiatorname);
2727 	scsi_host_put(shost);
2728 }
2729 EXPORT_SYMBOL_GPL(iscsi_host_free);
2730 
iscsi_host_dec_session_cnt(struct Scsi_Host * shost)2731 static void iscsi_host_dec_session_cnt(struct Scsi_Host *shost)
2732 {
2733 	struct iscsi_host *ihost = shost_priv(shost);
2734 	unsigned long flags;
2735 
2736 	shost = scsi_host_get(shost);
2737 	if (!shost) {
2738 		printk(KERN_ERR "Invalid state. Cannot notify host removal "
2739 		      "of session teardown event because host already "
2740 		      "removed.\n");
2741 		return;
2742 	}
2743 
2744 	spin_lock_irqsave(&ihost->lock, flags);
2745 	ihost->num_sessions--;
2746 	if (ihost->num_sessions == 0)
2747 		wake_up(&ihost->session_removal_wq);
2748 	spin_unlock_irqrestore(&ihost->lock, flags);
2749 	scsi_host_put(shost);
2750 }
2751 
2752 /**
2753  * iscsi_session_setup - create iscsi cls session and host and session
2754  * @iscsit: iscsi transport template
2755  * @shost: scsi host
2756  * @cmds_max: session can queue
2757  * @cmd_task_size: LLD task private data size
2758  * @initial_cmdsn: initial CmdSN
2759  *
2760  * This can be used by software iscsi_transports that allocate
2761  * a session per scsi host.
2762  *
2763  * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2764  * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2765  * for nop handling and login/logout requests.
2766  */
2767 struct iscsi_cls_session *
iscsi_session_setup(struct iscsi_transport * iscsit,struct Scsi_Host * shost,uint16_t cmds_max,int dd_size,int cmd_task_size,uint32_t initial_cmdsn,unsigned int id)2768 iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
2769 		    uint16_t cmds_max, int dd_size, int cmd_task_size,
2770 		    uint32_t initial_cmdsn, unsigned int id)
2771 {
2772 	struct iscsi_host *ihost = shost_priv(shost);
2773 	struct iscsi_session *session;
2774 	struct iscsi_cls_session *cls_session;
2775 	int cmd_i, scsi_cmds, total_cmds = cmds_max;
2776 	unsigned long flags;
2777 
2778 	spin_lock_irqsave(&ihost->lock, flags);
2779 	if (ihost->state == ISCSI_HOST_REMOVED) {
2780 		spin_unlock_irqrestore(&ihost->lock, flags);
2781 		return NULL;
2782 	}
2783 	ihost->num_sessions++;
2784 	spin_unlock_irqrestore(&ihost->lock, flags);
2785 
2786 	if (!total_cmds)
2787 		total_cmds = ISCSI_DEF_XMIT_CMDS_MAX;
2788 	/*
2789 	 * The iscsi layer needs some tasks for nop handling and tmfs,
2790 	 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2791 	 * + 1 command for scsi IO.
2792 	 */
2793 	if (total_cmds < ISCSI_TOTAL_CMDS_MIN) {
2794 		printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2795 		       "must be a power of two that is at least %d.\n",
2796 		       total_cmds, ISCSI_TOTAL_CMDS_MIN);
2797 		goto dec_session_count;
2798 	}
2799 
2800 	if (total_cmds > ISCSI_TOTAL_CMDS_MAX) {
2801 		printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2802 		       "must be a power of 2 less than or equal to %d.\n",
2803 		       cmds_max, ISCSI_TOTAL_CMDS_MAX);
2804 		total_cmds = ISCSI_TOTAL_CMDS_MAX;
2805 	}
2806 
2807 	if (!is_power_of_2(total_cmds)) {
2808 		printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2809 		       "must be a power of 2.\n", total_cmds);
2810 		total_cmds = rounddown_pow_of_two(total_cmds);
2811 		if (total_cmds < ISCSI_TOTAL_CMDS_MIN)
2812 			return NULL;
2813 		printk(KERN_INFO "iscsi: Rounding can_queue to %d.\n",
2814 		       total_cmds);
2815 	}
2816 	scsi_cmds = total_cmds - ISCSI_MGMT_CMDS_MAX;
2817 
2818 	cls_session = iscsi_alloc_session(shost, iscsit,
2819 					  sizeof(struct iscsi_session) +
2820 					  dd_size);
2821 	if (!cls_session)
2822 		goto dec_session_count;
2823 	session = cls_session->dd_data;
2824 	session->cls_session = cls_session;
2825 	session->host = shost;
2826 	session->state = ISCSI_STATE_FREE;
2827 	session->fast_abort = 1;
2828 	session->tgt_reset_timeout = 30;
2829 	session->lu_reset_timeout = 15;
2830 	session->abort_timeout = 10;
2831 	session->scsi_cmds_max = scsi_cmds;
2832 	session->cmds_max = total_cmds;
2833 	session->queued_cmdsn = session->cmdsn = initial_cmdsn;
2834 	session->exp_cmdsn = initial_cmdsn + 1;
2835 	session->max_cmdsn = initial_cmdsn + 1;
2836 	session->max_r2t = 1;
2837 	session->tt = iscsit;
2838 	session->dd_data = cls_session->dd_data + sizeof(*session);
2839 
2840 	mutex_init(&session->eh_mutex);
2841 	spin_lock_init(&session->frwd_lock);
2842 	spin_lock_init(&session->back_lock);
2843 
2844 	/* initialize SCSI PDU commands pool */
2845 	if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
2846 			    (void***)&session->cmds,
2847 			    cmd_task_size + sizeof(struct iscsi_task)))
2848 		goto cmdpool_alloc_fail;
2849 
2850 	/* pre-format cmds pool with ITT */
2851 	for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
2852 		struct iscsi_task *task = session->cmds[cmd_i];
2853 
2854 		if (cmd_task_size)
2855 			task->dd_data = &task[1];
2856 		task->itt = cmd_i;
2857 		task->state = ISCSI_TASK_FREE;
2858 		INIT_LIST_HEAD(&task->running);
2859 	}
2860 
2861 	if (!try_module_get(iscsit->owner))
2862 		goto module_get_fail;
2863 
2864 	if (iscsi_add_session(cls_session, id))
2865 		goto cls_session_fail;
2866 
2867 	return cls_session;
2868 
2869 cls_session_fail:
2870 	module_put(iscsit->owner);
2871 module_get_fail:
2872 	iscsi_pool_free(&session->cmdpool);
2873 cmdpool_alloc_fail:
2874 	iscsi_free_session(cls_session);
2875 dec_session_count:
2876 	iscsi_host_dec_session_cnt(shost);
2877 	return NULL;
2878 }
2879 EXPORT_SYMBOL_GPL(iscsi_session_setup);
2880 
2881 /**
2882  * iscsi_session_teardown - destroy session, host, and cls_session
2883  * @cls_session: iscsi session
2884  *
2885  * The driver must have called iscsi_remove_session before
2886  * calling this.
2887  */
iscsi_session_teardown(struct iscsi_cls_session * cls_session)2888 void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
2889 {
2890 	struct iscsi_session *session = cls_session->dd_data;
2891 	struct module *owner = cls_session->transport->owner;
2892 	struct Scsi_Host *shost = session->host;
2893 
2894 	iscsi_pool_free(&session->cmdpool);
2895 
2896 	kfree(session->password);
2897 	kfree(session->password_in);
2898 	kfree(session->username);
2899 	kfree(session->username_in);
2900 	kfree(session->targetname);
2901 	kfree(session->targetalias);
2902 	kfree(session->initiatorname);
2903 	kfree(session->boot_root);
2904 	kfree(session->boot_nic);
2905 	kfree(session->boot_target);
2906 	kfree(session->ifacename);
2907 	kfree(session->portal_type);
2908 	kfree(session->discovery_parent_type);
2909 
2910 	iscsi_destroy_session(cls_session);
2911 	iscsi_host_dec_session_cnt(shost);
2912 	module_put(owner);
2913 }
2914 EXPORT_SYMBOL_GPL(iscsi_session_teardown);
2915 
2916 /**
2917  * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2918  * @cls_session: iscsi_cls_session
2919  * @dd_size: private driver data size
2920  * @conn_idx: cid
2921  */
2922 struct iscsi_cls_conn *
iscsi_conn_setup(struct iscsi_cls_session * cls_session,int dd_size,uint32_t conn_idx)2923 iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size,
2924 		 uint32_t conn_idx)
2925 {
2926 	struct iscsi_session *session = cls_session->dd_data;
2927 	struct iscsi_conn *conn;
2928 	struct iscsi_cls_conn *cls_conn;
2929 	char *data;
2930 
2931 	cls_conn = iscsi_create_conn(cls_session, sizeof(*conn) + dd_size,
2932 				     conn_idx);
2933 	if (!cls_conn)
2934 		return NULL;
2935 	conn = cls_conn->dd_data;
2936 	memset(conn, 0, sizeof(*conn) + dd_size);
2937 
2938 	conn->dd_data = cls_conn->dd_data + sizeof(*conn);
2939 	conn->session = session;
2940 	conn->cls_conn = cls_conn;
2941 	conn->c_stage = ISCSI_CONN_INITIAL_STAGE;
2942 	conn->id = conn_idx;
2943 	conn->exp_statsn = 0;
2944 	conn->tmf_state = TMF_INITIAL;
2945 
2946 	init_timer(&conn->transport_timer);
2947 	conn->transport_timer.data = (unsigned long)conn;
2948 	conn->transport_timer.function = iscsi_check_transport_timeouts;
2949 
2950 	INIT_LIST_HEAD(&conn->mgmtqueue);
2951 	INIT_LIST_HEAD(&conn->cmdqueue);
2952 	INIT_LIST_HEAD(&conn->requeue);
2953 	spin_lock_init(&conn->taskqueuelock);
2954 	INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
2955 
2956 	/* allocate login_task used for the login/text sequences */
2957 	spin_lock_bh(&session->frwd_lock);
2958 	if (!kfifo_out(&session->cmdpool.queue,
2959                          (void*)&conn->login_task,
2960 			 sizeof(void*))) {
2961 		spin_unlock_bh(&session->frwd_lock);
2962 		goto login_task_alloc_fail;
2963 	}
2964 	spin_unlock_bh(&session->frwd_lock);
2965 
2966 	data = (char *) __get_free_pages(GFP_KERNEL,
2967 					 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
2968 	if (!data)
2969 		goto login_task_data_alloc_fail;
2970 	conn->login_task->data = conn->data = data;
2971 
2972 	init_timer(&conn->tmf_timer);
2973 	init_waitqueue_head(&conn->ehwait);
2974 
2975 	return cls_conn;
2976 
2977 login_task_data_alloc_fail:
2978 	kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
2979 		    sizeof(void*));
2980 login_task_alloc_fail:
2981 	iscsi_destroy_conn(cls_conn);
2982 	return NULL;
2983 }
2984 EXPORT_SYMBOL_GPL(iscsi_conn_setup);
2985 
2986 /**
2987  * iscsi_conn_teardown - teardown iscsi connection
2988  * cls_conn: iscsi class connection
2989  *
2990  * TODO: we may need to make this into a two step process
2991  * like scsi-mls remove + put host
2992  */
iscsi_conn_teardown(struct iscsi_cls_conn * cls_conn)2993 void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
2994 {
2995 	struct iscsi_conn *conn = cls_conn->dd_data;
2996 	struct iscsi_session *session = conn->session;
2997 	char *tmp_persistent_address = conn->persistent_address;
2998 	char *tmp_local_ipaddr = conn->local_ipaddr;
2999 
3000 	del_timer_sync(&conn->transport_timer);
3001 
3002 	mutex_lock(&session->eh_mutex);
3003 	spin_lock_bh(&session->frwd_lock);
3004 	conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
3005 	if (session->leadconn == conn) {
3006 		/*
3007 		 * leading connection? then give up on recovery.
3008 		 */
3009 		session->state = ISCSI_STATE_TERMINATE;
3010 		wake_up(&conn->ehwait);
3011 	}
3012 	spin_unlock_bh(&session->frwd_lock);
3013 
3014 	/* flush queued up work because we free the connection below */
3015 	iscsi_suspend_tx(conn);
3016 
3017 	spin_lock_bh(&session->frwd_lock);
3018 	free_pages((unsigned long) conn->data,
3019 		   get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
3020 	/* regular RX path uses back_lock */
3021 	spin_lock_bh(&session->back_lock);
3022 	kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
3023 		    sizeof(void*));
3024 	spin_unlock_bh(&session->back_lock);
3025 	if (session->leadconn == conn)
3026 		session->leadconn = NULL;
3027 	spin_unlock_bh(&session->frwd_lock);
3028 	mutex_unlock(&session->eh_mutex);
3029 
3030 	iscsi_destroy_conn(cls_conn);
3031 	kfree(tmp_persistent_address);
3032 	kfree(tmp_local_ipaddr);
3033 }
3034 EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
3035 
iscsi_conn_start(struct iscsi_cls_conn * cls_conn)3036 int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
3037 {
3038 	struct iscsi_conn *conn = cls_conn->dd_data;
3039 	struct iscsi_session *session = conn->session;
3040 
3041 	if (!session) {
3042 		iscsi_conn_printk(KERN_ERR, conn,
3043 				  "can't start unbound connection\n");
3044 		return -EPERM;
3045 	}
3046 
3047 	if ((session->imm_data_en || !session->initial_r2t_en) &&
3048 	     session->first_burst > session->max_burst) {
3049 		iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: "
3050 				  "first_burst %d max_burst %d\n",
3051 				  session->first_burst, session->max_burst);
3052 		return -EINVAL;
3053 	}
3054 
3055 	if (conn->ping_timeout && !conn->recv_timeout) {
3056 		iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of "
3057 				  "zero. Using 5 seconds\n.");
3058 		conn->recv_timeout = 5;
3059 	}
3060 
3061 	if (conn->recv_timeout && !conn->ping_timeout) {
3062 		iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of "
3063 				  "zero. Using 5 seconds.\n");
3064 		conn->ping_timeout = 5;
3065 	}
3066 
3067 	spin_lock_bh(&session->frwd_lock);
3068 	conn->c_stage = ISCSI_CONN_STARTED;
3069 	session->state = ISCSI_STATE_LOGGED_IN;
3070 	session->queued_cmdsn = session->cmdsn;
3071 
3072 	conn->last_recv = jiffies;
3073 	conn->last_ping = jiffies;
3074 	if (conn->recv_timeout && conn->ping_timeout)
3075 		mod_timer(&conn->transport_timer,
3076 			  jiffies + (conn->recv_timeout * HZ));
3077 
3078 	switch(conn->stop_stage) {
3079 	case STOP_CONN_RECOVER:
3080 		/*
3081 		 * unblock eh_abort() if it is blocked. re-try all
3082 		 * commands after successful recovery
3083 		 */
3084 		conn->stop_stage = 0;
3085 		conn->tmf_state = TMF_INITIAL;
3086 		session->age++;
3087 		if (session->age == 16)
3088 			session->age = 0;
3089 		break;
3090 	case STOP_CONN_TERM:
3091 		conn->stop_stage = 0;
3092 		break;
3093 	default:
3094 		break;
3095 	}
3096 	spin_unlock_bh(&session->frwd_lock);
3097 
3098 	iscsi_unblock_session(session->cls_session);
3099 	wake_up(&conn->ehwait);
3100 	return 0;
3101 }
3102 EXPORT_SYMBOL_GPL(iscsi_conn_start);
3103 
3104 static void
fail_mgmt_tasks(struct iscsi_session * session,struct iscsi_conn * conn)3105 fail_mgmt_tasks(struct iscsi_session *session, struct iscsi_conn *conn)
3106 {
3107 	struct iscsi_task *task;
3108 	int i, state;
3109 
3110 	for (i = 0; i < conn->session->cmds_max; i++) {
3111 		task = conn->session->cmds[i];
3112 		if (task->sc)
3113 			continue;
3114 
3115 		if (task->state == ISCSI_TASK_FREE)
3116 			continue;
3117 
3118 		ISCSI_DBG_SESSION(conn->session,
3119 				  "failing mgmt itt 0x%x state %d\n",
3120 				  task->itt, task->state);
3121 		state = ISCSI_TASK_ABRT_SESS_RECOV;
3122 		if (task->state == ISCSI_TASK_PENDING)
3123 			state = ISCSI_TASK_COMPLETED;
3124 		iscsi_complete_task(task, state);
3125 
3126 	}
3127 }
3128 
iscsi_start_session_recovery(struct iscsi_session * session,struct iscsi_conn * conn,int flag)3129 static void iscsi_start_session_recovery(struct iscsi_session *session,
3130 					 struct iscsi_conn *conn, int flag)
3131 {
3132 	int old_stop_stage;
3133 
3134 	mutex_lock(&session->eh_mutex);
3135 	spin_lock_bh(&session->frwd_lock);
3136 	if (conn->stop_stage == STOP_CONN_TERM) {
3137 		spin_unlock_bh(&session->frwd_lock);
3138 		mutex_unlock(&session->eh_mutex);
3139 		return;
3140 	}
3141 
3142 	/*
3143 	 * When this is called for the in_login state, we only want to clean
3144 	 * up the login task and connection. We do not need to block and set
3145 	 * the recovery state again
3146 	 */
3147 	if (flag == STOP_CONN_TERM)
3148 		session->state = ISCSI_STATE_TERMINATE;
3149 	else if (conn->stop_stage != STOP_CONN_RECOVER)
3150 		session->state = ISCSI_STATE_IN_RECOVERY;
3151 
3152 	old_stop_stage = conn->stop_stage;
3153 	conn->stop_stage = flag;
3154 	spin_unlock_bh(&session->frwd_lock);
3155 
3156 	del_timer_sync(&conn->transport_timer);
3157 	iscsi_suspend_tx(conn);
3158 
3159 	spin_lock_bh(&session->frwd_lock);
3160 	conn->c_stage = ISCSI_CONN_STOPPED;
3161 	spin_unlock_bh(&session->frwd_lock);
3162 
3163 	/*
3164 	 * for connection level recovery we should not calculate
3165 	 * header digest. conn->hdr_size used for optimization
3166 	 * in hdr_extract() and will be re-negotiated at
3167 	 * set_param() time.
3168 	 */
3169 	if (flag == STOP_CONN_RECOVER) {
3170 		conn->hdrdgst_en = 0;
3171 		conn->datadgst_en = 0;
3172 		if (session->state == ISCSI_STATE_IN_RECOVERY &&
3173 		    old_stop_stage != STOP_CONN_RECOVER) {
3174 			ISCSI_DBG_SESSION(session, "blocking session\n");
3175 			iscsi_block_session(session->cls_session);
3176 		}
3177 	}
3178 
3179 	/*
3180 	 * flush queues.
3181 	 */
3182 	spin_lock_bh(&session->frwd_lock);
3183 	fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED);
3184 	fail_mgmt_tasks(session, conn);
3185 	memset(&conn->tmhdr, 0, sizeof(conn->tmhdr));
3186 	spin_unlock_bh(&session->frwd_lock);
3187 	mutex_unlock(&session->eh_mutex);
3188 }
3189 
iscsi_conn_stop(struct iscsi_cls_conn * cls_conn,int flag)3190 void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
3191 {
3192 	struct iscsi_conn *conn = cls_conn->dd_data;
3193 	struct iscsi_session *session = conn->session;
3194 
3195 	switch (flag) {
3196 	case STOP_CONN_RECOVER:
3197 	case STOP_CONN_TERM:
3198 		iscsi_start_session_recovery(session, conn, flag);
3199 		break;
3200 	default:
3201 		iscsi_conn_printk(KERN_ERR, conn,
3202 				  "invalid stop flag %d\n", flag);
3203 	}
3204 }
3205 EXPORT_SYMBOL_GPL(iscsi_conn_stop);
3206 
iscsi_conn_bind(struct iscsi_cls_session * cls_session,struct iscsi_cls_conn * cls_conn,int is_leading)3207 int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
3208 		    struct iscsi_cls_conn *cls_conn, int is_leading)
3209 {
3210 	struct iscsi_session *session = cls_session->dd_data;
3211 	struct iscsi_conn *conn = cls_conn->dd_data;
3212 
3213 	spin_lock_bh(&session->frwd_lock);
3214 	if (is_leading)
3215 		session->leadconn = conn;
3216 	spin_unlock_bh(&session->frwd_lock);
3217 
3218 	/*
3219 	 * Unblock xmitworker(), Login Phase will pass through.
3220 	 */
3221 	clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
3222 	clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
3223 	return 0;
3224 }
3225 EXPORT_SYMBOL_GPL(iscsi_conn_bind);
3226 
iscsi_switch_str_param(char ** param,char * new_val_buf)3227 int iscsi_switch_str_param(char **param, char *new_val_buf)
3228 {
3229 	char *new_val;
3230 
3231 	if (*param) {
3232 		if (!strcmp(*param, new_val_buf))
3233 			return 0;
3234 	}
3235 
3236 	new_val = kstrdup(new_val_buf, GFP_NOIO);
3237 	if (!new_val)
3238 		return -ENOMEM;
3239 
3240 	kfree(*param);
3241 	*param = new_val;
3242 	return 0;
3243 }
3244 EXPORT_SYMBOL_GPL(iscsi_switch_str_param);
3245 
iscsi_set_param(struct iscsi_cls_conn * cls_conn,enum iscsi_param param,char * buf,int buflen)3246 int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
3247 		    enum iscsi_param param, char *buf, int buflen)
3248 {
3249 	struct iscsi_conn *conn = cls_conn->dd_data;
3250 	struct iscsi_session *session = conn->session;
3251 	int val;
3252 
3253 	switch(param) {
3254 	case ISCSI_PARAM_FAST_ABORT:
3255 		sscanf(buf, "%d", &session->fast_abort);
3256 		break;
3257 	case ISCSI_PARAM_ABORT_TMO:
3258 		sscanf(buf, "%d", &session->abort_timeout);
3259 		break;
3260 	case ISCSI_PARAM_LU_RESET_TMO:
3261 		sscanf(buf, "%d", &session->lu_reset_timeout);
3262 		break;
3263 	case ISCSI_PARAM_TGT_RESET_TMO:
3264 		sscanf(buf, "%d", &session->tgt_reset_timeout);
3265 		break;
3266 	case ISCSI_PARAM_PING_TMO:
3267 		sscanf(buf, "%d", &conn->ping_timeout);
3268 		break;
3269 	case ISCSI_PARAM_RECV_TMO:
3270 		sscanf(buf, "%d", &conn->recv_timeout);
3271 		break;
3272 	case ISCSI_PARAM_MAX_RECV_DLENGTH:
3273 		sscanf(buf, "%d", &conn->max_recv_dlength);
3274 		break;
3275 	case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3276 		sscanf(buf, "%d", &conn->max_xmit_dlength);
3277 		break;
3278 	case ISCSI_PARAM_HDRDGST_EN:
3279 		sscanf(buf, "%d", &conn->hdrdgst_en);
3280 		break;
3281 	case ISCSI_PARAM_DATADGST_EN:
3282 		sscanf(buf, "%d", &conn->datadgst_en);
3283 		break;
3284 	case ISCSI_PARAM_INITIAL_R2T_EN:
3285 		sscanf(buf, "%d", &session->initial_r2t_en);
3286 		break;
3287 	case ISCSI_PARAM_MAX_R2T:
3288 		sscanf(buf, "%hu", &session->max_r2t);
3289 		break;
3290 	case ISCSI_PARAM_IMM_DATA_EN:
3291 		sscanf(buf, "%d", &session->imm_data_en);
3292 		break;
3293 	case ISCSI_PARAM_FIRST_BURST:
3294 		sscanf(buf, "%d", &session->first_burst);
3295 		break;
3296 	case ISCSI_PARAM_MAX_BURST:
3297 		sscanf(buf, "%d", &session->max_burst);
3298 		break;
3299 	case ISCSI_PARAM_PDU_INORDER_EN:
3300 		sscanf(buf, "%d", &session->pdu_inorder_en);
3301 		break;
3302 	case ISCSI_PARAM_DATASEQ_INORDER_EN:
3303 		sscanf(buf, "%d", &session->dataseq_inorder_en);
3304 		break;
3305 	case ISCSI_PARAM_ERL:
3306 		sscanf(buf, "%d", &session->erl);
3307 		break;
3308 	case ISCSI_PARAM_EXP_STATSN:
3309 		sscanf(buf, "%u", &conn->exp_statsn);
3310 		break;
3311 	case ISCSI_PARAM_USERNAME:
3312 		return iscsi_switch_str_param(&session->username, buf);
3313 	case ISCSI_PARAM_USERNAME_IN:
3314 		return iscsi_switch_str_param(&session->username_in, buf);
3315 	case ISCSI_PARAM_PASSWORD:
3316 		return iscsi_switch_str_param(&session->password, buf);
3317 	case ISCSI_PARAM_PASSWORD_IN:
3318 		return iscsi_switch_str_param(&session->password_in, buf);
3319 	case ISCSI_PARAM_TARGET_NAME:
3320 		return iscsi_switch_str_param(&session->targetname, buf);
3321 	case ISCSI_PARAM_TARGET_ALIAS:
3322 		return iscsi_switch_str_param(&session->targetalias, buf);
3323 	case ISCSI_PARAM_TPGT:
3324 		sscanf(buf, "%d", &session->tpgt);
3325 		break;
3326 	case ISCSI_PARAM_PERSISTENT_PORT:
3327 		sscanf(buf, "%d", &conn->persistent_port);
3328 		break;
3329 	case ISCSI_PARAM_PERSISTENT_ADDRESS:
3330 		return iscsi_switch_str_param(&conn->persistent_address, buf);
3331 	case ISCSI_PARAM_IFACE_NAME:
3332 		return iscsi_switch_str_param(&session->ifacename, buf);
3333 	case ISCSI_PARAM_INITIATOR_NAME:
3334 		return iscsi_switch_str_param(&session->initiatorname, buf);
3335 	case ISCSI_PARAM_BOOT_ROOT:
3336 		return iscsi_switch_str_param(&session->boot_root, buf);
3337 	case ISCSI_PARAM_BOOT_NIC:
3338 		return iscsi_switch_str_param(&session->boot_nic, buf);
3339 	case ISCSI_PARAM_BOOT_TARGET:
3340 		return iscsi_switch_str_param(&session->boot_target, buf);
3341 	case ISCSI_PARAM_PORTAL_TYPE:
3342 		return iscsi_switch_str_param(&session->portal_type, buf);
3343 	case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3344 		return iscsi_switch_str_param(&session->discovery_parent_type,
3345 					      buf);
3346 	case ISCSI_PARAM_DISCOVERY_SESS:
3347 		sscanf(buf, "%d", &val);
3348 		session->discovery_sess = !!val;
3349 		break;
3350 	case ISCSI_PARAM_LOCAL_IPADDR:
3351 		return iscsi_switch_str_param(&conn->local_ipaddr, buf);
3352 	default:
3353 		return -ENOSYS;
3354 	}
3355 
3356 	return 0;
3357 }
3358 EXPORT_SYMBOL_GPL(iscsi_set_param);
3359 
iscsi_session_get_param(struct iscsi_cls_session * cls_session,enum iscsi_param param,char * buf)3360 int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
3361 			    enum iscsi_param param, char *buf)
3362 {
3363 	struct iscsi_session *session = cls_session->dd_data;
3364 	int len;
3365 
3366 	switch(param) {
3367 	case ISCSI_PARAM_FAST_ABORT:
3368 		len = sysfs_emit(buf, "%d\n", session->fast_abort);
3369 		break;
3370 	case ISCSI_PARAM_ABORT_TMO:
3371 		len = sysfs_emit(buf, "%d\n", session->abort_timeout);
3372 		break;
3373 	case ISCSI_PARAM_LU_RESET_TMO:
3374 		len = sysfs_emit(buf, "%d\n", session->lu_reset_timeout);
3375 		break;
3376 	case ISCSI_PARAM_TGT_RESET_TMO:
3377 		len = sysfs_emit(buf, "%d\n", session->tgt_reset_timeout);
3378 		break;
3379 	case ISCSI_PARAM_INITIAL_R2T_EN:
3380 		len = sysfs_emit(buf, "%d\n", session->initial_r2t_en);
3381 		break;
3382 	case ISCSI_PARAM_MAX_R2T:
3383 		len = sysfs_emit(buf, "%hu\n", session->max_r2t);
3384 		break;
3385 	case ISCSI_PARAM_IMM_DATA_EN:
3386 		len = sysfs_emit(buf, "%d\n", session->imm_data_en);
3387 		break;
3388 	case ISCSI_PARAM_FIRST_BURST:
3389 		len = sysfs_emit(buf, "%u\n", session->first_burst);
3390 		break;
3391 	case ISCSI_PARAM_MAX_BURST:
3392 		len = sysfs_emit(buf, "%u\n", session->max_burst);
3393 		break;
3394 	case ISCSI_PARAM_PDU_INORDER_EN:
3395 		len = sysfs_emit(buf, "%d\n", session->pdu_inorder_en);
3396 		break;
3397 	case ISCSI_PARAM_DATASEQ_INORDER_EN:
3398 		len = sysfs_emit(buf, "%d\n", session->dataseq_inorder_en);
3399 		break;
3400 	case ISCSI_PARAM_DEF_TASKMGMT_TMO:
3401 		len = sysfs_emit(buf, "%d\n", session->def_taskmgmt_tmo);
3402 		break;
3403 	case ISCSI_PARAM_ERL:
3404 		len = sysfs_emit(buf, "%d\n", session->erl);
3405 		break;
3406 	case ISCSI_PARAM_TARGET_NAME:
3407 		len = sysfs_emit(buf, "%s\n", session->targetname);
3408 		break;
3409 	case ISCSI_PARAM_TARGET_ALIAS:
3410 		len = sysfs_emit(buf, "%s\n", session->targetalias);
3411 		break;
3412 	case ISCSI_PARAM_TPGT:
3413 		len = sysfs_emit(buf, "%d\n", session->tpgt);
3414 		break;
3415 	case ISCSI_PARAM_USERNAME:
3416 		len = sysfs_emit(buf, "%s\n", session->username);
3417 		break;
3418 	case ISCSI_PARAM_USERNAME_IN:
3419 		len = sysfs_emit(buf, "%s\n", session->username_in);
3420 		break;
3421 	case ISCSI_PARAM_PASSWORD:
3422 		len = sysfs_emit(buf, "%s\n", session->password);
3423 		break;
3424 	case ISCSI_PARAM_PASSWORD_IN:
3425 		len = sysfs_emit(buf, "%s\n", session->password_in);
3426 		break;
3427 	case ISCSI_PARAM_IFACE_NAME:
3428 		len = sysfs_emit(buf, "%s\n", session->ifacename);
3429 		break;
3430 	case ISCSI_PARAM_INITIATOR_NAME:
3431 		len = sysfs_emit(buf, "%s\n", session->initiatorname);
3432 		break;
3433 	case ISCSI_PARAM_BOOT_ROOT:
3434 		len = sysfs_emit(buf, "%s\n", session->boot_root);
3435 		break;
3436 	case ISCSI_PARAM_BOOT_NIC:
3437 		len = sysfs_emit(buf, "%s\n", session->boot_nic);
3438 		break;
3439 	case ISCSI_PARAM_BOOT_TARGET:
3440 		len = sysfs_emit(buf, "%s\n", session->boot_target);
3441 		break;
3442 	case ISCSI_PARAM_AUTO_SND_TGT_DISABLE:
3443 		len = sysfs_emit(buf, "%u\n", session->auto_snd_tgt_disable);
3444 		break;
3445 	case ISCSI_PARAM_DISCOVERY_SESS:
3446 		len = sysfs_emit(buf, "%u\n", session->discovery_sess);
3447 		break;
3448 	case ISCSI_PARAM_PORTAL_TYPE:
3449 		len = sysfs_emit(buf, "%s\n", session->portal_type);
3450 		break;
3451 	case ISCSI_PARAM_CHAP_AUTH_EN:
3452 		len = sysfs_emit(buf, "%u\n", session->chap_auth_en);
3453 		break;
3454 	case ISCSI_PARAM_DISCOVERY_LOGOUT_EN:
3455 		len = sysfs_emit(buf, "%u\n", session->discovery_logout_en);
3456 		break;
3457 	case ISCSI_PARAM_BIDI_CHAP_EN:
3458 		len = sysfs_emit(buf, "%u\n", session->bidi_chap_en);
3459 		break;
3460 	case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL:
3461 		len = sysfs_emit(buf, "%u\n", session->discovery_auth_optional);
3462 		break;
3463 	case ISCSI_PARAM_DEF_TIME2WAIT:
3464 		len = sysfs_emit(buf, "%d\n", session->time2wait);
3465 		break;
3466 	case ISCSI_PARAM_DEF_TIME2RETAIN:
3467 		len = sysfs_emit(buf, "%d\n", session->time2retain);
3468 		break;
3469 	case ISCSI_PARAM_TSID:
3470 		len = sysfs_emit(buf, "%u\n", session->tsid);
3471 		break;
3472 	case ISCSI_PARAM_ISID:
3473 		len = sysfs_emit(buf, "%02x%02x%02x%02x%02x%02x\n",
3474 			      session->isid[0], session->isid[1],
3475 			      session->isid[2], session->isid[3],
3476 			      session->isid[4], session->isid[5]);
3477 		break;
3478 	case ISCSI_PARAM_DISCOVERY_PARENT_IDX:
3479 		len = sysfs_emit(buf, "%u\n", session->discovery_parent_idx);
3480 		break;
3481 	case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3482 		if (session->discovery_parent_type)
3483 			len = sysfs_emit(buf, "%s\n",
3484 				      session->discovery_parent_type);
3485 		else
3486 			len = sysfs_emit(buf, "\n");
3487 		break;
3488 	default:
3489 		return -ENOSYS;
3490 	}
3491 
3492 	return len;
3493 }
3494 EXPORT_SYMBOL_GPL(iscsi_session_get_param);
3495 
iscsi_conn_get_addr_param(struct sockaddr_storage * addr,enum iscsi_param param,char * buf)3496 int iscsi_conn_get_addr_param(struct sockaddr_storage *addr,
3497 			      enum iscsi_param param, char *buf)
3498 {
3499 	struct sockaddr_in6 *sin6 = NULL;
3500 	struct sockaddr_in *sin = NULL;
3501 	int len;
3502 
3503 	switch (addr->ss_family) {
3504 	case AF_INET:
3505 		sin = (struct sockaddr_in *)addr;
3506 		break;
3507 	case AF_INET6:
3508 		sin6 = (struct sockaddr_in6 *)addr;
3509 		break;
3510 	default:
3511 		return -EINVAL;
3512 	}
3513 
3514 	switch (param) {
3515 	case ISCSI_PARAM_CONN_ADDRESS:
3516 	case ISCSI_HOST_PARAM_IPADDRESS:
3517 		if (sin)
3518 			len = sysfs_emit(buf, "%pI4\n", &sin->sin_addr.s_addr);
3519 		else
3520 			len = sysfs_emit(buf, "%pI6\n", &sin6->sin6_addr);
3521 		break;
3522 	case ISCSI_PARAM_CONN_PORT:
3523 	case ISCSI_PARAM_LOCAL_PORT:
3524 		if (sin)
3525 			len = sysfs_emit(buf, "%hu\n", be16_to_cpu(sin->sin_port));
3526 		else
3527 			len = sysfs_emit(buf, "%hu\n",
3528 				      be16_to_cpu(sin6->sin6_port));
3529 		break;
3530 	default:
3531 		return -EINVAL;
3532 	}
3533 
3534 	return len;
3535 }
3536 EXPORT_SYMBOL_GPL(iscsi_conn_get_addr_param);
3537 
iscsi_conn_get_param(struct iscsi_cls_conn * cls_conn,enum iscsi_param param,char * buf)3538 int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
3539 			 enum iscsi_param param, char *buf)
3540 {
3541 	struct iscsi_conn *conn = cls_conn->dd_data;
3542 	int len;
3543 
3544 	switch(param) {
3545 	case ISCSI_PARAM_PING_TMO:
3546 		len = sysfs_emit(buf, "%u\n", conn->ping_timeout);
3547 		break;
3548 	case ISCSI_PARAM_RECV_TMO:
3549 		len = sysfs_emit(buf, "%u\n", conn->recv_timeout);
3550 		break;
3551 	case ISCSI_PARAM_MAX_RECV_DLENGTH:
3552 		len = sysfs_emit(buf, "%u\n", conn->max_recv_dlength);
3553 		break;
3554 	case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3555 		len = sysfs_emit(buf, "%u\n", conn->max_xmit_dlength);
3556 		break;
3557 	case ISCSI_PARAM_HDRDGST_EN:
3558 		len = sysfs_emit(buf, "%d\n", conn->hdrdgst_en);
3559 		break;
3560 	case ISCSI_PARAM_DATADGST_EN:
3561 		len = sysfs_emit(buf, "%d\n", conn->datadgst_en);
3562 		break;
3563 	case ISCSI_PARAM_IFMARKER_EN:
3564 		len = sysfs_emit(buf, "%d\n", conn->ifmarker_en);
3565 		break;
3566 	case ISCSI_PARAM_OFMARKER_EN:
3567 		len = sysfs_emit(buf, "%d\n", conn->ofmarker_en);
3568 		break;
3569 	case ISCSI_PARAM_EXP_STATSN:
3570 		len = sysfs_emit(buf, "%u\n", conn->exp_statsn);
3571 		break;
3572 	case ISCSI_PARAM_PERSISTENT_PORT:
3573 		len = sysfs_emit(buf, "%d\n", conn->persistent_port);
3574 		break;
3575 	case ISCSI_PARAM_PERSISTENT_ADDRESS:
3576 		len = sysfs_emit(buf, "%s\n", conn->persistent_address);
3577 		break;
3578 	case ISCSI_PARAM_STATSN:
3579 		len = sysfs_emit(buf, "%u\n", conn->statsn);
3580 		break;
3581 	case ISCSI_PARAM_MAX_SEGMENT_SIZE:
3582 		len = sysfs_emit(buf, "%u\n", conn->max_segment_size);
3583 		break;
3584 	case ISCSI_PARAM_KEEPALIVE_TMO:
3585 		len = sysfs_emit(buf, "%u\n", conn->keepalive_tmo);
3586 		break;
3587 	case ISCSI_PARAM_LOCAL_PORT:
3588 		len = sysfs_emit(buf, "%u\n", conn->local_port);
3589 		break;
3590 	case ISCSI_PARAM_TCP_TIMESTAMP_STAT:
3591 		len = sysfs_emit(buf, "%u\n", conn->tcp_timestamp_stat);
3592 		break;
3593 	case ISCSI_PARAM_TCP_NAGLE_DISABLE:
3594 		len = sysfs_emit(buf, "%u\n", conn->tcp_nagle_disable);
3595 		break;
3596 	case ISCSI_PARAM_TCP_WSF_DISABLE:
3597 		len = sysfs_emit(buf, "%u\n", conn->tcp_wsf_disable);
3598 		break;
3599 	case ISCSI_PARAM_TCP_TIMER_SCALE:
3600 		len = sysfs_emit(buf, "%u\n", conn->tcp_timer_scale);
3601 		break;
3602 	case ISCSI_PARAM_TCP_TIMESTAMP_EN:
3603 		len = sysfs_emit(buf, "%u\n", conn->tcp_timestamp_en);
3604 		break;
3605 	case ISCSI_PARAM_IP_FRAGMENT_DISABLE:
3606 		len = sysfs_emit(buf, "%u\n", conn->fragment_disable);
3607 		break;
3608 	case ISCSI_PARAM_IPV4_TOS:
3609 		len = sysfs_emit(buf, "%u\n", conn->ipv4_tos);
3610 		break;
3611 	case ISCSI_PARAM_IPV6_TC:
3612 		len = sysfs_emit(buf, "%u\n", conn->ipv6_traffic_class);
3613 		break;
3614 	case ISCSI_PARAM_IPV6_FLOW_LABEL:
3615 		len = sysfs_emit(buf, "%u\n", conn->ipv6_flow_label);
3616 		break;
3617 	case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6:
3618 		len = sysfs_emit(buf, "%u\n", conn->is_fw_assigned_ipv6);
3619 		break;
3620 	case ISCSI_PARAM_TCP_XMIT_WSF:
3621 		len = sysfs_emit(buf, "%u\n", conn->tcp_xmit_wsf);
3622 		break;
3623 	case ISCSI_PARAM_TCP_RECV_WSF:
3624 		len = sysfs_emit(buf, "%u\n", conn->tcp_recv_wsf);
3625 		break;
3626 	case ISCSI_PARAM_LOCAL_IPADDR:
3627 		len = sysfs_emit(buf, "%s\n", conn->local_ipaddr);
3628 		break;
3629 	default:
3630 		return -ENOSYS;
3631 	}
3632 
3633 	return len;
3634 }
3635 EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
3636 
iscsi_host_get_param(struct Scsi_Host * shost,enum iscsi_host_param param,char * buf)3637 int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3638 			 char *buf)
3639 {
3640 	struct iscsi_host *ihost = shost_priv(shost);
3641 	int len;
3642 
3643 	switch (param) {
3644 	case ISCSI_HOST_PARAM_NETDEV_NAME:
3645 		len = sysfs_emit(buf, "%s\n", ihost->netdev);
3646 		break;
3647 	case ISCSI_HOST_PARAM_HWADDRESS:
3648 		len = sysfs_emit(buf, "%s\n", ihost->hwaddress);
3649 		break;
3650 	case ISCSI_HOST_PARAM_INITIATOR_NAME:
3651 		len = sysfs_emit(buf, "%s\n", ihost->initiatorname);
3652 		break;
3653 	default:
3654 		return -ENOSYS;
3655 	}
3656 
3657 	return len;
3658 }
3659 EXPORT_SYMBOL_GPL(iscsi_host_get_param);
3660 
iscsi_host_set_param(struct Scsi_Host * shost,enum iscsi_host_param param,char * buf,int buflen)3661 int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3662 			 char *buf, int buflen)
3663 {
3664 	struct iscsi_host *ihost = shost_priv(shost);
3665 
3666 	switch (param) {
3667 	case ISCSI_HOST_PARAM_NETDEV_NAME:
3668 		return iscsi_switch_str_param(&ihost->netdev, buf);
3669 	case ISCSI_HOST_PARAM_HWADDRESS:
3670 		return iscsi_switch_str_param(&ihost->hwaddress, buf);
3671 	case ISCSI_HOST_PARAM_INITIATOR_NAME:
3672 		return iscsi_switch_str_param(&ihost->initiatorname, buf);
3673 	default:
3674 		return -ENOSYS;
3675 	}
3676 
3677 	return 0;
3678 }
3679 EXPORT_SYMBOL_GPL(iscsi_host_set_param);
3680 
3681 MODULE_AUTHOR("Mike Christie");
3682 MODULE_DESCRIPTION("iSCSI library functions");
3683 MODULE_LICENSE("GPL");
3684