1 /* 2 * QLogic iSCSI Offload Driver 3 * Copyright (c) 2016 Cavium Inc. 4 * 5 * This software is available under the terms of the GNU General Public License 6 * (GPL) Version 2, available from the file COPYING in the main directory of 7 * this source tree. 8 */ 9 10 #include <linux/blkdev.h> 11 #include <linux/etherdevice.h> 12 #include <linux/if_ether.h> 13 #include <linux/if_vlan.h> 14 #include <scsi/scsi_tcq.h> 15 16 #include "qedi.h" 17 #include "qedi_iscsi.h" 18 #include "qedi_gbl.h" 19 20 int qedi_recover_all_conns(struct qedi_ctx *qedi) 21 { 22 struct qedi_conn *qedi_conn; 23 int i; 24 25 for (i = 0; i < qedi->max_active_conns; i++) { 26 qedi_conn = qedi_get_conn_from_id(qedi, i); 27 if (!qedi_conn) 28 continue; 29 30 qedi_start_conn_recovery(qedi, qedi_conn); 31 } 32 33 return SUCCESS; 34 } 35 36 static int qedi_eh_host_reset(struct scsi_cmnd *cmd) 37 { 38 struct Scsi_Host *shost = cmd->device->host; 39 struct qedi_ctx *qedi; 40 41 qedi = iscsi_host_priv(shost); 42 43 return qedi_recover_all_conns(qedi); 44 } 45 46 struct scsi_host_template qedi_host_template = { 47 .module = THIS_MODULE, 48 .name = "QLogic QEDI 25/40/100Gb iSCSI Initiator Driver", 49 .proc_name = QEDI_MODULE_NAME, 50 .queuecommand = iscsi_queuecommand, 51 .eh_timed_out = iscsi_eh_cmd_timed_out, 52 .eh_abort_handler = iscsi_eh_abort, 53 .eh_device_reset_handler = iscsi_eh_device_reset, 54 .eh_target_reset_handler = iscsi_eh_recover_target, 55 .eh_host_reset_handler = qedi_eh_host_reset, 56 .target_alloc = iscsi_target_alloc, 57 .change_queue_depth = scsi_change_queue_depth, 58 .can_queue = QEDI_MAX_ISCSI_TASK, 59 .this_id = -1, 60 .sg_tablesize = QEDI_ISCSI_MAX_BDS_PER_CMD, 61 .max_sectors = 0xffff, 62 .dma_boundary = QEDI_HW_DMA_BOUNDARY, 63 .cmd_per_lun = 128, 64 .use_clustering = ENABLE_CLUSTERING, 65 .shost_attrs = qedi_shost_attrs, 66 }; 67 68 static void qedi_conn_free_login_resources(struct qedi_ctx *qedi, 69 struct qedi_conn *qedi_conn) 70 { 71 if (qedi_conn->gen_pdu.resp_bd_tbl) { 72 dma_free_coherent(&qedi->pdev->dev, QEDI_PAGE_SIZE, 73 qedi_conn->gen_pdu.resp_bd_tbl, 74 qedi_conn->gen_pdu.resp_bd_dma); 75 qedi_conn->gen_pdu.resp_bd_tbl = NULL; 76 } 77 78 if (qedi_conn->gen_pdu.req_bd_tbl) { 79 dma_free_coherent(&qedi->pdev->dev, QEDI_PAGE_SIZE, 80 qedi_conn->gen_pdu.req_bd_tbl, 81 qedi_conn->gen_pdu.req_bd_dma); 82 qedi_conn->gen_pdu.req_bd_tbl = NULL; 83 } 84 85 if (qedi_conn->gen_pdu.resp_buf) { 86 dma_free_coherent(&qedi->pdev->dev, 87 ISCSI_DEF_MAX_RECV_SEG_LEN, 88 qedi_conn->gen_pdu.resp_buf, 89 qedi_conn->gen_pdu.resp_dma_addr); 90 qedi_conn->gen_pdu.resp_buf = NULL; 91 } 92 93 if (qedi_conn->gen_pdu.req_buf) { 94 dma_free_coherent(&qedi->pdev->dev, 95 ISCSI_DEF_MAX_RECV_SEG_LEN, 96 qedi_conn->gen_pdu.req_buf, 97 qedi_conn->gen_pdu.req_dma_addr); 98 qedi_conn->gen_pdu.req_buf = NULL; 99 } 100 } 101 102 static int qedi_conn_alloc_login_resources(struct qedi_ctx *qedi, 103 struct qedi_conn *qedi_conn) 104 { 105 qedi_conn->gen_pdu.req_buf = 106 dma_alloc_coherent(&qedi->pdev->dev, 107 ISCSI_DEF_MAX_RECV_SEG_LEN, 108 &qedi_conn->gen_pdu.req_dma_addr, 109 GFP_KERNEL); 110 if (!qedi_conn->gen_pdu.req_buf) 111 goto login_req_buf_failure; 112 113 qedi_conn->gen_pdu.req_buf_size = 0; 114 qedi_conn->gen_pdu.req_wr_ptr = qedi_conn->gen_pdu.req_buf; 115 116 qedi_conn->gen_pdu.resp_buf = 117 dma_alloc_coherent(&qedi->pdev->dev, 118 ISCSI_DEF_MAX_RECV_SEG_LEN, 119 &qedi_conn->gen_pdu.resp_dma_addr, 120 GFP_KERNEL); 121 if (!qedi_conn->gen_pdu.resp_buf) 122 goto login_resp_buf_failure; 123 124 qedi_conn->gen_pdu.resp_buf_size = ISCSI_DEF_MAX_RECV_SEG_LEN; 125 qedi_conn->gen_pdu.resp_wr_ptr = qedi_conn->gen_pdu.resp_buf; 126 127 qedi_conn->gen_pdu.req_bd_tbl = 128 dma_alloc_coherent(&qedi->pdev->dev, QEDI_PAGE_SIZE, 129 &qedi_conn->gen_pdu.req_bd_dma, GFP_KERNEL); 130 if (!qedi_conn->gen_pdu.req_bd_tbl) 131 goto login_req_bd_tbl_failure; 132 133 qedi_conn->gen_pdu.resp_bd_tbl = 134 dma_alloc_coherent(&qedi->pdev->dev, QEDI_PAGE_SIZE, 135 &qedi_conn->gen_pdu.resp_bd_dma, 136 GFP_KERNEL); 137 if (!qedi_conn->gen_pdu.resp_bd_tbl) 138 goto login_resp_bd_tbl_failure; 139 140 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_SESS, 141 "Allocation successful, cid=0x%x\n", 142 qedi_conn->iscsi_conn_id); 143 return 0; 144 145 login_resp_bd_tbl_failure: 146 dma_free_coherent(&qedi->pdev->dev, QEDI_PAGE_SIZE, 147 qedi_conn->gen_pdu.req_bd_tbl, 148 qedi_conn->gen_pdu.req_bd_dma); 149 qedi_conn->gen_pdu.req_bd_tbl = NULL; 150 151 login_req_bd_tbl_failure: 152 dma_free_coherent(&qedi->pdev->dev, ISCSI_DEF_MAX_RECV_SEG_LEN, 153 qedi_conn->gen_pdu.resp_buf, 154 qedi_conn->gen_pdu.resp_dma_addr); 155 qedi_conn->gen_pdu.resp_buf = NULL; 156 login_resp_buf_failure: 157 dma_free_coherent(&qedi->pdev->dev, ISCSI_DEF_MAX_RECV_SEG_LEN, 158 qedi_conn->gen_pdu.req_buf, 159 qedi_conn->gen_pdu.req_dma_addr); 160 qedi_conn->gen_pdu.req_buf = NULL; 161 login_req_buf_failure: 162 iscsi_conn_printk(KERN_ERR, qedi_conn->cls_conn->dd_data, 163 "login resource alloc failed!!\n"); 164 return -ENOMEM; 165 } 166 167 static void qedi_destroy_cmd_pool(struct qedi_ctx *qedi, 168 struct iscsi_session *session) 169 { 170 int i; 171 172 for (i = 0; i < session->cmds_max; i++) { 173 struct iscsi_task *task = session->cmds[i]; 174 struct qedi_cmd *cmd = task->dd_data; 175 176 if (cmd->io_tbl.sge_tbl) 177 dma_free_coherent(&qedi->pdev->dev, 178 QEDI_ISCSI_MAX_BDS_PER_CMD * 179 sizeof(struct scsi_sge), 180 cmd->io_tbl.sge_tbl, 181 cmd->io_tbl.sge_tbl_dma); 182 183 if (cmd->sense_buffer) 184 dma_free_coherent(&qedi->pdev->dev, 185 SCSI_SENSE_BUFFERSIZE, 186 cmd->sense_buffer, 187 cmd->sense_buffer_dma); 188 } 189 } 190 191 static int qedi_alloc_sget(struct qedi_ctx *qedi, struct iscsi_session *session, 192 struct qedi_cmd *cmd) 193 { 194 struct qedi_io_bdt *io = &cmd->io_tbl; 195 struct scsi_sge *sge; 196 197 io->sge_tbl = dma_alloc_coherent(&qedi->pdev->dev, 198 QEDI_ISCSI_MAX_BDS_PER_CMD * 199 sizeof(*sge), 200 &io->sge_tbl_dma, GFP_KERNEL); 201 if (!io->sge_tbl) { 202 iscsi_session_printk(KERN_ERR, session, 203 "Could not allocate BD table.\n"); 204 return -ENOMEM; 205 } 206 207 io->sge_valid = 0; 208 return 0; 209 } 210 211 static int qedi_setup_cmd_pool(struct qedi_ctx *qedi, 212 struct iscsi_session *session) 213 { 214 int i; 215 216 for (i = 0; i < session->cmds_max; i++) { 217 struct iscsi_task *task = session->cmds[i]; 218 struct qedi_cmd *cmd = task->dd_data; 219 220 task->hdr = &cmd->hdr; 221 task->hdr_max = sizeof(struct iscsi_hdr); 222 223 if (qedi_alloc_sget(qedi, session, cmd)) 224 goto free_sgets; 225 226 cmd->sense_buffer = dma_alloc_coherent(&qedi->pdev->dev, 227 SCSI_SENSE_BUFFERSIZE, 228 &cmd->sense_buffer_dma, 229 GFP_KERNEL); 230 if (!cmd->sense_buffer) 231 goto free_sgets; 232 } 233 234 return 0; 235 236 free_sgets: 237 qedi_destroy_cmd_pool(qedi, session); 238 return -ENOMEM; 239 } 240 241 static struct iscsi_cls_session * 242 qedi_session_create(struct iscsi_endpoint *ep, u16 cmds_max, 243 u16 qdepth, uint32_t initial_cmdsn) 244 { 245 struct Scsi_Host *shost; 246 struct iscsi_cls_session *cls_session; 247 struct qedi_ctx *qedi; 248 struct qedi_endpoint *qedi_ep; 249 250 if (!ep) 251 return NULL; 252 253 qedi_ep = ep->dd_data; 254 shost = qedi_ep->qedi->shost; 255 qedi = iscsi_host_priv(shost); 256 257 if (cmds_max > qedi->max_sqes) 258 cmds_max = qedi->max_sqes; 259 else if (cmds_max < QEDI_SQ_WQES_MIN) 260 cmds_max = QEDI_SQ_WQES_MIN; 261 262 cls_session = iscsi_session_setup(&qedi_iscsi_transport, shost, 263 cmds_max, 0, sizeof(struct qedi_cmd), 264 initial_cmdsn, ISCSI_MAX_TARGET); 265 if (!cls_session) { 266 QEDI_ERR(&qedi->dbg_ctx, 267 "Failed to setup session for ep=%p\n", qedi_ep); 268 return NULL; 269 } 270 271 if (qedi_setup_cmd_pool(qedi, cls_session->dd_data)) { 272 QEDI_ERR(&qedi->dbg_ctx, 273 "Failed to setup cmd pool for ep=%p\n", qedi_ep); 274 goto session_teardown; 275 } 276 277 return cls_session; 278 279 session_teardown: 280 iscsi_session_teardown(cls_session); 281 return NULL; 282 } 283 284 static void qedi_session_destroy(struct iscsi_cls_session *cls_session) 285 { 286 struct iscsi_session *session = cls_session->dd_data; 287 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); 288 struct qedi_ctx *qedi = iscsi_host_priv(shost); 289 290 qedi_destroy_cmd_pool(qedi, session); 291 iscsi_session_teardown(cls_session); 292 } 293 294 static struct iscsi_cls_conn * 295 qedi_conn_create(struct iscsi_cls_session *cls_session, uint32_t cid) 296 { 297 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); 298 struct qedi_ctx *qedi = iscsi_host_priv(shost); 299 struct iscsi_cls_conn *cls_conn; 300 struct qedi_conn *qedi_conn; 301 struct iscsi_conn *conn; 302 303 cls_conn = iscsi_conn_setup(cls_session, sizeof(*qedi_conn), 304 cid); 305 if (!cls_conn) { 306 QEDI_ERR(&qedi->dbg_ctx, 307 "conn_new: iscsi conn setup failed, cid=0x%x, cls_sess=%p!\n", 308 cid, cls_session); 309 return NULL; 310 } 311 312 conn = cls_conn->dd_data; 313 qedi_conn = conn->dd_data; 314 qedi_conn->cls_conn = cls_conn; 315 qedi_conn->qedi = qedi; 316 qedi_conn->ep = NULL; 317 qedi_conn->active_cmd_count = 0; 318 INIT_LIST_HEAD(&qedi_conn->active_cmd_list); 319 spin_lock_init(&qedi_conn->list_lock); 320 321 if (qedi_conn_alloc_login_resources(qedi, qedi_conn)) { 322 iscsi_conn_printk(KERN_ALERT, conn, 323 "conn_new: login resc alloc failed, cid=0x%x, cls_sess=%p!!\n", 324 cid, cls_session); 325 goto free_conn; 326 } 327 328 return cls_conn; 329 330 free_conn: 331 iscsi_conn_teardown(cls_conn); 332 return NULL; 333 } 334 335 void qedi_mark_device_missing(struct iscsi_cls_session *cls_session) 336 { 337 iscsi_block_session(cls_session); 338 } 339 340 void qedi_mark_device_available(struct iscsi_cls_session *cls_session) 341 { 342 iscsi_unblock_session(cls_session); 343 } 344 345 static int qedi_bind_conn_to_iscsi_cid(struct qedi_ctx *qedi, 346 struct qedi_conn *qedi_conn) 347 { 348 u32 iscsi_cid = qedi_conn->iscsi_conn_id; 349 350 if (qedi->cid_que.conn_cid_tbl[iscsi_cid]) { 351 iscsi_conn_printk(KERN_ALERT, qedi_conn->cls_conn->dd_data, 352 "conn bind - entry #%d not free\n", 353 iscsi_cid); 354 return -EBUSY; 355 } 356 357 qedi->cid_que.conn_cid_tbl[iscsi_cid] = qedi_conn; 358 return 0; 359 } 360 361 struct qedi_conn *qedi_get_conn_from_id(struct qedi_ctx *qedi, u32 iscsi_cid) 362 { 363 if (!qedi->cid_que.conn_cid_tbl) { 364 QEDI_ERR(&qedi->dbg_ctx, "missing conn<->cid table\n"); 365 return NULL; 366 367 } else if (iscsi_cid >= qedi->max_active_conns) { 368 QEDI_ERR(&qedi->dbg_ctx, "wrong cid #%d\n", iscsi_cid); 369 return NULL; 370 } 371 return qedi->cid_que.conn_cid_tbl[iscsi_cid]; 372 } 373 374 static int qedi_conn_bind(struct iscsi_cls_session *cls_session, 375 struct iscsi_cls_conn *cls_conn, 376 u64 transport_fd, int is_leading) 377 { 378 struct iscsi_conn *conn = cls_conn->dd_data; 379 struct qedi_conn *qedi_conn = conn->dd_data; 380 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); 381 struct qedi_ctx *qedi = iscsi_host_priv(shost); 382 struct qedi_endpoint *qedi_ep; 383 struct iscsi_endpoint *ep; 384 385 ep = iscsi_lookup_endpoint(transport_fd); 386 if (!ep) 387 return -EINVAL; 388 389 qedi_ep = ep->dd_data; 390 if ((qedi_ep->state == EP_STATE_TCP_FIN_RCVD) || 391 (qedi_ep->state == EP_STATE_TCP_RST_RCVD)) 392 return -EINVAL; 393 394 if (iscsi_conn_bind(cls_session, cls_conn, is_leading)) 395 return -EINVAL; 396 397 qedi_ep->conn = qedi_conn; 398 qedi_conn->ep = qedi_ep; 399 qedi_conn->iscsi_conn_id = qedi_ep->iscsi_cid; 400 qedi_conn->fw_cid = qedi_ep->fw_cid; 401 qedi_conn->cmd_cleanup_req = 0; 402 qedi_conn->cmd_cleanup_cmpl = 0; 403 404 if (qedi_bind_conn_to_iscsi_cid(qedi, qedi_conn)) 405 return -EINVAL; 406 407 spin_lock_init(&qedi_conn->tmf_work_lock); 408 INIT_LIST_HEAD(&qedi_conn->tmf_work_list); 409 init_waitqueue_head(&qedi_conn->wait_queue); 410 return 0; 411 } 412 413 static int qedi_iscsi_update_conn(struct qedi_ctx *qedi, 414 struct qedi_conn *qedi_conn) 415 { 416 struct qed_iscsi_params_update *conn_info; 417 struct iscsi_cls_conn *cls_conn = qedi_conn->cls_conn; 418 struct iscsi_conn *conn = cls_conn->dd_data; 419 struct qedi_endpoint *qedi_ep; 420 int rval; 421 422 qedi_ep = qedi_conn->ep; 423 424 conn_info = kzalloc(sizeof(*conn_info), GFP_KERNEL); 425 if (!conn_info) { 426 QEDI_ERR(&qedi->dbg_ctx, "memory alloc failed\n"); 427 return -ENOMEM; 428 } 429 430 conn_info->update_flag = 0; 431 432 if (conn->hdrdgst_en) 433 SET_FIELD(conn_info->update_flag, 434 ISCSI_CONN_UPDATE_RAMROD_PARAMS_HD_EN, true); 435 if (conn->datadgst_en) 436 SET_FIELD(conn_info->update_flag, 437 ISCSI_CONN_UPDATE_RAMROD_PARAMS_DD_EN, true); 438 if (conn->session->initial_r2t_en) 439 SET_FIELD(conn_info->update_flag, 440 ISCSI_CONN_UPDATE_RAMROD_PARAMS_INITIAL_R2T, 441 true); 442 if (conn->session->imm_data_en) 443 SET_FIELD(conn_info->update_flag, 444 ISCSI_CONN_UPDATE_RAMROD_PARAMS_IMMEDIATE_DATA, 445 true); 446 447 conn_info->max_seq_size = conn->session->max_burst; 448 conn_info->max_recv_pdu_length = conn->max_recv_dlength; 449 conn_info->max_send_pdu_length = conn->max_xmit_dlength; 450 conn_info->first_seq_length = conn->session->first_burst; 451 conn_info->exp_stat_sn = conn->exp_statsn; 452 453 rval = qedi_ops->update_conn(qedi->cdev, qedi_ep->handle, 454 conn_info); 455 if (rval) { 456 rval = -ENXIO; 457 QEDI_ERR(&qedi->dbg_ctx, "Could not update connection\n"); 458 } 459 460 kfree(conn_info); 461 return rval; 462 } 463 464 static u16 qedi_calc_mss(u16 pmtu, u8 is_ipv6, u8 tcp_ts_en, u8 vlan_en) 465 { 466 u16 mss = 0; 467 u16 hdrs = TCP_HDR_LEN; 468 469 if (is_ipv6) 470 hdrs += IPV6_HDR_LEN; 471 else 472 hdrs += IPV4_HDR_LEN; 473 474 if (vlan_en) 475 hdrs += VLAN_LEN; 476 477 mss = pmtu - hdrs; 478 479 if (tcp_ts_en) 480 mss -= TCP_OPTION_LEN; 481 482 if (!mss) 483 mss = DEF_MSS; 484 485 return mss; 486 } 487 488 static int qedi_iscsi_offload_conn(struct qedi_endpoint *qedi_ep) 489 { 490 struct qedi_ctx *qedi = qedi_ep->qedi; 491 struct qed_iscsi_params_offload *conn_info; 492 int rval; 493 int i; 494 495 conn_info = kzalloc(sizeof(*conn_info), GFP_KERNEL); 496 if (!conn_info) { 497 QEDI_ERR(&qedi->dbg_ctx, 498 "Failed to allocate memory ep=%p\n", qedi_ep); 499 return -ENOMEM; 500 } 501 502 ether_addr_copy(conn_info->src.mac, qedi_ep->src_mac); 503 ether_addr_copy(conn_info->dst.mac, qedi_ep->dst_mac); 504 505 conn_info->src.ip[0] = ntohl(qedi_ep->src_addr[0]); 506 conn_info->dst.ip[0] = ntohl(qedi_ep->dst_addr[0]); 507 508 if (qedi_ep->ip_type == TCP_IPV4) { 509 conn_info->ip_version = 0; 510 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, 511 "After ntohl: src_addr=%pI4, dst_addr=%pI4\n", 512 qedi_ep->src_addr, qedi_ep->dst_addr); 513 } else { 514 for (i = 1; i < 4; i++) { 515 conn_info->src.ip[i] = ntohl(qedi_ep->src_addr[i]); 516 conn_info->dst.ip[i] = ntohl(qedi_ep->dst_addr[i]); 517 } 518 519 conn_info->ip_version = 1; 520 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, 521 "After ntohl: src_addr=%pI6, dst_addr=%pI6\n", 522 qedi_ep->src_addr, qedi_ep->dst_addr); 523 } 524 525 conn_info->src.port = qedi_ep->src_port; 526 conn_info->dst.port = qedi_ep->dst_port; 527 528 conn_info->layer_code = ISCSI_SLOW_PATH_LAYER_CODE; 529 conn_info->sq_pbl_addr = qedi_ep->sq_pbl_dma; 530 conn_info->vlan_id = qedi_ep->vlan_id; 531 532 SET_FIELD(conn_info->tcp_flags, TCP_OFFLOAD_PARAMS_TS_EN, 1); 533 SET_FIELD(conn_info->tcp_flags, TCP_OFFLOAD_PARAMS_DA_EN, 1); 534 SET_FIELD(conn_info->tcp_flags, TCP_OFFLOAD_PARAMS_DA_CNT_EN, 1); 535 SET_FIELD(conn_info->tcp_flags, TCP_OFFLOAD_PARAMS_KA_EN, 1); 536 537 conn_info->default_cq = (qedi_ep->fw_cid % qedi->num_queues); 538 539 conn_info->ka_max_probe_cnt = DEF_KA_MAX_PROBE_COUNT; 540 conn_info->dup_ack_theshold = 3; 541 conn_info->rcv_wnd = 65535; 542 543 conn_info->ss_thresh = 65535; 544 conn_info->srtt = 300; 545 conn_info->rtt_var = 150; 546 conn_info->flow_label = 0; 547 conn_info->ka_timeout = DEF_KA_TIMEOUT; 548 conn_info->ka_interval = DEF_KA_INTERVAL; 549 conn_info->max_rt_time = DEF_MAX_RT_TIME; 550 conn_info->ttl = DEF_TTL; 551 conn_info->tos_or_tc = DEF_TOS; 552 conn_info->remote_port = qedi_ep->dst_port; 553 conn_info->local_port = qedi_ep->src_port; 554 555 conn_info->mss = qedi_calc_mss(qedi_ep->pmtu, 556 (qedi_ep->ip_type == TCP_IPV6), 557 1, (qedi_ep->vlan_id != 0)); 558 559 conn_info->cwnd = DEF_MAX_CWND * conn_info->mss; 560 conn_info->rcv_wnd_scale = 4; 561 conn_info->da_timeout_value = 200; 562 conn_info->ack_frequency = 2; 563 564 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, 565 "Default cq index [%d], mss [%d]\n", 566 conn_info->default_cq, conn_info->mss); 567 568 rval = qedi_ops->offload_conn(qedi->cdev, qedi_ep->handle, conn_info); 569 if (rval) 570 QEDI_ERR(&qedi->dbg_ctx, "offload_conn returned %d, ep=%p\n", 571 rval, qedi_ep); 572 573 kfree(conn_info); 574 return rval; 575 } 576 577 static int qedi_conn_start(struct iscsi_cls_conn *cls_conn) 578 { 579 struct iscsi_conn *conn = cls_conn->dd_data; 580 struct qedi_conn *qedi_conn = conn->dd_data; 581 struct qedi_ctx *qedi; 582 int rval; 583 584 qedi = qedi_conn->qedi; 585 586 rval = qedi_iscsi_update_conn(qedi, qedi_conn); 587 if (rval) { 588 iscsi_conn_printk(KERN_ALERT, conn, 589 "conn_start: FW oflload conn failed.\n"); 590 rval = -EINVAL; 591 goto start_err; 592 } 593 594 clear_bit(QEDI_CONN_FW_CLEANUP, &qedi_conn->flags); 595 qedi_conn->abrt_conn = 0; 596 597 rval = iscsi_conn_start(cls_conn); 598 if (rval) { 599 iscsi_conn_printk(KERN_ALERT, conn, 600 "iscsi_conn_start: FW oflload conn failed!!\n"); 601 } 602 603 start_err: 604 return rval; 605 } 606 607 static void qedi_conn_destroy(struct iscsi_cls_conn *cls_conn) 608 { 609 struct iscsi_conn *conn = cls_conn->dd_data; 610 struct qedi_conn *qedi_conn = conn->dd_data; 611 struct Scsi_Host *shost; 612 struct qedi_ctx *qedi; 613 614 shost = iscsi_session_to_shost(iscsi_conn_to_session(cls_conn)); 615 qedi = iscsi_host_priv(shost); 616 617 qedi_conn_free_login_resources(qedi, qedi_conn); 618 iscsi_conn_teardown(cls_conn); 619 } 620 621 static int qedi_ep_get_param(struct iscsi_endpoint *ep, 622 enum iscsi_param param, char *buf) 623 { 624 struct qedi_endpoint *qedi_ep = ep->dd_data; 625 int len; 626 627 if (!qedi_ep) 628 return -ENOTCONN; 629 630 switch (param) { 631 case ISCSI_PARAM_CONN_PORT: 632 len = sprintf(buf, "%hu\n", qedi_ep->dst_port); 633 break; 634 case ISCSI_PARAM_CONN_ADDRESS: 635 if (qedi_ep->ip_type == TCP_IPV4) 636 len = sprintf(buf, "%pI4\n", qedi_ep->dst_addr); 637 else 638 len = sprintf(buf, "%pI6\n", qedi_ep->dst_addr); 639 break; 640 default: 641 return -ENOTCONN; 642 } 643 644 return len; 645 } 646 647 static int qedi_host_get_param(struct Scsi_Host *shost, 648 enum iscsi_host_param param, char *buf) 649 { 650 struct qedi_ctx *qedi; 651 int len; 652 653 qedi = iscsi_host_priv(shost); 654 655 switch (param) { 656 case ISCSI_HOST_PARAM_HWADDRESS: 657 len = sysfs_format_mac(buf, qedi->mac, 6); 658 break; 659 case ISCSI_HOST_PARAM_NETDEV_NAME: 660 len = sprintf(buf, "host%d\n", shost->host_no); 661 break; 662 case ISCSI_HOST_PARAM_IPADDRESS: 663 if (qedi->ip_type == TCP_IPV4) 664 len = sprintf(buf, "%pI4\n", qedi->src_ip); 665 else 666 len = sprintf(buf, "%pI6\n", qedi->src_ip); 667 break; 668 default: 669 return iscsi_host_get_param(shost, param, buf); 670 } 671 672 return len; 673 } 674 675 static void qedi_conn_get_stats(struct iscsi_cls_conn *cls_conn, 676 struct iscsi_stats *stats) 677 { 678 struct iscsi_conn *conn = cls_conn->dd_data; 679 struct qed_iscsi_stats iscsi_stats; 680 struct Scsi_Host *shost; 681 struct qedi_ctx *qedi; 682 683 shost = iscsi_session_to_shost(iscsi_conn_to_session(cls_conn)); 684 qedi = iscsi_host_priv(shost); 685 qedi_ops->get_stats(qedi->cdev, &iscsi_stats); 686 687 conn->txdata_octets = iscsi_stats.iscsi_tx_bytes_cnt; 688 conn->rxdata_octets = iscsi_stats.iscsi_rx_bytes_cnt; 689 conn->dataout_pdus_cnt = (uint32_t)iscsi_stats.iscsi_tx_data_pdu_cnt; 690 conn->datain_pdus_cnt = (uint32_t)iscsi_stats.iscsi_rx_data_pdu_cnt; 691 conn->r2t_pdus_cnt = (uint32_t)iscsi_stats.iscsi_rx_r2t_pdu_cnt; 692 693 stats->txdata_octets = conn->txdata_octets; 694 stats->rxdata_octets = conn->rxdata_octets; 695 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt; 696 stats->dataout_pdus = conn->dataout_pdus_cnt; 697 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt; 698 stats->datain_pdus = conn->datain_pdus_cnt; 699 stats->r2t_pdus = conn->r2t_pdus_cnt; 700 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt; 701 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt; 702 stats->digest_err = 0; 703 stats->timeout_err = 0; 704 strcpy(stats->custom[0].desc, "eh_abort_cnt"); 705 stats->custom[0].value = conn->eh_abort_cnt; 706 stats->custom_length = 1; 707 } 708 709 static void qedi_iscsi_prep_generic_pdu_bd(struct qedi_conn *qedi_conn) 710 { 711 struct scsi_sge *bd_tbl; 712 713 bd_tbl = (struct scsi_sge *)qedi_conn->gen_pdu.req_bd_tbl; 714 715 bd_tbl->sge_addr.hi = 716 (u32)((u64)qedi_conn->gen_pdu.req_dma_addr >> 32); 717 bd_tbl->sge_addr.lo = (u32)qedi_conn->gen_pdu.req_dma_addr; 718 bd_tbl->sge_len = qedi_conn->gen_pdu.req_wr_ptr - 719 qedi_conn->gen_pdu.req_buf; 720 bd_tbl = (struct scsi_sge *)qedi_conn->gen_pdu.resp_bd_tbl; 721 bd_tbl->sge_addr.hi = 722 (u32)((u64)qedi_conn->gen_pdu.resp_dma_addr >> 32); 723 bd_tbl->sge_addr.lo = (u32)qedi_conn->gen_pdu.resp_dma_addr; 724 bd_tbl->sge_len = ISCSI_DEF_MAX_RECV_SEG_LEN; 725 } 726 727 static int qedi_iscsi_send_generic_request(struct iscsi_task *task) 728 { 729 struct qedi_cmd *cmd = task->dd_data; 730 struct qedi_conn *qedi_conn = cmd->conn; 731 char *buf; 732 int data_len; 733 int rc = 0; 734 735 qedi_iscsi_prep_generic_pdu_bd(qedi_conn); 736 switch (task->hdr->opcode & ISCSI_OPCODE_MASK) { 737 case ISCSI_OP_LOGIN: 738 qedi_send_iscsi_login(qedi_conn, task); 739 break; 740 case ISCSI_OP_NOOP_OUT: 741 data_len = qedi_conn->gen_pdu.req_buf_size; 742 buf = qedi_conn->gen_pdu.req_buf; 743 if (data_len) 744 rc = qedi_send_iscsi_nopout(qedi_conn, task, 745 buf, data_len, 1); 746 else 747 rc = qedi_send_iscsi_nopout(qedi_conn, task, 748 NULL, 0, 1); 749 break; 750 case ISCSI_OP_LOGOUT: 751 rc = qedi_send_iscsi_logout(qedi_conn, task); 752 break; 753 case ISCSI_OP_SCSI_TMFUNC: 754 rc = qedi_iscsi_abort_work(qedi_conn, task); 755 break; 756 case ISCSI_OP_TEXT: 757 rc = qedi_send_iscsi_text(qedi_conn, task); 758 break; 759 default: 760 iscsi_conn_printk(KERN_ALERT, qedi_conn->cls_conn->dd_data, 761 "unsupported op 0x%x\n", task->hdr->opcode); 762 } 763 764 return rc; 765 } 766 767 static int qedi_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task) 768 { 769 struct qedi_conn *qedi_conn = conn->dd_data; 770 struct qedi_cmd *cmd = task->dd_data; 771 772 memset(qedi_conn->gen_pdu.req_buf, 0, ISCSI_DEF_MAX_RECV_SEG_LEN); 773 774 qedi_conn->gen_pdu.req_buf_size = task->data_count; 775 776 if (task->data_count) { 777 memcpy(qedi_conn->gen_pdu.req_buf, task->data, 778 task->data_count); 779 qedi_conn->gen_pdu.req_wr_ptr = 780 qedi_conn->gen_pdu.req_buf + task->data_count; 781 } 782 783 cmd->conn = conn->dd_data; 784 cmd->scsi_cmd = NULL; 785 return qedi_iscsi_send_generic_request(task); 786 } 787 788 static int qedi_task_xmit(struct iscsi_task *task) 789 { 790 struct iscsi_conn *conn = task->conn; 791 struct qedi_conn *qedi_conn = conn->dd_data; 792 struct qedi_cmd *cmd = task->dd_data; 793 struct scsi_cmnd *sc = task->sc; 794 795 cmd->state = 0; 796 cmd->task = NULL; 797 cmd->use_slowpath = false; 798 cmd->conn = qedi_conn; 799 cmd->task = task; 800 cmd->io_cmd_in_list = false; 801 INIT_LIST_HEAD(&cmd->io_cmd); 802 803 if (!sc) 804 return qedi_mtask_xmit(conn, task); 805 806 cmd->scsi_cmd = sc; 807 return qedi_iscsi_send_ioreq(task); 808 } 809 810 static struct iscsi_endpoint * 811 qedi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr, 812 int non_blocking) 813 { 814 struct qedi_ctx *qedi; 815 struct iscsi_endpoint *ep; 816 struct qedi_endpoint *qedi_ep; 817 struct sockaddr_in *addr; 818 struct sockaddr_in6 *addr6; 819 struct qed_dev *cdev = NULL; 820 struct qedi_uio_dev *udev = NULL; 821 struct iscsi_path path_req; 822 u32 msg_type = ISCSI_KEVENT_IF_DOWN; 823 u32 iscsi_cid = QEDI_CID_RESERVED; 824 u16 len = 0; 825 char *buf = NULL; 826 int ret, tmp; 827 828 if (!shost) { 829 ret = -ENXIO; 830 QEDI_ERR(NULL, "shost is NULL\n"); 831 return ERR_PTR(ret); 832 } 833 834 if (qedi_do_not_recover) { 835 ret = -ENOMEM; 836 return ERR_PTR(ret); 837 } 838 839 qedi = iscsi_host_priv(shost); 840 cdev = qedi->cdev; 841 udev = qedi->udev; 842 843 if (test_bit(QEDI_IN_OFFLINE, &qedi->flags) || 844 test_bit(QEDI_IN_RECOVERY, &qedi->flags)) { 845 ret = -ENOMEM; 846 return ERR_PTR(ret); 847 } 848 849 ep = iscsi_create_endpoint(sizeof(struct qedi_endpoint)); 850 if (!ep) { 851 QEDI_ERR(&qedi->dbg_ctx, "endpoint create fail\n"); 852 ret = -ENOMEM; 853 return ERR_PTR(ret); 854 } 855 qedi_ep = ep->dd_data; 856 memset(qedi_ep, 0, sizeof(struct qedi_endpoint)); 857 qedi_ep->state = EP_STATE_IDLE; 858 qedi_ep->iscsi_cid = (u32)-1; 859 qedi_ep->qedi = qedi; 860 861 if (dst_addr->sa_family == AF_INET) { 862 addr = (struct sockaddr_in *)dst_addr; 863 memcpy(qedi_ep->dst_addr, &addr->sin_addr.s_addr, 864 sizeof(struct in_addr)); 865 qedi_ep->dst_port = ntohs(addr->sin_port); 866 qedi_ep->ip_type = TCP_IPV4; 867 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, 868 "dst_addr=%pI4, dst_port=%u\n", 869 qedi_ep->dst_addr, qedi_ep->dst_port); 870 } else if (dst_addr->sa_family == AF_INET6) { 871 addr6 = (struct sockaddr_in6 *)dst_addr; 872 memcpy(qedi_ep->dst_addr, &addr6->sin6_addr, 873 sizeof(struct in6_addr)); 874 qedi_ep->dst_port = ntohs(addr6->sin6_port); 875 qedi_ep->ip_type = TCP_IPV6; 876 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, 877 "dst_addr=%pI6, dst_port=%u\n", 878 qedi_ep->dst_addr, qedi_ep->dst_port); 879 } else { 880 QEDI_ERR(&qedi->dbg_ctx, "Invalid endpoint\n"); 881 } 882 883 if (atomic_read(&qedi->link_state) != QEDI_LINK_UP) { 884 QEDI_WARN(&qedi->dbg_ctx, "qedi link down\n"); 885 ret = -ENXIO; 886 goto ep_conn_exit; 887 } 888 889 ret = qedi_alloc_sq(qedi, qedi_ep); 890 if (ret) 891 goto ep_conn_exit; 892 893 ret = qedi_ops->acquire_conn(qedi->cdev, &qedi_ep->handle, 894 &qedi_ep->fw_cid, &qedi_ep->p_doorbell); 895 896 if (ret) { 897 QEDI_ERR(&qedi->dbg_ctx, "Could not acquire connection\n"); 898 ret = -ENXIO; 899 goto ep_free_sq; 900 } 901 902 iscsi_cid = qedi_ep->handle; 903 qedi_ep->iscsi_cid = iscsi_cid; 904 905 init_waitqueue_head(&qedi_ep->ofld_wait); 906 init_waitqueue_head(&qedi_ep->tcp_ofld_wait); 907 qedi_ep->state = EP_STATE_OFLDCONN_START; 908 qedi->ep_tbl[iscsi_cid] = qedi_ep; 909 910 buf = (char *)&path_req; 911 len = sizeof(path_req); 912 memset(&path_req, 0, len); 913 914 msg_type = ISCSI_KEVENT_PATH_REQ; 915 path_req.handle = (u64)qedi_ep->iscsi_cid; 916 path_req.pmtu = qedi->ll2_mtu; 917 qedi_ep->pmtu = qedi->ll2_mtu; 918 if (qedi_ep->ip_type == TCP_IPV4) { 919 memcpy(&path_req.dst.v4_addr, &qedi_ep->dst_addr, 920 sizeof(struct in_addr)); 921 path_req.ip_addr_len = 4; 922 } else { 923 memcpy(&path_req.dst.v6_addr, &qedi_ep->dst_addr, 924 sizeof(struct in6_addr)); 925 path_req.ip_addr_len = 16; 926 } 927 928 ret = iscsi_offload_mesg(shost, &qedi_iscsi_transport, msg_type, buf, 929 len); 930 if (ret) { 931 QEDI_ERR(&qedi->dbg_ctx, 932 "iscsi_offload_mesg() failed for cid=0x%x ret=%d\n", 933 iscsi_cid, ret); 934 goto ep_rel_conn; 935 } 936 937 atomic_inc(&qedi->num_offloads); 938 return ep; 939 940 ep_rel_conn: 941 qedi->ep_tbl[iscsi_cid] = NULL; 942 tmp = qedi_ops->release_conn(qedi->cdev, qedi_ep->handle); 943 if (tmp) 944 QEDI_WARN(&qedi->dbg_ctx, "release_conn returned %d\n", 945 tmp); 946 ep_free_sq: 947 qedi_free_sq(qedi, qedi_ep); 948 ep_conn_exit: 949 iscsi_destroy_endpoint(ep); 950 return ERR_PTR(ret); 951 } 952 953 static int qedi_ep_poll(struct iscsi_endpoint *ep, int timeout_ms) 954 { 955 struct qedi_endpoint *qedi_ep; 956 int ret = 0; 957 958 if (qedi_do_not_recover) 959 return 1; 960 961 qedi_ep = ep->dd_data; 962 if (qedi_ep->state == EP_STATE_IDLE || 963 qedi_ep->state == EP_STATE_OFLDCONN_FAILED) 964 return -1; 965 966 if (qedi_ep->state == EP_STATE_OFLDCONN_COMPL) 967 ret = 1; 968 969 ret = wait_event_interruptible_timeout(qedi_ep->ofld_wait, 970 QEDI_OFLD_WAIT_STATE(qedi_ep), 971 msecs_to_jiffies(timeout_ms)); 972 973 if (qedi_ep->state == EP_STATE_OFLDCONN_FAILED) 974 ret = -1; 975 976 if (ret > 0) 977 return 1; 978 else if (!ret) 979 return 0; 980 else 981 return ret; 982 } 983 984 static void qedi_cleanup_active_cmd_list(struct qedi_conn *qedi_conn) 985 { 986 struct qedi_cmd *cmd, *cmd_tmp; 987 988 list_for_each_entry_safe(cmd, cmd_tmp, &qedi_conn->active_cmd_list, 989 io_cmd) { 990 list_del_init(&cmd->io_cmd); 991 qedi_conn->active_cmd_count--; 992 } 993 } 994 995 static void qedi_ep_disconnect(struct iscsi_endpoint *ep) 996 { 997 struct qedi_endpoint *qedi_ep; 998 struct qedi_conn *qedi_conn = NULL; 999 struct iscsi_conn *conn = NULL; 1000 struct qedi_ctx *qedi; 1001 int ret = 0; 1002 int wait_delay = 20 * HZ; 1003 int abrt_conn = 0; 1004 int count = 10; 1005 1006 qedi_ep = ep->dd_data; 1007 qedi = qedi_ep->qedi; 1008 1009 flush_work(&qedi_ep->offload_work); 1010 1011 if (qedi_ep->conn) { 1012 qedi_conn = qedi_ep->conn; 1013 conn = qedi_conn->cls_conn->dd_data; 1014 iscsi_suspend_queue(conn); 1015 abrt_conn = qedi_conn->abrt_conn; 1016 1017 while (count--) { 1018 if (!test_bit(QEDI_CONN_FW_CLEANUP, 1019 &qedi_conn->flags)) { 1020 break; 1021 } 1022 msleep(1000); 1023 } 1024 1025 if (test_bit(QEDI_IN_RECOVERY, &qedi->flags)) { 1026 if (qedi_do_not_recover) { 1027 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, 1028 "Do not recover cid=0x%x\n", 1029 qedi_ep->iscsi_cid); 1030 goto ep_exit_recover; 1031 } 1032 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, 1033 "Reset recovery cid=0x%x, qedi_ep=%p, state=0x%x\n", 1034 qedi_ep->iscsi_cid, qedi_ep, qedi_ep->state); 1035 qedi_cleanup_active_cmd_list(qedi_conn); 1036 goto ep_release_conn; 1037 } 1038 } 1039 1040 if (qedi_do_not_recover) 1041 goto ep_exit_recover; 1042 1043 switch (qedi_ep->state) { 1044 case EP_STATE_OFLDCONN_START: 1045 goto ep_release_conn; 1046 case EP_STATE_OFLDCONN_FAILED: 1047 break; 1048 case EP_STATE_OFLDCONN_COMPL: 1049 if (unlikely(!qedi_conn)) 1050 break; 1051 1052 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, 1053 "Active cmd count=%d, abrt_conn=%d, ep state=0x%x, cid=0x%x, qedi_conn=%p\n", 1054 qedi_conn->active_cmd_count, abrt_conn, 1055 qedi_ep->state, 1056 qedi_ep->iscsi_cid, 1057 qedi_ep->conn 1058 ); 1059 1060 if (!qedi_conn->active_cmd_count) 1061 abrt_conn = 0; 1062 else 1063 abrt_conn = 1; 1064 1065 if (abrt_conn) 1066 qedi_clearsq(qedi, qedi_conn, NULL); 1067 break; 1068 default: 1069 break; 1070 } 1071 1072 qedi_ep->state = EP_STATE_DISCONN_START; 1073 ret = qedi_ops->destroy_conn(qedi->cdev, qedi_ep->handle, abrt_conn); 1074 if (ret) { 1075 QEDI_WARN(&qedi->dbg_ctx, 1076 "destroy_conn failed returned %d\n", ret); 1077 } else { 1078 ret = wait_event_interruptible_timeout( 1079 qedi_ep->tcp_ofld_wait, 1080 (qedi_ep->state != 1081 EP_STATE_DISCONN_START), 1082 wait_delay); 1083 if ((ret <= 0) || (qedi_ep->state == EP_STATE_DISCONN_START)) { 1084 QEDI_WARN(&qedi->dbg_ctx, 1085 "Destroy conn timedout or interrupted, ret=%d, delay=%d, cid=0x%x\n", 1086 ret, wait_delay, qedi_ep->iscsi_cid); 1087 } 1088 } 1089 1090 ep_release_conn: 1091 ret = qedi_ops->release_conn(qedi->cdev, qedi_ep->handle); 1092 if (ret) 1093 QEDI_WARN(&qedi->dbg_ctx, 1094 "release_conn returned %d, cid=0x%x\n", 1095 ret, qedi_ep->iscsi_cid); 1096 ep_exit_recover: 1097 qedi_ep->state = EP_STATE_IDLE; 1098 qedi->ep_tbl[qedi_ep->iscsi_cid] = NULL; 1099 qedi->cid_que.conn_cid_tbl[qedi_ep->iscsi_cid] = NULL; 1100 qedi_free_id(&qedi->lcl_port_tbl, qedi_ep->src_port); 1101 qedi_free_sq(qedi, qedi_ep); 1102 1103 if (qedi_conn) 1104 qedi_conn->ep = NULL; 1105 1106 qedi_ep->conn = NULL; 1107 qedi_ep->qedi = NULL; 1108 atomic_dec(&qedi->num_offloads); 1109 1110 iscsi_destroy_endpoint(ep); 1111 } 1112 1113 static int qedi_data_avail(struct qedi_ctx *qedi, u16 vlanid) 1114 { 1115 struct qed_dev *cdev = qedi->cdev; 1116 struct qedi_uio_dev *udev; 1117 struct qedi_uio_ctrl *uctrl; 1118 struct sk_buff *skb; 1119 u32 len; 1120 int rc = 0; 1121 1122 udev = qedi->udev; 1123 if (!udev) { 1124 QEDI_ERR(&qedi->dbg_ctx, "udev is NULL.\n"); 1125 return -EINVAL; 1126 } 1127 1128 uctrl = (struct qedi_uio_ctrl *)udev->uctrl; 1129 if (!uctrl) { 1130 QEDI_ERR(&qedi->dbg_ctx, "uctlr is NULL.\n"); 1131 return -EINVAL; 1132 } 1133 1134 len = uctrl->host_tx_pkt_len; 1135 if (!len) { 1136 QEDI_ERR(&qedi->dbg_ctx, "Invalid len %u\n", len); 1137 return -EINVAL; 1138 } 1139 1140 skb = alloc_skb(len, GFP_ATOMIC); 1141 if (!skb) { 1142 QEDI_ERR(&qedi->dbg_ctx, "alloc_skb failed\n"); 1143 return -EINVAL; 1144 } 1145 1146 skb_put(skb, len); 1147 memcpy(skb->data, udev->tx_pkt, len); 1148 skb->ip_summed = CHECKSUM_NONE; 1149 1150 if (vlanid) 1151 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlanid); 1152 1153 rc = qedi_ops->ll2->start_xmit(cdev, skb); 1154 if (rc) { 1155 QEDI_ERR(&qedi->dbg_ctx, "ll2 start_xmit returned %d\n", 1156 rc); 1157 kfree_skb(skb); 1158 } 1159 1160 uctrl->host_tx_pkt_len = 0; 1161 uctrl->hw_tx_cons++; 1162 1163 return rc; 1164 } 1165 1166 static void qedi_offload_work(struct work_struct *work) 1167 { 1168 struct qedi_endpoint *qedi_ep = 1169 container_of(work, struct qedi_endpoint, offload_work); 1170 struct qedi_ctx *qedi; 1171 int wait_delay = 20 * HZ; 1172 int ret; 1173 1174 qedi = qedi_ep->qedi; 1175 1176 ret = qedi_iscsi_offload_conn(qedi_ep); 1177 if (ret) { 1178 QEDI_ERR(&qedi->dbg_ctx, 1179 "offload error: iscsi_cid=%u, qedi_ep=%p, ret=%d\n", 1180 qedi_ep->iscsi_cid, qedi_ep, ret); 1181 qedi_ep->state = EP_STATE_OFLDCONN_FAILED; 1182 return; 1183 } 1184 1185 ret = wait_event_interruptible_timeout(qedi_ep->tcp_ofld_wait, 1186 (qedi_ep->state == 1187 EP_STATE_OFLDCONN_COMPL), 1188 wait_delay); 1189 if ((ret <= 0) || (qedi_ep->state != EP_STATE_OFLDCONN_COMPL)) { 1190 qedi_ep->state = EP_STATE_OFLDCONN_FAILED; 1191 QEDI_ERR(&qedi->dbg_ctx, 1192 "Offload conn TIMEOUT iscsi_cid=%u, qedi_ep=%p\n", 1193 qedi_ep->iscsi_cid, qedi_ep); 1194 } 1195 } 1196 1197 static int qedi_set_path(struct Scsi_Host *shost, struct iscsi_path *path_data) 1198 { 1199 struct qedi_ctx *qedi; 1200 struct qedi_endpoint *qedi_ep; 1201 int ret = 0; 1202 u32 iscsi_cid; 1203 u16 port_id = 0; 1204 1205 if (!shost) { 1206 ret = -ENXIO; 1207 QEDI_ERR(NULL, "shost is NULL\n"); 1208 return ret; 1209 } 1210 1211 if (strcmp(shost->hostt->proc_name, "qedi")) { 1212 ret = -ENXIO; 1213 QEDI_ERR(NULL, "shost %s is invalid\n", 1214 shost->hostt->proc_name); 1215 return ret; 1216 } 1217 1218 qedi = iscsi_host_priv(shost); 1219 if (path_data->handle == QEDI_PATH_HANDLE) { 1220 ret = qedi_data_avail(qedi, path_data->vlan_id); 1221 goto set_path_exit; 1222 } 1223 1224 iscsi_cid = (u32)path_data->handle; 1225 qedi_ep = qedi->ep_tbl[iscsi_cid]; 1226 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, 1227 "iscsi_cid=0x%x, qedi_ep=%p\n", iscsi_cid, qedi_ep); 1228 if (!qedi_ep) { 1229 ret = -EINVAL; 1230 goto set_path_exit; 1231 } 1232 1233 if (!is_valid_ether_addr(&path_data->mac_addr[0])) { 1234 QEDI_NOTICE(&qedi->dbg_ctx, "dst mac NOT VALID\n"); 1235 ret = -EIO; 1236 goto set_path_exit; 1237 } 1238 1239 ether_addr_copy(&qedi_ep->src_mac[0], &qedi->mac[0]); 1240 ether_addr_copy(&qedi_ep->dst_mac[0], &path_data->mac_addr[0]); 1241 1242 qedi_ep->vlan_id = path_data->vlan_id; 1243 if (path_data->pmtu < DEF_PATH_MTU) { 1244 qedi_ep->pmtu = qedi->ll2_mtu; 1245 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO, 1246 "MTU cannot be %u, using default MTU %u\n", 1247 path_data->pmtu, qedi_ep->pmtu); 1248 } 1249 1250 if (path_data->pmtu != qedi->ll2_mtu) { 1251 if (path_data->pmtu > JUMBO_MTU) { 1252 ret = -EINVAL; 1253 QEDI_ERR(NULL, "Invalid MTU %u\n", path_data->pmtu); 1254 goto set_path_exit; 1255 } 1256 1257 qedi_reset_host_mtu(qedi, path_data->pmtu); 1258 qedi_ep->pmtu = qedi->ll2_mtu; 1259 } 1260 1261 port_id = qedi_ep->src_port; 1262 if (port_id >= QEDI_LOCAL_PORT_MIN && 1263 port_id < QEDI_LOCAL_PORT_MAX) { 1264 if (qedi_alloc_id(&qedi->lcl_port_tbl, port_id)) 1265 port_id = 0; 1266 } else { 1267 port_id = 0; 1268 } 1269 1270 if (!port_id) { 1271 port_id = qedi_alloc_new_id(&qedi->lcl_port_tbl); 1272 if (port_id == QEDI_LOCAL_PORT_INVALID) { 1273 QEDI_ERR(&qedi->dbg_ctx, 1274 "Failed to allocate port id for iscsi_cid=0x%x\n", 1275 iscsi_cid); 1276 ret = -ENOMEM; 1277 goto set_path_exit; 1278 } 1279 } 1280 1281 qedi_ep->src_port = port_id; 1282 1283 if (qedi_ep->ip_type == TCP_IPV4) { 1284 memcpy(&qedi_ep->src_addr[0], &path_data->src.v4_addr, 1285 sizeof(struct in_addr)); 1286 memcpy(&qedi->src_ip[0], &path_data->src.v4_addr, 1287 sizeof(struct in_addr)); 1288 qedi->ip_type = TCP_IPV4; 1289 1290 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, 1291 "src addr:port=%pI4:%u, dst addr:port=%pI4:%u\n", 1292 qedi_ep->src_addr, qedi_ep->src_port, 1293 qedi_ep->dst_addr, qedi_ep->dst_port); 1294 } else { 1295 memcpy(&qedi_ep->src_addr[0], &path_data->src.v6_addr, 1296 sizeof(struct in6_addr)); 1297 memcpy(&qedi->src_ip[0], &path_data->src.v6_addr, 1298 sizeof(struct in6_addr)); 1299 qedi->ip_type = TCP_IPV6; 1300 1301 QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_CONN, 1302 "src addr:port=%pI6:%u, dst addr:port=%pI6:%u\n", 1303 qedi_ep->src_addr, qedi_ep->src_port, 1304 qedi_ep->dst_addr, qedi_ep->dst_port); 1305 } 1306 1307 INIT_WORK(&qedi_ep->offload_work, qedi_offload_work); 1308 queue_work(qedi->offload_thread, &qedi_ep->offload_work); 1309 1310 ret = 0; 1311 1312 set_path_exit: 1313 return ret; 1314 } 1315 1316 static umode_t qedi_attr_is_visible(int param_type, int param) 1317 { 1318 switch (param_type) { 1319 case ISCSI_HOST_PARAM: 1320 switch (param) { 1321 case ISCSI_HOST_PARAM_NETDEV_NAME: 1322 case ISCSI_HOST_PARAM_HWADDRESS: 1323 case ISCSI_HOST_PARAM_IPADDRESS: 1324 return 0444; 1325 default: 1326 return 0; 1327 } 1328 case ISCSI_PARAM: 1329 switch (param) { 1330 case ISCSI_PARAM_MAX_RECV_DLENGTH: 1331 case ISCSI_PARAM_MAX_XMIT_DLENGTH: 1332 case ISCSI_PARAM_HDRDGST_EN: 1333 case ISCSI_PARAM_DATADGST_EN: 1334 case ISCSI_PARAM_CONN_ADDRESS: 1335 case ISCSI_PARAM_CONN_PORT: 1336 case ISCSI_PARAM_EXP_STATSN: 1337 case ISCSI_PARAM_PERSISTENT_ADDRESS: 1338 case ISCSI_PARAM_PERSISTENT_PORT: 1339 case ISCSI_PARAM_PING_TMO: 1340 case ISCSI_PARAM_RECV_TMO: 1341 case ISCSI_PARAM_INITIAL_R2T_EN: 1342 case ISCSI_PARAM_MAX_R2T: 1343 case ISCSI_PARAM_IMM_DATA_EN: 1344 case ISCSI_PARAM_FIRST_BURST: 1345 case ISCSI_PARAM_MAX_BURST: 1346 case ISCSI_PARAM_PDU_INORDER_EN: 1347 case ISCSI_PARAM_DATASEQ_INORDER_EN: 1348 case ISCSI_PARAM_ERL: 1349 case ISCSI_PARAM_TARGET_NAME: 1350 case ISCSI_PARAM_TPGT: 1351 case ISCSI_PARAM_USERNAME: 1352 case ISCSI_PARAM_PASSWORD: 1353 case ISCSI_PARAM_USERNAME_IN: 1354 case ISCSI_PARAM_PASSWORD_IN: 1355 case ISCSI_PARAM_FAST_ABORT: 1356 case ISCSI_PARAM_ABORT_TMO: 1357 case ISCSI_PARAM_LU_RESET_TMO: 1358 case ISCSI_PARAM_TGT_RESET_TMO: 1359 case ISCSI_PARAM_IFACE_NAME: 1360 case ISCSI_PARAM_INITIATOR_NAME: 1361 case ISCSI_PARAM_BOOT_ROOT: 1362 case ISCSI_PARAM_BOOT_NIC: 1363 case ISCSI_PARAM_BOOT_TARGET: 1364 return 0444; 1365 default: 1366 return 0; 1367 } 1368 } 1369 1370 return 0; 1371 } 1372 1373 static void qedi_cleanup_task(struct iscsi_task *task) 1374 { 1375 if (!task->sc || task->state == ISCSI_TASK_PENDING) { 1376 QEDI_INFO(NULL, QEDI_LOG_IO, "Returning ref_cnt=%d\n", 1377 refcount_read(&task->refcount)); 1378 return; 1379 } 1380 1381 qedi_iscsi_unmap_sg_list(task->dd_data); 1382 } 1383 1384 struct iscsi_transport qedi_iscsi_transport = { 1385 .owner = THIS_MODULE, 1386 .name = QEDI_MODULE_NAME, 1387 .caps = CAP_RECOVERY_L0 | CAP_HDRDGST | CAP_MULTI_R2T | CAP_DATADGST | 1388 CAP_DATA_PATH_OFFLOAD | CAP_TEXT_NEGO, 1389 .create_session = qedi_session_create, 1390 .destroy_session = qedi_session_destroy, 1391 .create_conn = qedi_conn_create, 1392 .bind_conn = qedi_conn_bind, 1393 .start_conn = qedi_conn_start, 1394 .stop_conn = iscsi_conn_stop, 1395 .destroy_conn = qedi_conn_destroy, 1396 .set_param = iscsi_set_param, 1397 .get_ep_param = qedi_ep_get_param, 1398 .get_conn_param = iscsi_conn_get_param, 1399 .get_session_param = iscsi_session_get_param, 1400 .get_host_param = qedi_host_get_param, 1401 .send_pdu = iscsi_conn_send_pdu, 1402 .get_stats = qedi_conn_get_stats, 1403 .xmit_task = qedi_task_xmit, 1404 .cleanup_task = qedi_cleanup_task, 1405 .session_recovery_timedout = iscsi_session_recovery_timedout, 1406 .ep_connect = qedi_ep_connect, 1407 .ep_poll = qedi_ep_poll, 1408 .ep_disconnect = qedi_ep_disconnect, 1409 .set_path = qedi_set_path, 1410 .attr_is_visible = qedi_attr_is_visible, 1411 }; 1412 1413 void qedi_start_conn_recovery(struct qedi_ctx *qedi, 1414 struct qedi_conn *qedi_conn) 1415 { 1416 struct iscsi_cls_session *cls_sess; 1417 struct iscsi_cls_conn *cls_conn; 1418 struct iscsi_conn *conn; 1419 1420 cls_conn = qedi_conn->cls_conn; 1421 conn = cls_conn->dd_data; 1422 cls_sess = iscsi_conn_to_session(cls_conn); 1423 1424 if (iscsi_is_session_online(cls_sess)) { 1425 qedi_conn->abrt_conn = 1; 1426 QEDI_ERR(&qedi->dbg_ctx, 1427 "Failing connection, state=0x%x, cid=0x%x\n", 1428 conn->session->state, qedi_conn->iscsi_conn_id); 1429 iscsi_conn_failure(qedi_conn->cls_conn->dd_data, 1430 ISCSI_ERR_CONN_FAILED); 1431 } 1432 } 1433 1434 static const struct { 1435 enum iscsi_error_types error_code; 1436 char *err_string; 1437 } qedi_iscsi_error[] = { 1438 { ISCSI_STATUS_NONE, 1439 "tcp_error none" 1440 }, 1441 { ISCSI_CONN_ERROR_TASK_CID_MISMATCH, 1442 "task cid mismatch" 1443 }, 1444 { ISCSI_CONN_ERROR_TASK_NOT_VALID, 1445 "invalid task" 1446 }, 1447 { ISCSI_CONN_ERROR_RQ_RING_IS_FULL, 1448 "rq ring full" 1449 }, 1450 { ISCSI_CONN_ERROR_CMDQ_RING_IS_FULL, 1451 "cmdq ring full" 1452 }, 1453 { ISCSI_CONN_ERROR_HQE_CACHING_FAILED, 1454 "sge caching failed" 1455 }, 1456 { ISCSI_CONN_ERROR_HEADER_DIGEST_ERROR, 1457 "hdr digest error" 1458 }, 1459 { ISCSI_CONN_ERROR_LOCAL_COMPLETION_ERROR, 1460 "local cmpl error" 1461 }, 1462 { ISCSI_CONN_ERROR_DATA_OVERRUN, 1463 "invalid task" 1464 }, 1465 { ISCSI_CONN_ERROR_OUT_OF_SGES_ERROR, 1466 "out of sge error" 1467 }, 1468 { ISCSI_CONN_ERROR_TCP_IP_FRAGMENT_ERROR, 1469 "tcp ip fragment error" 1470 }, 1471 { ISCSI_CONN_ERROR_PROTOCOL_ERR_AHS_LEN, 1472 "AHS len protocol error" 1473 }, 1474 { ISCSI_CONN_ERROR_PROTOCOL_ERR_ITT_OUT_OF_RANGE, 1475 "itt out of range error" 1476 }, 1477 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DATA_SEG_LEN_EXCEEDS_PDU_SIZE, 1478 "data seg more than pdu size" 1479 }, 1480 { ISCSI_CONN_ERROR_PROTOCOL_ERR_INVALID_OPCODE, 1481 "invalid opcode" 1482 }, 1483 { ISCSI_CONN_ERROR_PROTOCOL_ERR_INVALID_OPCODE_BEFORE_UPDATE, 1484 "invalid opcode before update" 1485 }, 1486 { ISCSI_CONN_ERROR_UNVALID_NOPIN_DSL, 1487 "unexpected opcode" 1488 }, 1489 { ISCSI_CONN_ERROR_PROTOCOL_ERR_R2T_CARRIES_NO_DATA, 1490 "r2t carries no data" 1491 }, 1492 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DATA_SN, 1493 "data sn error" 1494 }, 1495 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DATA_IN_TTT, 1496 "data TTT error" 1497 }, 1498 { ISCSI_CONN_ERROR_PROTOCOL_ERR_R2T_TTT, 1499 "r2t TTT error" 1500 }, 1501 { ISCSI_CONN_ERROR_PROTOCOL_ERR_R2T_BUFFER_OFFSET, 1502 "buffer offset error" 1503 }, 1504 { ISCSI_CONN_ERROR_PROTOCOL_ERR_BUFFER_OFFSET_OOO, 1505 "buffer offset ooo" 1506 }, 1507 { ISCSI_CONN_ERROR_PROTOCOL_ERR_R2T_SN, 1508 "data seg len 0" 1509 }, 1510 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DESIRED_DATA_TRNS_LEN_0, 1511 "data xer len error" 1512 }, 1513 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DESIRED_DATA_TRNS_LEN_1, 1514 "data xer len1 error" 1515 }, 1516 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DESIRED_DATA_TRNS_LEN_2, 1517 "data xer len2 error" 1518 }, 1519 { ISCSI_CONN_ERROR_PROTOCOL_ERR_LUN, 1520 "protocol lun error" 1521 }, 1522 { ISCSI_CONN_ERROR_PROTOCOL_ERR_F_BIT_ZERO, 1523 "f bit zero error" 1524 }, 1525 { ISCSI_CONN_ERROR_PROTOCOL_ERR_EXP_STAT_SN, 1526 "exp stat sn error" 1527 }, 1528 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DSL_NOT_ZERO, 1529 "dsl not zero error" 1530 }, 1531 { ISCSI_CONN_ERROR_PROTOCOL_ERR_INVALID_DSL, 1532 "invalid dsl" 1533 }, 1534 { ISCSI_CONN_ERROR_PROTOCOL_ERR_DATA_SEG_LEN_TOO_BIG, 1535 "data seg len too big" 1536 }, 1537 { ISCSI_CONN_ERROR_PROTOCOL_ERR_OUTSTANDING_R2T_COUNT, 1538 "outstanding r2t count error" 1539 }, 1540 { ISCSI_CONN_ERROR_SENSE_DATA_LENGTH, 1541 "sense datalen error" 1542 }, 1543 }; 1544 1545 char *qedi_get_iscsi_error(enum iscsi_error_types err_code) 1546 { 1547 int i; 1548 char *msg = NULL; 1549 1550 for (i = 0; i < ARRAY_SIZE(qedi_iscsi_error); i++) { 1551 if (qedi_iscsi_error[i].error_code == err_code) { 1552 msg = qedi_iscsi_error[i].err_string; 1553 break; 1554 } 1555 } 1556 return msg; 1557 } 1558 1559 void qedi_process_iscsi_error(struct qedi_endpoint *ep, 1560 struct iscsi_eqe_data *data) 1561 { 1562 struct qedi_conn *qedi_conn; 1563 struct qedi_ctx *qedi; 1564 char warn_notice[] = "iscsi_warning"; 1565 char error_notice[] = "iscsi_error"; 1566 char unknown_msg[] = "Unknown error"; 1567 char *message; 1568 int need_recovery = 0; 1569 u32 err_mask = 0; 1570 char *msg; 1571 1572 if (!ep) 1573 return; 1574 1575 qedi_conn = ep->conn; 1576 if (!qedi_conn) 1577 return; 1578 1579 qedi = ep->qedi; 1580 1581 QEDI_ERR(&qedi->dbg_ctx, "async event iscsi error:0x%x\n", 1582 data->error_code); 1583 1584 if (err_mask) { 1585 need_recovery = 0; 1586 message = warn_notice; 1587 } else { 1588 need_recovery = 1; 1589 message = error_notice; 1590 } 1591 1592 msg = qedi_get_iscsi_error(data->error_code); 1593 if (!msg) { 1594 need_recovery = 0; 1595 msg = unknown_msg; 1596 } 1597 1598 iscsi_conn_printk(KERN_ALERT, 1599 qedi_conn->cls_conn->dd_data, 1600 "qedi: %s - %s\n", message, msg); 1601 1602 if (need_recovery) 1603 qedi_start_conn_recovery(qedi_conn->qedi, qedi_conn); 1604 } 1605 1606 void qedi_process_tcp_error(struct qedi_endpoint *ep, 1607 struct iscsi_eqe_data *data) 1608 { 1609 struct qedi_conn *qedi_conn; 1610 1611 if (!ep) 1612 return; 1613 1614 qedi_conn = ep->conn; 1615 if (!qedi_conn) 1616 return; 1617 1618 QEDI_ERR(&ep->qedi->dbg_ctx, "async event TCP error:0x%x\n", 1619 data->error_code); 1620 1621 qedi_start_conn_recovery(qedi_conn->qedi, qedi_conn); 1622 } 1623