blob: 274a9c1d3c3deeb00b0ddd96a0eff91dac5b0b2c [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
Simon Derr47229ff2013-06-21 15:32:38 +0200297 /* Check that we have not yet received a reply for this request.
298 */
299 if (unlikely(req->rc)) {
300 pr_err("Duplicate reply for request %d", tag);
301 goto err_out;
302 }
303
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500304 req->rc = c->rc;
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500305 req->status = REQ_STATUS_RCVD;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500306 p9_client_cb(client, req);
307
308 return;
309
310 err_out:
Joe Perches5d385152011-11-28 10:40:46 -0800311 p9_debug(P9_DEBUG_ERROR, "req %p err %d status %d\n", req, err, status);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500312 rdma->state = P9_RDMA_FLUSHING;
313 client->status = Disconnected;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500314}
315
316static void
317handle_send(struct p9_client *client, struct p9_trans_rdma *rdma,
318 struct p9_rdma_context *c, enum ib_wc_status status, u32 byte_len)
319{
320 ib_dma_unmap_single(rdma->cm_id->device,
321 c->busa, c->req->tc->size,
322 DMA_TO_DEVICE);
323}
324
325static void qp_event_handler(struct ib_event *event, void *context)
326{
Joe Perches5d385152011-11-28 10:40:46 -0800327 p9_debug(P9_DEBUG_ERROR, "QP event %d context %p\n",
328 event->event, context);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500329}
330
331static void cq_comp_handler(struct ib_cq *cq, void *cq_context)
332{
333 struct p9_client *client = cq_context;
334 struct p9_trans_rdma *rdma = client->trans;
335 int ret;
336 struct ib_wc wc;
337
338 ib_req_notify_cq(rdma->cq, IB_CQ_NEXT_COMP);
339 while ((ret = ib_poll_cq(cq, 1, &wc)) > 0) {
340 struct p9_rdma_context *c = (void *) (unsigned long) wc.wr_id;
341
342 switch (c->wc_op) {
343 case IB_WC_RECV:
344 atomic_dec(&rdma->rq_count);
345 handle_recv(client, rdma, c, wc.status, wc.byte_len);
346 break;
347
348 case IB_WC_SEND:
349 handle_send(client, rdma, c, wc.status, wc.byte_len);
350 up(&rdma->sq_sem);
351 break;
352
353 default:
Joe Perches5d385152011-11-28 10:40:46 -0800354 pr_err("unexpected completion type, c->wc_op=%d, wc.opcode=%d, status=%d\n",
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500355 c->wc_op, wc.opcode, wc.status);
356 break;
357 }
358 kfree(c);
359 }
360}
361
362static void cq_event_handler(struct ib_event *e, void *v)
363{
Joe Perches5d385152011-11-28 10:40:46 -0800364 p9_debug(P9_DEBUG_ERROR, "CQ event %d context %p\n", e->event, v);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500365}
366
367static void rdma_destroy_trans(struct p9_trans_rdma *rdma)
368{
369 if (!rdma)
370 return;
371
372 if (rdma->dma_mr && !IS_ERR(rdma->dma_mr))
373 ib_dereg_mr(rdma->dma_mr);
374
375 if (rdma->qp && !IS_ERR(rdma->qp))
376 ib_destroy_qp(rdma->qp);
377
378 if (rdma->pd && !IS_ERR(rdma->pd))
379 ib_dealloc_pd(rdma->pd);
380
381 if (rdma->cq && !IS_ERR(rdma->cq))
382 ib_destroy_cq(rdma->cq);
383
384 if (rdma->cm_id && !IS_ERR(rdma->cm_id))
385 rdma_destroy_id(rdma->cm_id);
386
387 kfree(rdma);
388}
389
390static int
391post_recv(struct p9_client *client, struct p9_rdma_context *c)
392{
393 struct p9_trans_rdma *rdma = client->trans;
394 struct ib_recv_wr wr, *bad_wr;
395 struct ib_sge sge;
396
397 c->busa = ib_dma_map_single(rdma->cm_id->device,
398 c->rc->sdata, client->msize,
399 DMA_FROM_DEVICE);
400 if (ib_dma_mapping_error(rdma->cm_id->device, c->busa))
401 goto error;
402
403 sge.addr = c->busa;
404 sge.length = client->msize;
405 sge.lkey = rdma->lkey;
406
407 wr.next = NULL;
408 c->wc_op = IB_WC_RECV;
409 wr.wr_id = (unsigned long) c;
410 wr.sg_list = &sge;
411 wr.num_sge = 1;
412 return ib_post_recv(rdma->qp, &wr, &bad_wr);
413
414 error:
Joe Perches5d385152011-11-28 10:40:46 -0800415 p9_debug(P9_DEBUG_ERROR, "EIO\n");
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500416 return -EIO;
417}
418
419static int rdma_request(struct p9_client *client, struct p9_req_t *req)
420{
421 struct p9_trans_rdma *rdma = client->trans;
422 struct ib_send_wr wr, *bad_wr;
423 struct ib_sge sge;
424 int err = 0;
425 unsigned long flags;
426 struct p9_rdma_context *c = NULL;
427 struct p9_rdma_context *rpl_context = NULL;
428
429 /* Allocate an fcall for the reply */
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530430 rpl_context = kmalloc(sizeof *rpl_context, GFP_NOFS);
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000431 if (!rpl_context) {
432 err = -ENOMEM;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500433 goto err_close;
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000434 }
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500435 rpl_context->rc = req->rc;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500436
437 /*
438 * Post a receive buffer for this request. We need to ensure
439 * there is a reply buffer available for every outstanding
440 * request. A flushed request can result in no reply for an
441 * outstanding request, so we must keep a count to avoid
442 * overflowing the RQ.
443 */
444 if (atomic_inc_return(&rdma->rq_count) <= rdma->rq_depth) {
445 err = post_recv(client, rpl_context);
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000446 if (err)
447 goto err_free1;
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500448 } else
449 atomic_dec(&rdma->rq_count);
450
451 /* remove posted receive buffer from request structure */
452 req->rc = NULL;
453
454 /* Post the request */
Aneesh Kumar K.Veeff66e2011-03-08 16:39:47 +0530455 c = kmalloc(sizeof *c, GFP_NOFS);
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000456 if (!c) {
457 err = -ENOMEM;
458 goto err_free1;
459 }
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500460 c->req = req;
461
462 c->busa = ib_dma_map_single(rdma->cm_id->device,
463 c->req->tc->sdata, c->req->tc->size,
464 DMA_TO_DEVICE);
465 if (ib_dma_mapping_error(rdma->cm_id->device, c->busa))
466 goto error;
467
468 sge.addr = c->busa;
469 sge.length = c->req->tc->size;
470 sge.lkey = rdma->lkey;
471
472 wr.next = NULL;
473 c->wc_op = IB_WC_SEND;
474 wr.wr_id = (unsigned long) c;
475 wr.opcode = IB_WR_SEND;
476 wr.send_flags = IB_SEND_SIGNALED;
477 wr.sg_list = &sge;
478 wr.num_sge = 1;
479
480 if (down_interruptible(&rdma->sq_sem))
481 goto error;
482
483 return ib_post_send(rdma->qp, &wr, &bad_wr);
484
485 error:
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000486 kfree(c);
487 kfree(rpl_context->rc);
488 kfree(rpl_context);
Joe Perches5d385152011-11-28 10:40:46 -0800489 p9_debug(P9_DEBUG_ERROR, "EIO\n");
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500490 return -EIO;
Davidlohr Bueso1d6400c2010-09-13 15:53:18 +0000491 err_free1:
492 kfree(rpl_context->rc);
493 err_free2:
494 kfree(rpl_context);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500495 err_close:
496 spin_lock_irqsave(&rdma->req_lock, flags);
497 if (rdma->state < P9_RDMA_CLOSING) {
498 rdma->state = P9_RDMA_CLOSING;
499 spin_unlock_irqrestore(&rdma->req_lock, flags);
500 rdma_disconnect(rdma->cm_id);
501 } else
502 spin_unlock_irqrestore(&rdma->req_lock, flags);
503 return err;
504}
505
506static void rdma_close(struct p9_client *client)
507{
508 struct p9_trans_rdma *rdma;
509
510 if (!client)
511 return;
512
513 rdma = client->trans;
514 if (!rdma)
515 return;
516
517 client->status = Disconnected;
518 rdma_disconnect(rdma->cm_id);
519 rdma_destroy_trans(rdma);
520}
521
522/**
523 * alloc_rdma - Allocate and initialize the rdma transport structure
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500524 * @opts: Mount options structure
525 */
526static struct p9_trans_rdma *alloc_rdma(struct p9_rdma_opts *opts)
527{
528 struct p9_trans_rdma *rdma;
529
530 rdma = kzalloc(sizeof(struct p9_trans_rdma), GFP_KERNEL);
531 if (!rdma)
532 return NULL;
533
534 rdma->sq_depth = opts->sq_depth;
535 rdma->rq_depth = opts->rq_depth;
536 rdma->timeout = opts->timeout;
537 spin_lock_init(&rdma->req_lock);
538 init_completion(&rdma->cm_done);
539 sema_init(&rdma->sq_sem, rdma->sq_depth);
540 atomic_set(&rdma->rq_count, 0);
541
542 return rdma;
543}
544
545/* its not clear to me we can do anything after send has been posted */
546static int rdma_cancel(struct p9_client *client, struct p9_req_t *req)
547{
548 return 1;
549}
550
551/**
552 * trans_create_rdma - Transport method for creating atransport instance
553 * @client: client instance
554 * @addr: IP address string
555 * @args: Mount options string
556 */
557static int
558rdma_create_trans(struct p9_client *client, const char *addr, char *args)
559{
560 int err;
561 struct p9_rdma_opts opts;
562 struct p9_trans_rdma *rdma;
563 struct rdma_conn_param conn_param;
564 struct ib_qp_init_attr qp_attr;
565 struct ib_device_attr devattr;
566
567 /* Parse the transport specific mount options */
568 err = parse_opts(args, &opts);
569 if (err < 0)
570 return err;
571
572 /* Create and initialize the RDMA transport structure */
573 rdma = alloc_rdma(&opts);
574 if (!rdma)
575 return -ENOMEM;
576
577 /* Create the RDMA CM ID */
Sean Heftyb26f9b92010-04-01 17:08:41 +0000578 rdma->cm_id = rdma_create_id(p9_cm_event_handler, client, RDMA_PS_TCP,
579 IB_QPT_RC);
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500580 if (IS_ERR(rdma->cm_id))
581 goto error;
582
Tom Tucker517ac452008-10-23 16:30:13 -0500583 /* Associate the client with the transport */
584 client->trans = rdma;
585
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500586 /* Resolve the server's address */
587 rdma->addr.sin_family = AF_INET;
588 rdma->addr.sin_addr.s_addr = in_aton(addr);
589 rdma->addr.sin_port = htons(opts.port);
590 err = rdma_resolve_addr(rdma->cm_id, NULL,
591 (struct sockaddr *)&rdma->addr,
592 rdma->timeout);
593 if (err)
594 goto error;
595 err = wait_for_completion_interruptible(&rdma->cm_done);
596 if (err || (rdma->state != P9_RDMA_ADDR_RESOLVED))
597 goto error;
598
599 /* Resolve the route to the server */
600 err = rdma_resolve_route(rdma->cm_id, rdma->timeout);
601 if (err)
602 goto error;
603 err = wait_for_completion_interruptible(&rdma->cm_done);
604 if (err || (rdma->state != P9_RDMA_ROUTE_RESOLVED))
605 goto error;
606
607 /* Query the device attributes */
608 err = ib_query_device(rdma->cm_id->device, &devattr);
609 if (err)
610 goto error;
611
612 /* Create the Completion Queue */
613 rdma->cq = ib_create_cq(rdma->cm_id->device, cq_comp_handler,
614 cq_event_handler, client,
615 opts.sq_depth + opts.rq_depth + 1, 0);
616 if (IS_ERR(rdma->cq))
617 goto error;
618 ib_req_notify_cq(rdma->cq, IB_CQ_NEXT_COMP);
619
620 /* Create the Protection Domain */
621 rdma->pd = ib_alloc_pd(rdma->cm_id->device);
622 if (IS_ERR(rdma->pd))
623 goto error;
624
625 /* Cache the DMA lkey in the transport */
626 rdma->dma_mr = NULL;
627 if (devattr.device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY)
628 rdma->lkey = rdma->cm_id->device->local_dma_lkey;
629 else {
630 rdma->dma_mr = ib_get_dma_mr(rdma->pd, IB_ACCESS_LOCAL_WRITE);
631 if (IS_ERR(rdma->dma_mr))
632 goto error;
633 rdma->lkey = rdma->dma_mr->lkey;
634 }
635
636 /* Create the Queue Pair */
637 memset(&qp_attr, 0, sizeof qp_attr);
638 qp_attr.event_handler = qp_event_handler;
639 qp_attr.qp_context = client;
640 qp_attr.cap.max_send_wr = opts.sq_depth;
641 qp_attr.cap.max_recv_wr = opts.rq_depth;
642 qp_attr.cap.max_send_sge = P9_RDMA_SEND_SGE;
643 qp_attr.cap.max_recv_sge = P9_RDMA_RECV_SGE;
644 qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
645 qp_attr.qp_type = IB_QPT_RC;
646 qp_attr.send_cq = rdma->cq;
647 qp_attr.recv_cq = rdma->cq;
648 err = rdma_create_qp(rdma->cm_id, rdma->pd, &qp_attr);
649 if (err)
650 goto error;
651 rdma->qp = rdma->cm_id->qp;
652
653 /* Request a connection */
654 memset(&conn_param, 0, sizeof(conn_param));
655 conn_param.private_data = NULL;
656 conn_param.private_data_len = 0;
657 conn_param.responder_resources = P9_RDMA_IRD;
658 conn_param.initiator_depth = P9_RDMA_ORD;
659 err = rdma_connect(rdma->cm_id, &conn_param);
660 if (err)
661 goto error;
662 err = wait_for_completion_interruptible(&rdma->cm_done);
663 if (err || (rdma->state != P9_RDMA_CONNECTED))
664 goto error;
665
Tom Tuckerfc79d4b2008-10-22 18:47:39 -0500666 client->status = Connected;
667
668 return 0;
669
670error:
671 rdma_destroy_trans(rdma);
672 return -ENOTCONN;
673}
674
675static struct p9_trans_module p9_rdma_trans = {
676 .name = "rdma",
677 .maxsize = P9_RDMA_MAXSIZE,
678 .def = 0,
679 .owner = THIS_MODULE,
680 .create = rdma_create_trans,
681 .close = rdma_close,
682 .request = rdma_request,
683 .cancel = rdma_cancel,
684};
685
686/**
687 * p9_trans_rdma_init - Register the 9P RDMA transport driver
688 */
689static int __init p9_trans_rdma_init(void)
690{
691 v9fs_register_trans(&p9_rdma_trans);
692 return 0;
693}
694
695static void __exit p9_trans_rdma_exit(void)
696{
697 v9fs_unregister_trans(&p9_rdma_trans);
698}
699
700module_init(p9_trans_rdma_init);
701module_exit(p9_trans_rdma_exit);
702
703MODULE_AUTHOR("Tom Tucker <tom@opengridcomputing.com>");
704MODULE_DESCRIPTION("RDMA Transport for 9P");
705MODULE_LICENSE("Dual BSD/GPL");