blob: 81b45d4d9aa9ca4dddd30e4e2153b1eab414721f [file] [log] [blame]
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001/*
2 * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved.
3 * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 *
33 * $Id: iser_verbs.c 7051 2006-05-10 12:29:11Z ogerlitz $
34 */
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030035#include <linux/kernel.h>
36#include <linux/module.h>
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030037#include <linux/delay.h>
38#include <linux/version.h>
39
40#include "iscsi_iser.h"
41
42#define ISCSI_ISER_MAX_CONN 8
43#define ISER_MAX_CQ_LEN ((ISER_QP_MAX_RECV_DTOS + \
44 ISER_QP_MAX_REQ_DTOS) * \
45 ISCSI_ISER_MAX_CONN)
46
47static void iser_cq_tasklet_fn(unsigned long data);
48static void iser_cq_callback(struct ib_cq *cq, void *cq_context);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030049
50static void iser_cq_event_callback(struct ib_event *cause, void *context)
51{
52 iser_err("got cq event %d \n", cause->event);
53}
54
55static void iser_qp_event_callback(struct ib_event *cause, void *context)
56{
57 iser_err("got qp event %d\n",cause->event);
58}
59
60/**
61 * iser_create_device_ib_res - creates Protection Domain (PD), Completion
62 * Queue (CQ), DMA Memory Region (DMA MR) with the device associated with
63 * the adapator.
64 *
65 * returns 0 on success, -1 on failure
66 */
67static int iser_create_device_ib_res(struct iser_device *device)
68{
69 device->pd = ib_alloc_pd(device->ib_device);
70 if (IS_ERR(device->pd))
71 goto pd_err;
72
73 device->cq = ib_create_cq(device->ib_device,
74 iser_cq_callback,
75 iser_cq_event_callback,
76 (void *)device,
Michael S. Tsirkinf4fd0b22007-05-03 13:48:47 +030077 ISER_MAX_CQ_LEN, 0);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030078 if (IS_ERR(device->cq))
79 goto cq_err;
80
81 if (ib_req_notify_cq(device->cq, IB_CQ_NEXT_COMP))
82 goto cq_arm_err;
83
84 tasklet_init(&device->cq_tasklet,
85 iser_cq_tasklet_fn,
86 (unsigned long)device);
87
Erez Zilberd8111022006-09-11 12:26:33 +030088 device->mr = ib_get_dma_mr(device->pd, IB_ACCESS_LOCAL_WRITE |
89 IB_ACCESS_REMOTE_WRITE |
90 IB_ACCESS_REMOTE_READ);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030091 if (IS_ERR(device->mr))
92 goto dma_mr_err;
93
94 return 0;
95
96dma_mr_err:
97 tasklet_kill(&device->cq_tasklet);
98cq_arm_err:
99 ib_destroy_cq(device->cq);
100cq_err:
101 ib_dealloc_pd(device->pd);
102pd_err:
103 iser_err("failed to allocate an IB resource\n");
104 return -1;
105}
106
107/**
Oliver Pinter38dc7322008-01-25 14:15:32 -0800108 * iser_free_device_ib_res - destroy/dealloc/dereg the DMA MR,
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300109 * CQ and PD created with the device associated with the adapator.
110 */
111static void iser_free_device_ib_res(struct iser_device *device)
112{
113 BUG_ON(device->mr == NULL);
114
115 tasklet_kill(&device->cq_tasklet);
116
117 (void)ib_dereg_mr(device->mr);
118 (void)ib_destroy_cq(device->cq);
119 (void)ib_dealloc_pd(device->pd);
120
121 device->mr = NULL;
122 device->cq = NULL;
123 device->pd = NULL;
124}
125
126/**
127 * iser_create_ib_conn_res - Creates FMR pool and Queue-Pair (QP)
128 *
129 * returns 0 on success, -1 on failure
130 */
131static int iser_create_ib_conn_res(struct iser_conn *ib_conn)
132{
133 struct iser_device *device;
134 struct ib_qp_init_attr init_attr;
135 int ret;
136 struct ib_fmr_pool_param params;
137
138 BUG_ON(ib_conn->device == NULL);
139
140 device = ib_conn->device;
141
142 ib_conn->page_vec = kmalloc(sizeof(struct iser_page_vec) +
143 (sizeof(u64) * (ISCSI_ISER_SG_TABLESIZE +1)),
144 GFP_KERNEL);
145 if (!ib_conn->page_vec) {
146 ret = -ENOMEM;
147 goto alloc_err;
148 }
149 ib_conn->page_vec->pages = (u64 *) (ib_conn->page_vec + 1);
150
Erez Zilber8dfa0872006-09-11 12:22:30 +0300151 params.page_shift = SHIFT_4K;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300152 /* when the first/last SG element are not start/end *
153 * page aligned, the map whould be of N+1 pages */
154 params.max_pages_per_fmr = ISCSI_ISER_SG_TABLESIZE + 1;
155 /* make the pool size twice the max number of SCSI commands *
156 * the ML is expected to queue, watermark for unmap at 50% */
Mike Christie15482712007-05-30 12:57:19 -0500157 params.pool_size = ISCSI_DEF_XMIT_CMDS_MAX * 2;
158 params.dirty_watermark = ISCSI_DEF_XMIT_CMDS_MAX;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300159 params.cache = 0;
160 params.flush_function = NULL;
161 params.access = (IB_ACCESS_LOCAL_WRITE |
162 IB_ACCESS_REMOTE_WRITE |
163 IB_ACCESS_REMOTE_READ);
164
165 ib_conn->fmr_pool = ib_create_fmr_pool(device->pd, &params);
166 if (IS_ERR(ib_conn->fmr_pool)) {
167 ret = PTR_ERR(ib_conn->fmr_pool);
168 goto fmr_pool_err;
169 }
170
171 memset(&init_attr, 0, sizeof init_attr);
172
173 init_attr.event_handler = iser_qp_event_callback;
174 init_attr.qp_context = (void *)ib_conn;
175 init_attr.send_cq = device->cq;
176 init_attr.recv_cq = device->cq;
177 init_attr.cap.max_send_wr = ISER_QP_MAX_REQ_DTOS;
178 init_attr.cap.max_recv_wr = ISER_QP_MAX_RECV_DTOS;
179 init_attr.cap.max_send_sge = MAX_REGD_BUF_VECTOR_LEN;
180 init_attr.cap.max_recv_sge = 2;
181 init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
182 init_attr.qp_type = IB_QPT_RC;
183
184 ret = rdma_create_qp(ib_conn->cma_id, device->pd, &init_attr);
185 if (ret)
186 goto qp_err;
187
188 ib_conn->qp = ib_conn->cma_id->qp;
189 iser_err("setting conn %p cma_id %p: fmr_pool %p qp %p\n",
190 ib_conn, ib_conn->cma_id,
191 ib_conn->fmr_pool, ib_conn->cma_id->qp);
192 return ret;
193
194qp_err:
195 (void)ib_destroy_fmr_pool(ib_conn->fmr_pool);
196fmr_pool_err:
197 kfree(ib_conn->page_vec);
198alloc_err:
199 iser_err("unable to alloc mem or create resource, err %d\n", ret);
200 return ret;
201}
202
203/**
204 * releases the FMR pool, QP and CMA ID objects, returns 0 on success,
205 * -1 on failure
206 */
207static int iser_free_ib_conn_res(struct iser_conn *ib_conn)
208{
209 BUG_ON(ib_conn == NULL);
210
211 iser_err("freeing conn %p cma_id %p fmr pool %p qp %p\n",
212 ib_conn, ib_conn->cma_id,
213 ib_conn->fmr_pool, ib_conn->qp);
214
215 /* qp is created only once both addr & route are resolved */
216 if (ib_conn->fmr_pool != NULL)
217 ib_destroy_fmr_pool(ib_conn->fmr_pool);
218
219 if (ib_conn->qp != NULL)
220 rdma_destroy_qp(ib_conn->cma_id);
221
222 if (ib_conn->cma_id != NULL)
223 rdma_destroy_id(ib_conn->cma_id);
224
225 ib_conn->fmr_pool = NULL;
226 ib_conn->qp = NULL;
227 ib_conn->cma_id = NULL;
228 kfree(ib_conn->page_vec);
229
230 return 0;
231}
232
233/**
234 * based on the resolved device node GUID see if there already allocated
235 * device for this device. If there's no such, create one.
236 */
237static
238struct iser_device *iser_device_find_by_ib_device(struct rdma_cm_id *cma_id)
239{
Arne Redlich9a378272008-03-04 14:07:22 +0200240 struct iser_device *device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300241
242 mutex_lock(&ig.device_list_mutex);
243
Arne Redlich9a378272008-03-04 14:07:22 +0200244 list_for_each_entry(device, &ig.device_list, ig_list)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300245 /* find if there's a match using the node GUID */
246 if (device->ib_device->node_guid == cma_id->device->node_guid)
Arne Redlichd33ed422008-03-04 14:11:54 +0200247 goto inc_refcnt;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300248
Arne Redlich9a378272008-03-04 14:07:22 +0200249 device = kzalloc(sizeof *device, GFP_KERNEL);
250 if (device == NULL)
251 goto out;
252
253 /* assign this device to the device */
254 device->ib_device = cma_id->device;
255 /* init the device and link it into ig device list */
256 if (iser_create_device_ib_res(device)) {
257 kfree(device);
258 device = NULL;
259 goto out;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300260 }
Arne Redlich9a378272008-03-04 14:07:22 +0200261 list_add(&device->ig_list, &ig.device_list);
262
Arne Redlichd33ed422008-03-04 14:11:54 +0200263inc_refcnt:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300264 device->refcount++;
Arne Redlichd33ed422008-03-04 14:11:54 +0200265out:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300266 mutex_unlock(&ig.device_list_mutex);
267 return device;
268}
269
270/* if there's no demand for this device, release it */
271static void iser_device_try_release(struct iser_device *device)
272{
273 mutex_lock(&ig.device_list_mutex);
274 device->refcount--;
275 iser_err("device %p refcount %d\n",device,device->refcount);
276 if (!device->refcount) {
277 iser_free_device_ib_res(device);
278 list_del(&device->ig_list);
279 kfree(device);
280 }
281 mutex_unlock(&ig.device_list_mutex);
282}
283
284int iser_conn_state_comp(struct iser_conn *ib_conn,
285 enum iser_ib_conn_state comp)
286{
287 int ret;
288
289 spin_lock_bh(&ib_conn->lock);
290 ret = (ib_conn->state == comp);
291 spin_unlock_bh(&ib_conn->lock);
292 return ret;
293}
294
295static int iser_conn_state_comp_exch(struct iser_conn *ib_conn,
296 enum iser_ib_conn_state comp,
297 enum iser_ib_conn_state exch)
298{
299 int ret;
300
301 spin_lock_bh(&ib_conn->lock);
302 if ((ret = (ib_conn->state == comp)))
303 ib_conn->state = exch;
304 spin_unlock_bh(&ib_conn->lock);
305 return ret;
306}
307
308/**
Roland Dreier41179e22007-07-17 18:37:42 -0700309 * Frees all conn objects and deallocs conn descriptor
310 */
311static void iser_conn_release(struct iser_conn *ib_conn)
312{
313 struct iser_device *device = ib_conn->device;
314
315 BUG_ON(ib_conn->state != ISER_CONN_DOWN);
316
317 mutex_lock(&ig.connlist_mutex);
318 list_del(&ib_conn->conn_list);
319 mutex_unlock(&ig.connlist_mutex);
320
321 iser_free_ib_conn_res(ib_conn);
322 ib_conn->device = NULL;
323 /* on EVENT_ADDR_ERROR there's no device yet for this conn */
324 if (device != NULL)
325 iser_device_try_release(device);
326 if (ib_conn->iser_conn)
327 ib_conn->iser_conn->ib_conn = NULL;
Mike Christie412eeaf2008-05-21 15:54:14 -0500328 iscsi_destroy_endpoint(ib_conn->ep);
Roland Dreier41179e22007-07-17 18:37:42 -0700329}
330
Mike Christieb40977d2008-05-21 15:54:03 -0500331void iser_conn_get(struct iser_conn *ib_conn)
332{
333 atomic_inc(&ib_conn->refcount);
334}
335
336void iser_conn_put(struct iser_conn *ib_conn)
337{
338 if (atomic_dec_and_test(&ib_conn->refcount))
339 iser_conn_release(ib_conn);
340}
341
Roland Dreier41179e22007-07-17 18:37:42 -0700342/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300343 * triggers start of the disconnect procedures and wait for them to be done
344 */
345void iser_conn_terminate(struct iser_conn *ib_conn)
346{
347 int err = 0;
348
349 /* change the ib conn state only if the conn is UP, however always call
350 * rdma_disconnect since this is the only way to cause the CMA to change
351 * the QP state to ERROR
352 */
353
354 iser_conn_state_comp_exch(ib_conn, ISER_CONN_UP, ISER_CONN_TERMINATING);
355 err = rdma_disconnect(ib_conn->cma_id);
356 if (err)
357 iser_err("Failed to disconnect, conn: 0x%p err %d\n",
358 ib_conn,err);
359
360 wait_event_interruptible(ib_conn->wait,
361 ib_conn->state == ISER_CONN_DOWN);
362
Mike Christieb40977d2008-05-21 15:54:03 -0500363 iser_conn_put(ib_conn);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300364}
365
366static void iser_connect_error(struct rdma_cm_id *cma_id)
367{
368 struct iser_conn *ib_conn;
369 ib_conn = (struct iser_conn *)cma_id->context;
370
371 ib_conn->state = ISER_CONN_DOWN;
372 wake_up_interruptible(&ib_conn->wait);
373}
374
375static void iser_addr_handler(struct rdma_cm_id *cma_id)
376{
377 struct iser_device *device;
378 struct iser_conn *ib_conn;
379 int ret;
380
381 device = iser_device_find_by_ib_device(cma_id);
Arne Redlichd33ed422008-03-04 14:11:54 +0200382 if (!device) {
383 iser_err("device lookup/creation failed\n");
384 iser_connect_error(cma_id);
385 return;
386 }
387
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300388 ib_conn = (struct iser_conn *)cma_id->context;
389 ib_conn->device = device;
390
391 ret = rdma_resolve_route(cma_id, 1000);
392 if (ret) {
393 iser_err("resolve route failed: %d\n", ret);
394 iser_connect_error(cma_id);
395 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300396}
397
398static void iser_route_handler(struct rdma_cm_id *cma_id)
399{
400 struct rdma_conn_param conn_param;
401 int ret;
402
403 ret = iser_create_ib_conn_res((struct iser_conn *)cma_id->context);
404 if (ret)
405 goto failure;
406
407 iser_dbg("path.mtu is %d setting it to %d\n",
408 cma_id->route.path_rec->mtu, IB_MTU_1024);
409
410 /* we must set the MTU to 1024 as this is what the target is assuming */
411 if (cma_id->route.path_rec->mtu > IB_MTU_1024)
412 cma_id->route.path_rec->mtu = IB_MTU_1024;
413
414 memset(&conn_param, 0, sizeof conn_param);
415 conn_param.responder_resources = 4;
416 conn_param.initiator_depth = 1;
417 conn_param.retry_count = 7;
418 conn_param.rnr_retry_count = 6;
419
420 ret = rdma_connect(cma_id, &conn_param);
421 if (ret) {
422 iser_err("failure connecting: %d\n", ret);
423 goto failure;
424 }
425
426 return;
427failure:
428 iser_connect_error(cma_id);
429}
430
431static void iser_connected_handler(struct rdma_cm_id *cma_id)
432{
433 struct iser_conn *ib_conn;
434
435 ib_conn = (struct iser_conn *)cma_id->context;
436 ib_conn->state = ISER_CONN_UP;
437 wake_up_interruptible(&ib_conn->wait);
438}
439
440static void iser_disconnected_handler(struct rdma_cm_id *cma_id)
441{
442 struct iser_conn *ib_conn;
443
444 ib_conn = (struct iser_conn *)cma_id->context;
445 ib_conn->disc_evt_flag = 1;
446
447 /* getting here when the state is UP means that the conn is being *
448 * terminated asynchronously from the iSCSI layer's perspective. */
449 if (iser_conn_state_comp_exch(ib_conn, ISER_CONN_UP,
450 ISER_CONN_TERMINATING))
451 iscsi_conn_failure(ib_conn->iser_conn->iscsi_conn,
452 ISCSI_ERR_CONN_FAILED);
453
454 /* Complete the termination process if no posts are pending */
455 if ((atomic_read(&ib_conn->post_recv_buf_count) == 0) &&
456 (atomic_read(&ib_conn->post_send_buf_count) == 0)) {
457 ib_conn->state = ISER_CONN_DOWN;
458 wake_up_interruptible(&ib_conn->wait);
459 }
460}
461
462static int iser_cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
463{
464 int ret = 0;
465
466 iser_err("event %d conn %p id %p\n",event->event,cma_id->context,cma_id);
467
468 switch (event->event) {
469 case RDMA_CM_EVENT_ADDR_RESOLVED:
470 iser_addr_handler(cma_id);
471 break;
472 case RDMA_CM_EVENT_ROUTE_RESOLVED:
473 iser_route_handler(cma_id);
474 break;
475 case RDMA_CM_EVENT_ESTABLISHED:
476 iser_connected_handler(cma_id);
477 break;
478 case RDMA_CM_EVENT_ADDR_ERROR:
479 case RDMA_CM_EVENT_ROUTE_ERROR:
480 case RDMA_CM_EVENT_CONNECT_ERROR:
481 case RDMA_CM_EVENT_UNREACHABLE:
482 case RDMA_CM_EVENT_REJECTED:
483 iser_err("event: %d, error: %d\n", event->event, event->status);
484 iser_connect_error(cma_id);
485 break;
486 case RDMA_CM_EVENT_DISCONNECTED:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300487 case RDMA_CM_EVENT_DEVICE_REMOVAL:
Erez Zilberd97c5172008-04-16 21:09:35 -0700488 iser_disconnected_handler(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300489 break;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300490 default:
Erez Zilbera4ef1452008-01-17 11:51:58 +0200491 iser_err("Unexpected RDMA CM event (%d)\n", event->event);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300492 break;
493 }
494 return ret;
495}
496
Mike Christie412eeaf2008-05-21 15:54:14 -0500497void iser_conn_init(struct iser_conn *ib_conn)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300498{
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300499 ib_conn->state = ISER_CONN_INIT;
500 init_waitqueue_head(&ib_conn->wait);
501 atomic_set(&ib_conn->post_recv_buf_count, 0);
502 atomic_set(&ib_conn->post_send_buf_count, 0);
Mike Christieb40977d2008-05-21 15:54:03 -0500503 atomic_set(&ib_conn->refcount, 1);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300504 INIT_LIST_HEAD(&ib_conn->conn_list);
505 spin_lock_init(&ib_conn->lock);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300506}
507
508 /**
509 * starts the process of connecting to the target
510 * sleeps untill the connection is established or rejected
511 */
512int iser_connect(struct iser_conn *ib_conn,
513 struct sockaddr_in *src_addr,
514 struct sockaddr_in *dst_addr,
515 int non_blocking)
516{
517 struct sockaddr *src, *dst;
518 int err = 0;
519
520 sprintf(ib_conn->name,"%d.%d.%d.%d:%d",
521 NIPQUAD(dst_addr->sin_addr.s_addr), dst_addr->sin_port);
522
523 /* the device is known only --after-- address resolution */
524 ib_conn->device = NULL;
525
526 iser_err("connecting to: %d.%d.%d.%d, port 0x%x\n",
527 NIPQUAD(dst_addr->sin_addr), dst_addr->sin_port);
528
529 ib_conn->state = ISER_CONN_PENDING;
530
531 ib_conn->cma_id = rdma_create_id(iser_cma_handler,
532 (void *)ib_conn,
533 RDMA_PS_TCP);
534 if (IS_ERR(ib_conn->cma_id)) {
535 err = PTR_ERR(ib_conn->cma_id);
536 iser_err("rdma_create_id failed: %d\n", err);
537 goto id_failure;
538 }
539
540 src = (struct sockaddr *)src_addr;
541 dst = (struct sockaddr *)dst_addr;
542 err = rdma_resolve_addr(ib_conn->cma_id, src, dst, 1000);
543 if (err) {
544 iser_err("rdma_resolve_addr failed: %d\n", err);
545 goto addr_failure;
546 }
547
548 if (!non_blocking) {
549 wait_event_interruptible(ib_conn->wait,
550 (ib_conn->state != ISER_CONN_PENDING));
551
552 if (ib_conn->state != ISER_CONN_UP) {
553 err = -EIO;
554 goto connect_failure;
555 }
556 }
557
558 mutex_lock(&ig.connlist_mutex);
559 list_add(&ib_conn->conn_list, &ig.connlist);
560 mutex_unlock(&ig.connlist_mutex);
561 return 0;
562
563id_failure:
564 ib_conn->cma_id = NULL;
565addr_failure:
566 ib_conn->state = ISER_CONN_DOWN;
567connect_failure:
568 iser_conn_release(ib_conn);
569 return err;
570}
571
572/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300573 * iser_reg_page_vec - Register physical memory
574 *
575 * returns: 0 on success, errno code on failure
576 */
577int iser_reg_page_vec(struct iser_conn *ib_conn,
578 struct iser_page_vec *page_vec,
579 struct iser_mem_reg *mem_reg)
580{
581 struct ib_pool_fmr *mem;
582 u64 io_addr;
583 u64 *page_list;
584 int status;
585
586 page_list = page_vec->pages;
587 io_addr = page_list[0];
588
589 mem = ib_fmr_pool_map_phys(ib_conn->fmr_pool,
590 page_list,
591 page_vec->length,
Michael S. Tsirkinadfaa882006-07-14 00:23:55 -0700592 io_addr);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300593
594 if (IS_ERR(mem)) {
595 status = (int)PTR_ERR(mem);
596 iser_err("ib_fmr_pool_map_phys failed: %d\n", status);
597 return status;
598 }
599
600 mem_reg->lkey = mem->fmr->lkey;
601 mem_reg->rkey = mem->fmr->rkey;
Erez Zilber8dfa0872006-09-11 12:22:30 +0300602 mem_reg->len = page_vec->length * SIZE_4K;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300603 mem_reg->va = io_addr;
Erez Zilberd8111022006-09-11 12:26:33 +0300604 mem_reg->is_fmr = 1;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300605 mem_reg->mem_h = (void *)mem;
606
607 mem_reg->va += page_vec->offset;
608 mem_reg->len = page_vec->data_size;
609
610 iser_dbg("PHYSICAL Mem.register, [PHYS p_array: 0x%p, sz: %d, "
611 "entry[0]: (0x%08lx,%ld)] -> "
612 "[lkey: 0x%08X mem_h: 0x%p va: 0x%08lX sz: %ld]\n",
613 page_vec, page_vec->length,
614 (unsigned long)page_vec->pages[0],
615 (unsigned long)page_vec->data_size,
616 (unsigned int)mem_reg->lkey, mem_reg->mem_h,
617 (unsigned long)mem_reg->va, (unsigned long)mem_reg->len);
618 return 0;
619}
620
621/**
622 * Unregister (previosuly registered) memory.
623 */
624void iser_unreg_mem(struct iser_mem_reg *reg)
625{
626 int ret;
627
628 iser_dbg("PHYSICAL Mem.Unregister mem_h %p\n",reg->mem_h);
629
630 ret = ib_fmr_pool_unmap((struct ib_pool_fmr *)reg->mem_h);
631 if (ret)
632 iser_err("ib_fmr_pool_unmap failed %d\n", ret);
633
634 reg->mem_h = NULL;
635}
636
637/**
638 * iser_dto_to_iov - builds IOV from a dto descriptor
639 */
640static void iser_dto_to_iov(struct iser_dto *dto, struct ib_sge *iov, int iov_len)
641{
642 int i;
643 struct ib_sge *sge;
644 struct iser_regd_buf *regd_buf;
645
646 if (dto->regd_vector_len > iov_len) {
647 iser_err("iov size %d too small for posting dto of len %d\n",
648 iov_len, dto->regd_vector_len);
649 BUG();
650 }
651
652 for (i = 0; i < dto->regd_vector_len; i++) {
653 sge = &iov[i];
654 regd_buf = dto->regd[i];
655
656 sge->addr = regd_buf->reg.va;
657 sge->length = regd_buf->reg.len;
658 sge->lkey = regd_buf->reg.lkey;
659
660 if (dto->used_sz[i] > 0) /* Adjust size */
661 sge->length = dto->used_sz[i];
662
663 /* offset and length should not exceed the regd buf length */
664 if (sge->length + dto->offset[i] > regd_buf->reg.len) {
665 iser_err("Used len:%ld + offset:%d, exceed reg.buf.len:"
666 "%ld in dto:0x%p [%d], va:0x%08lX\n",
667 (unsigned long)sge->length, dto->offset[i],
668 (unsigned long)regd_buf->reg.len, dto, i,
669 (unsigned long)sge->addr);
670 BUG();
671 }
672
673 sge->addr += dto->offset[i]; /* Adjust offset */
674 }
675}
676
677/**
678 * iser_post_recv - Posts a receive buffer.
679 *
680 * returns 0 on success, -1 on failure
681 */
682int iser_post_recv(struct iser_desc *rx_desc)
683{
684 int ib_ret, ret_val = 0;
685 struct ib_recv_wr recv_wr, *recv_wr_failed;
686 struct ib_sge iov[2];
687 struct iser_conn *ib_conn;
688 struct iser_dto *recv_dto = &rx_desc->dto;
689
690 /* Retrieve conn */
Erez Zilber87e8df72006-09-27 15:27:10 +0300691 ib_conn = recv_dto->ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300692
693 iser_dto_to_iov(recv_dto, iov, 2);
694
695 recv_wr.next = NULL;
696 recv_wr.sg_list = iov;
697 recv_wr.num_sge = recv_dto->regd_vector_len;
698 recv_wr.wr_id = (unsigned long)rx_desc;
699
700 atomic_inc(&ib_conn->post_recv_buf_count);
701 ib_ret = ib_post_recv(ib_conn->qp, &recv_wr, &recv_wr_failed);
702 if (ib_ret) {
703 iser_err("ib_post_recv failed ret=%d\n", ib_ret);
704 atomic_dec(&ib_conn->post_recv_buf_count);
705 ret_val = -1;
706 }
707
708 return ret_val;
709}
710
711/**
712 * iser_start_send - Initiate a Send DTO operation
713 *
714 * returns 0 on success, -1 on failure
715 */
716int iser_post_send(struct iser_desc *tx_desc)
717{
718 int ib_ret, ret_val = 0;
719 struct ib_send_wr send_wr, *send_wr_failed;
720 struct ib_sge iov[MAX_REGD_BUF_VECTOR_LEN];
721 struct iser_conn *ib_conn;
722 struct iser_dto *dto = &tx_desc->dto;
723
Erez Zilber87e8df72006-09-27 15:27:10 +0300724 ib_conn = dto->ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300725
726 iser_dto_to_iov(dto, iov, MAX_REGD_BUF_VECTOR_LEN);
727
728 send_wr.next = NULL;
729 send_wr.wr_id = (unsigned long)tx_desc;
730 send_wr.sg_list = iov;
731 send_wr.num_sge = dto->regd_vector_len;
732 send_wr.opcode = IB_WR_SEND;
733 send_wr.send_flags = dto->notify_enable ? IB_SEND_SIGNALED : 0;
734
735 atomic_inc(&ib_conn->post_send_buf_count);
736
737 ib_ret = ib_post_send(ib_conn->qp, &send_wr, &send_wr_failed);
738 if (ib_ret) {
739 iser_err("Failed to start SEND DTO, dto: 0x%p, IOV len: %d\n",
740 dto, dto->regd_vector_len);
741 iser_err("ib_post_send failed, ret:%d\n", ib_ret);
742 atomic_dec(&ib_conn->post_send_buf_count);
743 ret_val = -1;
744 }
745
746 return ret_val;
747}
748
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300749static void iser_handle_comp_error(struct iser_desc *desc)
750{
751 struct iser_dto *dto = &desc->dto;
Erez Zilber87e8df72006-09-27 15:27:10 +0300752 struct iser_conn *ib_conn = dto->ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300753
754 iser_dto_buffs_release(dto);
755
756 if (desc->type == ISCSI_RX) {
757 kfree(desc->data);
758 kmem_cache_free(ig.desc_cache, desc);
759 atomic_dec(&ib_conn->post_recv_buf_count);
760 } else { /* type is TX control/command/dataout */
761 if (desc->type == ISCSI_TX_DATAOUT)
762 kmem_cache_free(ig.desc_cache, desc);
763 atomic_dec(&ib_conn->post_send_buf_count);
764 }
765
766 if (atomic_read(&ib_conn->post_recv_buf_count) == 0 &&
Erez Zilber1d426d62007-04-01 12:53:43 +0200767 atomic_read(&ib_conn->post_send_buf_count) == 0) {
768 /* getting here when the state is UP means that the conn is *
769 * being terminated asynchronously from the iSCSI layer's *
770 * perspective. */
771 if (iser_conn_state_comp_exch(ib_conn, ISER_CONN_UP,
772 ISER_CONN_TERMINATING))
773 iscsi_conn_failure(ib_conn->iser_conn->iscsi_conn,
774 ISCSI_ERR_CONN_FAILED);
775
776 /* complete the termination process if disconnect event was delivered *
777 * note there are no more non completed posts to the QP */
778 if (ib_conn->disc_evt_flag) {
779 ib_conn->state = ISER_CONN_DOWN;
780 wake_up_interruptible(&ib_conn->wait);
781 }
782 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300783}
784
785static void iser_cq_tasklet_fn(unsigned long data)
786{
787 struct iser_device *device = (struct iser_device *)data;
788 struct ib_cq *cq = device->cq;
789 struct ib_wc wc;
790 struct iser_desc *desc;
791 unsigned long xfer_len;
792
793 while (ib_poll_cq(cq, 1, &wc) == 1) {
794 desc = (struct iser_desc *) (unsigned long) wc.wr_id;
795 BUG_ON(desc == NULL);
796
797 if (wc.status == IB_WC_SUCCESS) {
798 if (desc->type == ISCSI_RX) {
799 xfer_len = (unsigned long)wc.byte_len;
800 iser_rcv_completion(desc, xfer_len);
801 } else /* type == ISCSI_TX_CONTROL/SCSI_CMD/DOUT */
802 iser_snd_completion(desc);
803 } else {
804 iser_err("comp w. error op %d status %d\n",desc->type,wc.status);
805 iser_handle_comp_error(desc);
806 }
807 }
808 /* #warning "it is assumed here that arming CQ only once its empty" *
809 * " would not cause interrupts to be missed" */
810 ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
811}
812
813static void iser_cq_callback(struct ib_cq *cq, void *cq_context)
814{
815 struct iser_device *device = (struct iser_device *)cq_context;
816
817 tasklet_schedule(&device->cq_tasklet);
818}