Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
[pandora-kernel.git] / drivers / infiniband / core / ucma.c
1 /*
2  * Copyright (c) 2005-2006 Intel Corporation.  All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *      copyright notice, this list of conditions and the following
16  *      disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *      copyright notice, this list of conditions and the following
20  *      disclaimer in the documentation and/or other materials
21  *      provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #include <linux/completion.h>
34 #include <linux/file.h>
35 #include <linux/mutex.h>
36 #include <linux/poll.h>
37 #include <linux/sched.h>
38 #include <linux/idr.h>
39 #include <linux/in.h>
40 #include <linux/in6.h>
41 #include <linux/miscdevice.h>
42 #include <linux/slab.h>
43 #include <linux/sysctl.h>
44
45 #include <rdma/rdma_user_cm.h>
46 #include <rdma/ib_marshall.h>
47 #include <rdma/rdma_cm.h>
48 #include <rdma/rdma_cm_ib.h>
49
50 MODULE_AUTHOR("Sean Hefty");
51 MODULE_DESCRIPTION("RDMA Userspace Connection Manager Access");
52 MODULE_LICENSE("Dual BSD/GPL");
53
54 static unsigned int max_backlog = 1024;
55
56 static struct ctl_table_header *ucma_ctl_table_hdr;
57 static ctl_table ucma_ctl_table[] = {
58         {
59                 .procname       = "max_backlog",
60                 .data           = &max_backlog,
61                 .maxlen         = sizeof max_backlog,
62                 .mode           = 0644,
63                 .proc_handler   = proc_dointvec,
64         },
65         { }
66 };
67
68 static struct ctl_path ucma_ctl_path[] = {
69         { .procname = "net" },
70         { .procname = "rdma_ucm" },
71         { }
72 };
73
74 struct ucma_file {
75         struct mutex            mut;
76         struct file             *filp;
77         struct list_head        ctx_list;
78         struct list_head        event_list;
79         wait_queue_head_t       poll_wait;
80 };
81
82 struct ucma_context {
83         int                     id;
84         struct completion       comp;
85         atomic_t                ref;
86         int                     events_reported;
87         int                     backlog;
88
89         struct ucma_file        *file;
90         struct rdma_cm_id       *cm_id;
91         u64                     uid;
92
93         struct list_head        list;
94         struct list_head        mc_list;
95 };
96
97 struct ucma_multicast {
98         struct ucma_context     *ctx;
99         int                     id;
100         int                     events_reported;
101
102         u64                     uid;
103         struct list_head        list;
104         struct sockaddr_storage addr;
105 };
106
107 struct ucma_event {
108         struct ucma_context     *ctx;
109         struct ucma_multicast   *mc;
110         struct list_head        list;
111         struct rdma_cm_id       *cm_id;
112         struct rdma_ucm_event_resp resp;
113 };
114
115 static DEFINE_MUTEX(mut);
116 static DEFINE_IDR(ctx_idr);
117 static DEFINE_IDR(multicast_idr);
118
119 static inline struct ucma_context *_ucma_find_context(int id,
120                                                       struct ucma_file *file)
121 {
122         struct ucma_context *ctx;
123
124         ctx = idr_find(&ctx_idr, id);
125         if (!ctx)
126                 ctx = ERR_PTR(-ENOENT);
127         else if (ctx->file != file)
128                 ctx = ERR_PTR(-EINVAL);
129         return ctx;
130 }
131
132 static struct ucma_context *ucma_get_ctx(struct ucma_file *file, int id)
133 {
134         struct ucma_context *ctx;
135
136         mutex_lock(&mut);
137         ctx = _ucma_find_context(id, file);
138         if (!IS_ERR(ctx))
139                 atomic_inc(&ctx->ref);
140         mutex_unlock(&mut);
141         return ctx;
142 }
143
144 static void ucma_put_ctx(struct ucma_context *ctx)
145 {
146         if (atomic_dec_and_test(&ctx->ref))
147                 complete(&ctx->comp);
148 }
149
150 static struct ucma_context *ucma_alloc_ctx(struct ucma_file *file)
151 {
152         struct ucma_context *ctx;
153         int ret;
154
155         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
156         if (!ctx)
157                 return NULL;
158
159         atomic_set(&ctx->ref, 1);
160         init_completion(&ctx->comp);
161         INIT_LIST_HEAD(&ctx->mc_list);
162         ctx->file = file;
163
164         do {
165                 ret = idr_pre_get(&ctx_idr, GFP_KERNEL);
166                 if (!ret)
167                         goto error;
168
169                 mutex_lock(&mut);
170                 ret = idr_get_new(&ctx_idr, ctx, &ctx->id);
171                 mutex_unlock(&mut);
172         } while (ret == -EAGAIN);
173
174         if (ret)
175                 goto error;
176
177         list_add_tail(&ctx->list, &file->ctx_list);
178         return ctx;
179
180 error:
181         kfree(ctx);
182         return NULL;
183 }
184
185 static struct ucma_multicast* ucma_alloc_multicast(struct ucma_context *ctx)
186 {
187         struct ucma_multicast *mc;
188         int ret;
189
190         mc = kzalloc(sizeof(*mc), GFP_KERNEL);
191         if (!mc)
192                 return NULL;
193
194         do {
195                 ret = idr_pre_get(&multicast_idr, GFP_KERNEL);
196                 if (!ret)
197                         goto error;
198
199                 mutex_lock(&mut);
200                 ret = idr_get_new(&multicast_idr, mc, &mc->id);
201                 mutex_unlock(&mut);
202         } while (ret == -EAGAIN);
203
204         if (ret)
205                 goto error;
206
207         mc->ctx = ctx;
208         list_add_tail(&mc->list, &ctx->mc_list);
209         return mc;
210
211 error:
212         kfree(mc);
213         return NULL;
214 }
215
216 static void ucma_copy_conn_event(struct rdma_ucm_conn_param *dst,
217                                  struct rdma_conn_param *src)
218 {
219         if (src->private_data_len)
220                 memcpy(dst->private_data, src->private_data,
221                        src->private_data_len);
222         dst->private_data_len = src->private_data_len;
223         dst->responder_resources =src->responder_resources;
224         dst->initiator_depth = src->initiator_depth;
225         dst->flow_control = src->flow_control;
226         dst->retry_count = src->retry_count;
227         dst->rnr_retry_count = src->rnr_retry_count;
228         dst->srq = src->srq;
229         dst->qp_num = src->qp_num;
230 }
231
232 static void ucma_copy_ud_event(struct rdma_ucm_ud_param *dst,
233                                struct rdma_ud_param *src)
234 {
235         if (src->private_data_len)
236                 memcpy(dst->private_data, src->private_data,
237                        src->private_data_len);
238         dst->private_data_len = src->private_data_len;
239         ib_copy_ah_attr_to_user(&dst->ah_attr, &src->ah_attr);
240         dst->qp_num = src->qp_num;
241         dst->qkey = src->qkey;
242 }
243
244 static void ucma_set_event_context(struct ucma_context *ctx,
245                                    struct rdma_cm_event *event,
246                                    struct ucma_event *uevent)
247 {
248         uevent->ctx = ctx;
249         switch (event->event) {
250         case RDMA_CM_EVENT_MULTICAST_JOIN:
251         case RDMA_CM_EVENT_MULTICAST_ERROR:
252                 uevent->mc = (struct ucma_multicast *)
253                              event->param.ud.private_data;
254                 uevent->resp.uid = uevent->mc->uid;
255                 uevent->resp.id = uevent->mc->id;
256                 break;
257         default:
258                 uevent->resp.uid = ctx->uid;
259                 uevent->resp.id = ctx->id;
260                 break;
261         }
262 }
263
264 static int ucma_event_handler(struct rdma_cm_id *cm_id,
265                               struct rdma_cm_event *event)
266 {
267         struct ucma_event *uevent;
268         struct ucma_context *ctx = cm_id->context;
269         int ret = 0;
270
271         uevent = kzalloc(sizeof(*uevent), GFP_KERNEL);
272         if (!uevent)
273                 return event->event == RDMA_CM_EVENT_CONNECT_REQUEST;
274
275         uevent->cm_id = cm_id;
276         ucma_set_event_context(ctx, event, uevent);
277         uevent->resp.event = event->event;
278         uevent->resp.status = event->status;
279         if (cm_id->qp_type == IB_QPT_UD)
280                 ucma_copy_ud_event(&uevent->resp.param.ud, &event->param.ud);
281         else
282                 ucma_copy_conn_event(&uevent->resp.param.conn,
283                                      &event->param.conn);
284
285         mutex_lock(&ctx->file->mut);
286         if (event->event == RDMA_CM_EVENT_CONNECT_REQUEST) {
287                 if (!ctx->backlog) {
288                         ret = -ENOMEM;
289                         kfree(uevent);
290                         goto out;
291                 }
292                 ctx->backlog--;
293         } else if (!ctx->uid) {
294                 /*
295                  * We ignore events for new connections until userspace has set
296                  * their context.  This can only happen if an error occurs on a
297                  * new connection before the user accepts it.  This is okay,
298                  * since the accept will just fail later.
299                  */
300                 kfree(uevent);
301                 goto out;
302         }
303
304         list_add_tail(&uevent->list, &ctx->file->event_list);
305         wake_up_interruptible(&ctx->file->poll_wait);
306 out:
307         mutex_unlock(&ctx->file->mut);
308         return ret;
309 }
310
311 static ssize_t ucma_get_event(struct ucma_file *file, const char __user *inbuf,
312                               int in_len, int out_len)
313 {
314         struct ucma_context *ctx;
315         struct rdma_ucm_get_event cmd;
316         struct ucma_event *uevent;
317         int ret = 0;
318         DEFINE_WAIT(wait);
319
320         if (out_len < sizeof uevent->resp)
321                 return -ENOSPC;
322
323         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
324                 return -EFAULT;
325
326         mutex_lock(&file->mut);
327         while (list_empty(&file->event_list)) {
328                 mutex_unlock(&file->mut);
329
330                 if (file->filp->f_flags & O_NONBLOCK)
331                         return -EAGAIN;
332
333                 if (wait_event_interruptible(file->poll_wait,
334                                              !list_empty(&file->event_list)))
335                         return -ERESTARTSYS;
336
337                 mutex_lock(&file->mut);
338         }
339
340         uevent = list_entry(file->event_list.next, struct ucma_event, list);
341
342         if (uevent->resp.event == RDMA_CM_EVENT_CONNECT_REQUEST) {
343                 ctx = ucma_alloc_ctx(file);
344                 if (!ctx) {
345                         ret = -ENOMEM;
346                         goto done;
347                 }
348                 uevent->ctx->backlog++;
349                 ctx->cm_id = uevent->cm_id;
350                 ctx->cm_id->context = ctx;
351                 uevent->resp.id = ctx->id;
352         }
353
354         if (copy_to_user((void __user *)(unsigned long)cmd.response,
355                          &uevent->resp, sizeof uevent->resp)) {
356                 ret = -EFAULT;
357                 goto done;
358         }
359
360         list_del(&uevent->list);
361         uevent->ctx->events_reported++;
362         if (uevent->mc)
363                 uevent->mc->events_reported++;
364         kfree(uevent);
365 done:
366         mutex_unlock(&file->mut);
367         return ret;
368 }
369
370 static int ucma_get_qp_type(struct rdma_ucm_create_id *cmd, enum ib_qp_type *qp_type)
371 {
372         switch (cmd->ps) {
373         case RDMA_PS_TCP:
374                 *qp_type = IB_QPT_RC;
375                 return 0;
376         case RDMA_PS_UDP:
377         case RDMA_PS_IPOIB:
378                 *qp_type = IB_QPT_UD;
379                 return 0;
380         case RDMA_PS_IB:
381                 *qp_type = cmd->qp_type;
382                 return 0;
383         default:
384                 return -EINVAL;
385         }
386 }
387
388 static ssize_t ucma_create_id(struct ucma_file *file, const char __user *inbuf,
389                               int in_len, int out_len)
390 {
391         struct rdma_ucm_create_id cmd;
392         struct rdma_ucm_create_id_resp resp;
393         struct ucma_context *ctx;
394         enum ib_qp_type qp_type;
395         int ret;
396
397         if (out_len < sizeof(resp))
398                 return -ENOSPC;
399
400         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
401                 return -EFAULT;
402
403         ret = ucma_get_qp_type(&cmd, &qp_type);
404         if (ret)
405                 return ret;
406
407         mutex_lock(&file->mut);
408         ctx = ucma_alloc_ctx(file);
409         mutex_unlock(&file->mut);
410         if (!ctx)
411                 return -ENOMEM;
412
413         ctx->uid = cmd.uid;
414         ctx->cm_id = rdma_create_id(ucma_event_handler, ctx, cmd.ps, qp_type);
415         if (IS_ERR(ctx->cm_id)) {
416                 ret = PTR_ERR(ctx->cm_id);
417                 goto err1;
418         }
419
420         resp.id = ctx->id;
421         if (copy_to_user((void __user *)(unsigned long)cmd.response,
422                          &resp, sizeof(resp))) {
423                 ret = -EFAULT;
424                 goto err2;
425         }
426         return 0;
427
428 err2:
429         rdma_destroy_id(ctx->cm_id);
430 err1:
431         mutex_lock(&mut);
432         idr_remove(&ctx_idr, ctx->id);
433         mutex_unlock(&mut);
434         kfree(ctx);
435         return ret;
436 }
437
438 static void ucma_cleanup_multicast(struct ucma_context *ctx)
439 {
440         struct ucma_multicast *mc, *tmp;
441
442         mutex_lock(&mut);
443         list_for_each_entry_safe(mc, tmp, &ctx->mc_list, list) {
444                 list_del(&mc->list);
445                 idr_remove(&multicast_idr, mc->id);
446                 kfree(mc);
447         }
448         mutex_unlock(&mut);
449 }
450
451 static void ucma_cleanup_events(struct ucma_context *ctx)
452 {
453         struct ucma_event *uevent, *tmp;
454
455         list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list) {
456                 if (uevent->ctx != ctx)
457                         continue;
458
459                 list_del(&uevent->list);
460
461                 /* clear incoming connections. */
462                 if (uevent->resp.event == RDMA_CM_EVENT_CONNECT_REQUEST)
463                         rdma_destroy_id(uevent->cm_id);
464
465                 kfree(uevent);
466         }
467 }
468
469 static void ucma_cleanup_mc_events(struct ucma_multicast *mc)
470 {
471         struct ucma_event *uevent, *tmp;
472
473         list_for_each_entry_safe(uevent, tmp, &mc->ctx->file->event_list, list) {
474                 if (uevent->mc != mc)
475                         continue;
476
477                 list_del(&uevent->list);
478                 kfree(uevent);
479         }
480 }
481
482 static int ucma_free_ctx(struct ucma_context *ctx)
483 {
484         int events_reported;
485
486         /* No new events will be generated after destroying the id. */
487         rdma_destroy_id(ctx->cm_id);
488
489         ucma_cleanup_multicast(ctx);
490
491         /* Cleanup events not yet reported to the user. */
492         mutex_lock(&ctx->file->mut);
493         ucma_cleanup_events(ctx);
494         list_del(&ctx->list);
495         mutex_unlock(&ctx->file->mut);
496
497         events_reported = ctx->events_reported;
498         kfree(ctx);
499         return events_reported;
500 }
501
502 static ssize_t ucma_destroy_id(struct ucma_file *file, const char __user *inbuf,
503                                int in_len, int out_len)
504 {
505         struct rdma_ucm_destroy_id cmd;
506         struct rdma_ucm_destroy_id_resp resp;
507         struct ucma_context *ctx;
508         int ret = 0;
509
510         if (out_len < sizeof(resp))
511                 return -ENOSPC;
512
513         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
514                 return -EFAULT;
515
516         mutex_lock(&mut);
517         ctx = _ucma_find_context(cmd.id, file);
518         if (!IS_ERR(ctx))
519                 idr_remove(&ctx_idr, ctx->id);
520         mutex_unlock(&mut);
521
522         if (IS_ERR(ctx))
523                 return PTR_ERR(ctx);
524
525         ucma_put_ctx(ctx);
526         wait_for_completion(&ctx->comp);
527         resp.events_reported = ucma_free_ctx(ctx);
528
529         if (copy_to_user((void __user *)(unsigned long)cmd.response,
530                          &resp, sizeof(resp)))
531                 ret = -EFAULT;
532
533         return ret;
534 }
535
536 static ssize_t ucma_bind_addr(struct ucma_file *file, const char __user *inbuf,
537                               int in_len, int out_len)
538 {
539         struct rdma_ucm_bind_addr cmd;
540         struct ucma_context *ctx;
541         int ret;
542
543         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
544                 return -EFAULT;
545
546         ctx = ucma_get_ctx(file, cmd.id);
547         if (IS_ERR(ctx))
548                 return PTR_ERR(ctx);
549
550         ret = rdma_bind_addr(ctx->cm_id, (struct sockaddr *) &cmd.addr);
551         ucma_put_ctx(ctx);
552         return ret;
553 }
554
555 static ssize_t ucma_resolve_addr(struct ucma_file *file,
556                                  const char __user *inbuf,
557                                  int in_len, int out_len)
558 {
559         struct rdma_ucm_resolve_addr cmd;
560         struct ucma_context *ctx;
561         int ret;
562
563         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
564                 return -EFAULT;
565
566         ctx = ucma_get_ctx(file, cmd.id);
567         if (IS_ERR(ctx))
568                 return PTR_ERR(ctx);
569
570         ret = rdma_resolve_addr(ctx->cm_id, (struct sockaddr *) &cmd.src_addr,
571                                 (struct sockaddr *) &cmd.dst_addr,
572                                 cmd.timeout_ms);
573         ucma_put_ctx(ctx);
574         return ret;
575 }
576
577 static ssize_t ucma_resolve_route(struct ucma_file *file,
578                                   const char __user *inbuf,
579                                   int in_len, int out_len)
580 {
581         struct rdma_ucm_resolve_route cmd;
582         struct ucma_context *ctx;
583         int ret;
584
585         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
586                 return -EFAULT;
587
588         ctx = ucma_get_ctx(file, cmd.id);
589         if (IS_ERR(ctx))
590                 return PTR_ERR(ctx);
591
592         ret = rdma_resolve_route(ctx->cm_id, cmd.timeout_ms);
593         ucma_put_ctx(ctx);
594         return ret;
595 }
596
597 static void ucma_copy_ib_route(struct rdma_ucm_query_route_resp *resp,
598                                struct rdma_route *route)
599 {
600         struct rdma_dev_addr *dev_addr;
601
602         resp->num_paths = route->num_paths;
603         switch (route->num_paths) {
604         case 0:
605                 dev_addr = &route->addr.dev_addr;
606                 rdma_addr_get_dgid(dev_addr,
607                                    (union ib_gid *) &resp->ib_route[0].dgid);
608                 rdma_addr_get_sgid(dev_addr,
609                                    (union ib_gid *) &resp->ib_route[0].sgid);
610                 resp->ib_route[0].pkey = cpu_to_be16(ib_addr_get_pkey(dev_addr));
611                 break;
612         case 2:
613                 ib_copy_path_rec_to_user(&resp->ib_route[1],
614                                          &route->path_rec[1]);
615                 /* fall through */
616         case 1:
617                 ib_copy_path_rec_to_user(&resp->ib_route[0],
618                                          &route->path_rec[0]);
619                 break;
620         default:
621                 break;
622         }
623 }
624
625 static void ucma_copy_iboe_route(struct rdma_ucm_query_route_resp *resp,
626                                  struct rdma_route *route)
627 {
628         struct rdma_dev_addr *dev_addr;
629         struct net_device *dev;
630         u16 vid = 0;
631
632         resp->num_paths = route->num_paths;
633         switch (route->num_paths) {
634         case 0:
635                 dev_addr = &route->addr.dev_addr;
636                 dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if);
637                         if (dev) {
638                                 vid = rdma_vlan_dev_vlan_id(dev);
639                                 dev_put(dev);
640                         }
641
642                 iboe_mac_vlan_to_ll((union ib_gid *) &resp->ib_route[0].dgid,
643                                     dev_addr->dst_dev_addr, vid);
644                 iboe_addr_get_sgid(dev_addr,
645                                    (union ib_gid *) &resp->ib_route[0].sgid);
646                 resp->ib_route[0].pkey = cpu_to_be16(0xffff);
647                 break;
648         case 2:
649                 ib_copy_path_rec_to_user(&resp->ib_route[1],
650                                          &route->path_rec[1]);
651                 /* fall through */
652         case 1:
653                 ib_copy_path_rec_to_user(&resp->ib_route[0],
654                                          &route->path_rec[0]);
655                 break;
656         default:
657                 break;
658         }
659 }
660
661 static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
662                                struct rdma_route *route)
663 {
664         struct rdma_dev_addr *dev_addr;
665
666         dev_addr = &route->addr.dev_addr;
667         rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
668         rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);
669 }
670
671 static ssize_t ucma_query_route(struct ucma_file *file,
672                                 const char __user *inbuf,
673                                 int in_len, int out_len)
674 {
675         struct rdma_ucm_query_route cmd;
676         struct rdma_ucm_query_route_resp resp;
677         struct ucma_context *ctx;
678         struct sockaddr *addr;
679         int ret = 0;
680
681         if (out_len < sizeof(resp))
682                 return -ENOSPC;
683
684         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
685                 return -EFAULT;
686
687         ctx = ucma_get_ctx(file, cmd.id);
688         if (IS_ERR(ctx))
689                 return PTR_ERR(ctx);
690
691         memset(&resp, 0, sizeof resp);
692         addr = (struct sockaddr *) &ctx->cm_id->route.addr.src_addr;
693         memcpy(&resp.src_addr, addr, addr->sa_family == AF_INET ?
694                                      sizeof(struct sockaddr_in) :
695                                      sizeof(struct sockaddr_in6));
696         addr = (struct sockaddr *) &ctx->cm_id->route.addr.dst_addr;
697         memcpy(&resp.dst_addr, addr, addr->sa_family == AF_INET ?
698                                      sizeof(struct sockaddr_in) :
699                                      sizeof(struct sockaddr_in6));
700         if (!ctx->cm_id->device)
701                 goto out;
702
703         resp.node_guid = (__force __u64) ctx->cm_id->device->node_guid;
704         resp.port_num = ctx->cm_id->port_num;
705         switch (rdma_node_get_transport(ctx->cm_id->device->node_type)) {
706         case RDMA_TRANSPORT_IB:
707                 switch (rdma_port_get_link_layer(ctx->cm_id->device,
708                         ctx->cm_id->port_num)) {
709                 case IB_LINK_LAYER_INFINIBAND:
710                         ucma_copy_ib_route(&resp, &ctx->cm_id->route);
711                         break;
712                 case IB_LINK_LAYER_ETHERNET:
713                         ucma_copy_iboe_route(&resp, &ctx->cm_id->route);
714                         break;
715                 default:
716                         break;
717                 }
718                 break;
719         case RDMA_TRANSPORT_IWARP:
720                 ucma_copy_iw_route(&resp, &ctx->cm_id->route);
721                 break;
722         default:
723                 break;
724         }
725
726 out:
727         if (copy_to_user((void __user *)(unsigned long)cmd.response,
728                          &resp, sizeof(resp)))
729                 ret = -EFAULT;
730
731         ucma_put_ctx(ctx);
732         return ret;
733 }
734
735 static void ucma_copy_conn_param(struct rdma_conn_param *dst,
736                                  struct rdma_ucm_conn_param *src)
737 {
738         dst->private_data = src->private_data;
739         dst->private_data_len = src->private_data_len;
740         dst->responder_resources =src->responder_resources;
741         dst->initiator_depth = src->initiator_depth;
742         dst->flow_control = src->flow_control;
743         dst->retry_count = src->retry_count;
744         dst->rnr_retry_count = src->rnr_retry_count;
745         dst->srq = src->srq;
746         dst->qp_num = src->qp_num;
747 }
748
749 static ssize_t ucma_connect(struct ucma_file *file, const char __user *inbuf,
750                             int in_len, int out_len)
751 {
752         struct rdma_ucm_connect cmd;
753         struct rdma_conn_param conn_param;
754         struct ucma_context *ctx;
755         int ret;
756
757         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
758                 return -EFAULT;
759
760         if (!cmd.conn_param.valid)
761                 return -EINVAL;
762
763         ctx = ucma_get_ctx(file, cmd.id);
764         if (IS_ERR(ctx))
765                 return PTR_ERR(ctx);
766
767         ucma_copy_conn_param(&conn_param, &cmd.conn_param);
768         ret = rdma_connect(ctx->cm_id, &conn_param);
769         ucma_put_ctx(ctx);
770         return ret;
771 }
772
773 static ssize_t ucma_listen(struct ucma_file *file, const char __user *inbuf,
774                            int in_len, int out_len)
775 {
776         struct rdma_ucm_listen cmd;
777         struct ucma_context *ctx;
778         int ret;
779
780         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
781                 return -EFAULT;
782
783         ctx = ucma_get_ctx(file, cmd.id);
784         if (IS_ERR(ctx))
785                 return PTR_ERR(ctx);
786
787         ctx->backlog = cmd.backlog > 0 && cmd.backlog < max_backlog ?
788                        cmd.backlog : max_backlog;
789         ret = rdma_listen(ctx->cm_id, ctx->backlog);
790         ucma_put_ctx(ctx);
791         return ret;
792 }
793
794 static ssize_t ucma_accept(struct ucma_file *file, const char __user *inbuf,
795                            int in_len, int out_len)
796 {
797         struct rdma_ucm_accept cmd;
798         struct rdma_conn_param conn_param;
799         struct ucma_context *ctx;
800         int ret;
801
802         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
803                 return -EFAULT;
804
805         ctx = ucma_get_ctx(file, cmd.id);
806         if (IS_ERR(ctx))
807                 return PTR_ERR(ctx);
808
809         if (cmd.conn_param.valid) {
810                 ctx->uid = cmd.uid;
811                 ucma_copy_conn_param(&conn_param, &cmd.conn_param);
812                 ret = rdma_accept(ctx->cm_id, &conn_param);
813         } else
814                 ret = rdma_accept(ctx->cm_id, NULL);
815
816         ucma_put_ctx(ctx);
817         return ret;
818 }
819
820 static ssize_t ucma_reject(struct ucma_file *file, const char __user *inbuf,
821                            int in_len, int out_len)
822 {
823         struct rdma_ucm_reject cmd;
824         struct ucma_context *ctx;
825         int ret;
826
827         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
828                 return -EFAULT;
829
830         ctx = ucma_get_ctx(file, cmd.id);
831         if (IS_ERR(ctx))
832                 return PTR_ERR(ctx);
833
834         ret = rdma_reject(ctx->cm_id, cmd.private_data, cmd.private_data_len);
835         ucma_put_ctx(ctx);
836         return ret;
837 }
838
839 static ssize_t ucma_disconnect(struct ucma_file *file, const char __user *inbuf,
840                                int in_len, int out_len)
841 {
842         struct rdma_ucm_disconnect cmd;
843         struct ucma_context *ctx;
844         int ret;
845
846         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
847                 return -EFAULT;
848
849         ctx = ucma_get_ctx(file, cmd.id);
850         if (IS_ERR(ctx))
851                 return PTR_ERR(ctx);
852
853         ret = rdma_disconnect(ctx->cm_id);
854         ucma_put_ctx(ctx);
855         return ret;
856 }
857
858 static ssize_t ucma_init_qp_attr(struct ucma_file *file,
859                                  const char __user *inbuf,
860                                  int in_len, int out_len)
861 {
862         struct rdma_ucm_init_qp_attr cmd;
863         struct ib_uverbs_qp_attr resp;
864         struct ucma_context *ctx;
865         struct ib_qp_attr qp_attr;
866         int ret;
867
868         if (out_len < sizeof(resp))
869                 return -ENOSPC;
870
871         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
872                 return -EFAULT;
873
874         ctx = ucma_get_ctx(file, cmd.id);
875         if (IS_ERR(ctx))
876                 return PTR_ERR(ctx);
877
878         resp.qp_attr_mask = 0;
879         memset(&qp_attr, 0, sizeof qp_attr);
880         qp_attr.qp_state = cmd.qp_state;
881         ret = rdma_init_qp_attr(ctx->cm_id, &qp_attr, &resp.qp_attr_mask);
882         if (ret)
883                 goto out;
884
885         ib_copy_qp_attr_to_user(&resp, &qp_attr);
886         if (copy_to_user((void __user *)(unsigned long)cmd.response,
887                          &resp, sizeof(resp)))
888                 ret = -EFAULT;
889
890 out:
891         ucma_put_ctx(ctx);
892         return ret;
893 }
894
895 static int ucma_set_option_id(struct ucma_context *ctx, int optname,
896                               void *optval, size_t optlen)
897 {
898         int ret = 0;
899
900         switch (optname) {
901         case RDMA_OPTION_ID_TOS:
902                 if (optlen != sizeof(u8)) {
903                         ret = -EINVAL;
904                         break;
905                 }
906                 rdma_set_service_type(ctx->cm_id, *((u8 *) optval));
907                 break;
908         case RDMA_OPTION_ID_REUSEADDR:
909                 if (optlen != sizeof(int)) {
910                         ret = -EINVAL;
911                         break;
912                 }
913                 ret = rdma_set_reuseaddr(ctx->cm_id, *((int *) optval) ? 1 : 0);
914                 break;
915         default:
916                 ret = -ENOSYS;
917         }
918
919         return ret;
920 }
921
922 static int ucma_set_ib_path(struct ucma_context *ctx,
923                             struct ib_path_rec_data *path_data, size_t optlen)
924 {
925         struct ib_sa_path_rec sa_path;
926         struct rdma_cm_event event;
927         int ret;
928
929         if (optlen % sizeof(*path_data))
930                 return -EINVAL;
931
932         for (; optlen; optlen -= sizeof(*path_data), path_data++) {
933                 if (path_data->flags == (IB_PATH_GMP | IB_PATH_PRIMARY |
934                                          IB_PATH_BIDIRECTIONAL))
935                         break;
936         }
937
938         if (!optlen)
939                 return -EINVAL;
940
941         ib_sa_unpack_path(path_data->path_rec, &sa_path);
942         ret = rdma_set_ib_paths(ctx->cm_id, &sa_path, 1);
943         if (ret)
944                 return ret;
945
946         memset(&event, 0, sizeof event);
947         event.event = RDMA_CM_EVENT_ROUTE_RESOLVED;
948         return ucma_event_handler(ctx->cm_id, &event);
949 }
950
951 static int ucma_set_option_ib(struct ucma_context *ctx, int optname,
952                               void *optval, size_t optlen)
953 {
954         int ret;
955
956         switch (optname) {
957         case RDMA_OPTION_IB_PATH:
958                 ret = ucma_set_ib_path(ctx, optval, optlen);
959                 break;
960         default:
961                 ret = -ENOSYS;
962         }
963
964         return ret;
965 }
966
967 static int ucma_set_option_level(struct ucma_context *ctx, int level,
968                                  int optname, void *optval, size_t optlen)
969 {
970         int ret;
971
972         switch (level) {
973         case RDMA_OPTION_ID:
974                 ret = ucma_set_option_id(ctx, optname, optval, optlen);
975                 break;
976         case RDMA_OPTION_IB:
977                 ret = ucma_set_option_ib(ctx, optname, optval, optlen);
978                 break;
979         default:
980                 ret = -ENOSYS;
981         }
982
983         return ret;
984 }
985
986 static ssize_t ucma_set_option(struct ucma_file *file, const char __user *inbuf,
987                                int in_len, int out_len)
988 {
989         struct rdma_ucm_set_option cmd;
990         struct ucma_context *ctx;
991         void *optval;
992         int ret;
993
994         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
995                 return -EFAULT;
996
997         ctx = ucma_get_ctx(file, cmd.id);
998         if (IS_ERR(ctx))
999                 return PTR_ERR(ctx);
1000
1001         optval = kmalloc(cmd.optlen, GFP_KERNEL);
1002         if (!optval) {
1003                 ret = -ENOMEM;
1004                 goto out1;
1005         }
1006
1007         if (copy_from_user(optval, (void __user *) (unsigned long) cmd.optval,
1008                            cmd.optlen)) {
1009                 ret = -EFAULT;
1010                 goto out2;
1011         }
1012
1013         ret = ucma_set_option_level(ctx, cmd.level, cmd.optname, optval,
1014                                     cmd.optlen);
1015 out2:
1016         kfree(optval);
1017 out1:
1018         ucma_put_ctx(ctx);
1019         return ret;
1020 }
1021
1022 static ssize_t ucma_notify(struct ucma_file *file, const char __user *inbuf,
1023                            int in_len, int out_len)
1024 {
1025         struct rdma_ucm_notify cmd;
1026         struct ucma_context *ctx;
1027         int ret;
1028
1029         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1030                 return -EFAULT;
1031
1032         ctx = ucma_get_ctx(file, cmd.id);
1033         if (IS_ERR(ctx))
1034                 return PTR_ERR(ctx);
1035
1036         ret = rdma_notify(ctx->cm_id, (enum ib_event_type) cmd.event);
1037         ucma_put_ctx(ctx);
1038         return ret;
1039 }
1040
1041 static ssize_t ucma_join_multicast(struct ucma_file *file,
1042                                    const char __user *inbuf,
1043                                    int in_len, int out_len)
1044 {
1045         struct rdma_ucm_join_mcast cmd;
1046         struct rdma_ucm_create_id_resp resp;
1047         struct ucma_context *ctx;
1048         struct ucma_multicast *mc;
1049         int ret;
1050
1051         if (out_len < sizeof(resp))
1052                 return -ENOSPC;
1053
1054         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1055                 return -EFAULT;
1056
1057         ctx = ucma_get_ctx(file, cmd.id);
1058         if (IS_ERR(ctx))
1059                 return PTR_ERR(ctx);
1060
1061         mutex_lock(&file->mut);
1062         mc = ucma_alloc_multicast(ctx);
1063         if (!mc) {
1064                 ret = -ENOMEM;
1065                 goto err1;
1066         }
1067
1068         mc->uid = cmd.uid;
1069         memcpy(&mc->addr, &cmd.addr, sizeof cmd.addr);
1070         ret = rdma_join_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr, mc);
1071         if (ret)
1072                 goto err2;
1073
1074         resp.id = mc->id;
1075         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1076                          &resp, sizeof(resp))) {
1077                 ret = -EFAULT;
1078                 goto err3;
1079         }
1080
1081         mutex_unlock(&file->mut);
1082         ucma_put_ctx(ctx);
1083         return 0;
1084
1085 err3:
1086         rdma_leave_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr);
1087         ucma_cleanup_mc_events(mc);
1088 err2:
1089         mutex_lock(&mut);
1090         idr_remove(&multicast_idr, mc->id);
1091         mutex_unlock(&mut);
1092         list_del(&mc->list);
1093         kfree(mc);
1094 err1:
1095         mutex_unlock(&file->mut);
1096         ucma_put_ctx(ctx);
1097         return ret;
1098 }
1099
1100 static ssize_t ucma_leave_multicast(struct ucma_file *file,
1101                                     const char __user *inbuf,
1102                                     int in_len, int out_len)
1103 {
1104         struct rdma_ucm_destroy_id cmd;
1105         struct rdma_ucm_destroy_id_resp resp;
1106         struct ucma_multicast *mc;
1107         int ret = 0;
1108
1109         if (out_len < sizeof(resp))
1110                 return -ENOSPC;
1111
1112         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1113                 return -EFAULT;
1114
1115         mutex_lock(&mut);
1116         mc = idr_find(&multicast_idr, cmd.id);
1117         if (!mc)
1118                 mc = ERR_PTR(-ENOENT);
1119         else if (mc->ctx->file != file)
1120                 mc = ERR_PTR(-EINVAL);
1121         else {
1122                 idr_remove(&multicast_idr, mc->id);
1123                 atomic_inc(&mc->ctx->ref);
1124         }
1125         mutex_unlock(&mut);
1126
1127         if (IS_ERR(mc)) {
1128                 ret = PTR_ERR(mc);
1129                 goto out;
1130         }
1131
1132         rdma_leave_multicast(mc->ctx->cm_id, (struct sockaddr *) &mc->addr);
1133         mutex_lock(&mc->ctx->file->mut);
1134         ucma_cleanup_mc_events(mc);
1135         list_del(&mc->list);
1136         mutex_unlock(&mc->ctx->file->mut);
1137
1138         ucma_put_ctx(mc->ctx);
1139         resp.events_reported = mc->events_reported;
1140         kfree(mc);
1141
1142         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1143                          &resp, sizeof(resp)))
1144                 ret = -EFAULT;
1145 out:
1146         return ret;
1147 }
1148
1149 static void ucma_lock_files(struct ucma_file *file1, struct ucma_file *file2)
1150 {
1151         /* Acquire mutex's based on pointer comparison to prevent deadlock. */
1152         if (file1 < file2) {
1153                 mutex_lock(&file1->mut);
1154                 mutex_lock(&file2->mut);
1155         } else {
1156                 mutex_lock(&file2->mut);
1157                 mutex_lock(&file1->mut);
1158         }
1159 }
1160
1161 static void ucma_unlock_files(struct ucma_file *file1, struct ucma_file *file2)
1162 {
1163         if (file1 < file2) {
1164                 mutex_unlock(&file2->mut);
1165                 mutex_unlock(&file1->mut);
1166         } else {
1167                 mutex_unlock(&file1->mut);
1168                 mutex_unlock(&file2->mut);
1169         }
1170 }
1171
1172 static void ucma_move_events(struct ucma_context *ctx, struct ucma_file *file)
1173 {
1174         struct ucma_event *uevent, *tmp;
1175
1176         list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list)
1177                 if (uevent->ctx == ctx)
1178                         list_move_tail(&uevent->list, &file->event_list);
1179 }
1180
1181 static ssize_t ucma_migrate_id(struct ucma_file *new_file,
1182                                const char __user *inbuf,
1183                                int in_len, int out_len)
1184 {
1185         struct rdma_ucm_migrate_id cmd;
1186         struct rdma_ucm_migrate_resp resp;
1187         struct ucma_context *ctx;
1188         struct file *filp;
1189         struct ucma_file *cur_file;
1190         int ret = 0;
1191
1192         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1193                 return -EFAULT;
1194
1195         /* Get current fd to protect against it being closed */
1196         filp = fget(cmd.fd);
1197         if (!filp)
1198                 return -ENOENT;
1199
1200         /* Validate current fd and prevent destruction of id. */
1201         ctx = ucma_get_ctx(filp->private_data, cmd.id);
1202         if (IS_ERR(ctx)) {
1203                 ret = PTR_ERR(ctx);
1204                 goto file_put;
1205         }
1206
1207         cur_file = ctx->file;
1208         if (cur_file == new_file) {
1209                 resp.events_reported = ctx->events_reported;
1210                 goto response;
1211         }
1212
1213         /*
1214          * Migrate events between fd's, maintaining order, and avoiding new
1215          * events being added before existing events.
1216          */
1217         ucma_lock_files(cur_file, new_file);
1218         mutex_lock(&mut);
1219
1220         list_move_tail(&ctx->list, &new_file->ctx_list);
1221         ucma_move_events(ctx, new_file);
1222         ctx->file = new_file;
1223         resp.events_reported = ctx->events_reported;
1224
1225         mutex_unlock(&mut);
1226         ucma_unlock_files(cur_file, new_file);
1227
1228 response:
1229         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1230                          &resp, sizeof(resp)))
1231                 ret = -EFAULT;
1232
1233         ucma_put_ctx(ctx);
1234 file_put:
1235         fput(filp);
1236         return ret;
1237 }
1238
1239 static ssize_t (*ucma_cmd_table[])(struct ucma_file *file,
1240                                    const char __user *inbuf,
1241                                    int in_len, int out_len) = {
1242         [RDMA_USER_CM_CMD_CREATE_ID]    = ucma_create_id,
1243         [RDMA_USER_CM_CMD_DESTROY_ID]   = ucma_destroy_id,
1244         [RDMA_USER_CM_CMD_BIND_ADDR]    = ucma_bind_addr,
1245         [RDMA_USER_CM_CMD_RESOLVE_ADDR] = ucma_resolve_addr,
1246         [RDMA_USER_CM_CMD_RESOLVE_ROUTE]= ucma_resolve_route,
1247         [RDMA_USER_CM_CMD_QUERY_ROUTE]  = ucma_query_route,
1248         [RDMA_USER_CM_CMD_CONNECT]      = ucma_connect,
1249         [RDMA_USER_CM_CMD_LISTEN]       = ucma_listen,
1250         [RDMA_USER_CM_CMD_ACCEPT]       = ucma_accept,
1251         [RDMA_USER_CM_CMD_REJECT]       = ucma_reject,
1252         [RDMA_USER_CM_CMD_DISCONNECT]   = ucma_disconnect,
1253         [RDMA_USER_CM_CMD_INIT_QP_ATTR] = ucma_init_qp_attr,
1254         [RDMA_USER_CM_CMD_GET_EVENT]    = ucma_get_event,
1255         [RDMA_USER_CM_CMD_GET_OPTION]   = NULL,
1256         [RDMA_USER_CM_CMD_SET_OPTION]   = ucma_set_option,
1257         [RDMA_USER_CM_CMD_NOTIFY]       = ucma_notify,
1258         [RDMA_USER_CM_CMD_JOIN_MCAST]   = ucma_join_multicast,
1259         [RDMA_USER_CM_CMD_LEAVE_MCAST]  = ucma_leave_multicast,
1260         [RDMA_USER_CM_CMD_MIGRATE_ID]   = ucma_migrate_id
1261 };
1262
1263 static ssize_t ucma_write(struct file *filp, const char __user *buf,
1264                           size_t len, loff_t *pos)
1265 {
1266         struct ucma_file *file = filp->private_data;
1267         struct rdma_ucm_cmd_hdr hdr;
1268         ssize_t ret;
1269
1270         if (len < sizeof(hdr))
1271                 return -EINVAL;
1272
1273         if (copy_from_user(&hdr, buf, sizeof(hdr)))
1274                 return -EFAULT;
1275
1276         if (hdr.cmd >= ARRAY_SIZE(ucma_cmd_table))
1277                 return -EINVAL;
1278
1279         if (hdr.in + sizeof(hdr) > len)
1280                 return -EINVAL;
1281
1282         if (!ucma_cmd_table[hdr.cmd])
1283                 return -ENOSYS;
1284
1285         ret = ucma_cmd_table[hdr.cmd](file, buf + sizeof(hdr), hdr.in, hdr.out);
1286         if (!ret)
1287                 ret = len;
1288
1289         return ret;
1290 }
1291
1292 static unsigned int ucma_poll(struct file *filp, struct poll_table_struct *wait)
1293 {
1294         struct ucma_file *file = filp->private_data;
1295         unsigned int mask = 0;
1296
1297         poll_wait(filp, &file->poll_wait, wait);
1298
1299         if (!list_empty(&file->event_list))
1300                 mask = POLLIN | POLLRDNORM;
1301
1302         return mask;
1303 }
1304
1305 /*
1306  * ucma_open() does not need the BKL:
1307  *
1308  *  - no global state is referred to;
1309  *  - there is no ioctl method to race against;
1310  *  - no further module initialization is required for open to work
1311  *    after the device is registered.
1312  */
1313 static int ucma_open(struct inode *inode, struct file *filp)
1314 {
1315         struct ucma_file *file;
1316
1317         file = kmalloc(sizeof *file, GFP_KERNEL);
1318         if (!file)
1319                 return -ENOMEM;
1320
1321         INIT_LIST_HEAD(&file->event_list);
1322         INIT_LIST_HEAD(&file->ctx_list);
1323         init_waitqueue_head(&file->poll_wait);
1324         mutex_init(&file->mut);
1325
1326         filp->private_data = file;
1327         file->filp = filp;
1328
1329         return nonseekable_open(inode, filp);
1330 }
1331
1332 static int ucma_close(struct inode *inode, struct file *filp)
1333 {
1334         struct ucma_file *file = filp->private_data;
1335         struct ucma_context *ctx, *tmp;
1336
1337         mutex_lock(&file->mut);
1338         list_for_each_entry_safe(ctx, tmp, &file->ctx_list, list) {
1339                 mutex_unlock(&file->mut);
1340
1341                 mutex_lock(&mut);
1342                 idr_remove(&ctx_idr, ctx->id);
1343                 mutex_unlock(&mut);
1344
1345                 ucma_free_ctx(ctx);
1346                 mutex_lock(&file->mut);
1347         }
1348         mutex_unlock(&file->mut);
1349         kfree(file);
1350         return 0;
1351 }
1352
1353 static const struct file_operations ucma_fops = {
1354         .owner   = THIS_MODULE,
1355         .open    = ucma_open,
1356         .release = ucma_close,
1357         .write   = ucma_write,
1358         .poll    = ucma_poll,
1359         .llseek  = no_llseek,
1360 };
1361
1362 static struct miscdevice ucma_misc = {
1363         .minor          = MISC_DYNAMIC_MINOR,
1364         .name           = "rdma_cm",
1365         .nodename       = "infiniband/rdma_cm",
1366         .mode           = 0666,
1367         .fops           = &ucma_fops,
1368 };
1369
1370 static ssize_t show_abi_version(struct device *dev,
1371                                 struct device_attribute *attr,
1372                                 char *buf)
1373 {
1374         return sprintf(buf, "%d\n", RDMA_USER_CM_ABI_VERSION);
1375 }
1376 static DEVICE_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);
1377
1378 static int __init ucma_init(void)
1379 {
1380         int ret;
1381
1382         ret = misc_register(&ucma_misc);
1383         if (ret)
1384                 return ret;
1385
1386         ret = device_create_file(ucma_misc.this_device, &dev_attr_abi_version);
1387         if (ret) {
1388                 printk(KERN_ERR "rdma_ucm: couldn't create abi_version attr\n");
1389                 goto err1;
1390         }
1391
1392         ucma_ctl_table_hdr = register_sysctl_paths(ucma_ctl_path, ucma_ctl_table);
1393         if (!ucma_ctl_table_hdr) {
1394                 printk(KERN_ERR "rdma_ucm: couldn't register sysctl paths\n");
1395                 ret = -ENOMEM;
1396                 goto err2;
1397         }
1398         return 0;
1399 err2:
1400         device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1401 err1:
1402         misc_deregister(&ucma_misc);
1403         return ret;
1404 }
1405
1406 static void __exit ucma_cleanup(void)
1407 {
1408         unregister_sysctl_table(ucma_ctl_table_hdr);
1409         device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1410         misc_deregister(&ucma_misc);
1411         idr_destroy(&ctx_idr);
1412 }
1413
1414 module_init(ucma_init);
1415 module_exit(ucma_cleanup);