GNU Linux-libre 4.4.288-gnu1
[releases.git] / drivers / scsi / libiscsi.c
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
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
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
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  **/
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
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  */
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
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  */
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  */
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  */
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
517 void __iscsi_get_task(struct iscsi_task *task)
518 {
519         atomic_inc(&task->refcount);
520 }
521 EXPORT_SYMBOL_GPL(__iscsi_get_task);
522
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
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  */
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  */
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  */
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
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 *
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
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  **/
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
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
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
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
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
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  */
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  */
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
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
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  */
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
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
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
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
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  */
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  **/
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
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
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
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
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
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
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  */
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  */
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  */
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
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  */
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
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
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
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
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
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
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
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  */
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
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  */
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  */
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
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
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  */
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  */
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
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  */
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
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
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 *
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  */
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 *
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  */
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
2998         del_timer_sync(&conn->transport_timer);
2999
3000         mutex_lock(&session->eh_mutex);
3001         spin_lock_bh(&session->frwd_lock);
3002         conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
3003         if (session->leadconn == conn) {
3004                 /*
3005                  * leading connection? then give up on recovery.
3006                  */
3007                 session->state = ISCSI_STATE_TERMINATE;
3008                 wake_up(&conn->ehwait);
3009         }
3010         spin_unlock_bh(&session->frwd_lock);
3011
3012         /* flush queued up work because we free the connection below */
3013         iscsi_suspend_tx(conn);
3014
3015         spin_lock_bh(&session->frwd_lock);
3016         free_pages((unsigned long) conn->data,
3017                    get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
3018         kfree(conn->persistent_address);
3019         kfree(conn->local_ipaddr);
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 }
3032 EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
3033
3034 int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
3035 {
3036         struct iscsi_conn *conn = cls_conn->dd_data;
3037         struct iscsi_session *session = conn->session;
3038
3039         if (!session) {
3040                 iscsi_conn_printk(KERN_ERR, conn,
3041                                   "can't start unbound connection\n");
3042                 return -EPERM;
3043         }
3044
3045         if ((session->imm_data_en || !session->initial_r2t_en) &&
3046              session->first_burst > session->max_burst) {
3047                 iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: "
3048                                   "first_burst %d max_burst %d\n",
3049                                   session->first_burst, session->max_burst);
3050                 return -EINVAL;
3051         }
3052
3053         if (conn->ping_timeout && !conn->recv_timeout) {
3054                 iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of "
3055                                   "zero. Using 5 seconds\n.");
3056                 conn->recv_timeout = 5;
3057         }
3058
3059         if (conn->recv_timeout && !conn->ping_timeout) {
3060                 iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of "
3061                                   "zero. Using 5 seconds.\n");
3062                 conn->ping_timeout = 5;
3063         }
3064
3065         spin_lock_bh(&session->frwd_lock);
3066         conn->c_stage = ISCSI_CONN_STARTED;
3067         session->state = ISCSI_STATE_LOGGED_IN;
3068         session->queued_cmdsn = session->cmdsn;
3069
3070         conn->last_recv = jiffies;
3071         conn->last_ping = jiffies;
3072         if (conn->recv_timeout && conn->ping_timeout)
3073                 mod_timer(&conn->transport_timer,
3074                           jiffies + (conn->recv_timeout * HZ));
3075
3076         switch(conn->stop_stage) {
3077         case STOP_CONN_RECOVER:
3078                 /*
3079                  * unblock eh_abort() if it is blocked. re-try all
3080                  * commands after successful recovery
3081                  */
3082                 conn->stop_stage = 0;
3083                 conn->tmf_state = TMF_INITIAL;
3084                 session->age++;
3085                 if (session->age == 16)
3086                         session->age = 0;
3087                 break;
3088         case STOP_CONN_TERM:
3089                 conn->stop_stage = 0;
3090                 break;
3091         default:
3092                 break;
3093         }
3094         spin_unlock_bh(&session->frwd_lock);
3095
3096         iscsi_unblock_session(session->cls_session);
3097         wake_up(&conn->ehwait);
3098         return 0;
3099 }
3100 EXPORT_SYMBOL_GPL(iscsi_conn_start);
3101
3102 static void
3103 fail_mgmt_tasks(struct iscsi_session *session, struct iscsi_conn *conn)
3104 {
3105         struct iscsi_task *task;
3106         int i, state;
3107
3108         for (i = 0; i < conn->session->cmds_max; i++) {
3109                 task = conn->session->cmds[i];
3110                 if (task->sc)
3111                         continue;
3112
3113                 if (task->state == ISCSI_TASK_FREE)
3114                         continue;
3115
3116                 ISCSI_DBG_SESSION(conn->session,
3117                                   "failing mgmt itt 0x%x state %d\n",
3118                                   task->itt, task->state);
3119                 state = ISCSI_TASK_ABRT_SESS_RECOV;
3120                 if (task->state == ISCSI_TASK_PENDING)
3121                         state = ISCSI_TASK_COMPLETED;
3122                 iscsi_complete_task(task, state);
3123
3124         }
3125 }
3126
3127 static void iscsi_start_session_recovery(struct iscsi_session *session,
3128                                          struct iscsi_conn *conn, int flag)
3129 {
3130         int old_stop_stage;
3131
3132         mutex_lock(&session->eh_mutex);
3133         spin_lock_bh(&session->frwd_lock);
3134         if (conn->stop_stage == STOP_CONN_TERM) {
3135                 spin_unlock_bh(&session->frwd_lock);
3136                 mutex_unlock(&session->eh_mutex);
3137                 return;
3138         }
3139
3140         /*
3141          * When this is called for the in_login state, we only want to clean
3142          * up the login task and connection. We do not need to block and set
3143          * the recovery state again
3144          */
3145         if (flag == STOP_CONN_TERM)
3146                 session->state = ISCSI_STATE_TERMINATE;
3147         else if (conn->stop_stage != STOP_CONN_RECOVER)
3148                 session->state = ISCSI_STATE_IN_RECOVERY;
3149
3150         old_stop_stage = conn->stop_stage;
3151         conn->stop_stage = flag;
3152         spin_unlock_bh(&session->frwd_lock);
3153
3154         del_timer_sync(&conn->transport_timer);
3155         iscsi_suspend_tx(conn);
3156
3157         spin_lock_bh(&session->frwd_lock);
3158         conn->c_stage = ISCSI_CONN_STOPPED;
3159         spin_unlock_bh(&session->frwd_lock);
3160
3161         /*
3162          * for connection level recovery we should not calculate
3163          * header digest. conn->hdr_size used for optimization
3164          * in hdr_extract() and will be re-negotiated at
3165          * set_param() time.
3166          */
3167         if (flag == STOP_CONN_RECOVER) {
3168                 conn->hdrdgst_en = 0;
3169                 conn->datadgst_en = 0;
3170                 if (session->state == ISCSI_STATE_IN_RECOVERY &&
3171                     old_stop_stage != STOP_CONN_RECOVER) {
3172                         ISCSI_DBG_SESSION(session, "blocking session\n");
3173                         iscsi_block_session(session->cls_session);
3174                 }
3175         }
3176
3177         /*
3178          * flush queues.
3179          */
3180         spin_lock_bh(&session->frwd_lock);
3181         fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED);
3182         fail_mgmt_tasks(session, conn);
3183         memset(&conn->tmhdr, 0, sizeof(conn->tmhdr));
3184         spin_unlock_bh(&session->frwd_lock);
3185         mutex_unlock(&session->eh_mutex);
3186 }
3187
3188 void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
3189 {
3190         struct iscsi_conn *conn = cls_conn->dd_data;
3191         struct iscsi_session *session = conn->session;
3192
3193         switch (flag) {
3194         case STOP_CONN_RECOVER:
3195         case STOP_CONN_TERM:
3196                 iscsi_start_session_recovery(session, conn, flag);
3197                 break;
3198         default:
3199                 iscsi_conn_printk(KERN_ERR, conn,
3200                                   "invalid stop flag %d\n", flag);
3201         }
3202 }
3203 EXPORT_SYMBOL_GPL(iscsi_conn_stop);
3204
3205 int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
3206                     struct iscsi_cls_conn *cls_conn, int is_leading)
3207 {
3208         struct iscsi_session *session = cls_session->dd_data;
3209         struct iscsi_conn *conn = cls_conn->dd_data;
3210
3211         spin_lock_bh(&session->frwd_lock);
3212         if (is_leading)
3213                 session->leadconn = conn;
3214         spin_unlock_bh(&session->frwd_lock);
3215
3216         /*
3217          * Unblock xmitworker(), Login Phase will pass through.
3218          */
3219         clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
3220         clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
3221         return 0;
3222 }
3223 EXPORT_SYMBOL_GPL(iscsi_conn_bind);
3224
3225 int iscsi_switch_str_param(char **param, char *new_val_buf)
3226 {
3227         char *new_val;
3228
3229         if (*param) {
3230                 if (!strcmp(*param, new_val_buf))
3231                         return 0;
3232         }
3233
3234         new_val = kstrdup(new_val_buf, GFP_NOIO);
3235         if (!new_val)
3236                 return -ENOMEM;
3237
3238         kfree(*param);
3239         *param = new_val;
3240         return 0;
3241 }
3242 EXPORT_SYMBOL_GPL(iscsi_switch_str_param);
3243
3244 int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
3245                     enum iscsi_param param, char *buf, int buflen)
3246 {
3247         struct iscsi_conn *conn = cls_conn->dd_data;
3248         struct iscsi_session *session = conn->session;
3249         int val;
3250
3251         switch(param) {
3252         case ISCSI_PARAM_FAST_ABORT:
3253                 sscanf(buf, "%d", &session->fast_abort);
3254                 break;
3255         case ISCSI_PARAM_ABORT_TMO:
3256                 sscanf(buf, "%d", &session->abort_timeout);
3257                 break;
3258         case ISCSI_PARAM_LU_RESET_TMO:
3259                 sscanf(buf, "%d", &session->lu_reset_timeout);
3260                 break;
3261         case ISCSI_PARAM_TGT_RESET_TMO:
3262                 sscanf(buf, "%d", &session->tgt_reset_timeout);
3263                 break;
3264         case ISCSI_PARAM_PING_TMO:
3265                 sscanf(buf, "%d", &conn->ping_timeout);
3266                 break;
3267         case ISCSI_PARAM_RECV_TMO:
3268                 sscanf(buf, "%d", &conn->recv_timeout);
3269                 break;
3270         case ISCSI_PARAM_MAX_RECV_DLENGTH:
3271                 sscanf(buf, "%d", &conn->max_recv_dlength);
3272                 break;
3273         case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3274                 sscanf(buf, "%d", &conn->max_xmit_dlength);
3275                 break;
3276         case ISCSI_PARAM_HDRDGST_EN:
3277                 sscanf(buf, "%d", &conn->hdrdgst_en);
3278                 break;
3279         case ISCSI_PARAM_DATADGST_EN:
3280                 sscanf(buf, "%d", &conn->datadgst_en);
3281                 break;
3282         case ISCSI_PARAM_INITIAL_R2T_EN:
3283                 sscanf(buf, "%d", &session->initial_r2t_en);
3284                 break;
3285         case ISCSI_PARAM_MAX_R2T:
3286                 sscanf(buf, "%hu", &session->max_r2t);
3287                 break;
3288         case ISCSI_PARAM_IMM_DATA_EN:
3289                 sscanf(buf, "%d", &session->imm_data_en);
3290                 break;
3291         case ISCSI_PARAM_FIRST_BURST:
3292                 sscanf(buf, "%d", &session->first_burst);
3293                 break;
3294         case ISCSI_PARAM_MAX_BURST:
3295                 sscanf(buf, "%d", &session->max_burst);
3296                 break;
3297         case ISCSI_PARAM_PDU_INORDER_EN:
3298                 sscanf(buf, "%d", &session->pdu_inorder_en);
3299                 break;
3300         case ISCSI_PARAM_DATASEQ_INORDER_EN:
3301                 sscanf(buf, "%d", &session->dataseq_inorder_en);
3302                 break;
3303         case ISCSI_PARAM_ERL:
3304                 sscanf(buf, "%d", &session->erl);
3305                 break;
3306         case ISCSI_PARAM_EXP_STATSN:
3307                 sscanf(buf, "%u", &conn->exp_statsn);
3308                 break;
3309         case ISCSI_PARAM_USERNAME:
3310                 return iscsi_switch_str_param(&session->username, buf);
3311         case ISCSI_PARAM_USERNAME_IN:
3312                 return iscsi_switch_str_param(&session->username_in, buf);
3313         case ISCSI_PARAM_PASSWORD:
3314                 return iscsi_switch_str_param(&session->password, buf);
3315         case ISCSI_PARAM_PASSWORD_IN:
3316                 return iscsi_switch_str_param(&session->password_in, buf);
3317         case ISCSI_PARAM_TARGET_NAME:
3318                 return iscsi_switch_str_param(&session->targetname, buf);
3319         case ISCSI_PARAM_TARGET_ALIAS:
3320                 return iscsi_switch_str_param(&session->targetalias, buf);
3321         case ISCSI_PARAM_TPGT:
3322                 sscanf(buf, "%d", &session->tpgt);
3323                 break;
3324         case ISCSI_PARAM_PERSISTENT_PORT:
3325                 sscanf(buf, "%d", &conn->persistent_port);
3326                 break;
3327         case ISCSI_PARAM_PERSISTENT_ADDRESS:
3328                 return iscsi_switch_str_param(&conn->persistent_address, buf);
3329         case ISCSI_PARAM_IFACE_NAME:
3330                 return iscsi_switch_str_param(&session->ifacename, buf);
3331         case ISCSI_PARAM_INITIATOR_NAME:
3332                 return iscsi_switch_str_param(&session->initiatorname, buf);
3333         case ISCSI_PARAM_BOOT_ROOT:
3334                 return iscsi_switch_str_param(&session->boot_root, buf);
3335         case ISCSI_PARAM_BOOT_NIC:
3336                 return iscsi_switch_str_param(&session->boot_nic, buf);
3337         case ISCSI_PARAM_BOOT_TARGET:
3338                 return iscsi_switch_str_param(&session->boot_target, buf);
3339         case ISCSI_PARAM_PORTAL_TYPE:
3340                 return iscsi_switch_str_param(&session->portal_type, buf);
3341         case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3342                 return iscsi_switch_str_param(&session->discovery_parent_type,
3343                                               buf);
3344         case ISCSI_PARAM_DISCOVERY_SESS:
3345                 sscanf(buf, "%d", &val);
3346                 session->discovery_sess = !!val;
3347                 break;
3348         case ISCSI_PARAM_LOCAL_IPADDR:
3349                 return iscsi_switch_str_param(&conn->local_ipaddr, buf);
3350         default:
3351                 return -ENOSYS;
3352         }
3353
3354         return 0;
3355 }
3356 EXPORT_SYMBOL_GPL(iscsi_set_param);
3357
3358 int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
3359                             enum iscsi_param param, char *buf)
3360 {
3361         struct iscsi_session *session = cls_session->dd_data;
3362         int len;
3363
3364         switch(param) {
3365         case ISCSI_PARAM_FAST_ABORT:
3366                 len = sysfs_emit(buf, "%d\n", session->fast_abort);
3367                 break;
3368         case ISCSI_PARAM_ABORT_TMO:
3369                 len = sysfs_emit(buf, "%d\n", session->abort_timeout);
3370                 break;
3371         case ISCSI_PARAM_LU_RESET_TMO:
3372                 len = sysfs_emit(buf, "%d\n", session->lu_reset_timeout);
3373                 break;
3374         case ISCSI_PARAM_TGT_RESET_TMO:
3375                 len = sysfs_emit(buf, "%d\n", session->tgt_reset_timeout);
3376                 break;
3377         case ISCSI_PARAM_INITIAL_R2T_EN:
3378                 len = sysfs_emit(buf, "%d\n", session->initial_r2t_en);
3379                 break;
3380         case ISCSI_PARAM_MAX_R2T:
3381                 len = sysfs_emit(buf, "%hu\n", session->max_r2t);
3382                 break;
3383         case ISCSI_PARAM_IMM_DATA_EN:
3384                 len = sysfs_emit(buf, "%d\n", session->imm_data_en);
3385                 break;
3386         case ISCSI_PARAM_FIRST_BURST:
3387                 len = sysfs_emit(buf, "%u\n", session->first_burst);
3388                 break;
3389         case ISCSI_PARAM_MAX_BURST:
3390                 len = sysfs_emit(buf, "%u\n", session->max_burst);
3391                 break;
3392         case ISCSI_PARAM_PDU_INORDER_EN:
3393                 len = sysfs_emit(buf, "%d\n", session->pdu_inorder_en);
3394                 break;
3395         case ISCSI_PARAM_DATASEQ_INORDER_EN:
3396                 len = sysfs_emit(buf, "%d\n", session->dataseq_inorder_en);
3397                 break;
3398         case ISCSI_PARAM_DEF_TASKMGMT_TMO:
3399                 len = sysfs_emit(buf, "%d\n", session->def_taskmgmt_tmo);
3400                 break;
3401         case ISCSI_PARAM_ERL:
3402                 len = sysfs_emit(buf, "%d\n", session->erl);
3403                 break;
3404         case ISCSI_PARAM_TARGET_NAME:
3405                 len = sysfs_emit(buf, "%s\n", session->targetname);
3406                 break;
3407         case ISCSI_PARAM_TARGET_ALIAS:
3408                 len = sysfs_emit(buf, "%s\n", session->targetalias);
3409                 break;
3410         case ISCSI_PARAM_TPGT:
3411                 len = sysfs_emit(buf, "%d\n", session->tpgt);
3412                 break;
3413         case ISCSI_PARAM_USERNAME:
3414                 len = sysfs_emit(buf, "%s\n", session->username);
3415                 break;
3416         case ISCSI_PARAM_USERNAME_IN:
3417                 len = sysfs_emit(buf, "%s\n", session->username_in);
3418                 break;
3419         case ISCSI_PARAM_PASSWORD:
3420                 len = sysfs_emit(buf, "%s\n", session->password);
3421                 break;
3422         case ISCSI_PARAM_PASSWORD_IN:
3423                 len = sysfs_emit(buf, "%s\n", session->password_in);
3424                 break;
3425         case ISCSI_PARAM_IFACE_NAME:
3426                 len = sysfs_emit(buf, "%s\n", session->ifacename);
3427                 break;
3428         case ISCSI_PARAM_INITIATOR_NAME:
3429                 len = sysfs_emit(buf, "%s\n", session->initiatorname);
3430                 break;
3431         case ISCSI_PARAM_BOOT_ROOT:
3432                 len = sysfs_emit(buf, "%s\n", session->boot_root);
3433                 break;
3434         case ISCSI_PARAM_BOOT_NIC:
3435                 len = sysfs_emit(buf, "%s\n", session->boot_nic);
3436                 break;
3437         case ISCSI_PARAM_BOOT_TARGET:
3438                 len = sysfs_emit(buf, "%s\n", session->boot_target);
3439                 break;
3440         case ISCSI_PARAM_AUTO_SND_TGT_DISABLE:
3441                 len = sysfs_emit(buf, "%u\n", session->auto_snd_tgt_disable);
3442                 break;
3443         case ISCSI_PARAM_DISCOVERY_SESS:
3444                 len = sysfs_emit(buf, "%u\n", session->discovery_sess);
3445                 break;
3446         case ISCSI_PARAM_PORTAL_TYPE:
3447                 len = sysfs_emit(buf, "%s\n", session->portal_type);
3448                 break;
3449         case ISCSI_PARAM_CHAP_AUTH_EN:
3450                 len = sysfs_emit(buf, "%u\n", session->chap_auth_en);
3451                 break;
3452         case ISCSI_PARAM_DISCOVERY_LOGOUT_EN:
3453                 len = sysfs_emit(buf, "%u\n", session->discovery_logout_en);
3454                 break;
3455         case ISCSI_PARAM_BIDI_CHAP_EN:
3456                 len = sysfs_emit(buf, "%u\n", session->bidi_chap_en);
3457                 break;
3458         case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL:
3459                 len = sysfs_emit(buf, "%u\n", session->discovery_auth_optional);
3460                 break;
3461         case ISCSI_PARAM_DEF_TIME2WAIT:
3462                 len = sysfs_emit(buf, "%d\n", session->time2wait);
3463                 break;
3464         case ISCSI_PARAM_DEF_TIME2RETAIN:
3465                 len = sysfs_emit(buf, "%d\n", session->time2retain);
3466                 break;
3467         case ISCSI_PARAM_TSID:
3468                 len = sysfs_emit(buf, "%u\n", session->tsid);
3469                 break;
3470         case ISCSI_PARAM_ISID:
3471                 len = sysfs_emit(buf, "%02x%02x%02x%02x%02x%02x\n",
3472                               session->isid[0], session->isid[1],
3473                               session->isid[2], session->isid[3],
3474                               session->isid[4], session->isid[5]);
3475                 break;
3476         case ISCSI_PARAM_DISCOVERY_PARENT_IDX:
3477                 len = sysfs_emit(buf, "%u\n", session->discovery_parent_idx);
3478                 break;
3479         case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3480                 if (session->discovery_parent_type)
3481                         len = sysfs_emit(buf, "%s\n",
3482                                       session->discovery_parent_type);
3483                 else
3484                         len = sysfs_emit(buf, "\n");
3485                 break;
3486         default:
3487                 return -ENOSYS;
3488         }
3489
3490         return len;
3491 }
3492 EXPORT_SYMBOL_GPL(iscsi_session_get_param);
3493
3494 int iscsi_conn_get_addr_param(struct sockaddr_storage *addr,
3495                               enum iscsi_param param, char *buf)
3496 {
3497         struct sockaddr_in6 *sin6 = NULL;
3498         struct sockaddr_in *sin = NULL;
3499         int len;
3500
3501         switch (addr->ss_family) {
3502         case AF_INET:
3503                 sin = (struct sockaddr_in *)addr;
3504                 break;
3505         case AF_INET6:
3506                 sin6 = (struct sockaddr_in6 *)addr;
3507                 break;
3508         default:
3509                 return -EINVAL;
3510         }
3511
3512         switch (param) {
3513         case ISCSI_PARAM_CONN_ADDRESS:
3514         case ISCSI_HOST_PARAM_IPADDRESS:
3515                 if (sin)
3516                         len = sysfs_emit(buf, "%pI4\n", &sin->sin_addr.s_addr);
3517                 else
3518                         len = sysfs_emit(buf, "%pI6\n", &sin6->sin6_addr);
3519                 break;
3520         case ISCSI_PARAM_CONN_PORT:
3521         case ISCSI_PARAM_LOCAL_PORT:
3522                 if (sin)
3523                         len = sysfs_emit(buf, "%hu\n", be16_to_cpu(sin->sin_port));
3524                 else
3525                         len = sysfs_emit(buf, "%hu\n",
3526                                       be16_to_cpu(sin6->sin6_port));
3527                 break;
3528         default:
3529                 return -EINVAL;
3530         }
3531
3532         return len;
3533 }
3534 EXPORT_SYMBOL_GPL(iscsi_conn_get_addr_param);
3535
3536 int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
3537                          enum iscsi_param param, char *buf)
3538 {
3539         struct iscsi_conn *conn = cls_conn->dd_data;
3540         int len;
3541
3542         switch(param) {
3543         case ISCSI_PARAM_PING_TMO:
3544                 len = sysfs_emit(buf, "%u\n", conn->ping_timeout);
3545                 break;
3546         case ISCSI_PARAM_RECV_TMO:
3547                 len = sysfs_emit(buf, "%u\n", conn->recv_timeout);
3548                 break;
3549         case ISCSI_PARAM_MAX_RECV_DLENGTH:
3550                 len = sysfs_emit(buf, "%u\n", conn->max_recv_dlength);
3551                 break;
3552         case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3553                 len = sysfs_emit(buf, "%u\n", conn->max_xmit_dlength);
3554                 break;
3555         case ISCSI_PARAM_HDRDGST_EN:
3556                 len = sysfs_emit(buf, "%d\n", conn->hdrdgst_en);
3557                 break;
3558         case ISCSI_PARAM_DATADGST_EN:
3559                 len = sysfs_emit(buf, "%d\n", conn->datadgst_en);
3560                 break;
3561         case ISCSI_PARAM_IFMARKER_EN:
3562                 len = sysfs_emit(buf, "%d\n", conn->ifmarker_en);
3563                 break;
3564         case ISCSI_PARAM_OFMARKER_EN:
3565                 len = sysfs_emit(buf, "%d\n", conn->ofmarker_en);
3566                 break;
3567         case ISCSI_PARAM_EXP_STATSN:
3568                 len = sysfs_emit(buf, "%u\n", conn->exp_statsn);
3569                 break;
3570         case ISCSI_PARAM_PERSISTENT_PORT:
3571                 len = sysfs_emit(buf, "%d\n", conn->persistent_port);
3572                 break;
3573         case ISCSI_PARAM_PERSISTENT_ADDRESS:
3574                 len = sysfs_emit(buf, "%s\n", conn->persistent_address);
3575                 break;
3576         case ISCSI_PARAM_STATSN:
3577                 len = sysfs_emit(buf, "%u\n", conn->statsn);
3578                 break;
3579         case ISCSI_PARAM_MAX_SEGMENT_SIZE:
3580                 len = sysfs_emit(buf, "%u\n", conn->max_segment_size);
3581                 break;
3582         case ISCSI_PARAM_KEEPALIVE_TMO:
3583                 len = sysfs_emit(buf, "%u\n", conn->keepalive_tmo);
3584                 break;
3585         case ISCSI_PARAM_LOCAL_PORT:
3586                 len = sysfs_emit(buf, "%u\n", conn->local_port);
3587                 break;
3588         case ISCSI_PARAM_TCP_TIMESTAMP_STAT:
3589                 len = sysfs_emit(buf, "%u\n", conn->tcp_timestamp_stat);
3590                 break;
3591         case ISCSI_PARAM_TCP_NAGLE_DISABLE:
3592                 len = sysfs_emit(buf, "%u\n", conn->tcp_nagle_disable);
3593                 break;
3594         case ISCSI_PARAM_TCP_WSF_DISABLE:
3595                 len = sysfs_emit(buf, "%u\n", conn->tcp_wsf_disable);
3596                 break;
3597         case ISCSI_PARAM_TCP_TIMER_SCALE:
3598                 len = sysfs_emit(buf, "%u\n", conn->tcp_timer_scale);
3599                 break;
3600         case ISCSI_PARAM_TCP_TIMESTAMP_EN:
3601                 len = sysfs_emit(buf, "%u\n", conn->tcp_timestamp_en);
3602                 break;
3603         case ISCSI_PARAM_IP_FRAGMENT_DISABLE:
3604                 len = sysfs_emit(buf, "%u\n", conn->fragment_disable);
3605                 break;
3606         case ISCSI_PARAM_IPV4_TOS:
3607                 len = sysfs_emit(buf, "%u\n", conn->ipv4_tos);
3608                 break;
3609         case ISCSI_PARAM_IPV6_TC:
3610                 len = sysfs_emit(buf, "%u\n", conn->ipv6_traffic_class);
3611                 break;
3612         case ISCSI_PARAM_IPV6_FLOW_LABEL:
3613                 len = sysfs_emit(buf, "%u\n", conn->ipv6_flow_label);
3614                 break;
3615         case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6:
3616                 len = sysfs_emit(buf, "%u\n", conn->is_fw_assigned_ipv6);
3617                 break;
3618         case ISCSI_PARAM_TCP_XMIT_WSF:
3619                 len = sysfs_emit(buf, "%u\n", conn->tcp_xmit_wsf);
3620                 break;
3621         case ISCSI_PARAM_TCP_RECV_WSF:
3622                 len = sysfs_emit(buf, "%u\n", conn->tcp_recv_wsf);
3623                 break;
3624         case ISCSI_PARAM_LOCAL_IPADDR:
3625                 len = sysfs_emit(buf, "%s\n", conn->local_ipaddr);
3626                 break;
3627         default:
3628                 return -ENOSYS;
3629         }
3630
3631         return len;
3632 }
3633 EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
3634
3635 int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3636                          char *buf)
3637 {
3638         struct iscsi_host *ihost = shost_priv(shost);
3639         int len;
3640
3641         switch (param) {
3642         case ISCSI_HOST_PARAM_NETDEV_NAME:
3643                 len = sysfs_emit(buf, "%s\n", ihost->netdev);
3644                 break;
3645         case ISCSI_HOST_PARAM_HWADDRESS:
3646                 len = sysfs_emit(buf, "%s\n", ihost->hwaddress);
3647                 break;
3648         case ISCSI_HOST_PARAM_INITIATOR_NAME:
3649                 len = sysfs_emit(buf, "%s\n", ihost->initiatorname);
3650                 break;
3651         default:
3652                 return -ENOSYS;
3653         }
3654
3655         return len;
3656 }
3657 EXPORT_SYMBOL_GPL(iscsi_host_get_param);
3658
3659 int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3660                          char *buf, int buflen)
3661 {
3662         struct iscsi_host *ihost = shost_priv(shost);
3663
3664         switch (param) {
3665         case ISCSI_HOST_PARAM_NETDEV_NAME:
3666                 return iscsi_switch_str_param(&ihost->netdev, buf);
3667         case ISCSI_HOST_PARAM_HWADDRESS:
3668                 return iscsi_switch_str_param(&ihost->hwaddress, buf);
3669         case ISCSI_HOST_PARAM_INITIATOR_NAME:
3670                 return iscsi_switch_str_param(&ihost->initiatorname, buf);
3671         default:
3672                 return -ENOSYS;
3673         }
3674
3675         return 0;
3676 }
3677 EXPORT_SYMBOL_GPL(iscsi_host_set_param);
3678
3679 MODULE_AUTHOR("Mike Christie");
3680 MODULE_DESCRIPTION("iSCSI library functions");
3681 MODULE_LICENSE("GPL");