driver core: Convert some drivers to CLASS_ATTR_STRING
[safe/jmp/linux-2.6] / drivers / infiniband / core / uverbs_main.c
1 /*
2  * Copyright (c) 2005 Topspin Communications.  All rights reserved.
3  * Copyright (c) 2005, 2006 Cisco Systems.  All rights reserved.
4  * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
5  * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
6  * Copyright (c) 2005 PathScale, Inc. All rights reserved.
7  *
8  * This software is available to you under a choice of one of two
9  * licenses.  You may choose to be licensed under the terms of the GNU
10  * General Public License (GPL) Version 2, available from the file
11  * COPYING in the main directory of this source tree, or the
12  * OpenIB.org BSD license below:
13  *
14  *     Redistribution and use in source and binary forms, with or
15  *     without modification, are permitted provided that the following
16  *     conditions are met:
17  *
18  *      - Redistributions of source code must retain the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer.
21  *
22  *      - Redistributions in binary form must reproduce the above
23  *        copyright notice, this list of conditions and the following
24  *        disclaimer in the documentation and/or other materials
25  *        provided with the distribution.
26  *
27  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34  * SOFTWARE.
35  */
36
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/device.h>
40 #include <linux/err.h>
41 #include <linux/fs.h>
42 #include <linux/poll.h>
43 #include <linux/sched.h>
44 #include <linux/file.h>
45 #include <linux/cdev.h>
46 #include <linux/anon_inodes.h>
47
48 #include <asm/uaccess.h>
49
50 #include "uverbs.h"
51
52 MODULE_AUTHOR("Roland Dreier");
53 MODULE_DESCRIPTION("InfiniBand userspace verbs access");
54 MODULE_LICENSE("Dual BSD/GPL");
55
56 enum {
57         IB_UVERBS_MAJOR       = 231,
58         IB_UVERBS_BASE_MINOR  = 192,
59         IB_UVERBS_MAX_DEVICES = 32
60 };
61
62 #define IB_UVERBS_BASE_DEV      MKDEV(IB_UVERBS_MAJOR, IB_UVERBS_BASE_MINOR)
63
64 static struct class *uverbs_class;
65
66 DEFINE_SPINLOCK(ib_uverbs_idr_lock);
67 DEFINE_IDR(ib_uverbs_pd_idr);
68 DEFINE_IDR(ib_uverbs_mr_idr);
69 DEFINE_IDR(ib_uverbs_mw_idr);
70 DEFINE_IDR(ib_uverbs_ah_idr);
71 DEFINE_IDR(ib_uverbs_cq_idr);
72 DEFINE_IDR(ib_uverbs_qp_idr);
73 DEFINE_IDR(ib_uverbs_srq_idr);
74
75 static DEFINE_SPINLOCK(map_lock);
76 static DECLARE_BITMAP(dev_map, IB_UVERBS_MAX_DEVICES);
77
78 static ssize_t (*uverbs_cmd_table[])(struct ib_uverbs_file *file,
79                                      const char __user *buf, int in_len,
80                                      int out_len) = {
81         [IB_USER_VERBS_CMD_GET_CONTEXT]         = ib_uverbs_get_context,
82         [IB_USER_VERBS_CMD_QUERY_DEVICE]        = ib_uverbs_query_device,
83         [IB_USER_VERBS_CMD_QUERY_PORT]          = ib_uverbs_query_port,
84         [IB_USER_VERBS_CMD_ALLOC_PD]            = ib_uverbs_alloc_pd,
85         [IB_USER_VERBS_CMD_DEALLOC_PD]          = ib_uverbs_dealloc_pd,
86         [IB_USER_VERBS_CMD_REG_MR]              = ib_uverbs_reg_mr,
87         [IB_USER_VERBS_CMD_DEREG_MR]            = ib_uverbs_dereg_mr,
88         [IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL] = ib_uverbs_create_comp_channel,
89         [IB_USER_VERBS_CMD_CREATE_CQ]           = ib_uverbs_create_cq,
90         [IB_USER_VERBS_CMD_RESIZE_CQ]           = ib_uverbs_resize_cq,
91         [IB_USER_VERBS_CMD_POLL_CQ]             = ib_uverbs_poll_cq,
92         [IB_USER_VERBS_CMD_REQ_NOTIFY_CQ]       = ib_uverbs_req_notify_cq,
93         [IB_USER_VERBS_CMD_DESTROY_CQ]          = ib_uverbs_destroy_cq,
94         [IB_USER_VERBS_CMD_CREATE_QP]           = ib_uverbs_create_qp,
95         [IB_USER_VERBS_CMD_QUERY_QP]            = ib_uverbs_query_qp,
96         [IB_USER_VERBS_CMD_MODIFY_QP]           = ib_uverbs_modify_qp,
97         [IB_USER_VERBS_CMD_DESTROY_QP]          = ib_uverbs_destroy_qp,
98         [IB_USER_VERBS_CMD_POST_SEND]           = ib_uverbs_post_send,
99         [IB_USER_VERBS_CMD_POST_RECV]           = ib_uverbs_post_recv,
100         [IB_USER_VERBS_CMD_POST_SRQ_RECV]       = ib_uverbs_post_srq_recv,
101         [IB_USER_VERBS_CMD_CREATE_AH]           = ib_uverbs_create_ah,
102         [IB_USER_VERBS_CMD_DESTROY_AH]          = ib_uverbs_destroy_ah,
103         [IB_USER_VERBS_CMD_ATTACH_MCAST]        = ib_uverbs_attach_mcast,
104         [IB_USER_VERBS_CMD_DETACH_MCAST]        = ib_uverbs_detach_mcast,
105         [IB_USER_VERBS_CMD_CREATE_SRQ]          = ib_uverbs_create_srq,
106         [IB_USER_VERBS_CMD_MODIFY_SRQ]          = ib_uverbs_modify_srq,
107         [IB_USER_VERBS_CMD_QUERY_SRQ]           = ib_uverbs_query_srq,
108         [IB_USER_VERBS_CMD_DESTROY_SRQ]         = ib_uverbs_destroy_srq,
109 };
110
111 static void ib_uverbs_add_one(struct ib_device *device);
112 static void ib_uverbs_remove_one(struct ib_device *device);
113
114 static void ib_uverbs_release_dev(struct kref *ref)
115 {
116         struct ib_uverbs_device *dev =
117                 container_of(ref, struct ib_uverbs_device, ref);
118
119         complete(&dev->comp);
120 }
121
122 static void ib_uverbs_release_event_file(struct kref *ref)
123 {
124         struct ib_uverbs_event_file *file =
125                 container_of(ref, struct ib_uverbs_event_file, ref);
126
127         kfree(file);
128 }
129
130 void ib_uverbs_release_ucq(struct ib_uverbs_file *file,
131                           struct ib_uverbs_event_file *ev_file,
132                           struct ib_ucq_object *uobj)
133 {
134         struct ib_uverbs_event *evt, *tmp;
135
136         if (ev_file) {
137                 spin_lock_irq(&ev_file->lock);
138                 list_for_each_entry_safe(evt, tmp, &uobj->comp_list, obj_list) {
139                         list_del(&evt->list);
140                         kfree(evt);
141                 }
142                 spin_unlock_irq(&ev_file->lock);
143
144                 kref_put(&ev_file->ref, ib_uverbs_release_event_file);
145         }
146
147         spin_lock_irq(&file->async_file->lock);
148         list_for_each_entry_safe(evt, tmp, &uobj->async_list, obj_list) {
149                 list_del(&evt->list);
150                 kfree(evt);
151         }
152         spin_unlock_irq(&file->async_file->lock);
153 }
154
155 void ib_uverbs_release_uevent(struct ib_uverbs_file *file,
156                               struct ib_uevent_object *uobj)
157 {
158         struct ib_uverbs_event *evt, *tmp;
159
160         spin_lock_irq(&file->async_file->lock);
161         list_for_each_entry_safe(evt, tmp, &uobj->event_list, obj_list) {
162                 list_del(&evt->list);
163                 kfree(evt);
164         }
165         spin_unlock_irq(&file->async_file->lock);
166 }
167
168 static void ib_uverbs_detach_umcast(struct ib_qp *qp,
169                                     struct ib_uqp_object *uobj)
170 {
171         struct ib_uverbs_mcast_entry *mcast, *tmp;
172
173         list_for_each_entry_safe(mcast, tmp, &uobj->mcast_list, list) {
174                 ib_detach_mcast(qp, &mcast->gid, mcast->lid);
175                 list_del(&mcast->list);
176                 kfree(mcast);
177         }
178 }
179
180 static int ib_uverbs_cleanup_ucontext(struct ib_uverbs_file *file,
181                                       struct ib_ucontext *context)
182 {
183         struct ib_uobject *uobj, *tmp;
184
185         if (!context)
186                 return 0;
187
188         context->closing = 1;
189
190         list_for_each_entry_safe(uobj, tmp, &context->ah_list, list) {
191                 struct ib_ah *ah = uobj->object;
192
193                 idr_remove_uobj(&ib_uverbs_ah_idr, uobj);
194                 ib_destroy_ah(ah);
195                 kfree(uobj);
196         }
197
198         list_for_each_entry_safe(uobj, tmp, &context->qp_list, list) {
199                 struct ib_qp *qp = uobj->object;
200                 struct ib_uqp_object *uqp =
201                         container_of(uobj, struct ib_uqp_object, uevent.uobject);
202
203                 idr_remove_uobj(&ib_uverbs_qp_idr, uobj);
204                 ib_uverbs_detach_umcast(qp, uqp);
205                 ib_destroy_qp(qp);
206                 ib_uverbs_release_uevent(file, &uqp->uevent);
207                 kfree(uqp);
208         }
209
210         list_for_each_entry_safe(uobj, tmp, &context->cq_list, list) {
211                 struct ib_cq *cq = uobj->object;
212                 struct ib_uverbs_event_file *ev_file = cq->cq_context;
213                 struct ib_ucq_object *ucq =
214                         container_of(uobj, struct ib_ucq_object, uobject);
215
216                 idr_remove_uobj(&ib_uverbs_cq_idr, uobj);
217                 ib_destroy_cq(cq);
218                 ib_uverbs_release_ucq(file, ev_file, ucq);
219                 kfree(ucq);
220         }
221
222         list_for_each_entry_safe(uobj, tmp, &context->srq_list, list) {
223                 struct ib_srq *srq = uobj->object;
224                 struct ib_uevent_object *uevent =
225                         container_of(uobj, struct ib_uevent_object, uobject);
226
227                 idr_remove_uobj(&ib_uverbs_srq_idr, uobj);
228                 ib_destroy_srq(srq);
229                 ib_uverbs_release_uevent(file, uevent);
230                 kfree(uevent);
231         }
232
233         /* XXX Free MWs */
234
235         list_for_each_entry_safe(uobj, tmp, &context->mr_list, list) {
236                 struct ib_mr *mr = uobj->object;
237
238                 idr_remove_uobj(&ib_uverbs_mr_idr, uobj);
239                 ib_dereg_mr(mr);
240                 kfree(uobj);
241         }
242
243         list_for_each_entry_safe(uobj, tmp, &context->pd_list, list) {
244                 struct ib_pd *pd = uobj->object;
245
246                 idr_remove_uobj(&ib_uverbs_pd_idr, uobj);
247                 ib_dealloc_pd(pd);
248                 kfree(uobj);
249         }
250
251         return context->device->dealloc_ucontext(context);
252 }
253
254 static void ib_uverbs_release_file(struct kref *ref)
255 {
256         struct ib_uverbs_file *file =
257                 container_of(ref, struct ib_uverbs_file, ref);
258
259         module_put(file->device->ib_dev->owner);
260         kref_put(&file->device->ref, ib_uverbs_release_dev);
261
262         kfree(file);
263 }
264
265 static ssize_t ib_uverbs_event_read(struct file *filp, char __user *buf,
266                                     size_t count, loff_t *pos)
267 {
268         struct ib_uverbs_event_file *file = filp->private_data;
269         struct ib_uverbs_event *event;
270         int eventsz;
271         int ret = 0;
272
273         spin_lock_irq(&file->lock);
274
275         while (list_empty(&file->event_list)) {
276                 spin_unlock_irq(&file->lock);
277
278                 if (filp->f_flags & O_NONBLOCK)
279                         return -EAGAIN;
280
281                 if (wait_event_interruptible(file->poll_wait,
282                                              !list_empty(&file->event_list)))
283                         return -ERESTARTSYS;
284
285                 spin_lock_irq(&file->lock);
286         }
287
288         event = list_entry(file->event_list.next, struct ib_uverbs_event, list);
289
290         if (file->is_async)
291                 eventsz = sizeof (struct ib_uverbs_async_event_desc);
292         else
293                 eventsz = sizeof (struct ib_uverbs_comp_event_desc);
294
295         if (eventsz > count) {
296                 ret   = -EINVAL;
297                 event = NULL;
298         } else {
299                 list_del(file->event_list.next);
300                 if (event->counter) {
301                         ++(*event->counter);
302                         list_del(&event->obj_list);
303                 }
304         }
305
306         spin_unlock_irq(&file->lock);
307
308         if (event) {
309                 if (copy_to_user(buf, event, eventsz))
310                         ret = -EFAULT;
311                 else
312                         ret = eventsz;
313         }
314
315         kfree(event);
316
317         return ret;
318 }
319
320 static unsigned int ib_uverbs_event_poll(struct file *filp,
321                                          struct poll_table_struct *wait)
322 {
323         unsigned int pollflags = 0;
324         struct ib_uverbs_event_file *file = filp->private_data;
325
326         poll_wait(filp, &file->poll_wait, wait);
327
328         spin_lock_irq(&file->lock);
329         if (!list_empty(&file->event_list))
330                 pollflags = POLLIN | POLLRDNORM;
331         spin_unlock_irq(&file->lock);
332
333         return pollflags;
334 }
335
336 static int ib_uverbs_event_fasync(int fd, struct file *filp, int on)
337 {
338         struct ib_uverbs_event_file *file = filp->private_data;
339
340         return fasync_helper(fd, filp, on, &file->async_queue);
341 }
342
343 static int ib_uverbs_event_close(struct inode *inode, struct file *filp)
344 {
345         struct ib_uverbs_event_file *file = filp->private_data;
346         struct ib_uverbs_event *entry, *tmp;
347
348         spin_lock_irq(&file->lock);
349         file->is_closed = 1;
350         list_for_each_entry_safe(entry, tmp, &file->event_list, list) {
351                 if (entry->counter)
352                         list_del(&entry->obj_list);
353                 kfree(entry);
354         }
355         spin_unlock_irq(&file->lock);
356
357         if (file->is_async) {
358                 ib_unregister_event_handler(&file->uverbs_file->event_handler);
359                 kref_put(&file->uverbs_file->ref, ib_uverbs_release_file);
360         }
361         kref_put(&file->ref, ib_uverbs_release_event_file);
362
363         return 0;
364 }
365
366 static const struct file_operations uverbs_event_fops = {
367         .owner   = THIS_MODULE,
368         .read    = ib_uverbs_event_read,
369         .poll    = ib_uverbs_event_poll,
370         .release = ib_uverbs_event_close,
371         .fasync  = ib_uverbs_event_fasync
372 };
373
374 void ib_uverbs_comp_handler(struct ib_cq *cq, void *cq_context)
375 {
376         struct ib_uverbs_event_file    *file = cq_context;
377         struct ib_ucq_object           *uobj;
378         struct ib_uverbs_event         *entry;
379         unsigned long                   flags;
380
381         if (!file)
382                 return;
383
384         spin_lock_irqsave(&file->lock, flags);
385         if (file->is_closed) {
386                 spin_unlock_irqrestore(&file->lock, flags);
387                 return;
388         }
389
390         entry = kmalloc(sizeof *entry, GFP_ATOMIC);
391         if (!entry) {
392                 spin_unlock_irqrestore(&file->lock, flags);
393                 return;
394         }
395
396         uobj = container_of(cq->uobject, struct ib_ucq_object, uobject);
397
398         entry->desc.comp.cq_handle = cq->uobject->user_handle;
399         entry->counter             = &uobj->comp_events_reported;
400
401         list_add_tail(&entry->list, &file->event_list);
402         list_add_tail(&entry->obj_list, &uobj->comp_list);
403         spin_unlock_irqrestore(&file->lock, flags);
404
405         wake_up_interruptible(&file->poll_wait);
406         kill_fasync(&file->async_queue, SIGIO, POLL_IN);
407 }
408
409 static void ib_uverbs_async_handler(struct ib_uverbs_file *file,
410                                     __u64 element, __u64 event,
411                                     struct list_head *obj_list,
412                                     u32 *counter)
413 {
414         struct ib_uverbs_event *entry;
415         unsigned long flags;
416
417         spin_lock_irqsave(&file->async_file->lock, flags);
418         if (file->async_file->is_closed) {
419                 spin_unlock_irqrestore(&file->async_file->lock, flags);
420                 return;
421         }
422
423         entry = kmalloc(sizeof *entry, GFP_ATOMIC);
424         if (!entry) {
425                 spin_unlock_irqrestore(&file->async_file->lock, flags);
426                 return;
427         }
428
429         entry->desc.async.element    = element;
430         entry->desc.async.event_type = event;
431         entry->counter               = counter;
432
433         list_add_tail(&entry->list, &file->async_file->event_list);
434         if (obj_list)
435                 list_add_tail(&entry->obj_list, obj_list);
436         spin_unlock_irqrestore(&file->async_file->lock, flags);
437
438         wake_up_interruptible(&file->async_file->poll_wait);
439         kill_fasync(&file->async_file->async_queue, SIGIO, POLL_IN);
440 }
441
442 void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr)
443 {
444         struct ib_ucq_object *uobj = container_of(event->element.cq->uobject,
445                                                   struct ib_ucq_object, uobject);
446
447         ib_uverbs_async_handler(uobj->uverbs_file, uobj->uobject.user_handle,
448                                 event->event, &uobj->async_list,
449                                 &uobj->async_events_reported);
450 }
451
452 void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr)
453 {
454         struct ib_uevent_object *uobj;
455
456         uobj = container_of(event->element.qp->uobject,
457                             struct ib_uevent_object, uobject);
458
459         ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
460                                 event->event, &uobj->event_list,
461                                 &uobj->events_reported);
462 }
463
464 void ib_uverbs_srq_event_handler(struct ib_event *event, void *context_ptr)
465 {
466         struct ib_uevent_object *uobj;
467
468         uobj = container_of(event->element.srq->uobject,
469                             struct ib_uevent_object, uobject);
470
471         ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
472                                 event->event, &uobj->event_list,
473                                 &uobj->events_reported);
474 }
475
476 void ib_uverbs_event_handler(struct ib_event_handler *handler,
477                              struct ib_event *event)
478 {
479         struct ib_uverbs_file *file =
480                 container_of(handler, struct ib_uverbs_file, event_handler);
481
482         ib_uverbs_async_handler(file, event->element.port_num, event->event,
483                                 NULL, NULL);
484 }
485
486 struct file *ib_uverbs_alloc_event_file(struct ib_uverbs_file *uverbs_file,
487                                         int is_async)
488 {
489         struct ib_uverbs_event_file *ev_file;
490         struct file *filp;
491
492         ev_file = kmalloc(sizeof *ev_file, GFP_KERNEL);
493         if (!ev_file)
494                 return ERR_PTR(-ENOMEM);
495
496         kref_init(&ev_file->ref);
497         spin_lock_init(&ev_file->lock);
498         INIT_LIST_HEAD(&ev_file->event_list);
499         init_waitqueue_head(&ev_file->poll_wait);
500         ev_file->uverbs_file = uverbs_file;
501         ev_file->async_queue = NULL;
502         ev_file->is_async    = is_async;
503         ev_file->is_closed   = 0;
504
505         filp = anon_inode_getfile("[infinibandevent]", &uverbs_event_fops,
506                                   ev_file, O_RDONLY);
507         if (IS_ERR(filp))
508                 kfree(ev_file);
509
510         return filp;
511 }
512
513 /*
514  * Look up a completion event file by FD.  If lookup is successful,
515  * takes a ref to the event file struct that it returns; if
516  * unsuccessful, returns NULL.
517  */
518 struct ib_uverbs_event_file *ib_uverbs_lookup_comp_file(int fd)
519 {
520         struct ib_uverbs_event_file *ev_file = NULL;
521         struct file *filp;
522
523         filp = fget(fd);
524         if (!filp)
525                 return NULL;
526
527         if (filp->f_op != &uverbs_event_fops)
528                 goto out;
529
530         ev_file = filp->private_data;
531         if (ev_file->is_async) {
532                 ev_file = NULL;
533                 goto out;
534         }
535
536         kref_get(&ev_file->ref);
537
538 out:
539         fput(filp);
540         return ev_file;
541 }
542
543 static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
544                              size_t count, loff_t *pos)
545 {
546         struct ib_uverbs_file *file = filp->private_data;
547         struct ib_uverbs_cmd_hdr hdr;
548
549         if (count < sizeof hdr)
550                 return -EINVAL;
551
552         if (copy_from_user(&hdr, buf, sizeof hdr))
553                 return -EFAULT;
554
555         if (hdr.in_words * 4 != count)
556                 return -EINVAL;
557
558         if (hdr.command < 0                             ||
559             hdr.command >= ARRAY_SIZE(uverbs_cmd_table) ||
560             !uverbs_cmd_table[hdr.command])
561                 return -EINVAL;
562
563         if (!file->ucontext &&
564             hdr.command != IB_USER_VERBS_CMD_GET_CONTEXT)
565                 return -EINVAL;
566
567         if (!(file->device->ib_dev->uverbs_cmd_mask & (1ull << hdr.command)))
568                 return -ENOSYS;
569
570         return uverbs_cmd_table[hdr.command](file, buf + sizeof hdr,
571                                              hdr.in_words * 4, hdr.out_words * 4);
572 }
573
574 static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct *vma)
575 {
576         struct ib_uverbs_file *file = filp->private_data;
577
578         if (!file->ucontext)
579                 return -ENODEV;
580         else
581                 return file->device->ib_dev->mmap(file->ucontext, vma);
582 }
583
584 /*
585  * ib_uverbs_open() does not need the BKL:
586  *
587  *  - the ib_uverbs_device structures are properly reference counted and
588  *    everything else is purely local to the file being created, so
589  *    races against other open calls are not a problem;
590  *  - there is no ioctl method to race against;
591  *  - the open method will either immediately run -ENXIO, or all
592  *    required initialization will be done.
593  */
594 static int ib_uverbs_open(struct inode *inode, struct file *filp)
595 {
596         struct ib_uverbs_device *dev;
597         struct ib_uverbs_file *file;
598         int ret;
599
600         dev = container_of(inode->i_cdev, struct ib_uverbs_device, cdev);
601         if (dev)
602                 kref_get(&dev->ref);
603         else
604                 return -ENXIO;
605
606         if (!try_module_get(dev->ib_dev->owner)) {
607                 ret = -ENODEV;
608                 goto err;
609         }
610
611         file = kmalloc(sizeof *file, GFP_KERNEL);
612         if (!file) {
613                 ret = -ENOMEM;
614                 goto err_module;
615         }
616
617         file->device     = dev;
618         file->ucontext   = NULL;
619         file->async_file = NULL;
620         kref_init(&file->ref);
621         mutex_init(&file->mutex);
622
623         filp->private_data = file;
624
625         return 0;
626
627 err_module:
628         module_put(dev->ib_dev->owner);
629
630 err:
631         kref_put(&dev->ref, ib_uverbs_release_dev);
632         return ret;
633 }
634
635 static int ib_uverbs_close(struct inode *inode, struct file *filp)
636 {
637         struct ib_uverbs_file *file = filp->private_data;
638
639         ib_uverbs_cleanup_ucontext(file, file->ucontext);
640
641         if (file->async_file)
642                 kref_put(&file->async_file->ref, ib_uverbs_release_event_file);
643
644         kref_put(&file->ref, ib_uverbs_release_file);
645
646         return 0;
647 }
648
649 static const struct file_operations uverbs_fops = {
650         .owner   = THIS_MODULE,
651         .write   = ib_uverbs_write,
652         .open    = ib_uverbs_open,
653         .release = ib_uverbs_close
654 };
655
656 static const struct file_operations uverbs_mmap_fops = {
657         .owner   = THIS_MODULE,
658         .write   = ib_uverbs_write,
659         .mmap    = ib_uverbs_mmap,
660         .open    = ib_uverbs_open,
661         .release = ib_uverbs_close
662 };
663
664 static struct ib_client uverbs_client = {
665         .name   = "uverbs",
666         .add    = ib_uverbs_add_one,
667         .remove = ib_uverbs_remove_one
668 };
669
670 static ssize_t show_ibdev(struct device *device, struct device_attribute *attr,
671                           char *buf)
672 {
673         struct ib_uverbs_device *dev = dev_get_drvdata(device);
674
675         if (!dev)
676                 return -ENODEV;
677
678         return sprintf(buf, "%s\n", dev->ib_dev->name);
679 }
680 static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
681
682 static ssize_t show_dev_abi_version(struct device *device,
683                                     struct device_attribute *attr, char *buf)
684 {
685         struct ib_uverbs_device *dev = dev_get_drvdata(device);
686
687         if (!dev)
688                 return -ENODEV;
689
690         return sprintf(buf, "%d\n", dev->ib_dev->uverbs_abi_ver);
691 }
692 static DEVICE_ATTR(abi_version, S_IRUGO, show_dev_abi_version, NULL);
693
694 static CLASS_ATTR_STRING(abi_version, S_IRUGO,
695                          __stringify(IB_USER_VERBS_ABI_VERSION));
696
697 static dev_t overflow_maj;
698 static DECLARE_BITMAP(overflow_map, IB_UVERBS_MAX_DEVICES);
699
700 /*
701  * If we have more than IB_UVERBS_MAX_DEVICES, dynamically overflow by
702  * requesting a new major number and doubling the number of max devices we
703  * support. It's stupid, but simple.
704  */
705 static int find_overflow_devnum(void)
706 {
707         int ret;
708
709         if (!overflow_maj) {
710                 ret = alloc_chrdev_region(&overflow_maj, 0, IB_UVERBS_MAX_DEVICES,
711                                           "infiniband_verbs");
712                 if (ret) {
713                         printk(KERN_ERR "user_verbs: couldn't register dynamic device number\n");
714                         return ret;
715                 }
716         }
717
718         ret = find_first_zero_bit(overflow_map, IB_UVERBS_MAX_DEVICES);
719         if (ret >= IB_UVERBS_MAX_DEVICES)
720                 return -1;
721
722         return ret;
723 }
724
725 static void ib_uverbs_add_one(struct ib_device *device)
726 {
727         int devnum;
728         dev_t base;
729         struct ib_uverbs_device *uverbs_dev;
730
731         if (!device->alloc_ucontext)
732                 return;
733
734         uverbs_dev = kzalloc(sizeof *uverbs_dev, GFP_KERNEL);
735         if (!uverbs_dev)
736                 return;
737
738         kref_init(&uverbs_dev->ref);
739         init_completion(&uverbs_dev->comp);
740
741         spin_lock(&map_lock);
742         devnum = find_first_zero_bit(dev_map, IB_UVERBS_MAX_DEVICES);
743         if (devnum >= IB_UVERBS_MAX_DEVICES) {
744                 spin_unlock(&map_lock);
745                 devnum = find_overflow_devnum();
746                 if (devnum < 0)
747                         goto err;
748
749                 spin_lock(&map_lock);
750                 uverbs_dev->devnum = devnum + IB_UVERBS_MAX_DEVICES;
751                 base = devnum + overflow_maj;
752                 set_bit(devnum, overflow_map);
753         } else {
754                 uverbs_dev->devnum = devnum;
755                 base = devnum + IB_UVERBS_BASE_DEV;
756                 set_bit(devnum, dev_map);
757         }
758         spin_unlock(&map_lock);
759
760         uverbs_dev->ib_dev           = device;
761         uverbs_dev->num_comp_vectors = device->num_comp_vectors;
762
763         cdev_init(&uverbs_dev->cdev, NULL);
764         uverbs_dev->cdev.owner = THIS_MODULE;
765         uverbs_dev->cdev.ops = device->mmap ? &uverbs_mmap_fops : &uverbs_fops;
766         kobject_set_name(&uverbs_dev->cdev.kobj, "uverbs%d", uverbs_dev->devnum);
767         if (cdev_add(&uverbs_dev->cdev, base, 1))
768                 goto err_cdev;
769
770         uverbs_dev->dev = device_create(uverbs_class, device->dma_device,
771                                         uverbs_dev->cdev.dev, uverbs_dev,
772                                         "uverbs%d", uverbs_dev->devnum);
773         if (IS_ERR(uverbs_dev->dev))
774                 goto err_cdev;
775
776         if (device_create_file(uverbs_dev->dev, &dev_attr_ibdev))
777                 goto err_class;
778         if (device_create_file(uverbs_dev->dev, &dev_attr_abi_version))
779                 goto err_class;
780
781         ib_set_client_data(device, &uverbs_client, uverbs_dev);
782
783         return;
784
785 err_class:
786         device_destroy(uverbs_class, uverbs_dev->cdev.dev);
787
788 err_cdev:
789         cdev_del(&uverbs_dev->cdev);
790         if (uverbs_dev->devnum < IB_UVERBS_MAX_DEVICES)
791                 clear_bit(devnum, dev_map);
792         else
793                 clear_bit(devnum, overflow_map);
794
795 err:
796         kref_put(&uverbs_dev->ref, ib_uverbs_release_dev);
797         wait_for_completion(&uverbs_dev->comp);
798         kfree(uverbs_dev);
799         return;
800 }
801
802 static void ib_uverbs_remove_one(struct ib_device *device)
803 {
804         struct ib_uverbs_device *uverbs_dev = ib_get_client_data(device, &uverbs_client);
805
806         if (!uverbs_dev)
807                 return;
808
809         dev_set_drvdata(uverbs_dev->dev, NULL);
810         device_destroy(uverbs_class, uverbs_dev->cdev.dev);
811         cdev_del(&uverbs_dev->cdev);
812
813         if (uverbs_dev->devnum < IB_UVERBS_MAX_DEVICES)
814                 clear_bit(uverbs_dev->devnum, dev_map);
815         else
816                 clear_bit(uverbs_dev->devnum - IB_UVERBS_MAX_DEVICES, overflow_map);
817
818         kref_put(&uverbs_dev->ref, ib_uverbs_release_dev);
819         wait_for_completion(&uverbs_dev->comp);
820         kfree(uverbs_dev);
821 }
822
823 static int __init ib_uverbs_init(void)
824 {
825         int ret;
826
827         ret = register_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES,
828                                      "infiniband_verbs");
829         if (ret) {
830                 printk(KERN_ERR "user_verbs: couldn't register device number\n");
831                 goto out;
832         }
833
834         uverbs_class = class_create(THIS_MODULE, "infiniband_verbs");
835         if (IS_ERR(uverbs_class)) {
836                 ret = PTR_ERR(uverbs_class);
837                 printk(KERN_ERR "user_verbs: couldn't create class infiniband_verbs\n");
838                 goto out_chrdev;
839         }
840
841         ret = class_create_file(uverbs_class, &class_attr_abi_version.attr);
842         if (ret) {
843                 printk(KERN_ERR "user_verbs: couldn't create abi_version attribute\n");
844                 goto out_class;
845         }
846
847         ret = ib_register_client(&uverbs_client);
848         if (ret) {
849                 printk(KERN_ERR "user_verbs: couldn't register client\n");
850                 goto out_class;
851         }
852
853         return 0;
854
855 out_class:
856         class_destroy(uverbs_class);
857
858 out_chrdev:
859         unregister_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES);
860
861 out:
862         return ret;
863 }
864
865 static void __exit ib_uverbs_cleanup(void)
866 {
867         ib_unregister_client(&uverbs_client);
868         class_destroy(uverbs_class);
869         unregister_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES);
870         if (overflow_maj)
871                 unregister_chrdev_region(overflow_maj, IB_UVERBS_MAX_DEVICES);
872         idr_destroy(&ib_uverbs_pd_idr);
873         idr_destroy(&ib_uverbs_mr_idr);
874         idr_destroy(&ib_uverbs_mw_idr);
875         idr_destroy(&ib_uverbs_ah_idr);
876         idr_destroy(&ib_uverbs_cq_idr);
877         idr_destroy(&ib_uverbs_qp_idr);
878         idr_destroy(&ib_uverbs_srq_idr);
879 }
880
881 module_init(ib_uverbs_init);
882 module_exit(ib_uverbs_cleanup);