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