79d03330cc57c919d38176f76e26d0362efa3350
[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         if (unlikely(cmd.optval > KMALLOC_MAX_SIZE))
1004                 return -EINVAL;
1005
1006         optval = kmalloc(cmd.optlen, GFP_KERNEL);
1007         if (!optval) {
1008                 ret = -ENOMEM;
1009                 goto out1;
1010         }
1011
1012         if (copy_from_user(optval, (void __user *) (unsigned long) cmd.optval,
1013                            cmd.optlen)) {
1014                 ret = -EFAULT;
1015                 goto out2;
1016         }
1017
1018         ret = ucma_set_option_level(ctx, cmd.level, cmd.optname, optval,
1019                                     cmd.optlen);
1020 out2:
1021         kfree(optval);
1022 out1:
1023         ucma_put_ctx(ctx);
1024         return ret;
1025 }
1026
1027 static ssize_t ucma_notify(struct ucma_file *file, const char __user *inbuf,
1028                            int in_len, int out_len)
1029 {
1030         struct rdma_ucm_notify cmd;
1031         struct ucma_context *ctx;
1032         int ret;
1033
1034         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1035                 return -EFAULT;
1036
1037         ctx = ucma_get_ctx(file, cmd.id);
1038         if (IS_ERR(ctx))
1039                 return PTR_ERR(ctx);
1040
1041         ret = rdma_notify(ctx->cm_id, (enum ib_event_type) cmd.event);
1042         ucma_put_ctx(ctx);
1043         return ret;
1044 }
1045
1046 static ssize_t ucma_join_multicast(struct ucma_file *file,
1047                                    const char __user *inbuf,
1048                                    int in_len, int out_len)
1049 {
1050         struct rdma_ucm_join_mcast cmd;
1051         struct rdma_ucm_create_id_resp resp;
1052         struct ucma_context *ctx;
1053         struct ucma_multicast *mc;
1054         int ret;
1055
1056         if (out_len < sizeof(resp))
1057                 return -ENOSPC;
1058
1059         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1060                 return -EFAULT;
1061
1062         ctx = ucma_get_ctx(file, cmd.id);
1063         if (IS_ERR(ctx))
1064                 return PTR_ERR(ctx);
1065
1066         mutex_lock(&file->mut);
1067         mc = ucma_alloc_multicast(ctx);
1068         if (!mc) {
1069                 ret = -ENOMEM;
1070                 goto err1;
1071         }
1072
1073         mc->uid = cmd.uid;
1074         memcpy(&mc->addr, &cmd.addr, sizeof cmd.addr);
1075         ret = rdma_join_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr, mc);
1076         if (ret)
1077                 goto err2;
1078
1079         resp.id = mc->id;
1080         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1081                          &resp, sizeof(resp))) {
1082                 ret = -EFAULT;
1083                 goto err3;
1084         }
1085
1086         mutex_unlock(&file->mut);
1087         ucma_put_ctx(ctx);
1088         return 0;
1089
1090 err3:
1091         rdma_leave_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr);
1092         ucma_cleanup_mc_events(mc);
1093 err2:
1094         mutex_lock(&mut);
1095         idr_remove(&multicast_idr, mc->id);
1096         mutex_unlock(&mut);
1097         list_del(&mc->list);
1098         kfree(mc);
1099 err1:
1100         mutex_unlock(&file->mut);
1101         ucma_put_ctx(ctx);
1102         return ret;
1103 }
1104
1105 static ssize_t ucma_leave_multicast(struct ucma_file *file,
1106                                     const char __user *inbuf,
1107                                     int in_len, int out_len)
1108 {
1109         struct rdma_ucm_destroy_id cmd;
1110         struct rdma_ucm_destroy_id_resp resp;
1111         struct ucma_multicast *mc;
1112         int ret = 0;
1113
1114         if (out_len < sizeof(resp))
1115                 return -ENOSPC;
1116
1117         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1118                 return -EFAULT;
1119
1120         mutex_lock(&mut);
1121         mc = idr_find(&multicast_idr, cmd.id);
1122         if (!mc)
1123                 mc = ERR_PTR(-ENOENT);
1124         else if (mc->ctx->file != file)
1125                 mc = ERR_PTR(-EINVAL);
1126         else {
1127                 idr_remove(&multicast_idr, mc->id);
1128                 atomic_inc(&mc->ctx->ref);
1129         }
1130         mutex_unlock(&mut);
1131
1132         if (IS_ERR(mc)) {
1133                 ret = PTR_ERR(mc);
1134                 goto out;
1135         }
1136
1137         rdma_leave_multicast(mc->ctx->cm_id, (struct sockaddr *) &mc->addr);
1138         mutex_lock(&mc->ctx->file->mut);
1139         ucma_cleanup_mc_events(mc);
1140         list_del(&mc->list);
1141         mutex_unlock(&mc->ctx->file->mut);
1142
1143         ucma_put_ctx(mc->ctx);
1144         resp.events_reported = mc->events_reported;
1145         kfree(mc);
1146
1147         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1148                          &resp, sizeof(resp)))
1149                 ret = -EFAULT;
1150 out:
1151         return ret;
1152 }
1153
1154 static void ucma_lock_files(struct ucma_file *file1, struct ucma_file *file2)
1155 {
1156         /* Acquire mutex's based on pointer comparison to prevent deadlock. */
1157         if (file1 < file2) {
1158                 mutex_lock(&file1->mut);
1159                 mutex_lock(&file2->mut);
1160         } else {
1161                 mutex_lock(&file2->mut);
1162                 mutex_lock(&file1->mut);
1163         }
1164 }
1165
1166 static void ucma_unlock_files(struct ucma_file *file1, struct ucma_file *file2)
1167 {
1168         if (file1 < file2) {
1169                 mutex_unlock(&file2->mut);
1170                 mutex_unlock(&file1->mut);
1171         } else {
1172                 mutex_unlock(&file1->mut);
1173                 mutex_unlock(&file2->mut);
1174         }
1175 }
1176
1177 static void ucma_move_events(struct ucma_context *ctx, struct ucma_file *file)
1178 {
1179         struct ucma_event *uevent, *tmp;
1180
1181         list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list)
1182                 if (uevent->ctx == ctx)
1183                         list_move_tail(&uevent->list, &file->event_list);
1184 }
1185
1186 static ssize_t ucma_migrate_id(struct ucma_file *new_file,
1187                                const char __user *inbuf,
1188                                int in_len, int out_len)
1189 {
1190         struct rdma_ucm_migrate_id cmd;
1191         struct rdma_ucm_migrate_resp resp;
1192         struct ucma_context *ctx;
1193         struct file *filp;
1194         struct ucma_file *cur_file;
1195         int ret = 0;
1196
1197         if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1198                 return -EFAULT;
1199
1200         /* Get current fd to protect against it being closed */
1201         filp = fget(cmd.fd);
1202         if (!filp)
1203                 return -ENOENT;
1204
1205         /* Validate current fd and prevent destruction of id. */
1206         ctx = ucma_get_ctx(filp->private_data, cmd.id);
1207         if (IS_ERR(ctx)) {
1208                 ret = PTR_ERR(ctx);
1209                 goto file_put;
1210         }
1211
1212         cur_file = ctx->file;
1213         if (cur_file == new_file) {
1214                 resp.events_reported = ctx->events_reported;
1215                 goto response;
1216         }
1217
1218         /*
1219          * Migrate events between fd's, maintaining order, and avoiding new
1220          * events being added before existing events.
1221          */
1222         ucma_lock_files(cur_file, new_file);
1223         mutex_lock(&mut);
1224
1225         list_move_tail(&ctx->list, &new_file->ctx_list);
1226         ucma_move_events(ctx, new_file);
1227         ctx->file = new_file;
1228         resp.events_reported = ctx->events_reported;
1229
1230         mutex_unlock(&mut);
1231         ucma_unlock_files(cur_file, new_file);
1232
1233 response:
1234         if (copy_to_user((void __user *)(unsigned long)cmd.response,
1235                          &resp, sizeof(resp)))
1236                 ret = -EFAULT;
1237
1238         ucma_put_ctx(ctx);
1239 file_put:
1240         fput(filp);
1241         return ret;
1242 }
1243
1244 static ssize_t (*ucma_cmd_table[])(struct ucma_file *file,
1245                                    const char __user *inbuf,
1246                                    int in_len, int out_len) = {
1247         [RDMA_USER_CM_CMD_CREATE_ID]    = ucma_create_id,
1248         [RDMA_USER_CM_CMD_DESTROY_ID]   = ucma_destroy_id,
1249         [RDMA_USER_CM_CMD_BIND_ADDR]    = ucma_bind_addr,
1250         [RDMA_USER_CM_CMD_RESOLVE_ADDR] = ucma_resolve_addr,
1251         [RDMA_USER_CM_CMD_RESOLVE_ROUTE]= ucma_resolve_route,
1252         [RDMA_USER_CM_CMD_QUERY_ROUTE]  = ucma_query_route,
1253         [RDMA_USER_CM_CMD_CONNECT]      = ucma_connect,
1254         [RDMA_USER_CM_CMD_LISTEN]       = ucma_listen,
1255         [RDMA_USER_CM_CMD_ACCEPT]       = ucma_accept,
1256         [RDMA_USER_CM_CMD_REJECT]       = ucma_reject,
1257         [RDMA_USER_CM_CMD_DISCONNECT]   = ucma_disconnect,
1258         [RDMA_USER_CM_CMD_INIT_QP_ATTR] = ucma_init_qp_attr,
1259         [RDMA_USER_CM_CMD_GET_EVENT]    = ucma_get_event,
1260         [RDMA_USER_CM_CMD_GET_OPTION]   = NULL,
1261         [RDMA_USER_CM_CMD_SET_OPTION]   = ucma_set_option,
1262         [RDMA_USER_CM_CMD_NOTIFY]       = ucma_notify,
1263         [RDMA_USER_CM_CMD_JOIN_MCAST]   = ucma_join_multicast,
1264         [RDMA_USER_CM_CMD_LEAVE_MCAST]  = ucma_leave_multicast,
1265         [RDMA_USER_CM_CMD_MIGRATE_ID]   = ucma_migrate_id
1266 };
1267
1268 static ssize_t ucma_write(struct file *filp, const char __user *buf,
1269                           size_t len, loff_t *pos)
1270 {
1271         struct ucma_file *file = filp->private_data;
1272         struct rdma_ucm_cmd_hdr hdr;
1273         ssize_t ret;
1274
1275         if (WARN_ON_ONCE(!ib_safe_file_access(filp)))
1276                 return -EACCES;
1277
1278         if (len < sizeof(hdr))
1279                 return -EINVAL;
1280
1281         if (copy_from_user(&hdr, buf, sizeof(hdr)))
1282                 return -EFAULT;
1283
1284         if (hdr.cmd >= ARRAY_SIZE(ucma_cmd_table))
1285                 return -EINVAL;
1286
1287         if (hdr.in + sizeof(hdr) > len)
1288                 return -EINVAL;
1289
1290         if (!ucma_cmd_table[hdr.cmd])
1291                 return -ENOSYS;
1292
1293         ret = ucma_cmd_table[hdr.cmd](file, buf + sizeof(hdr), hdr.in, hdr.out);
1294         if (!ret)
1295                 ret = len;
1296
1297         return ret;
1298 }
1299
1300 static unsigned int ucma_poll(struct file *filp, struct poll_table_struct *wait)
1301 {
1302         struct ucma_file *file = filp->private_data;
1303         unsigned int mask = 0;
1304
1305         poll_wait(filp, &file->poll_wait, wait);
1306
1307         if (!list_empty(&file->event_list))
1308                 mask = POLLIN | POLLRDNORM;
1309
1310         return mask;
1311 }
1312
1313 /*
1314  * ucma_open() does not need the BKL:
1315  *
1316  *  - no global state is referred to;
1317  *  - there is no ioctl method to race against;
1318  *  - no further module initialization is required for open to work
1319  *    after the device is registered.
1320  */
1321 static int ucma_open(struct inode *inode, struct file *filp)
1322 {
1323         struct ucma_file *file;
1324
1325         file = kmalloc(sizeof *file, GFP_KERNEL);
1326         if (!file)
1327                 return -ENOMEM;
1328
1329         INIT_LIST_HEAD(&file->event_list);
1330         INIT_LIST_HEAD(&file->ctx_list);
1331         init_waitqueue_head(&file->poll_wait);
1332         mutex_init(&file->mut);
1333
1334         filp->private_data = file;
1335         file->filp = filp;
1336
1337         return nonseekable_open(inode, filp);
1338 }
1339
1340 static int ucma_close(struct inode *inode, struct file *filp)
1341 {
1342         struct ucma_file *file = filp->private_data;
1343         struct ucma_context *ctx, *tmp;
1344
1345         mutex_lock(&file->mut);
1346         list_for_each_entry_safe(ctx, tmp, &file->ctx_list, list) {
1347                 mutex_unlock(&file->mut);
1348
1349                 mutex_lock(&mut);
1350                 idr_remove(&ctx_idr, ctx->id);
1351                 mutex_unlock(&mut);
1352
1353                 ucma_free_ctx(ctx);
1354                 mutex_lock(&file->mut);
1355         }
1356         mutex_unlock(&file->mut);
1357         kfree(file);
1358         return 0;
1359 }
1360
1361 static const struct file_operations ucma_fops = {
1362         .owner   = THIS_MODULE,
1363         .open    = ucma_open,
1364         .release = ucma_close,
1365         .write   = ucma_write,
1366         .poll    = ucma_poll,
1367         .llseek  = no_llseek,
1368 };
1369
1370 static struct miscdevice ucma_misc = {
1371         .minor          = MISC_DYNAMIC_MINOR,
1372         .name           = "rdma_cm",
1373         .nodename       = "infiniband/rdma_cm",
1374         .mode           = 0666,
1375         .fops           = &ucma_fops,
1376 };
1377
1378 static ssize_t show_abi_version(struct device *dev,
1379                                 struct device_attribute *attr,
1380                                 char *buf)
1381 {
1382         return sprintf(buf, "%d\n", RDMA_USER_CM_ABI_VERSION);
1383 }
1384 static DEVICE_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);
1385
1386 static int __init ucma_init(void)
1387 {
1388         int ret;
1389
1390         ret = misc_register(&ucma_misc);
1391         if (ret)
1392                 return ret;
1393
1394         ret = device_create_file(ucma_misc.this_device, &dev_attr_abi_version);
1395         if (ret) {
1396                 printk(KERN_ERR "rdma_ucm: couldn't create abi_version attr\n");
1397                 goto err1;
1398         }
1399
1400         ucma_ctl_table_hdr = register_sysctl_paths(ucma_ctl_path, ucma_ctl_table);
1401         if (!ucma_ctl_table_hdr) {
1402                 printk(KERN_ERR "rdma_ucm: couldn't register sysctl paths\n");
1403                 ret = -ENOMEM;
1404                 goto err2;
1405         }
1406         return 0;
1407 err2:
1408         device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1409 err1:
1410         misc_deregister(&ucma_misc);
1411         return ret;
1412 }
1413
1414 static void __exit ucma_cleanup(void)
1415 {
1416         unregister_sysctl_table(ucma_ctl_table_hdr);
1417         device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1418         misc_deregister(&ucma_misc);
1419         idr_destroy(&ctx_idr);
1420 }
1421
1422 module_init(ucma_init);
1423 module_exit(ucma_cleanup);