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