IB/security: Restrict use of the write() interface
[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         kfree(ctx);
437         return ret;
438 }
439
440 static void ucma_cleanup_multicast(struct ucma_context *ctx)
441 {
442         struct ucma_multicast *mc, *tmp;
443
444         mutex_lock(&mut);
445         list_for_each_entry_safe(mc, tmp, &ctx->mc_list, list) {
446                 list_del(&mc->list);
447                 idr_remove(&multicast_idr, mc->id);
448                 kfree(mc);
449         }
450         mutex_unlock(&mut);
451 }
452
453 static void ucma_cleanup_events(struct ucma_context *ctx)
454 {
455         struct ucma_event *uevent, *tmp;
456
457         list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list) {
458                 if (uevent->ctx != ctx)
459                         continue;
460
461                 list_del(&uevent->list);
462
463                 /* clear incoming connections. */
464                 if (uevent->resp.event == RDMA_CM_EVENT_CONNECT_REQUEST)
465                         rdma_destroy_id(uevent->cm_id);
466
467                 kfree(uevent);
468         }
469 }
470
471 static void ucma_cleanup_mc_events(struct ucma_multicast *mc)
472 {
473         struct ucma_event *uevent, *tmp;
474
475         list_for_each_entry_safe(uevent, tmp, &mc->ctx->file->event_list, list) {
476                 if (uevent->mc != mc)
477                         continue;
478
479                 list_del(&uevent->list);
480                 kfree(uevent);
481         }
482 }
483
484 static int ucma_free_ctx(struct ucma_context *ctx)
485 {
486         int events_reported;
487
488         /* No new events will be generated after destroying the id. */
489         rdma_destroy_id(ctx->cm_id);
490
491         ucma_cleanup_multicast(ctx);
492
493         /* Cleanup events not yet reported to the user. */
494         mutex_lock(&ctx->file->mut);
495         ucma_cleanup_events(ctx);
496         list_del(&ctx->list);
497         mutex_unlock(&ctx->file->mut);
498
499         events_reported = ctx->events_reported;
500         kfree(ctx);
501         return events_reported;
502 }
503
504 static ssize_t ucma_destroy_id(struct ucma_file *file, const char __user *inbuf,
505                                int in_len, int out_len)
506 {
507         struct rdma_ucm_destroy_id cmd;
508         struct rdma_ucm_destroy_id_resp resp;
509         struct ucma_context *ctx;
510         int ret = 0;
511
512         if (out_len < sizeof(resp))
513                 return -ENOSPC;
514
515         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
516                 return -EFAULT;
517
518         mutex_lock(&mut);
519         ctx = _ucma_find_context(cmd.id, file);
520         if (!IS_ERR(ctx))
521                 idr_remove(&ctx_idr, ctx->id);
522         mutex_unlock(&mut);
523
524         if (IS_ERR(ctx))
525                 return PTR_ERR(ctx);
526
527         ucma_put_ctx(ctx);
528         wait_for_completion(&ctx->comp);
529         resp.events_reported = ucma_free_ctx(ctx);
530
531         if (copy_to_user((void __user *)(unsigned long)cmd.response,
532                          &resp, sizeof(resp)))
533                 ret = -EFAULT;
534
535         return ret;
536 }
537
538 static ssize_t ucma_bind_addr(struct ucma_file *file, const char __user *inbuf,
539                               int in_len, int out_len)
540 {
541         struct rdma_ucm_bind_addr cmd;
542         struct ucma_context *ctx;
543         int ret;
544
545         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
546                 return -EFAULT;
547
548         ctx = ucma_get_ctx(file, cmd.id);
549         if (IS_ERR(ctx))
550                 return PTR_ERR(ctx);
551
552         ret = rdma_bind_addr(ctx->cm_id, (struct sockaddr *) &cmd.addr);
553         ucma_put_ctx(ctx);
554         return ret;
555 }
556
557 static ssize_t ucma_resolve_addr(struct ucma_file *file,
558                                  const char __user *inbuf,
559                                  int in_len, int out_len)
560 {
561         struct rdma_ucm_resolve_addr cmd;
562         struct ucma_context *ctx;
563         int ret;
564
565         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
566                 return -EFAULT;
567
568         ctx = ucma_get_ctx(file, cmd.id);
569         if (IS_ERR(ctx))
570                 return PTR_ERR(ctx);
571
572         ret = rdma_resolve_addr(ctx->cm_id, (struct sockaddr *) &cmd.src_addr,
573                                 (struct sockaddr *) &cmd.dst_addr,
574                                 cmd.timeout_ms);
575         ucma_put_ctx(ctx);
576         return ret;
577 }
578
579 static ssize_t ucma_resolve_route(struct ucma_file *file,
580                                   const char __user *inbuf,
581                                   int in_len, int out_len)
582 {
583         struct rdma_ucm_resolve_route cmd;
584         struct ucma_context *ctx;
585         int ret;
586
587         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
588                 return -EFAULT;
589
590         ctx = ucma_get_ctx(file, cmd.id);
591         if (IS_ERR(ctx))
592                 return PTR_ERR(ctx);
593
594         ret = rdma_resolve_route(ctx->cm_id, cmd.timeout_ms);
595         ucma_put_ctx(ctx);
596         return ret;
597 }
598
599 static void ucma_copy_ib_route(struct rdma_ucm_query_route_resp *resp,
600                                struct rdma_route *route)
601 {
602         struct rdma_dev_addr *dev_addr;
603
604         resp->num_paths = route->num_paths;
605         switch (route->num_paths) {
606         case 0:
607                 dev_addr = &route->addr.dev_addr;
608                 rdma_addr_get_dgid(dev_addr,
609                                    (union ib_gid *) &resp->ib_route[0].dgid);
610                 rdma_addr_get_sgid(dev_addr,
611                                    (union ib_gid *) &resp->ib_route[0].sgid);
612                 resp->ib_route[0].pkey = cpu_to_be16(ib_addr_get_pkey(dev_addr));
613                 break;
614         case 2:
615                 ib_copy_path_rec_to_user(&resp->ib_route[1],
616                                          &route->path_rec[1]);
617                 /* fall through */
618         case 1:
619                 ib_copy_path_rec_to_user(&resp->ib_route[0],
620                                          &route->path_rec[0]);
621                 break;
622         default:
623                 break;
624         }
625 }
626
627 static void ucma_copy_iboe_route(struct rdma_ucm_query_route_resp *resp,
628                                  struct rdma_route *route)
629 {
630         struct rdma_dev_addr *dev_addr;
631         struct net_device *dev;
632         u16 vid = 0;
633
634         resp->num_paths = route->num_paths;
635         switch (route->num_paths) {
636         case 0:
637                 dev_addr = &route->addr.dev_addr;
638                 dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if);
639                         if (dev) {
640                                 vid = rdma_vlan_dev_vlan_id(dev);
641                                 dev_put(dev);
642                         }
643
644                 iboe_mac_vlan_to_ll((union ib_gid *) &resp->ib_route[0].dgid,
645                                     dev_addr->dst_dev_addr, vid);
646                 iboe_addr_get_sgid(dev_addr,
647                                    (union ib_gid *) &resp->ib_route[0].sgid);
648                 resp->ib_route[0].pkey = cpu_to_be16(0xffff);
649                 break;
650         case 2:
651                 ib_copy_path_rec_to_user(&resp->ib_route[1],
652                                          &route->path_rec[1]);
653                 /* fall through */
654         case 1:
655                 ib_copy_path_rec_to_user(&resp->ib_route[0],
656                                          &route->path_rec[0]);
657                 break;
658         default:
659                 break;
660         }
661 }
662
663 static void ucma_copy_iw_route(struct rdma_ucm_query_route_resp *resp,
664                                struct rdma_route *route)
665 {
666         struct rdma_dev_addr *dev_addr;
667
668         dev_addr = &route->addr.dev_addr;
669         rdma_addr_get_dgid(dev_addr, (union ib_gid *) &resp->ib_route[0].dgid);
670         rdma_addr_get_sgid(dev_addr, (union ib_gid *) &resp->ib_route[0].sgid);
671 }
672
673 static ssize_t ucma_query_route(struct ucma_file *file,
674                                 const char __user *inbuf,
675                                 int in_len, int out_len)
676 {
677         struct rdma_ucm_query_route cmd;
678         struct rdma_ucm_query_route_resp resp;
679         struct ucma_context *ctx;
680         struct sockaddr *addr;
681         int ret = 0;
682
683         if (out_len < sizeof(resp))
684                 return -ENOSPC;
685
686         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
687                 return -EFAULT;
688
689         ctx = ucma_get_ctx(file, cmd.id);
690         if (IS_ERR(ctx))
691                 return PTR_ERR(ctx);
692
693         memset(&resp, 0, sizeof resp);
694         addr = (struct sockaddr *) &ctx->cm_id->route.addr.src_addr;
695         memcpy(&resp.src_addr, addr, addr->sa_family == AF_INET ?
696                                      sizeof(struct sockaddr_in) :
697                                      sizeof(struct sockaddr_in6));
698         addr = (struct sockaddr *) &ctx->cm_id->route.addr.dst_addr;
699         memcpy(&resp.dst_addr, addr, addr->sa_family == AF_INET ?
700                                      sizeof(struct sockaddr_in) :
701                                      sizeof(struct sockaddr_in6));
702         if (!ctx->cm_id->device)
703                 goto out;
704
705         resp.node_guid = (__force __u64) ctx->cm_id->device->node_guid;
706         resp.port_num = ctx->cm_id->port_num;
707         switch (rdma_node_get_transport(ctx->cm_id->device->node_type)) {
708         case RDMA_TRANSPORT_IB:
709                 switch (rdma_port_get_link_layer(ctx->cm_id->device,
710                         ctx->cm_id->port_num)) {
711                 case IB_LINK_LAYER_INFINIBAND:
712                         ucma_copy_ib_route(&resp, &ctx->cm_id->route);
713                         break;
714                 case IB_LINK_LAYER_ETHERNET:
715                         ucma_copy_iboe_route(&resp, &ctx->cm_id->route);
716                         break;
717                 default:
718                         break;
719                 }
720                 break;
721         case RDMA_TRANSPORT_IWARP:
722                 ucma_copy_iw_route(&resp, &ctx->cm_id->route);
723                 break;
724         default:
725                 break;
726         }
727
728 out:
729         if (copy_to_user((void __user *)(unsigned long)cmd.response,
730                          &resp, sizeof(resp)))
731                 ret = -EFAULT;
732
733         ucma_put_ctx(ctx);
734         return ret;
735 }
736
737 static void ucma_copy_conn_param(struct rdma_conn_param *dst,
738                                  struct rdma_ucm_conn_param *src)
739 {
740         dst->private_data = src->private_data;
741         dst->private_data_len = src->private_data_len;
742         dst->responder_resources =src->responder_resources;
743         dst->initiator_depth = src->initiator_depth;
744         dst->flow_control = src->flow_control;
745         dst->retry_count = src->retry_count;
746         dst->rnr_retry_count = src->rnr_retry_count;
747         dst->srq = src->srq;
748         dst->qp_num = src->qp_num;
749 }
750
751 static ssize_t ucma_connect(struct ucma_file *file, const char __user *inbuf,
752                             int in_len, int out_len)
753 {
754         struct rdma_ucm_connect cmd;
755         struct rdma_conn_param conn_param;
756         struct ucma_context *ctx;
757         int ret;
758
759         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
760                 return -EFAULT;
761
762         if (!cmd.conn_param.valid)
763                 return -EINVAL;
764
765         ctx = ucma_get_ctx(file, cmd.id);
766         if (IS_ERR(ctx))
767                 return PTR_ERR(ctx);
768
769         ucma_copy_conn_param(&conn_param, &cmd.conn_param);
770         ret = rdma_connect(ctx->cm_id, &conn_param);
771         ucma_put_ctx(ctx);
772         return ret;
773 }
774
775 static ssize_t ucma_listen(struct ucma_file *file, const char __user *inbuf,
776                            int in_len, int out_len)
777 {
778         struct rdma_ucm_listen cmd;
779         struct ucma_context *ctx;
780         int ret;
781
782         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
783                 return -EFAULT;
784
785         ctx = ucma_get_ctx(file, cmd.id);
786         if (IS_ERR(ctx))
787                 return PTR_ERR(ctx);
788
789         ctx->backlog = cmd.backlog > 0 && cmd.backlog < max_backlog ?
790                        cmd.backlog : max_backlog;
791         ret = rdma_listen(ctx->cm_id, ctx->backlog);
792         ucma_put_ctx(ctx);
793         return ret;
794 }
795
796 static ssize_t ucma_accept(struct ucma_file *file, const char __user *inbuf,
797                            int in_len, int out_len)
798 {
799         struct rdma_ucm_accept cmd;
800         struct rdma_conn_param conn_param;
801         struct ucma_context *ctx;
802         int ret;
803
804         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
805                 return -EFAULT;
806
807         ctx = ucma_get_ctx(file, cmd.id);
808         if (IS_ERR(ctx))
809                 return PTR_ERR(ctx);
810
811         if (cmd.conn_param.valid) {
812                 ctx->uid = cmd.uid;
813                 ucma_copy_conn_param(&conn_param, &cmd.conn_param);
814                 ret = rdma_accept(ctx->cm_id, &conn_param);
815         } else
816                 ret = rdma_accept(ctx->cm_id, NULL);
817
818         ucma_put_ctx(ctx);
819         return ret;
820 }
821
822 static ssize_t ucma_reject(struct ucma_file *file, const char __user *inbuf,
823                            int in_len, int out_len)
824 {
825         struct rdma_ucm_reject cmd;
826         struct ucma_context *ctx;
827         int ret;
828
829         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
830                 return -EFAULT;
831
832         ctx = ucma_get_ctx(file, cmd.id);
833         if (IS_ERR(ctx))
834                 return PTR_ERR(ctx);
835
836         ret = rdma_reject(ctx->cm_id, cmd.private_data, cmd.private_data_len);
837         ucma_put_ctx(ctx);
838         return ret;
839 }
840
841 static ssize_t ucma_disconnect(struct ucma_file *file, const char __user *inbuf,
842                                int in_len, int out_len)
843 {
844         struct rdma_ucm_disconnect cmd;
845         struct ucma_context *ctx;
846         int ret;
847
848         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
849                 return -EFAULT;
850
851         ctx = ucma_get_ctx(file, cmd.id);
852         if (IS_ERR(ctx))
853                 return PTR_ERR(ctx);
854
855         ret = rdma_disconnect(ctx->cm_id);
856         ucma_put_ctx(ctx);
857         return ret;
858 }
859
860 static ssize_t ucma_init_qp_attr(struct ucma_file *file,
861                                  const char __user *inbuf,
862                                  int in_len, int out_len)
863 {
864         struct rdma_ucm_init_qp_attr cmd;
865         struct ib_uverbs_qp_attr resp;
866         struct ucma_context *ctx;
867         struct ib_qp_attr qp_attr;
868         int ret;
869
870         if (out_len < sizeof(resp))
871                 return -ENOSPC;
872
873         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
874                 return -EFAULT;
875
876         ctx = ucma_get_ctx(file, cmd.id);
877         if (IS_ERR(ctx))
878                 return PTR_ERR(ctx);
879
880         resp.qp_attr_mask = 0;
881         memset(&qp_attr, 0, sizeof qp_attr);
882         qp_attr.qp_state = cmd.qp_state;
883         ret = rdma_init_qp_attr(ctx->cm_id, &qp_attr, &resp.qp_attr_mask);
884         if (ret)
885                 goto out;
886
887         ib_copy_qp_attr_to_user(&resp, &qp_attr);
888         if (copy_to_user((void __user *)(unsigned long)cmd.response,
889                          &resp, sizeof(resp)))
890                 ret = -EFAULT;
891
892 out:
893         ucma_put_ctx(ctx);
894         return ret;
895 }
896
897 static int ucma_set_option_id(struct ucma_context *ctx, int optname,
898                               void *optval, size_t optlen)
899 {
900         int ret = 0;
901
902         switch (optname) {
903         case RDMA_OPTION_ID_TOS:
904                 if (optlen != sizeof(u8)) {
905                         ret = -EINVAL;
906                         break;
907                 }
908                 rdma_set_service_type(ctx->cm_id, *((u8 *) optval));
909                 break;
910         case RDMA_OPTION_ID_REUSEADDR:
911                 if (optlen != sizeof(int)) {
912                         ret = -EINVAL;
913                         break;
914                 }
915                 ret = rdma_set_reuseaddr(ctx->cm_id, *((int *) optval) ? 1 : 0);
916                 break;
917         default:
918                 ret = -ENOSYS;
919         }
920
921         return ret;
922 }
923
924 static int ucma_set_ib_path(struct ucma_context *ctx,
925                             struct ib_path_rec_data *path_data, size_t optlen)
926 {
927         struct ib_sa_path_rec sa_path;
928         struct rdma_cm_event event;
929         int ret;
930
931         if (optlen % sizeof(*path_data))
932                 return -EINVAL;
933
934         for (; optlen; optlen -= sizeof(*path_data), path_data++) {
935                 if (path_data->flags == (IB_PATH_GMP | IB_PATH_PRIMARY |
936                                          IB_PATH_BIDIRECTIONAL))
937                         break;
938         }
939
940         if (!optlen)
941                 return -EINVAL;
942
943         ib_sa_unpack_path(path_data->path_rec, &sa_path);
944         ret = rdma_set_ib_paths(ctx->cm_id, &sa_path, 1);
945         if (ret)
946                 return ret;
947
948         memset(&event, 0, sizeof event);
949         event.event = RDMA_CM_EVENT_ROUTE_RESOLVED;
950         return ucma_event_handler(ctx->cm_id, &event);
951 }
952
953 static int ucma_set_option_ib(struct ucma_context *ctx, int optname,
954                               void *optval, size_t optlen)
955 {
956         int ret;
957
958         switch (optname) {
959         case RDMA_OPTION_IB_PATH:
960                 ret = ucma_set_ib_path(ctx, optval, optlen);
961                 break;
962         default:
963                 ret = -ENOSYS;
964         }
965
966         return ret;
967 }
968
969 static int ucma_set_option_level(struct ucma_context *ctx, int level,
970                                  int optname, void *optval, size_t optlen)
971 {
972         int ret;
973
974         switch (level) {
975         case RDMA_OPTION_ID:
976                 ret = ucma_set_option_id(ctx, optname, optval, optlen);
977                 break;
978         case RDMA_OPTION_IB:
979                 ret = ucma_set_option_ib(ctx, optname, optval, optlen);
980                 break;
981         default:
982                 ret = -ENOSYS;
983         }
984
985         return ret;
986 }
987
988 static ssize_t ucma_set_option(struct ucma_file *file, const char __user *inbuf,
989                                int in_len, int out_len)
990 {
991         struct rdma_ucm_set_option cmd;
992         struct ucma_context *ctx;
993         void *optval;
994         int ret;
995
996         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
997                 return -EFAULT;
998
999         ctx = ucma_get_ctx(file, cmd.id);
1000         if (IS_ERR(ctx))
1001                 return PTR_ERR(ctx);
1002
1003         optval = kmalloc(cmd.optlen, GFP_KERNEL);
1004         if (!optval) {
1005                 ret = -ENOMEM;
1006                 goto out1;
1007         }
1008
1009         if (copy_from_user(optval, (void __user *) (unsigned long) cmd.optval,
1010                            cmd.optlen)) {
1011                 ret = -EFAULT;
1012                 goto out2;
1013         }
1014
1015         ret = ucma_set_option_level(ctx, cmd.level, cmd.optname, optval,
1016                                     cmd.optlen);
1017 out2:
1018         kfree(optval);
1019 out1:
1020         ucma_put_ctx(ctx);
1021         return ret;
1022 }
1023
1024 static ssize_t ucma_notify(struct ucma_file *file, const char __user *inbuf,
1025                            int in_len, int out_len)
1026 {
1027         struct rdma_ucm_notify cmd;
1028         struct ucma_context *ctx;
1029         int ret;
1030
1031         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1032                 return -EFAULT;
1033
1034         ctx = ucma_get_ctx(file, cmd.id);
1035         if (IS_ERR(ctx))
1036                 return PTR_ERR(ctx);
1037
1038         ret = rdma_notify(ctx->cm_id, (enum ib_event_type) cmd.event);
1039         ucma_put_ctx(ctx);
1040         return ret;
1041 }
1042
1043 static ssize_t ucma_join_multicast(struct ucma_file *file,
1044                                    const char __user *inbuf,
1045                                    int in_len, int out_len)
1046 {
1047         struct rdma_ucm_join_mcast cmd;
1048         struct rdma_ucm_create_id_resp resp;
1049         struct ucma_context *ctx;
1050         struct ucma_multicast *mc;
1051         int ret;
1052
1053         if (out_len < sizeof(resp))
1054                 return -ENOSPC;
1055
1056         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1057                 return -EFAULT;
1058
1059         ctx = ucma_get_ctx(file, cmd.id);
1060         if (IS_ERR(ctx))
1061                 return PTR_ERR(ctx);
1062
1063         mutex_lock(&file->mut);
1064         mc = ucma_alloc_multicast(ctx);
1065         if (!mc) {
1066                 ret = -ENOMEM;
1067                 goto err1;
1068         }
1069
1070         mc->uid = cmd.uid;
1071         memcpy(&mc->addr, &cmd.addr, sizeof cmd.addr);
1072         ret = rdma_join_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr, mc);
1073         if (ret)
1074                 goto err2;
1075
1076         resp.id = mc->id;
1077         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1078                          &resp, sizeof(resp))) {
1079                 ret = -EFAULT;
1080                 goto err3;
1081         }
1082
1083         mutex_unlock(&file->mut);
1084         ucma_put_ctx(ctx);
1085         return 0;
1086
1087 err3:
1088         rdma_leave_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr);
1089         ucma_cleanup_mc_events(mc);
1090 err2:
1091         mutex_lock(&mut);
1092         idr_remove(&multicast_idr, mc->id);
1093         mutex_unlock(&mut);
1094         list_del(&mc->list);
1095         kfree(mc);
1096 err1:
1097         mutex_unlock(&file->mut);
1098         ucma_put_ctx(ctx);
1099         return ret;
1100 }
1101
1102 static ssize_t ucma_leave_multicast(struct ucma_file *file,
1103                                     const char __user *inbuf,
1104                                     int in_len, int out_len)
1105 {
1106         struct rdma_ucm_destroy_id cmd;
1107         struct rdma_ucm_destroy_id_resp resp;
1108         struct ucma_multicast *mc;
1109         int ret = 0;
1110
1111         if (out_len < sizeof(resp))
1112                 return -ENOSPC;
1113
1114         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1115                 return -EFAULT;
1116
1117         mutex_lock(&mut);
1118         mc = idr_find(&multicast_idr, cmd.id);
1119         if (!mc)
1120                 mc = ERR_PTR(-ENOENT);
1121         else if (mc->ctx->file != file)
1122                 mc = ERR_PTR(-EINVAL);
1123         else {
1124                 idr_remove(&multicast_idr, mc->id);
1125                 atomic_inc(&mc->ctx->ref);
1126         }
1127         mutex_unlock(&mut);
1128
1129         if (IS_ERR(mc)) {
1130                 ret = PTR_ERR(mc);
1131                 goto out;
1132         }
1133
1134         rdma_leave_multicast(mc->ctx->cm_id, (struct sockaddr *) &mc->addr);
1135         mutex_lock(&mc->ctx->file->mut);
1136         ucma_cleanup_mc_events(mc);
1137         list_del(&mc->list);
1138         mutex_unlock(&mc->ctx->file->mut);
1139
1140         ucma_put_ctx(mc->ctx);
1141         resp.events_reported = mc->events_reported;
1142         kfree(mc);
1143
1144         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1145                          &resp, sizeof(resp)))
1146                 ret = -EFAULT;
1147 out:
1148         return ret;
1149 }
1150
1151 static void ucma_lock_files(struct ucma_file *file1, struct ucma_file *file2)
1152 {
1153         /* Acquire mutex's based on pointer comparison to prevent deadlock. */
1154         if (file1 < file2) {
1155                 mutex_lock(&file1->mut);
1156                 mutex_lock(&file2->mut);
1157         } else {
1158                 mutex_lock(&file2->mut);
1159                 mutex_lock(&file1->mut);
1160         }
1161 }
1162
1163 static void ucma_unlock_files(struct ucma_file *file1, struct ucma_file *file2)
1164 {
1165         if (file1 < file2) {
1166                 mutex_unlock(&file2->mut);
1167                 mutex_unlock(&file1->mut);
1168         } else {
1169                 mutex_unlock(&file1->mut);
1170                 mutex_unlock(&file2->mut);
1171         }
1172 }
1173
1174 static void ucma_move_events(struct ucma_context *ctx, struct ucma_file *file)
1175 {
1176         struct ucma_event *uevent, *tmp;
1177
1178         list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list)
1179                 if (uevent->ctx == ctx)
1180                         list_move_tail(&uevent->list, &file->event_list);
1181 }
1182
1183 static ssize_t ucma_migrate_id(struct ucma_file *new_file,
1184                                const char __user *inbuf,
1185                                int in_len, int out_len)
1186 {
1187         struct rdma_ucm_migrate_id cmd;
1188         struct rdma_ucm_migrate_resp resp;
1189         struct ucma_context *ctx;
1190         struct file *filp;
1191         struct ucma_file *cur_file;
1192         int ret = 0;
1193
1194         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1195                 return -EFAULT;
1196
1197         /* Get current fd to protect against it being closed */
1198         filp = fget(cmd.fd);
1199         if (!filp)
1200                 return -ENOENT;
1201
1202         /* Validate current fd and prevent destruction of id. */
1203         ctx = ucma_get_ctx(filp->private_data, cmd.id);
1204         if (IS_ERR(ctx)) {
1205                 ret = PTR_ERR(ctx);
1206                 goto file_put;
1207         }
1208
1209         cur_file = ctx->file;
1210         if (cur_file == new_file) {
1211                 resp.events_reported = ctx->events_reported;
1212                 goto response;
1213         }
1214
1215         /*
1216          * Migrate events between fd's, maintaining order, and avoiding new
1217          * events being added before existing events.
1218          */
1219         ucma_lock_files(cur_file, new_file);
1220         mutex_lock(&mut);
1221
1222         list_move_tail(&ctx->list, &new_file->ctx_list);
1223         ucma_move_events(ctx, new_file);
1224         ctx->file = new_file;
1225         resp.events_reported = ctx->events_reported;
1226
1227         mutex_unlock(&mut);
1228         ucma_unlock_files(cur_file, new_file);
1229
1230 response:
1231         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1232                          &resp, sizeof(resp)))
1233                 ret = -EFAULT;
1234
1235         ucma_put_ctx(ctx);
1236 file_put:
1237         fput(filp);
1238         return ret;
1239 }
1240
1241 static ssize_t (*ucma_cmd_table[])(struct ucma_file *file,
1242                                    const char __user *inbuf,
1243                                    int in_len, int out_len) = {
1244         [RDMA_USER_CM_CMD_CREATE_ID]    = ucma_create_id,
1245         [RDMA_USER_CM_CMD_DESTROY_ID]   = ucma_destroy_id,
1246         [RDMA_USER_CM_CMD_BIND_ADDR]    = ucma_bind_addr,
1247         [RDMA_USER_CM_CMD_RESOLVE_ADDR] = ucma_resolve_addr,
1248         [RDMA_USER_CM_CMD_RESOLVE_ROUTE]= ucma_resolve_route,
1249         [RDMA_USER_CM_CMD_QUERY_ROUTE]  = ucma_query_route,
1250         [RDMA_USER_CM_CMD_CONNECT]      = ucma_connect,
1251         [RDMA_USER_CM_CMD_LISTEN]       = ucma_listen,
1252         [RDMA_USER_CM_CMD_ACCEPT]       = ucma_accept,
1253         [RDMA_USER_CM_CMD_REJECT]       = ucma_reject,
1254         [RDMA_USER_CM_CMD_DISCONNECT]   = ucma_disconnect,
1255         [RDMA_USER_CM_CMD_INIT_QP_ATTR] = ucma_init_qp_attr,
1256         [RDMA_USER_CM_CMD_GET_EVENT]    = ucma_get_event,
1257         [RDMA_USER_CM_CMD_GET_OPTION]   = NULL,
1258         [RDMA_USER_CM_CMD_SET_OPTION]   = ucma_set_option,
1259         [RDMA_USER_CM_CMD_NOTIFY]       = ucma_notify,
1260         [RDMA_USER_CM_CMD_JOIN_MCAST]   = ucma_join_multicast,
1261         [RDMA_USER_CM_CMD_LEAVE_MCAST]  = ucma_leave_multicast,
1262         [RDMA_USER_CM_CMD_MIGRATE_ID]   = ucma_migrate_id
1263 };
1264
1265 static ssize_t ucma_write(struct file *filp, const char __user *buf,
1266                           size_t len, loff_t *pos)
1267 {
1268         struct ucma_file *file = filp->private_data;
1269         struct rdma_ucm_cmd_hdr hdr;
1270         ssize_t ret;
1271
1272         if (WARN_ON_ONCE(!ib_safe_file_access(filp)))
1273                 return -EACCES;
1274
1275         if (len < sizeof(hdr))
1276                 return -EINVAL;
1277
1278         if (copy_from_user(&hdr, buf, sizeof(hdr)))
1279                 return -EFAULT;
1280
1281         if (hdr.cmd >= ARRAY_SIZE(ucma_cmd_table))
1282                 return -EINVAL;
1283
1284         if (hdr.in + sizeof(hdr) > len)
1285                 return -EINVAL;
1286
1287         if (!ucma_cmd_table[hdr.cmd])
1288                 return -ENOSYS;
1289
1290         ret = ucma_cmd_table[hdr.cmd](file, buf + sizeof(hdr), hdr.in, hdr.out);
1291         if (!ret)
1292                 ret = len;
1293
1294         return ret;
1295 }
1296
1297 static unsigned int ucma_poll(struct file *filp, struct poll_table_struct *wait)
1298 {
1299         struct ucma_file *file = filp->private_data;
1300         unsigned int mask = 0;
1301
1302         poll_wait(filp, &file->poll_wait, wait);
1303
1304         if (!list_empty(&file->event_list))
1305                 mask = POLLIN | POLLRDNORM;
1306
1307         return mask;
1308 }
1309
1310 /*
1311  * ucma_open() does not need the BKL:
1312  *
1313  *  - no global state is referred to;
1314  *  - there is no ioctl method to race against;
1315  *  - no further module initialization is required for open to work
1316  *    after the device is registered.
1317  */
1318 static int ucma_open(struct inode *inode, struct file *filp)
1319 {
1320         struct ucma_file *file;
1321
1322         file = kmalloc(sizeof *file, GFP_KERNEL);
1323         if (!file)
1324                 return -ENOMEM;
1325
1326         INIT_LIST_HEAD(&file->event_list);
1327         INIT_LIST_HEAD(&file->ctx_list);
1328         init_waitqueue_head(&file->poll_wait);
1329         mutex_init(&file->mut);
1330
1331         filp->private_data = file;
1332         file->filp = filp;
1333
1334         return nonseekable_open(inode, filp);
1335 }
1336
1337 static int ucma_close(struct inode *inode, struct file *filp)
1338 {
1339         struct ucma_file *file = filp->private_data;
1340         struct ucma_context *ctx, *tmp;
1341
1342         mutex_lock(&file->mut);
1343         list_for_each_entry_safe(ctx, tmp, &file->ctx_list, list) {
1344                 mutex_unlock(&file->mut);
1345
1346                 mutex_lock(&mut);
1347                 idr_remove(&ctx_idr, ctx->id);
1348                 mutex_unlock(&mut);
1349
1350                 ucma_free_ctx(ctx);
1351                 mutex_lock(&file->mut);
1352         }
1353         mutex_unlock(&file->mut);
1354         kfree(file);
1355         return 0;
1356 }
1357
1358 static const struct file_operations ucma_fops = {
1359         .owner   = THIS_MODULE,
1360         .open    = ucma_open,
1361         .release = ucma_close,
1362         .write   = ucma_write,
1363         .poll    = ucma_poll,
1364         .llseek  = no_llseek,
1365 };
1366
1367 static struct miscdevice ucma_misc = {
1368         .minor          = MISC_DYNAMIC_MINOR,
1369         .name           = "rdma_cm",
1370         .nodename       = "infiniband/rdma_cm",
1371         .mode           = 0666,
1372         .fops           = &ucma_fops,
1373 };
1374
1375 static ssize_t show_abi_version(struct device *dev,
1376                                 struct device_attribute *attr,
1377                                 char *buf)
1378 {
1379         return sprintf(buf, "%d\n", RDMA_USER_CM_ABI_VERSION);
1380 }
1381 static DEVICE_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);
1382
1383 static int __init ucma_init(void)
1384 {
1385         int ret;
1386
1387         ret = misc_register(&ucma_misc);
1388         if (ret)
1389                 return ret;
1390
1391         ret = device_create_file(ucma_misc.this_device, &dev_attr_abi_version);
1392         if (ret) {
1393                 printk(KERN_ERR "rdma_ucm: couldn't create abi_version attr\n");
1394                 goto err1;
1395         }
1396
1397         ucma_ctl_table_hdr = register_sysctl_paths(ucma_ctl_path, ucma_ctl_table);
1398         if (!ucma_ctl_table_hdr) {
1399                 printk(KERN_ERR "rdma_ucm: couldn't register sysctl paths\n");
1400                 ret = -ENOMEM;
1401                 goto err2;
1402         }
1403         return 0;
1404 err2:
1405         device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1406 err1:
1407         misc_deregister(&ucma_misc);
1408         return ret;
1409 }
1410
1411 static void __exit ucma_cleanup(void)
1412 {
1413         unregister_sysctl_table(ucma_ctl_table_hdr);
1414         device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1415         misc_deregister(&ucma_misc);
1416         idr_destroy(&ctx_idr);
1417 }
1418
1419 module_init(ucma_init);
1420 module_exit(ucma_cleanup);