blob: b8b66d38f5b06be49ab5fc0dce3c1f9be3d50d63 [file] [log] [blame]
Tom Tuckerfc79d4b2008-10-22 18:47:39 -05001/*
2 * linux/fs/9p/trans_rdma.c
3 *
4 * RDMA transport layer based on the trans_fd.c implementation.
5 *
6 * Copyright (C) 2008 by Tom Tucker <tom@opengridcomputing.com>
7 * Copyright (C) 2006 by Russ Cox <rsc@swtch.com>
8 * Copyright (C) 2004-2005 by Latchesar Ionkov <lucho@ionkov.net>
9 * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
10 * Copyright (C) 1997-2002 by Ron Minnich <rminnich@sarnoff.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to:
23 * Free Software Foundation
24 * 51 Franklin Street, Fifth Floor
25 * Boston, MA 02111-1301 USA
26 *
27 */
28
Joe Perches5d385152011-11-28 10:40:46 -080029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050031#include <linux/in.h>
32#include <linux/module.h>
33#include <linux/net.h>
34#include <linux/ipv6.h>
35#include <linux/kthread.h>
36#include <linux/errno.h>
37#include <linux/kernel.h>
38#include <linux/un.h>
39#include <linux/uaccess.h>
40#include <linux/inet.h>
41#include <linux/idr.h>
42#include <linux/file.h>
43#include <linux/parser.h>
44#include <linux/semaphore.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050046#include <net/9p/9p.h>
47#include <net/9p/client.h>
48#include <net/9p/transport.h>
49#include <rdma/ib_verbs.h>
50#include <rdma/rdma_cm.h>
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050051
52#define P9_PORT 5640
53#define P9_RDMA_SQ_DEPTH 32
54#define P9_RDMA_RQ_DEPTH 32
55#define P9_RDMA_SEND_SGE 4
56#define P9_RDMA_RECV_SGE 4
57#define P9_RDMA_IRD 0
58#define P9_RDMA_ORD 0
59#define P9_RDMA_TIMEOUT 30000 /* 30 seconds */
Simon Derr3fcc62f2013-06-21 15:32:37 +020060#define P9_RDMA_MAXSIZE (1024*1024) /* 1MB */
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050061
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050062/**
63 * struct p9_trans_rdma - RDMA transport instance
64 *
65 * @state: tracks the transport state machine for connection setup and tear down
66 * @cm_id: The RDMA CM ID
67 * @pd: Protection Domain pointer
68 * @qp: Queue Pair pointer
69 * @cq: Completion Queue pointer
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060070 * @dm_mr: DMA Memory Region pointer
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050071 * @lkey: The local access only memory region key
72 * @timeout: Number of uSecs to wait for connection management events
73 * @sq_depth: The depth of the Send Queue
74 * @sq_sem: Semaphore for the SQ
75 * @rq_depth: The depth of the Receive Queue.
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060076 * @rq_count: Count of requests in the Receive Queue.
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050077 * @addr: The remote peer's address
78 * @req_lock: Protects the active request list
Tom Tuckerfc79d4b2008-10-22 18:47:39 -050079 * @cm_done: Completion event for connection management tracking
80 */
81struct p9_trans_rdma {
82 enum {
83 P9_RDMA_INIT,
84 P9_RDMA_ADDR_RESOLVED,
85 P9_RDMA_ROUTE_RESOLVED,
86 P9_RDMA_CONNECTED,
87 P9_RDMA_FLUSHING,
88 P9_RDMA_CLOSING,
89 P9_RDMA_CLOSED,
90 } state;
91 struct rdma_cm_id *cm_id;
92 struct ib_pd *pd;
93 struct ib_qp *qp;
94 struct ib_cq *cq;
95 struct ib_mr *dma_mr;
96 u32 lkey;
97 long timeout;
98 int sq_depth;
99 struct semaphore sq_sem;
100 int rq_depth;
101 atomic_t rq_count;
102 struct sockaddr_in addr;
103 spinlock_t req_lock;
104
105 struct completion cm_done;
106};
107
108/**
109 * p9_rdma_context - Keeps track of in-process WR
110 *
111 * @wc_op: The original WR op for when the CQE completes in error.
112 * @busa: Bus address to unmap when the WR completes
113 * @req: Keeps track of requests (send)
114 * @rc: Keepts track of replies (receive)
115 */
116struct p9_rdma_req;
117struct p9_rdma_context {
118 enum ib_wc_opcode wc_op;
119 dma_addr_t busa;
120 union {
121 struct p9_req_t *req;
122 struct p9_fcall *rc;
123 };
124};
125
126/**
127 * p9_rdma_opts - Collection of mount options
128 * @port: port of connection
129 * @sq_depth: The requested depth of the SQ. This really doesn't need
130 * to be any deeper than the number of threads used in the client
131 * @rq_depth: The depth of the RQ. Should be greater than or equal to SQ depth
132 * @timeout: Time to wait in msecs for CM events
133 */
134struct p9_rdma_opts {
135 short port;
136 int sq_depth;
137 int rq_depth;
138 long timeout;
139};
140
141/*
142 * Option Parsing (code inspired by NFS code)
143 */
144enum {
145 /* Options that take integer arguments */
146 Opt_port, Opt_rq_depth, Opt_sq_depth, Opt_timeout, Opt_err,
147};
148
149static match_table_t tokens = {
150 {Opt_port, "port=%u"},
151 {Opt_sq_depth, "sq=%u"},
152 {Opt_rq_depth, "rq=%u"},
153 {Opt_timeout, "timeout=%u"},
154 {Opt_err, NULL},
155};
156
157/**
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600158 * parse_opts - parse mount options into rdma options structure
159 * @params: options string passed from mount
160 * @opts: rdma transport-specific structure to parse options into
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500161 *
162 * Returns 0 upon success, -ERRNO upon failure
163 */
164static int parse_opts(char *params, struct p9_rdma_opts *opts)
165{
166 char *p;
167 substring_t args[MAX_OPT_ARGS];
168 int option;
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600169 char *options, *tmp_options;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500170
171 opts->port = P9_PORT;
172 opts->sq_depth = P9_RDMA_SQ_DEPTH;
173 opts->rq_depth = P9_RDMA_RQ_DEPTH;
174 opts->timeout = P9_RDMA_TIMEOUT;
175
176 if (!params)
177 return 0;
178
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600179 tmp_options = kstrdup(params, GFP_KERNEL);
180 if (!tmp_options) {
Joe Perches5d385152011-11-28 10:40:46 -0800181 p9_debug(P9_DEBUG_ERROR,
182 "failed to allocate copy of option string\n");
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500183 return -ENOMEM;
184 }
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600185 options = tmp_options;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500186
187 while ((p = strsep(&options, ",")) != NULL) {
188 int token;
189 int r;
190 if (!*p)
191 continue;
192 token = match_token(p, tokens, args);
193 r = match_int(&args[0], &option);
194 if (r < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800195 p9_debug(P9_DEBUG_ERROR,
196 "integer field, but no integer?\n");
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500197 continue;
198 }
199 switch (token) {
200 case Opt_port:
201 opts->port = option;
202 break;
203 case Opt_sq_depth:
204 opts->sq_depth = option;
205 break;
206 case Opt_rq_depth:
207 opts->rq_depth = option;
208 break;
209 case Opt_timeout:
210 opts->timeout = option;
211 break;
212 default:
213 continue;
214 }
215 }
216 /* RQ must be at least as large as the SQ */
217 opts->rq_depth = max(opts->rq_depth, opts->sq_depth);
Eric Van Hensbergend8c8a9e2010-02-08 16:23:23 -0600218 kfree(tmp_options);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500219 return 0;
220}
221
222static int
223p9_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
224{
225 struct p9_client *c = id->context;
226 struct p9_trans_rdma *rdma = c->trans;
227 switch (event->event) {
228 case RDMA_CM_EVENT_ADDR_RESOLVED:
229 BUG_ON(rdma->state != P9_RDMA_INIT);
230 rdma->state = P9_RDMA_ADDR_RESOLVED;
231 break;
232
233 case RDMA_CM_EVENT_ROUTE_RESOLVED:
234 BUG_ON(rdma->state != P9_RDMA_ADDR_RESOLVED);
235 rdma->state = P9_RDMA_ROUTE_RESOLVED;
236 break;
237
238 case RDMA_CM_EVENT_ESTABLISHED:
239 BUG_ON(rdma->state != P9_RDMA_ROUTE_RESOLVED);
240 rdma->state = P9_RDMA_CONNECTED;
241 break;
242
243 case RDMA_CM_EVENT_DISCONNECTED:
244 if (rdma)
245 rdma->state = P9_RDMA_CLOSED;
246 if (c)
247 c->status = Disconnected;
248 break;
249
250 case RDMA_CM_EVENT_TIMEWAIT_EXIT:
251 break;
252
253 case RDMA_CM_EVENT_ADDR_CHANGE:
254 case RDMA_CM_EVENT_ROUTE_ERROR:
255 case RDMA_CM_EVENT_DEVICE_REMOVAL:
256 case RDMA_CM_EVENT_MULTICAST_JOIN:
257 case RDMA_CM_EVENT_MULTICAST_ERROR:
258 case RDMA_CM_EVENT_REJECTED:
259 case RDMA_CM_EVENT_CONNECT_REQUEST:
260 case RDMA_CM_EVENT_CONNECT_RESPONSE:
261 case RDMA_CM_EVENT_CONNECT_ERROR:
262 case RDMA_CM_EVENT_ADDR_ERROR:
263 case RDMA_CM_EVENT_UNREACHABLE:
264 c->status = Disconnected;
265 rdma_disconnect(rdma->cm_id);
266 break;
267 default:
268 BUG();
269 }
270 complete(&rdma->cm_done);
271 return 0;
272}
273
274static void
275handle_recv(struct p9_client *client, struct p9_trans_rdma *rdma,
276 struct p9_rdma_context *c, enum ib_wc_status status, u32 byte_len)
277{
278 struct p9_req_t *req;
279 int err = 0;
280 int16_t tag;
281
282 req = NULL;
283 ib_dma_unmap_single(rdma->cm_id->device, c->busa, client->msize,
284 DMA_FROM_DEVICE);
285
286 if (status != IB_WC_SUCCESS)
287 goto err_out;
288
289 err = p9_parse_header(c->rc, NULL, NULL, &tag, 1);
290 if (err)
291 goto err_out;
292
293 req = p9_tag_lookup(client, tag);
294 if (!req)
295 goto err_out;
296
297 req->rc = c->rc;
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500298 req->status = REQ_STATUS_RCVD;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500299 p9_client_cb(client, req);
300
301 return;
302
303 err_out:
Joe Perches5d385152011-11-28 10:40:46 -0800304 p9_debug(P9_DEBUG_ERROR, "req %p err %d status %d\n", req, err, status);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500305 rdma->state = P9_RDMA_FLUSHING;
306 client->status = Disconnected;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500307}
308
309static void
310handle_send(struct p9_client *client, struct p9_trans_rdma *rdma,
311 struct p9_rdma_context *c, enum ib_wc_status status, u32 byte_len)
312{
313 ib_dma_unmap_single(rdma->cm_id->device,
314 c->busa, c->req->tc->size,
315 DMA_TO_DEVICE);
316}
317
318static void qp_event_handler(struct ib_event *event, void *context)
319{
Joe Perches5d385152011-11-28 10:40:46 -0800320 p9_debug(P9_DEBUG_ERROR, "QP event %d context %p\n",
321 event->event, context);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500322}
323
324static void cq_comp_handler(struct ib_cq *cq, void *cq_context)
325{
326 struct p9_client *client = cq_context;
327 struct p9_trans_rdma *rdma = client->trans;
328 int ret;
329 struct ib_wc wc;
330
331 ib_req_notify_cq(rdma->cq, IB_CQ_NEXT_COMP);
332 while ((ret = ib_poll_cq(cq, 1, &wc)) > 0) {
333 struct p9_rdma_context *c = (void *) (unsigned long) wc.wr_id;
334
335 switch (c->wc_op) {
336 case IB_WC_RECV:
337 atomic_dec(&rdma->rq_count);
338 handle_recv(client, rdma, c, wc.status, wc.byte_len);
339 break;
340
341 case IB_WC_SEND:
342 handle_send(client, rdma, c, wc.status, wc.byte_len);
343 up(&rdma->sq_sem);
344 break;
345
346 default:
Joe Perches5d385152011-11-28 10:40:46 -0800347 pr_err("unexpected completion type, c->wc_op=%d, wc.opcode=%d, status=%d\n",
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500348 c->wc_op, wc.opcode, wc.status);
349 break;
350 }
351 kfree(c);
352 }
353}
354
355static void cq_event_handler(struct ib_event *e, void *v)
356{
Joe Perches5d385152011-11-28 10:40:46 -0800357 p9_debug(P9_DEBUG_ERROR, "CQ event %d context %p\n", e->event, v);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500358}
359
360static void rdma_destroy_trans(struct p9_trans_rdma *rdma)
361{
362 if (!rdma)
363 return;
364
365 if (rdma->dma_mr && !IS_ERR(rdma->dma_mr))
366 ib_dereg_mr(rdma->dma_mr);
367
368 if (rdma->qp && !IS_ERR(rdma->qp))
369 ib_destroy_qp(rdma->qp);
370
371 if (rdma->pd && !IS_ERR(rdma->pd))
372 ib_dealloc_pd(rdma->pd);
373
374 if (rdma->cq && !IS_ERR(rdma->cq))
375 ib_destroy_cq(rdma->cq);
376
377 if (rdma->cm_id && !IS_ERR(rdma->cm_id))
378 rdma_destroy_id(rdma->cm_id);
379
380 kfree(rdma);
381}
382
383static int
384post_recv(struct p9_client *client, struct p9_rdma_context *c)
385{
386 struct p9_trans_rdma *rdma = client->trans;
387 struct ib_recv_wr wr, *bad_wr;
388 struct ib_sge sge;
389
390 c->busa = ib_dma_map_single(rdma->cm_id->device,
391 c->rc->sdata, client->msize,
392 DMA_FROM_DEVICE);
393 if (ib_dma_mapping_error(rdma->cm_id->device, c->busa))
394 goto error;
395
396 sge.addr = c->busa;
397 sge.length = client->msize;
398 sge.lkey = rdma->lkey;
399
400 wr.next = NULL;
401 c->wc_op = IB_WC_RECV;
402 wr.wr_id = (unsigned long) c;
403 wr.sg_list = &sge;
404 wr.num_sge = 1;
405 return ib_post_recv(rdma->qp, &wr, &bad_wr);
406
407 error:
Joe Perches5d385152011-11-28 10:40:46 -0800408 p9_debug(P9_DEBUG_ERROR, "EIO\n");
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500409 return -EIO;
410}
411
412static int rdma_request(struct p9_client *client, struct p9_req_t *req)
413{
414 struct p9_trans_rdma *rdma = client->trans;
415 struct ib_send_wr wr, *bad_wr;
416 struct ib_sge sge;
417 int err = 0;
418 unsigned long flags;
419 struct p9_rdma_context *c = NULL;
420 struct p9_rdma_context *rpl_context = NULL;
421
422 /* Allocate an fcall for the reply */
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530423 rpl_context = kmalloc(sizeof *rpl_context, GFP_NOFS);
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000424 if (!rpl_context) {
425 err = -ENOMEM;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500426 goto err_close;
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000427 }
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500428 rpl_context->rc = req->rc;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500429
430 /*
431 * Post a receive buffer for this request. We need to ensure
432 * there is a reply buffer available for every outstanding
433 * request. A flushed request can result in no reply for an
434 * outstanding request, so we must keep a count to avoid
435 * overflowing the RQ.
436 */
437 if (atomic_inc_return(&rdma->rq_count) <= rdma->rq_depth) {
438 err = post_recv(client, rpl_context);
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000439 if (err)
440 goto err_free1;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500441 } else
442 atomic_dec(&rdma->rq_count);
443
444 /* remove posted receive buffer from request structure */
445 req->rc = NULL;
446
447 /* Post the request */
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530448 c = kmalloc(sizeof *c, GFP_NOFS);
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000449 if (!c) {
450 err = -ENOMEM;
451 goto err_free1;
452 }
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500453 c->req = req;
454
455 c->busa = ib_dma_map_single(rdma->cm_id->device,
456 c->req->tc->sdata, c->req->tc->size,
457 DMA_TO_DEVICE);
458 if (ib_dma_mapping_error(rdma->cm_id->device, c->busa))
459 goto error;
460
461 sge.addr = c->busa;
462 sge.length = c->req->tc->size;
463 sge.lkey = rdma->lkey;
464
465 wr.next = NULL;
466 c->wc_op = IB_WC_SEND;
467 wr.wr_id = (unsigned long) c;
468 wr.opcode = IB_WR_SEND;
469 wr.send_flags = IB_SEND_SIGNALED;
470 wr.sg_list = &sge;
471 wr.num_sge = 1;
472
473 if (down_interruptible(&rdma->sq_sem))
474 goto error;
475
476 return ib_post_send(rdma->qp, &wr, &bad_wr);
477
478 error:
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000479 kfree(c);
480 kfree(rpl_context->rc);
481 kfree(rpl_context);
Joe Perches5d385152011-11-28 10:40:46 -0800482 p9_debug(P9_DEBUG_ERROR, "EIO\n");
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500483 return -EIO;
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000484 err_free1:
485 kfree(rpl_context->rc);
486 err_free2:
487 kfree(rpl_context);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500488 err_close:
489 spin_lock_irqsave(&rdma->req_lock, flags);
490 if (rdma->state < P9_RDMA_CLOSING) {
491 rdma->state = P9_RDMA_CLOSING;
492 spin_unlock_irqrestore(&rdma->req_lock, flags);
493 rdma_disconnect(rdma->cm_id);
494 } else
495 spin_unlock_irqrestore(&rdma->req_lock, flags);
496 return err;
497}
498
499static void rdma_close(struct p9_client *client)
500{
501 struct p9_trans_rdma *rdma;
502
503 if (!client)
504 return;
505
506 rdma = client->trans;
507 if (!rdma)
508 return;
509
510 client->status = Disconnected;
511 rdma_disconnect(rdma->cm_id);
512 rdma_destroy_trans(rdma);
513}
514
515/**
516 * alloc_rdma - Allocate and initialize the rdma transport structure
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500517 * @opts: Mount options structure
518 */
519static struct p9_trans_rdma *alloc_rdma(struct p9_rdma_opts *opts)
520{
521 struct p9_trans_rdma *rdma;
522
523 rdma = kzalloc(sizeof(struct p9_trans_rdma), GFP_KERNEL);
524 if (!rdma)
525 return NULL;
526
527 rdma->sq_depth = opts->sq_depth;
528 rdma->rq_depth = opts->rq_depth;
529 rdma->timeout = opts->timeout;
530 spin_lock_init(&rdma->req_lock);
531 init_completion(&rdma->cm_done);
532 sema_init(&rdma->sq_sem, rdma->sq_depth);
533 atomic_set(&rdma->rq_count, 0);
534
535 return rdma;
536}
537
538/* its not clear to me we can do anything after send has been posted */
539static int rdma_cancel(struct p9_client *client, struct p9_req_t *req)
540{
541 return 1;
542}
543
544/**
545 * trans_create_rdma - Transport method for creating atransport instance
546 * @client: client instance
547 * @addr: IP address string
548 * @args: Mount options string
549 */
550static int
551rdma_create_trans(struct p9_client *client, const char *addr, char *args)
552{
553 int err;
554 struct p9_rdma_opts opts;
555 struct p9_trans_rdma *rdma;
556 struct rdma_conn_param conn_param;
557 struct ib_qp_init_attr qp_attr;
558 struct ib_device_attr devattr;
559
560 /* Parse the transport specific mount options */
561 err = parse_opts(args, &opts);
562 if (err < 0)
563 return err;
564
565 /* Create and initialize the RDMA transport structure */
566 rdma = alloc_rdma(&opts);
567 if (!rdma)
568 return -ENOMEM;
569
570 /* Create the RDMA CM ID */
Sean Heftyb26f9b92010-04-01 17:08:41 +0000571 rdma->cm_id = rdma_create_id(p9_cm_event_handler, client, RDMA_PS_TCP,
572 IB_QPT_RC);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500573 if (IS_ERR(rdma->cm_id))
574 goto error;
575
Tom Tucker517ac452008-10-23 16:30:13 -0500576 /* Associate the client with the transport */
577 client->trans = rdma;
578
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500579 /* Resolve the server's address */
580 rdma->addr.sin_family = AF_INET;
581 rdma->addr.sin_addr.s_addr = in_aton(addr);
582 rdma->addr.sin_port = htons(opts.port);
583 err = rdma_resolve_addr(rdma->cm_id, NULL,
584 (struct sockaddr *)&rdma->addr,
585 rdma->timeout);
586 if (err)
587 goto error;
588 err = wait_for_completion_interruptible(&rdma->cm_done);
589 if (err || (rdma->state != P9_RDMA_ADDR_RESOLVED))
590 goto error;
591
592 /* Resolve the route to the server */
593 err = rdma_resolve_route(rdma->cm_id, rdma->timeout);
594 if (err)
595 goto error;
596 err = wait_for_completion_interruptible(&rdma->cm_done);
597 if (err || (rdma->state != P9_RDMA_ROUTE_RESOLVED))
598 goto error;
599
600 /* Query the device attributes */
601 err = ib_query_device(rdma->cm_id->device, &devattr);
602 if (err)
603 goto error;
604
605 /* Create the Completion Queue */
606 rdma->cq = ib_create_cq(rdma->cm_id->device, cq_comp_handler,
607 cq_event_handler, client,
608 opts.sq_depth + opts.rq_depth + 1, 0);
609 if (IS_ERR(rdma->cq))
610 goto error;
611 ib_req_notify_cq(rdma->cq, IB_CQ_NEXT_COMP);
612
613 /* Create the Protection Domain */
614 rdma->pd = ib_alloc_pd(rdma->cm_id->device);
615 if (IS_ERR(rdma->pd))
616 goto error;
617
618 /* Cache the DMA lkey in the transport */
619 rdma->dma_mr = NULL;
620 if (devattr.device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY)
621 rdma->lkey = rdma->cm_id->device->local_dma_lkey;
622 else {
623 rdma->dma_mr = ib_get_dma_mr(rdma->pd, IB_ACCESS_LOCAL_WRITE);
624 if (IS_ERR(rdma->dma_mr))
625 goto error;
626 rdma->lkey = rdma->dma_mr->lkey;
627 }
628
629 /* Create the Queue Pair */
630 memset(&qp_attr, 0, sizeof qp_attr);
631 qp_attr.event_handler = qp_event_handler;
632 qp_attr.qp_context = client;
633 qp_attr.cap.max_send_wr = opts.sq_depth;
634 qp_attr.cap.max_recv_wr = opts.rq_depth;
635 qp_attr.cap.max_send_sge = P9_RDMA_SEND_SGE;
636 qp_attr.cap.max_recv_sge = P9_RDMA_RECV_SGE;
637 qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
638 qp_attr.qp_type = IB_QPT_RC;
639 qp_attr.send_cq = rdma->cq;
640 qp_attr.recv_cq = rdma->cq;
641 err = rdma_create_qp(rdma->cm_id, rdma->pd, &qp_attr);
642 if (err)
643 goto error;
644 rdma->qp = rdma->cm_id->qp;
645
646 /* Request a connection */
647 memset(&conn_param, 0, sizeof(conn_param));
648 conn_param.private_data = NULL;
649 conn_param.private_data_len = 0;
650 conn_param.responder_resources = P9_RDMA_IRD;
651 conn_param.initiator_depth = P9_RDMA_ORD;
652 err = rdma_connect(rdma->cm_id, &conn_param);
653 if (err)
654 goto error;
655 err = wait_for_completion_interruptible(&rdma->cm_done);
656 if (err || (rdma->state != P9_RDMA_CONNECTED))
657 goto error;
658
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500659 client->status = Connected;
660
661 return 0;
662
663error:
664 rdma_destroy_trans(rdma);
665 return -ENOTCONN;
666}
667
668static struct p9_trans_module p9_rdma_trans = {
669 .name = "rdma",
670 .maxsize = P9_RDMA_MAXSIZE,
671 .def = 0,
672 .owner = THIS_MODULE,
673 .create = rdma_create_trans,
674 .close = rdma_close,
675 .request = rdma_request,
676 .cancel = rdma_cancel,
677};
678
679/**
680 * p9_trans_rdma_init - Register the 9P RDMA transport driver
681 */
682static int __init p9_trans_rdma_init(void)
683{
684 v9fs_register_trans(&p9_rdma_trans);
685 return 0;
686}
687
688static void __exit p9_trans_rdma_exit(void)
689{
690 v9fs_unregister_trans(&p9_rdma_trans);
691}
692
693module_init(p9_trans_rdma_init);
694module_exit(p9_trans_rdma_exit);
695
696MODULE_AUTHOR("Tom Tucker <tom@opengridcomputing.com>");
697MODULE_DESCRIPTION("RDMA Transport for 9P");
698MODULE_LICENSE("Dual BSD/GPL");