1 /* 2 * iSCSI Initiator over iSER Data-Path 3 * 4 * Copyright (C) 2004 Dmitry Yusupov 5 * Copyright (C) 2004 Alex Aizman 6 * Copyright (C) 2005 Mike Christie 7 * Copyright (c) 2005, 2006 Voltaire, Inc. All rights reserved. 8 * maintained by openib-general@openib.org 9 * 10 * This software is available to you under a choice of one of two 11 * licenses. You may choose to be licensed under the terms of the GNU 12 * General Public License (GPL) Version 2, available from the file 13 * COPYING in the main directory of this source tree, or the 14 * OpenIB.org BSD license below: 15 * 16 * Redistribution and use in source and binary forms, with or 17 * without modification, are permitted provided that the following 18 * conditions are met: 19 * 20 * - Redistributions of source code must retain the above 21 * copyright notice, this list of conditions and the following 22 * disclaimer. 23 * 24 * - Redistributions in binary form must reproduce the above 25 * copyright notice, this list of conditions and the following 26 * disclaimer in the documentation and/or other materials 27 * provided with the distribution. 28 * 29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 36 * SOFTWARE. 37 * 38 * Credits: 39 * Christoph Hellwig 40 * FUJITA Tomonori 41 * Arne Redlich 42 * Zhenyu Wang 43 * Modified by: 44 * Erez Zilber 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 #include <linux/module.h> 61 62 #include <net/sock.h> 63 64 #include <asm/uaccess.h> 65 66 #include <scsi/scsi_cmnd.h> 67 #include <scsi/scsi_device.h> 68 #include <scsi/scsi_eh.h> 69 #include <scsi/scsi_tcq.h> 70 #include <scsi/scsi_host.h> 71 #include <scsi/scsi.h> 72 #include <scsi/scsi_transport_iscsi.h> 73 74 #include "iscsi_iser.h" 75 76 static struct scsi_host_template iscsi_iser_sht; 77 static struct iscsi_transport iscsi_iser_transport; 78 static struct scsi_transport_template *iscsi_iser_scsi_transport; 79 80 static unsigned int iscsi_max_lun = 512; 81 module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); 82 83 int iser_debug_level = 0; 84 85 MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover " 86 "v" DRV_VER " (" DRV_DATE ")"); 87 MODULE_LICENSE("Dual BSD/GPL"); 88 MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz"); 89 90 module_param_named(debug_level, iser_debug_level, int, 0644); 91 MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)"); 92 93 struct iser_global ig; 94 95 void 96 iscsi_iser_recv(struct iscsi_conn *conn, 97 struct iscsi_hdr *hdr, char *rx_data, int rx_data_len) 98 { 99 int rc = 0; 100 int datalen; 101 int ahslen; 102 103 /* verify PDU length */ 104 datalen = ntoh24(hdr->dlength); 105 if (datalen > rx_data_len || (datalen + 4) < rx_data_len) { 106 iser_err("wrong datalen %d (hdr), %d (IB)\n", 107 datalen, rx_data_len); 108 rc = ISCSI_ERR_DATALEN; 109 goto error; 110 } 111 112 if (datalen != rx_data_len) 113 iser_dbg("aligned datalen (%d) hdr, %d (IB)\n", 114 datalen, rx_data_len); 115 116 /* read AHS */ 117 ahslen = hdr->hlength * 4; 118 119 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len); 120 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD) 121 goto error; 122 123 return; 124 error: 125 iscsi_conn_failure(conn, rc); 126 } 127 128 static int iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode) 129 { 130 struct iscsi_iser_task *iser_task = task->dd_data; 131 132 task->hdr = (struct iscsi_hdr *)&iser_task->desc.iscsi_header; 133 task->hdr_max = sizeof(iser_task->desc.iscsi_header); 134 return 0; 135 } 136 137 int iser_initialize_task_headers(struct iscsi_task *task, 138 struct iser_tx_desc *tx_desc) 139 { 140 struct iscsi_iser_conn *iser_conn = task->conn->dd_data; 141 struct iser_device *device = iser_conn->ib_conn->device; 142 struct iscsi_iser_task *iser_task = task->dd_data; 143 u64 dma_addr; 144 145 dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc, 146 ISER_HEADERS_LEN, DMA_TO_DEVICE); 147 if (ib_dma_mapping_error(device->ib_device, dma_addr)) 148 return -ENOMEM; 149 150 tx_desc->dma_addr = dma_addr; 151 tx_desc->tx_sg[0].addr = tx_desc->dma_addr; 152 tx_desc->tx_sg[0].length = ISER_HEADERS_LEN; 153 tx_desc->tx_sg[0].lkey = device->mr->lkey; 154 155 iser_task->iser_conn = iser_conn; 156 return 0; 157 } 158 /** 159 * iscsi_iser_task_init - Initialize task 160 * @task: iscsi task 161 * 162 * Initialize the task for the scsi command or mgmt command. 163 */ 164 static int 165 iscsi_iser_task_init(struct iscsi_task *task) 166 { 167 struct iscsi_iser_task *iser_task = task->dd_data; 168 169 if (iser_initialize_task_headers(task, &iser_task->desc)) 170 return -ENOMEM; 171 172 /* mgmt task */ 173 if (!task->sc) 174 return 0; 175 176 iser_task->command_sent = 0; 177 iser_task_rdma_init(iser_task); 178 return 0; 179 } 180 181 /** 182 * iscsi_iser_mtask_xmit - xmit management(immediate) task 183 * @conn: iscsi connection 184 * @task: task management task 185 * 186 * Notes: 187 * The function can return -EAGAIN in which case caller must 188 * call it again later, or recover. '0' return code means successful 189 * xmit. 190 * 191 **/ 192 static int 193 iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task) 194 { 195 int error = 0; 196 197 iser_dbg("mtask xmit [cid %d itt 0x%x]\n", conn->id, task->itt); 198 199 error = iser_send_control(conn, task); 200 201 /* since iser xmits control with zero copy, tasks can not be recycled 202 * right after sending them. 203 * The recycling scheme is based on whether a response is expected 204 * - if yes, the task is recycled at iscsi_complete_pdu 205 * - if no, the task is recycled at iser_snd_completion 206 */ 207 return error; 208 } 209 210 static int 211 iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn, 212 struct iscsi_task *task) 213 { 214 struct iscsi_r2t_info *r2t = &task->unsol_r2t; 215 struct iscsi_data hdr; 216 int error = 0; 217 218 /* Send data-out PDUs while there's still unsolicited data to send */ 219 while (iscsi_task_has_unsol_data(task)) { 220 iscsi_prep_data_out_pdu(task, r2t, &hdr); 221 iser_dbg("Sending data-out: itt 0x%x, data count %d\n", 222 hdr.itt, r2t->data_count); 223 224 /* the buffer description has been passed with the command */ 225 /* Send the command */ 226 error = iser_send_data_out(conn, task, &hdr); 227 if (error) { 228 r2t->datasn--; 229 goto iscsi_iser_task_xmit_unsol_data_exit; 230 } 231 r2t->sent += r2t->data_count; 232 iser_dbg("Need to send %d more as data-out PDUs\n", 233 r2t->data_length - r2t->sent); 234 } 235 236 iscsi_iser_task_xmit_unsol_data_exit: 237 return error; 238 } 239 240 static int 241 iscsi_iser_task_xmit(struct iscsi_task *task) 242 { 243 struct iscsi_conn *conn = task->conn; 244 struct iscsi_iser_task *iser_task = task->dd_data; 245 int error = 0; 246 247 if (!task->sc) 248 return iscsi_iser_mtask_xmit(conn, task); 249 250 if (task->sc->sc_data_direction == DMA_TO_DEVICE) { 251 BUG_ON(scsi_bufflen(task->sc) == 0); 252 253 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n", 254 task->itt, scsi_bufflen(task->sc), 255 task->imm_count, task->unsol_r2t.data_length); 256 } 257 258 iser_dbg("ctask xmit [cid %d itt 0x%x]\n", 259 conn->id, task->itt); 260 261 /* Send the cmd PDU */ 262 if (!iser_task->command_sent) { 263 error = iser_send_command(conn, task); 264 if (error) 265 goto iscsi_iser_task_xmit_exit; 266 iser_task->command_sent = 1; 267 } 268 269 /* Send unsolicited data-out PDU(s) if necessary */ 270 if (iscsi_task_has_unsol_data(task)) 271 error = iscsi_iser_task_xmit_unsol_data(conn, task); 272 273 iscsi_iser_task_xmit_exit: 274 return error; 275 } 276 277 static void iscsi_iser_cleanup_task(struct iscsi_task *task) 278 { 279 struct iscsi_iser_task *iser_task = task->dd_data; 280 struct iser_tx_desc *tx_desc = &iser_task->desc; 281 282 struct iscsi_iser_conn *iser_conn = task->conn->dd_data; 283 struct iser_device *device = iser_conn->ib_conn->device; 284 285 ib_dma_unmap_single(device->ib_device, 286 tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE); 287 288 /* mgmt tasks do not need special cleanup */ 289 if (!task->sc) 290 return; 291 292 if (iser_task->status == ISER_TASK_STATUS_STARTED) { 293 iser_task->status = ISER_TASK_STATUS_COMPLETED; 294 iser_task_rdma_finalize(iser_task); 295 } 296 } 297 298 static struct iscsi_cls_conn * 299 iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx) 300 { 301 struct iscsi_conn *conn; 302 struct iscsi_cls_conn *cls_conn; 303 struct iscsi_iser_conn *iser_conn; 304 305 cls_conn = iscsi_conn_setup(cls_session, sizeof(*iser_conn), conn_idx); 306 if (!cls_conn) 307 return NULL; 308 conn = cls_conn->dd_data; 309 310 /* 311 * due to issues with the login code re iser sematics 312 * this not set in iscsi_conn_setup - FIXME 313 */ 314 conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN; 315 316 iser_conn = conn->dd_data; 317 conn->dd_data = iser_conn; 318 iser_conn->iscsi_conn = conn; 319 320 return cls_conn; 321 } 322 323 static void 324 iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn) 325 { 326 struct iscsi_conn *conn = cls_conn->dd_data; 327 struct iscsi_iser_conn *iser_conn = conn->dd_data; 328 struct iser_conn *ib_conn = iser_conn->ib_conn; 329 330 iscsi_conn_teardown(cls_conn); 331 /* 332 * Userspace will normally call the stop callback and 333 * already have freed the ib_conn, but if it goofed up then 334 * we free it here. 335 */ 336 if (ib_conn) { 337 ib_conn->iser_conn = NULL; 338 iser_conn_put(ib_conn, 1); /* deref iscsi/ib conn unbinding */ 339 } 340 } 341 342 static int 343 iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session, 344 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph, 345 int is_leading) 346 { 347 struct iscsi_conn *conn = cls_conn->dd_data; 348 struct iscsi_iser_conn *iser_conn; 349 struct iser_conn *ib_conn; 350 struct iscsi_endpoint *ep; 351 int error; 352 353 error = iscsi_conn_bind(cls_session, cls_conn, is_leading); 354 if (error) 355 return error; 356 357 /* the transport ep handle comes from user space so it must be 358 * verified against the global ib connections list */ 359 ep = iscsi_lookup_endpoint(transport_eph); 360 if (!ep) { 361 iser_err("can't bind eph %llx\n", 362 (unsigned long long)transport_eph); 363 return -EINVAL; 364 } 365 ib_conn = ep->dd_data; 366 367 /* binds the iSER connection retrieved from the previously 368 * connected ep_handle to the iSCSI layer connection. exchanges 369 * connection pointers */ 370 iser_err("binding iscsi/iser conn %p %p to ib_conn %p\n", 371 conn, conn->dd_data, ib_conn); 372 iser_conn = conn->dd_data; 373 ib_conn->iser_conn = iser_conn; 374 iser_conn->ib_conn = ib_conn; 375 iser_conn_get(ib_conn); /* ref iscsi/ib conn binding */ 376 return 0; 377 } 378 379 static void 380 iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) 381 { 382 struct iscsi_conn *conn = cls_conn->dd_data; 383 struct iscsi_iser_conn *iser_conn = conn->dd_data; 384 struct iser_conn *ib_conn = iser_conn->ib_conn; 385 386 /* 387 * Userspace may have goofed up and not bound the connection or 388 * might have only partially setup the connection. 389 */ 390 if (ib_conn) { 391 iscsi_conn_stop(cls_conn, flag); 392 /* 393 * There is no unbind event so the stop callback 394 * must release the ref from the bind. 395 */ 396 iser_conn_put(ib_conn, 1); /* deref iscsi/ib conn unbinding */ 397 } 398 iser_conn->ib_conn = NULL; 399 } 400 401 static int 402 iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn) 403 { 404 struct iscsi_conn *conn = cls_conn->dd_data; 405 int err; 406 407 err = iser_conn_set_full_featured_mode(conn); 408 if (err) 409 return err; 410 411 return iscsi_conn_start(cls_conn); 412 } 413 414 static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session) 415 { 416 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); 417 418 iscsi_session_teardown(cls_session); 419 iscsi_host_remove(shost); 420 iscsi_host_free(shost); 421 } 422 423 static struct iscsi_cls_session * 424 iscsi_iser_session_create(struct iscsi_endpoint *ep, 425 uint16_t cmds_max, uint16_t qdepth, 426 uint32_t initial_cmdsn) 427 { 428 struct iscsi_cls_session *cls_session; 429 struct iscsi_session *session; 430 struct Scsi_Host *shost; 431 struct iser_conn *ib_conn; 432 433 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 0); 434 if (!shost) 435 return NULL; 436 shost->transportt = iscsi_iser_scsi_transport; 437 shost->max_lun = iscsi_max_lun; 438 shost->max_id = 0; 439 shost->max_channel = 0; 440 shost->max_cmd_len = 16; 441 442 /* 443 * older userspace tools (before 2.0-870) did not pass us 444 * the leading conn's ep so this will be NULL; 445 */ 446 if (ep) 447 ib_conn = ep->dd_data; 448 449 if (iscsi_host_add(shost, 450 ep ? ib_conn->device->ib_device->dma_device : NULL)) 451 goto free_host; 452 453 /* 454 * we do not support setting can_queue cmd_per_lun from userspace yet 455 * because we preallocate so many resources 456 */ 457 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost, 458 ISCSI_DEF_XMIT_CMDS_MAX, 0, 459 sizeof(struct iscsi_iser_task), 460 initial_cmdsn, 0); 461 if (!cls_session) 462 goto remove_host; 463 session = cls_session->dd_data; 464 465 shost->can_queue = session->scsi_cmds_max; 466 return cls_session; 467 468 remove_host: 469 iscsi_host_remove(shost); 470 free_host: 471 iscsi_host_free(shost); 472 return NULL; 473 } 474 475 static int 476 iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn, 477 enum iscsi_param param, char *buf, int buflen) 478 { 479 int value; 480 481 switch (param) { 482 case ISCSI_PARAM_MAX_RECV_DLENGTH: 483 /* TBD */ 484 break; 485 case ISCSI_PARAM_HDRDGST_EN: 486 sscanf(buf, "%d", &value); 487 if (value) { 488 printk(KERN_ERR "DataDigest wasn't negotiated to None"); 489 return -EPROTO; 490 } 491 break; 492 case ISCSI_PARAM_DATADGST_EN: 493 sscanf(buf, "%d", &value); 494 if (value) { 495 printk(KERN_ERR "DataDigest wasn't negotiated to None"); 496 return -EPROTO; 497 } 498 break; 499 case ISCSI_PARAM_IFMARKER_EN: 500 sscanf(buf, "%d", &value); 501 if (value) { 502 printk(KERN_ERR "IFMarker wasn't negotiated to No"); 503 return -EPROTO; 504 } 505 break; 506 case ISCSI_PARAM_OFMARKER_EN: 507 sscanf(buf, "%d", &value); 508 if (value) { 509 printk(KERN_ERR "OFMarker wasn't negotiated to No"); 510 return -EPROTO; 511 } 512 break; 513 default: 514 return iscsi_set_param(cls_conn, param, buf, buflen); 515 } 516 517 return 0; 518 } 519 520 static void 521 iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats) 522 { 523 struct iscsi_conn *conn = cls_conn->dd_data; 524 525 stats->txdata_octets = conn->txdata_octets; 526 stats->rxdata_octets = conn->rxdata_octets; 527 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt; 528 stats->dataout_pdus = conn->dataout_pdus_cnt; 529 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt; 530 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */ 531 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */ 532 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt; 533 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt; 534 stats->custom_length = 4; 535 strcpy(stats->custom[0].desc, "qp_tx_queue_full"); 536 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */ 537 strcpy(stats->custom[1].desc, "fmr_map_not_avail"); 538 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */; 539 strcpy(stats->custom[2].desc, "eh_abort_cnt"); 540 stats->custom[2].value = conn->eh_abort_cnt; 541 strcpy(stats->custom[3].desc, "fmr_unalign_cnt"); 542 stats->custom[3].value = conn->fmr_unalign_cnt; 543 } 544 545 static int iscsi_iser_get_ep_param(struct iscsi_endpoint *ep, 546 enum iscsi_param param, char *buf) 547 { 548 struct iser_conn *ib_conn = ep->dd_data; 549 int len; 550 551 switch (param) { 552 case ISCSI_PARAM_CONN_PORT: 553 case ISCSI_PARAM_CONN_ADDRESS: 554 if (!ib_conn || !ib_conn->cma_id) 555 return -ENOTCONN; 556 557 return iscsi_conn_get_addr_param((struct sockaddr_storage *) 558 &ib_conn->cma_id->route.addr.dst_addr, 559 param, buf); 560 break; 561 default: 562 return -ENOSYS; 563 } 564 565 return len; 566 } 567 568 static struct iscsi_endpoint * 569 iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr, 570 int non_blocking) 571 { 572 int err; 573 struct iser_conn *ib_conn; 574 struct iscsi_endpoint *ep; 575 576 ep = iscsi_create_endpoint(sizeof(*ib_conn)); 577 if (!ep) 578 return ERR_PTR(-ENOMEM); 579 580 ib_conn = ep->dd_data; 581 ib_conn->ep = ep; 582 iser_conn_init(ib_conn); 583 584 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr, 585 non_blocking); 586 if (err) { 587 iscsi_destroy_endpoint(ep); 588 return ERR_PTR(err); 589 } 590 return ep; 591 } 592 593 static int 594 iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms) 595 { 596 struct iser_conn *ib_conn; 597 int rc; 598 599 ib_conn = ep->dd_data; 600 rc = wait_event_interruptible_timeout(ib_conn->wait, 601 ib_conn->state == ISER_CONN_UP, 602 msecs_to_jiffies(timeout_ms)); 603 604 /* if conn establishment failed, return error code to iscsi */ 605 if (!rc && 606 (ib_conn->state == ISER_CONN_TERMINATING || 607 ib_conn->state == ISER_CONN_DOWN)) 608 rc = -1; 609 610 iser_err("ib conn %p rc = %d\n", ib_conn, rc); 611 612 if (rc > 0) 613 return 1; /* success, this is the equivalent of POLLOUT */ 614 else if (!rc) 615 return 0; /* timeout */ 616 else 617 return rc; /* signal */ 618 } 619 620 static void 621 iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep) 622 { 623 struct iser_conn *ib_conn; 624 625 ib_conn = ep->dd_data; 626 if (ib_conn->iser_conn) 627 /* 628 * Must suspend xmit path if the ep is bound to the 629 * iscsi_conn, so we know we are not accessing the ib_conn 630 * when we free it. 631 * 632 * This may not be bound if the ep poll failed. 633 */ 634 iscsi_suspend_tx(ib_conn->iser_conn->iscsi_conn); 635 636 637 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state); 638 iser_conn_terminate(ib_conn); 639 } 640 641 static umode_t iser_attr_is_visible(int param_type, int param) 642 { 643 switch (param_type) { 644 case ISCSI_HOST_PARAM: 645 switch (param) { 646 case ISCSI_HOST_PARAM_NETDEV_NAME: 647 case ISCSI_HOST_PARAM_HWADDRESS: 648 case ISCSI_HOST_PARAM_INITIATOR_NAME: 649 return S_IRUGO; 650 default: 651 return 0; 652 } 653 case ISCSI_PARAM: 654 switch (param) { 655 case ISCSI_PARAM_MAX_RECV_DLENGTH: 656 case ISCSI_PARAM_MAX_XMIT_DLENGTH: 657 case ISCSI_PARAM_HDRDGST_EN: 658 case ISCSI_PARAM_DATADGST_EN: 659 case ISCSI_PARAM_CONN_ADDRESS: 660 case ISCSI_PARAM_CONN_PORT: 661 case ISCSI_PARAM_EXP_STATSN: 662 case ISCSI_PARAM_PERSISTENT_ADDRESS: 663 case ISCSI_PARAM_PERSISTENT_PORT: 664 case ISCSI_PARAM_PING_TMO: 665 case ISCSI_PARAM_RECV_TMO: 666 case ISCSI_PARAM_INITIAL_R2T_EN: 667 case ISCSI_PARAM_MAX_R2T: 668 case ISCSI_PARAM_IMM_DATA_EN: 669 case ISCSI_PARAM_FIRST_BURST: 670 case ISCSI_PARAM_MAX_BURST: 671 case ISCSI_PARAM_PDU_INORDER_EN: 672 case ISCSI_PARAM_DATASEQ_INORDER_EN: 673 case ISCSI_PARAM_TARGET_NAME: 674 case ISCSI_PARAM_TPGT: 675 case ISCSI_PARAM_USERNAME: 676 case ISCSI_PARAM_PASSWORD: 677 case ISCSI_PARAM_USERNAME_IN: 678 case ISCSI_PARAM_PASSWORD_IN: 679 case ISCSI_PARAM_FAST_ABORT: 680 case ISCSI_PARAM_ABORT_TMO: 681 case ISCSI_PARAM_LU_RESET_TMO: 682 case ISCSI_PARAM_TGT_RESET_TMO: 683 case ISCSI_PARAM_IFACE_NAME: 684 case ISCSI_PARAM_INITIATOR_NAME: 685 return S_IRUGO; 686 default: 687 return 0; 688 } 689 } 690 691 return 0; 692 } 693 694 static struct scsi_host_template iscsi_iser_sht = { 695 .module = THIS_MODULE, 696 .name = "iSCSI Initiator over iSER, v." DRV_VER, 697 .queuecommand = iscsi_queuecommand, 698 .change_queue_depth = iscsi_change_queue_depth, 699 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE, 700 .max_sectors = 1024, 701 .cmd_per_lun = ISER_DEF_CMD_PER_LUN, 702 .eh_abort_handler = iscsi_eh_abort, 703 .eh_device_reset_handler= iscsi_eh_device_reset, 704 .eh_target_reset_handler = iscsi_eh_recover_target, 705 .target_alloc = iscsi_target_alloc, 706 .use_clustering = DISABLE_CLUSTERING, 707 .proc_name = "iscsi_iser", 708 .this_id = -1, 709 }; 710 711 static struct iscsi_transport iscsi_iser_transport = { 712 .owner = THIS_MODULE, 713 .name = "iser", 714 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T, 715 /* session management */ 716 .create_session = iscsi_iser_session_create, 717 .destroy_session = iscsi_iser_session_destroy, 718 /* connection management */ 719 .create_conn = iscsi_iser_conn_create, 720 .bind_conn = iscsi_iser_conn_bind, 721 .destroy_conn = iscsi_iser_conn_destroy, 722 .attr_is_visible = iser_attr_is_visible, 723 .set_param = iscsi_iser_set_param, 724 .get_conn_param = iscsi_conn_get_param, 725 .get_ep_param = iscsi_iser_get_ep_param, 726 .get_session_param = iscsi_session_get_param, 727 .start_conn = iscsi_iser_conn_start, 728 .stop_conn = iscsi_iser_conn_stop, 729 /* iscsi host params */ 730 .get_host_param = iscsi_host_get_param, 731 .set_host_param = iscsi_host_set_param, 732 /* IO */ 733 .send_pdu = iscsi_conn_send_pdu, 734 .get_stats = iscsi_iser_conn_get_stats, 735 .init_task = iscsi_iser_task_init, 736 .xmit_task = iscsi_iser_task_xmit, 737 .cleanup_task = iscsi_iser_cleanup_task, 738 .alloc_pdu = iscsi_iser_pdu_alloc, 739 /* recovery */ 740 .session_recovery_timedout = iscsi_session_recovery_timedout, 741 742 .ep_connect = iscsi_iser_ep_connect, 743 .ep_poll = iscsi_iser_ep_poll, 744 .ep_disconnect = iscsi_iser_ep_disconnect 745 }; 746 747 static int __init iser_init(void) 748 { 749 int err; 750 751 iser_dbg("Starting iSER datamover...\n"); 752 753 if (iscsi_max_lun < 1) { 754 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun); 755 return -EINVAL; 756 } 757 758 memset(&ig, 0, sizeof(struct iser_global)); 759 760 ig.desc_cache = kmem_cache_create("iser_descriptors", 761 sizeof(struct iser_tx_desc), 762 0, SLAB_HWCACHE_ALIGN, 763 NULL); 764 if (ig.desc_cache == NULL) 765 return -ENOMEM; 766 767 /* device init is called only after the first addr resolution */ 768 mutex_init(&ig.device_list_mutex); 769 INIT_LIST_HEAD(&ig.device_list); 770 mutex_init(&ig.connlist_mutex); 771 INIT_LIST_HEAD(&ig.connlist); 772 773 iscsi_iser_scsi_transport = iscsi_register_transport( 774 &iscsi_iser_transport); 775 if (!iscsi_iser_scsi_transport) { 776 iser_err("iscsi_register_transport failed\n"); 777 err = -EINVAL; 778 goto register_transport_failure; 779 } 780 781 return 0; 782 783 register_transport_failure: 784 kmem_cache_destroy(ig.desc_cache); 785 786 return err; 787 } 788 789 static void __exit iser_exit(void) 790 { 791 iser_dbg("Removing iSER datamover...\n"); 792 iscsi_unregister_transport(&iscsi_iser_transport); 793 kmem_cache_destroy(ig.desc_cache); 794 } 795 796 module_init(iser_init); 797 module_exit(iser_exit); 798