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