1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47#include <linux/types.h>
48#include <linux/list.h>
49#include <linux/hardirq.h>
50#include <linux/kfifo.h>
51#include <linux/blkdev.h>
52#include <linux/init.h>
53#include <linux/ioctl.h>
54#include <linux/cdev.h>
55#include <linux/in.h>
56#include <linux/net.h>
57#include <linux/scatterlist.h>
58#include <linux/delay.h>
59#include <linux/slab.h>
60
61#include <net/sock.h>
62
63#include <asm/uaccess.h>
64
65#include <scsi/scsi_cmnd.h>
66#include <scsi/scsi_device.h>
67#include <scsi/scsi_eh.h>
68#include <scsi/scsi_tcq.h>
69#include <scsi/scsi_host.h>
70#include <scsi/scsi.h>
71#include <scsi/scsi_transport_iscsi.h>
72
73#include "iscsi_iser.h"
74
75static struct scsi_host_template iscsi_iser_sht;
76static struct iscsi_transport iscsi_iser_transport;
77static struct scsi_transport_template *iscsi_iser_scsi_transport;
78
79static unsigned int iscsi_max_lun = 512;
80module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
81
82int iser_debug_level = 0;
83
84MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover "
85 "v" DRV_VER " (" DRV_DATE ")");
86MODULE_LICENSE("Dual BSD/GPL");
87MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
88
89module_param_named(debug_level, iser_debug_level, int, 0644);
90MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)");
91
92struct iser_global ig;
93
94void
95iscsi_iser_recv(struct iscsi_conn *conn,
96 struct iscsi_hdr *hdr, char *rx_data, int rx_data_len)
97{
98 int rc = 0;
99 int datalen;
100 int ahslen;
101
102
103 datalen = ntoh24(hdr->dlength);
104 if (datalen != rx_data_len) {
105 printk(KERN_ERR "iscsi_iser: datalen %d (hdr) != %d (IB) \n",
106 datalen, rx_data_len);
107 rc = ISCSI_ERR_DATALEN;
108 goto error;
109 }
110
111
112 ahslen = hdr->hlength * 4;
113
114 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
115 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
116 goto error;
117
118 return;
119error:
120 iscsi_conn_failure(conn, rc);
121}
122
123static int iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode)
124{
125 struct iscsi_iser_task *iser_task = task->dd_data;
126
127 task->hdr = (struct iscsi_hdr *)&iser_task->desc.iscsi_header;
128 task->hdr_max = sizeof(iser_task->desc.iscsi_header);
129 return 0;
130}
131
132int iser_initialize_task_headers(struct iscsi_task *task,
133 struct iser_tx_desc *tx_desc)
134{
135 struct iscsi_iser_conn *iser_conn = task->conn->dd_data;
136 struct iser_device *device = iser_conn->ib_conn->device;
137 struct iscsi_iser_task *iser_task = task->dd_data;
138 u64 dma_addr;
139
140 dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc,
141 ISER_HEADERS_LEN, DMA_TO_DEVICE);
142 if (ib_dma_mapping_error(device->ib_device, dma_addr))
143 return -ENOMEM;
144
145 tx_desc->dma_addr = dma_addr;
146 tx_desc->tx_sg[0].addr = tx_desc->dma_addr;
147 tx_desc->tx_sg[0].length = ISER_HEADERS_LEN;
148 tx_desc->tx_sg[0].lkey = device->mr->lkey;
149
150 iser_task->headers_initialized = 1;
151 iser_task->iser_conn = iser_conn;
152 return 0;
153}
154
155
156
157
158
159
160static int
161iscsi_iser_task_init(struct iscsi_task *task)
162{
163 struct iscsi_iser_task *iser_task = task->dd_data;
164
165 if (!iser_task->headers_initialized)
166 if (iser_initialize_task_headers(task, &iser_task->desc))
167 return -ENOMEM;
168
169
170 if (!task->sc)
171 return 0;
172
173 iser_task->command_sent = 0;
174 iser_task_rdma_init(iser_task);
175 return 0;
176}
177
178
179
180
181
182
183
184
185
186
187
188
189static int
190iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task)
191{
192 int error = 0;
193
194 iser_dbg("mtask xmit [cid %d itt 0x%x]\n", conn->id, task->itt);
195
196 error = iser_send_control(conn, task);
197
198
199
200
201
202
203
204 return error;
205}
206
207static int
208iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn,
209 struct iscsi_task *task)
210{
211 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
212 struct iscsi_data hdr;
213 int error = 0;
214
215
216 while (iscsi_task_has_unsol_data(task)) {
217 iscsi_prep_data_out_pdu(task, r2t, &hdr);
218 iser_dbg("Sending data-out: itt 0x%x, data count %d\n",
219 hdr.itt, r2t->data_count);
220
221
222
223 error = iser_send_data_out(conn, task, &hdr);
224 if (error) {
225 r2t->datasn--;
226 goto iscsi_iser_task_xmit_unsol_data_exit;
227 }
228 r2t->sent += r2t->data_count;
229 iser_dbg("Need to send %d more as data-out PDUs\n",
230 r2t->data_length - r2t->sent);
231 }
232
233iscsi_iser_task_xmit_unsol_data_exit:
234 return error;
235}
236
237static int
238iscsi_iser_task_xmit(struct iscsi_task *task)
239{
240 struct iscsi_conn *conn = task->conn;
241 struct iscsi_iser_task *iser_task = task->dd_data;
242 int error = 0;
243
244 if (!task->sc)
245 return iscsi_iser_mtask_xmit(conn, task);
246
247 if (task->sc->sc_data_direction == DMA_TO_DEVICE) {
248 BUG_ON(scsi_bufflen(task->sc) == 0);
249
250 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n",
251 task->itt, scsi_bufflen(task->sc),
252 task->imm_count, task->unsol_r2t.data_length);
253 }
254
255 iser_dbg("ctask xmit [cid %d itt 0x%x]\n",
256 conn->id, task->itt);
257
258
259 if (!iser_task->command_sent) {
260 error = iser_send_command(conn, task);
261 if (error)
262 goto iscsi_iser_task_xmit_exit;
263 iser_task->command_sent = 1;
264 }
265
266
267 if (iscsi_task_has_unsol_data(task))
268 error = iscsi_iser_task_xmit_unsol_data(conn, task);
269
270 iscsi_iser_task_xmit_exit:
271 return error;
272}
273
274static void iscsi_iser_cleanup_task(struct iscsi_task *task)
275{
276 struct iscsi_iser_task *iser_task = task->dd_data;
277
278
279 if (!task->sc)
280 return;
281
282 if (iser_task->status == ISER_TASK_STATUS_STARTED) {
283 iser_task->status = ISER_TASK_STATUS_COMPLETED;
284 iser_task_rdma_finalize(iser_task);
285 }
286}
287
288static struct iscsi_cls_conn *
289iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
290{
291 struct iscsi_conn *conn;
292 struct iscsi_cls_conn *cls_conn;
293 struct iscsi_iser_conn *iser_conn;
294
295 cls_conn = iscsi_conn_setup(cls_session, sizeof(*iser_conn), conn_idx);
296 if (!cls_conn)
297 return NULL;
298 conn = cls_conn->dd_data;
299
300
301
302
303
304 conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN;
305
306 iser_conn = conn->dd_data;
307 conn->dd_data = iser_conn;
308 iser_conn->iscsi_conn = conn;
309
310 return cls_conn;
311}
312
313static void
314iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn)
315{
316 struct iscsi_conn *conn = cls_conn->dd_data;
317 struct iscsi_iser_conn *iser_conn = conn->dd_data;
318 struct iser_conn *ib_conn = iser_conn->ib_conn;
319
320 iscsi_conn_teardown(cls_conn);
321
322
323
324
325
326 if (ib_conn) {
327 ib_conn->iser_conn = NULL;
328 iser_conn_put(ib_conn, 1);
329 }
330}
331
332static int
333iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
334 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
335 int is_leading)
336{
337 struct iscsi_conn *conn = cls_conn->dd_data;
338 struct iscsi_iser_conn *iser_conn;
339 struct iser_conn *ib_conn;
340 struct iscsi_endpoint *ep;
341 int error;
342
343 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
344 if (error)
345 return error;
346
347
348
349 ep = iscsi_lookup_endpoint(transport_eph);
350 if (!ep) {
351 iser_err("can't bind eph %llx\n",
352 (unsigned long long)transport_eph);
353 return -EINVAL;
354 }
355 ib_conn = ep->dd_data;
356
357
358
359
360 iser_err("binding iscsi/iser conn %p %p to ib_conn %p\n",
361 conn, conn->dd_data, ib_conn);
362 iser_conn = conn->dd_data;
363 ib_conn->iser_conn = iser_conn;
364 iser_conn->ib_conn = ib_conn;
365 iser_conn_get(ib_conn);
366 return 0;
367}
368
369static void
370iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
371{
372 struct iscsi_conn *conn = cls_conn->dd_data;
373 struct iscsi_iser_conn *iser_conn = conn->dd_data;
374 struct iser_conn *ib_conn = iser_conn->ib_conn;
375
376
377
378
379
380 if (ib_conn) {
381 iscsi_conn_stop(cls_conn, flag);
382
383
384
385
386 iser_conn_put(ib_conn, 1);
387 }
388 iser_conn->ib_conn = NULL;
389}
390
391static int
392iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
393{
394 struct iscsi_conn *conn = cls_conn->dd_data;
395 int err;
396
397 err = iser_conn_set_full_featured_mode(conn);
398 if (err)
399 return err;
400
401 return iscsi_conn_start(cls_conn);
402}
403
404static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
405{
406 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
407
408 iscsi_session_teardown(cls_session);
409 iscsi_host_remove(shost);
410 iscsi_host_free(shost);
411}
412
413static struct iscsi_cls_session *
414iscsi_iser_session_create(struct iscsi_endpoint *ep,
415 uint16_t cmds_max, uint16_t qdepth,
416 uint32_t initial_cmdsn)
417{
418 struct iscsi_cls_session *cls_session;
419 struct iscsi_session *session;
420 struct Scsi_Host *shost;
421 struct iser_conn *ib_conn;
422
423 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 0);
424 if (!shost)
425 return NULL;
426 shost->transportt = iscsi_iser_scsi_transport;
427 shost->max_lun = iscsi_max_lun;
428 shost->max_id = 0;
429 shost->max_channel = 0;
430 shost->max_cmd_len = 16;
431
432
433
434
435
436 if (ep)
437 ib_conn = ep->dd_data;
438
439 if (iscsi_host_add(shost,
440 ep ? ib_conn->device->ib_device->dma_device : NULL))
441 goto free_host;
442
443
444
445
446
447 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
448 ISCSI_DEF_XMIT_CMDS_MAX, 0,
449 sizeof(struct iscsi_iser_task),
450 initial_cmdsn, 0);
451 if (!cls_session)
452 goto remove_host;
453 session = cls_session->dd_data;
454
455 shost->can_queue = session->scsi_cmds_max;
456 return cls_session;
457
458remove_host:
459 iscsi_host_remove(shost);
460free_host:
461 iscsi_host_free(shost);
462 return NULL;
463}
464
465static int
466iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
467 enum iscsi_param param, char *buf, int buflen)
468{
469 int value;
470
471 switch (param) {
472 case ISCSI_PARAM_MAX_RECV_DLENGTH:
473
474 break;
475 case ISCSI_PARAM_HDRDGST_EN:
476 sscanf(buf, "%d", &value);
477 if (value) {
478 printk(KERN_ERR "DataDigest wasn't negotiated to None");
479 return -EPROTO;
480 }
481 break;
482 case ISCSI_PARAM_DATADGST_EN:
483 sscanf(buf, "%d", &value);
484 if (value) {
485 printk(KERN_ERR "DataDigest wasn't negotiated to None");
486 return -EPROTO;
487 }
488 break;
489 case ISCSI_PARAM_IFMARKER_EN:
490 sscanf(buf, "%d", &value);
491 if (value) {
492 printk(KERN_ERR "IFMarker wasn't negotiated to No");
493 return -EPROTO;
494 }
495 break;
496 case ISCSI_PARAM_OFMARKER_EN:
497 sscanf(buf, "%d", &value);
498 if (value) {
499 printk(KERN_ERR "OFMarker wasn't negotiated to No");
500 return -EPROTO;
501 }
502 break;
503 default:
504 return iscsi_set_param(cls_conn, param, buf, buflen);
505 }
506
507 return 0;
508}
509
510static void
511iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
512{
513 struct iscsi_conn *conn = cls_conn->dd_data;
514
515 stats->txdata_octets = conn->txdata_octets;
516 stats->rxdata_octets = conn->rxdata_octets;
517 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
518 stats->dataout_pdus = conn->dataout_pdus_cnt;
519 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
520 stats->datain_pdus = conn->datain_pdus_cnt;
521 stats->r2t_pdus = conn->r2t_pdus_cnt;
522 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
523 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
524 stats->custom_length = 4;
525 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
526 stats->custom[0].value = 0;
527 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
528 stats->custom[1].value = 0; ;
529 strcpy(stats->custom[2].desc, "eh_abort_cnt");
530 stats->custom[2].value = conn->eh_abort_cnt;
531 strcpy(stats->custom[3].desc, "fmr_unalign_cnt");
532 stats->custom[3].value = conn->fmr_unalign_cnt;
533}
534
535static int iscsi_iser_get_ep_param(struct iscsi_endpoint *ep,
536 enum iscsi_param param, char *buf)
537{
538 struct iser_conn *ib_conn = ep->dd_data;
539 int len;
540
541 switch (param) {
542 case ISCSI_PARAM_CONN_PORT:
543 case ISCSI_PARAM_CONN_ADDRESS:
544 if (!ib_conn || !ib_conn->cma_id)
545 return -ENOTCONN;
546
547 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
548 &ib_conn->cma_id->route.addr.dst_addr,
549 param, buf);
550 break;
551 default:
552 return -ENOSYS;
553 }
554
555 return len;
556}
557
558static struct iscsi_endpoint *
559iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
560 int non_blocking)
561{
562 int err;
563 struct iser_conn *ib_conn;
564 struct iscsi_endpoint *ep;
565
566 ep = iscsi_create_endpoint(sizeof(*ib_conn));
567 if (!ep)
568 return ERR_PTR(-ENOMEM);
569
570 ib_conn = ep->dd_data;
571 ib_conn->ep = ep;
572 iser_conn_init(ib_conn);
573
574 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr,
575 non_blocking);
576 if (err) {
577 iscsi_destroy_endpoint(ep);
578 return ERR_PTR(err);
579 }
580 return ep;
581}
582
583static int
584iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
585{
586 struct iser_conn *ib_conn;
587 int rc;
588
589 ib_conn = ep->dd_data;
590 rc = wait_event_interruptible_timeout(ib_conn->wait,
591 ib_conn->state == ISER_CONN_UP,
592 msecs_to_jiffies(timeout_ms));
593
594
595 if (!rc &&
596 (ib_conn->state == ISER_CONN_TERMINATING ||
597 ib_conn->state == ISER_CONN_DOWN))
598 rc = -1;
599
600 iser_err("ib conn %p rc = %d\n", ib_conn, rc);
601
602 if (rc > 0)
603 return 1;
604 else if (!rc)
605 return 0;
606 else
607 return rc;
608}
609
610static void
611iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep)
612{
613 struct iser_conn *ib_conn;
614
615 ib_conn = ep->dd_data;
616 if (ib_conn->iser_conn)
617
618
619
620
621
622
623
624 iscsi_suspend_tx(ib_conn->iser_conn->iscsi_conn);
625
626
627 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state);
628 iser_conn_terminate(ib_conn);
629}
630
631static struct scsi_host_template iscsi_iser_sht = {
632 .module = THIS_MODULE,
633 .name = "iSCSI Initiator over iSER, v." DRV_VER,
634 .queuecommand = iscsi_queuecommand,
635 .change_queue_depth = iscsi_change_queue_depth,
636 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
637 .max_sectors = 1024,
638 .cmd_per_lun = ISER_DEF_CMD_PER_LUN,
639 .eh_abort_handler = iscsi_eh_abort,
640 .eh_device_reset_handler= iscsi_eh_device_reset,
641 .eh_target_reset_handler = iscsi_eh_recover_target,
642 .target_alloc = iscsi_target_alloc,
643 .use_clustering = DISABLE_CLUSTERING,
644 .proc_name = "iscsi_iser",
645 .this_id = -1,
646};
647
648static struct iscsi_transport iscsi_iser_transport = {
649 .owner = THIS_MODULE,
650 .name = "iser",
651 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T,
652 .param_mask = ISCSI_MAX_RECV_DLENGTH |
653 ISCSI_MAX_XMIT_DLENGTH |
654 ISCSI_HDRDGST_EN |
655 ISCSI_DATADGST_EN |
656 ISCSI_INITIAL_R2T_EN |
657 ISCSI_MAX_R2T |
658 ISCSI_IMM_DATA_EN |
659 ISCSI_FIRST_BURST |
660 ISCSI_MAX_BURST |
661 ISCSI_PDU_INORDER_EN |
662 ISCSI_DATASEQ_INORDER_EN |
663 ISCSI_CONN_PORT |
664 ISCSI_CONN_ADDRESS |
665 ISCSI_EXP_STATSN |
666 ISCSI_PERSISTENT_PORT |
667 ISCSI_PERSISTENT_ADDRESS |
668 ISCSI_TARGET_NAME | ISCSI_TPGT |
669 ISCSI_USERNAME | ISCSI_PASSWORD |
670 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
671 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
672 ISCSI_LU_RESET_TMO | ISCSI_TGT_RESET_TMO |
673 ISCSI_PING_TMO | ISCSI_RECV_TMO |
674 ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME,
675 .host_param_mask = ISCSI_HOST_HWADDRESS |
676 ISCSI_HOST_NETDEV_NAME |
677 ISCSI_HOST_INITIATOR_NAME,
678
679 .create_session = iscsi_iser_session_create,
680 .destroy_session = iscsi_iser_session_destroy,
681
682 .create_conn = iscsi_iser_conn_create,
683 .bind_conn = iscsi_iser_conn_bind,
684 .destroy_conn = iscsi_iser_conn_destroy,
685 .set_param = iscsi_iser_set_param,
686 .get_conn_param = iscsi_conn_get_param,
687 .get_ep_param = iscsi_iser_get_ep_param,
688 .get_session_param = iscsi_session_get_param,
689 .start_conn = iscsi_iser_conn_start,
690 .stop_conn = iscsi_iser_conn_stop,
691
692 .get_host_param = iscsi_host_get_param,
693 .set_host_param = iscsi_host_set_param,
694
695 .send_pdu = iscsi_conn_send_pdu,
696 .get_stats = iscsi_iser_conn_get_stats,
697 .init_task = iscsi_iser_task_init,
698 .xmit_task = iscsi_iser_task_xmit,
699 .cleanup_task = iscsi_iser_cleanup_task,
700 .alloc_pdu = iscsi_iser_pdu_alloc,
701
702 .session_recovery_timedout = iscsi_session_recovery_timedout,
703
704 .ep_connect = iscsi_iser_ep_connect,
705 .ep_poll = iscsi_iser_ep_poll,
706 .ep_disconnect = iscsi_iser_ep_disconnect
707};
708
709static int __init iser_init(void)
710{
711 int err;
712
713 iser_dbg("Starting iSER datamover...\n");
714
715 if (iscsi_max_lun < 1) {
716 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun);
717 return -EINVAL;
718 }
719
720 memset(&ig, 0, sizeof(struct iser_global));
721
722 ig.desc_cache = kmem_cache_create("iser_descriptors",
723 sizeof(struct iser_tx_desc),
724 0, SLAB_HWCACHE_ALIGN,
725 NULL);
726 if (ig.desc_cache == NULL)
727 return -ENOMEM;
728
729
730 mutex_init(&ig.device_list_mutex);
731 INIT_LIST_HEAD(&ig.device_list);
732 mutex_init(&ig.connlist_mutex);
733 INIT_LIST_HEAD(&ig.connlist);
734
735 iscsi_iser_scsi_transport = iscsi_register_transport(
736 &iscsi_iser_transport);
737 if (!iscsi_iser_scsi_transport) {
738 iser_err("iscsi_register_transport failed\n");
739 err = -EINVAL;
740 goto register_transport_failure;
741 }
742
743 return 0;
744
745register_transport_failure:
746 kmem_cache_destroy(ig.desc_cache);
747
748 return err;
749}
750
751static void __exit iser_exit(void)
752{
753 iser_dbg("Removing iSER datamover...\n");
754 iscsi_unregister_transport(&iscsi_iser_transport);
755 kmem_cache_destroy(ig.desc_cache);
756}
757
758module_init(iser_init);
759module_exit(iser_exit);
760