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.
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:
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
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.
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
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/device.h>
40 #include <linux/err.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 #include <linux/slab.h>
48 #include <linux/sched/mm.h>
50 #include <linux/uaccess.h>
53 #include <rdma/uverbs_std_types.h>
56 #include "core_priv.h"
57 #include "rdma_core.h"
59 MODULE_AUTHOR("Roland Dreier");
60 MODULE_DESCRIPTION("InfiniBand userspace verbs access");
61 MODULE_LICENSE("Dual BSD/GPL");
64 IB_UVERBS_MAJOR = 231,
65 IB_UVERBS_BASE_MINOR = 192,
66 IB_UVERBS_MAX_DEVICES = RDMA_MAX_PORTS,
67 IB_UVERBS_NUM_FIXED_MINOR = 32,
68 IB_UVERBS_NUM_DYNAMIC_MINOR = IB_UVERBS_MAX_DEVICES - IB_UVERBS_NUM_FIXED_MINOR,
71 #define IB_UVERBS_BASE_DEV MKDEV(IB_UVERBS_MAJOR, IB_UVERBS_BASE_MINOR)
73 static dev_t dynamic_uverbs_dev;
74 static struct class *uverbs_class;
76 static DEFINE_IDA(uverbs_ida);
77 static void ib_uverbs_add_one(struct ib_device *device);
78 static void ib_uverbs_remove_one(struct ib_device *device, void *client_data);
81 * Must be called with the ufile->device->disassociate_srcu held, and the lock
82 * must be held until use of the ucontext is finished.
84 struct ib_ucontext *ib_uverbs_get_ucontext_file(struct ib_uverbs_file *ufile)
87 * We do not hold the hw_destroy_rwsem lock for this flow, instead
88 * srcu is used. It does not matter if someone races this with
89 * get_context, we get NULL or valid ucontext.
91 struct ib_ucontext *ucontext = smp_load_acquire(&ufile->ucontext);
93 if (!srcu_dereference(ufile->device->ib_dev,
94 &ufile->device->disassociate_srcu))
98 return ERR_PTR(-EINVAL);
102 EXPORT_SYMBOL(ib_uverbs_get_ucontext_file);
104 int uverbs_dealloc_mw(struct ib_mw *mw)
106 struct ib_pd *pd = mw->pd;
109 ret = mw->device->ops.dealloc_mw(mw);
111 atomic_dec(&pd->usecnt);
115 static void ib_uverbs_release_dev(struct device *device)
117 struct ib_uverbs_device *dev =
118 container_of(device, struct ib_uverbs_device, dev);
120 uverbs_destroy_api(dev->uapi);
121 cleanup_srcu_struct(&dev->disassociate_srcu);
125 static void ib_uverbs_release_async_event_file(struct kref *ref)
127 struct ib_uverbs_async_event_file *file =
128 container_of(ref, struct ib_uverbs_async_event_file, ref);
133 void ib_uverbs_release_ucq(struct ib_uverbs_file *file,
134 struct ib_uverbs_completion_event_file *ev_file,
135 struct ib_ucq_object *uobj)
137 struct ib_uverbs_event *evt, *tmp;
140 spin_lock_irq(&ev_file->ev_queue.lock);
141 list_for_each_entry_safe(evt, tmp, &uobj->comp_list, obj_list) {
142 list_del(&evt->list);
145 spin_unlock_irq(&ev_file->ev_queue.lock);
147 uverbs_uobject_put(&ev_file->uobj);
150 spin_lock_irq(&file->async_file->ev_queue.lock);
151 list_for_each_entry_safe(evt, tmp, &uobj->async_list, obj_list) {
152 list_del(&evt->list);
155 spin_unlock_irq(&file->async_file->ev_queue.lock);
158 void ib_uverbs_release_uevent(struct ib_uverbs_file *file,
159 struct ib_uevent_object *uobj)
161 struct ib_uverbs_event *evt, *tmp;
163 spin_lock_irq(&file->async_file->ev_queue.lock);
164 list_for_each_entry_safe(evt, tmp, &uobj->event_list, obj_list) {
165 list_del(&evt->list);
168 spin_unlock_irq(&file->async_file->ev_queue.lock);
171 void ib_uverbs_detach_umcast(struct ib_qp *qp,
172 struct ib_uqp_object *uobj)
174 struct ib_uverbs_mcast_entry *mcast, *tmp;
176 list_for_each_entry_safe(mcast, tmp, &uobj->mcast_list, list) {
177 ib_detach_mcast(qp, &mcast->gid, mcast->lid);
178 list_del(&mcast->list);
183 static void ib_uverbs_comp_dev(struct ib_uverbs_device *dev)
185 complete(&dev->comp);
188 void ib_uverbs_release_file(struct kref *ref)
190 struct ib_uverbs_file *file =
191 container_of(ref, struct ib_uverbs_file, ref);
192 struct ib_device *ib_dev;
195 release_ufile_idr_uobject(file);
197 srcu_key = srcu_read_lock(&file->device->disassociate_srcu);
198 ib_dev = srcu_dereference(file->device->ib_dev,
199 &file->device->disassociate_srcu);
200 if (ib_dev && !ib_dev->ops.disassociate_ucontext)
201 module_put(ib_dev->owner);
202 srcu_read_unlock(&file->device->disassociate_srcu, srcu_key);
204 if (atomic_dec_and_test(&file->device->refcount))
205 ib_uverbs_comp_dev(file->device);
207 if (file->async_file)
208 kref_put(&file->async_file->ref,
209 ib_uverbs_release_async_event_file);
210 put_device(&file->device->dev);
212 if (file->disassociate_page)
213 __free_pages(file->disassociate_page, 0);
217 static ssize_t ib_uverbs_event_read(struct ib_uverbs_event_queue *ev_queue,
218 struct ib_uverbs_file *uverbs_file,
219 struct file *filp, char __user *buf,
220 size_t count, loff_t *pos,
223 struct ib_uverbs_event *event;
226 spin_lock_irq(&ev_queue->lock);
228 while (list_empty(&ev_queue->event_list)) {
229 spin_unlock_irq(&ev_queue->lock);
231 if (filp->f_flags & O_NONBLOCK)
234 if (wait_event_interruptible(ev_queue->poll_wait,
235 (!list_empty(&ev_queue->event_list) ||
236 /* The barriers built into wait_event_interruptible()
237 * and wake_up() guarentee this will see the null set
240 !uverbs_file->device->ib_dev)))
243 /* If device was disassociated and no event exists set an error */
244 if (list_empty(&ev_queue->event_list) &&
245 !uverbs_file->device->ib_dev)
248 spin_lock_irq(&ev_queue->lock);
251 event = list_entry(ev_queue->event_list.next, struct ib_uverbs_event, list);
253 if (eventsz > count) {
257 list_del(ev_queue->event_list.next);
258 if (event->counter) {
260 list_del(&event->obj_list);
264 spin_unlock_irq(&ev_queue->lock);
267 if (copy_to_user(buf, event, eventsz))
278 static ssize_t ib_uverbs_async_event_read(struct file *filp, char __user *buf,
279 size_t count, loff_t *pos)
281 struct ib_uverbs_async_event_file *file = filp->private_data;
283 return ib_uverbs_event_read(&file->ev_queue, file->uverbs_file, filp,
285 sizeof(struct ib_uverbs_async_event_desc));
288 static ssize_t ib_uverbs_comp_event_read(struct file *filp, char __user *buf,
289 size_t count, loff_t *pos)
291 struct ib_uverbs_completion_event_file *comp_ev_file =
294 return ib_uverbs_event_read(&comp_ev_file->ev_queue,
295 comp_ev_file->uobj.ufile, filp,
297 sizeof(struct ib_uverbs_comp_event_desc));
300 static __poll_t ib_uverbs_event_poll(struct ib_uverbs_event_queue *ev_queue,
302 struct poll_table_struct *wait)
304 __poll_t pollflags = 0;
306 poll_wait(filp, &ev_queue->poll_wait, wait);
308 spin_lock_irq(&ev_queue->lock);
309 if (!list_empty(&ev_queue->event_list))
310 pollflags = EPOLLIN | EPOLLRDNORM;
311 spin_unlock_irq(&ev_queue->lock);
316 static __poll_t ib_uverbs_async_event_poll(struct file *filp,
317 struct poll_table_struct *wait)
319 return ib_uverbs_event_poll(filp->private_data, filp, wait);
322 static __poll_t ib_uverbs_comp_event_poll(struct file *filp,
323 struct poll_table_struct *wait)
325 struct ib_uverbs_completion_event_file *comp_ev_file =
328 return ib_uverbs_event_poll(&comp_ev_file->ev_queue, filp, wait);
331 static int ib_uverbs_async_event_fasync(int fd, struct file *filp, int on)
333 struct ib_uverbs_event_queue *ev_queue = filp->private_data;
335 return fasync_helper(fd, filp, on, &ev_queue->async_queue);
338 static int ib_uverbs_comp_event_fasync(int fd, struct file *filp, int on)
340 struct ib_uverbs_completion_event_file *comp_ev_file =
343 return fasync_helper(fd, filp, on, &comp_ev_file->ev_queue.async_queue);
346 static int ib_uverbs_async_event_close(struct inode *inode, struct file *filp)
348 struct ib_uverbs_async_event_file *file = filp->private_data;
349 struct ib_uverbs_file *uverbs_file = file->uverbs_file;
350 struct ib_uverbs_event *entry, *tmp;
351 int closed_already = 0;
353 mutex_lock(&uverbs_file->device->lists_mutex);
354 spin_lock_irq(&file->ev_queue.lock);
355 closed_already = file->ev_queue.is_closed;
356 file->ev_queue.is_closed = 1;
357 list_for_each_entry_safe(entry, tmp, &file->ev_queue.event_list, list) {
359 list_del(&entry->obj_list);
362 spin_unlock_irq(&file->ev_queue.lock);
363 if (!closed_already) {
364 list_del(&file->list);
365 ib_unregister_event_handler(&uverbs_file->event_handler);
367 mutex_unlock(&uverbs_file->device->lists_mutex);
369 kref_put(&uverbs_file->ref, ib_uverbs_release_file);
370 kref_put(&file->ref, ib_uverbs_release_async_event_file);
375 static int ib_uverbs_comp_event_close(struct inode *inode, struct file *filp)
377 struct ib_uobject *uobj = filp->private_data;
378 struct ib_uverbs_completion_event_file *file = container_of(
379 uobj, struct ib_uverbs_completion_event_file, uobj);
380 struct ib_uverbs_event *entry, *tmp;
382 spin_lock_irq(&file->ev_queue.lock);
383 list_for_each_entry_safe(entry, tmp, &file->ev_queue.event_list, list) {
385 list_del(&entry->obj_list);
388 file->ev_queue.is_closed = 1;
389 spin_unlock_irq(&file->ev_queue.lock);
391 uverbs_close_fd(filp);
396 const struct file_operations uverbs_event_fops = {
397 .owner = THIS_MODULE,
398 .read = ib_uverbs_comp_event_read,
399 .poll = ib_uverbs_comp_event_poll,
400 .release = ib_uverbs_comp_event_close,
401 .fasync = ib_uverbs_comp_event_fasync,
405 static const struct file_operations uverbs_async_event_fops = {
406 .owner = THIS_MODULE,
407 .read = ib_uverbs_async_event_read,
408 .poll = ib_uverbs_async_event_poll,
409 .release = ib_uverbs_async_event_close,
410 .fasync = ib_uverbs_async_event_fasync,
414 void ib_uverbs_comp_handler(struct ib_cq *cq, void *cq_context)
416 struct ib_uverbs_event_queue *ev_queue = cq_context;
417 struct ib_ucq_object *uobj;
418 struct ib_uverbs_event *entry;
424 spin_lock_irqsave(&ev_queue->lock, flags);
425 if (ev_queue->is_closed) {
426 spin_unlock_irqrestore(&ev_queue->lock, flags);
430 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
432 spin_unlock_irqrestore(&ev_queue->lock, flags);
436 uobj = container_of(cq->uobject, struct ib_ucq_object, uobject);
438 entry->desc.comp.cq_handle = cq->uobject->user_handle;
439 entry->counter = &uobj->comp_events_reported;
441 list_add_tail(&entry->list, &ev_queue->event_list);
442 list_add_tail(&entry->obj_list, &uobj->comp_list);
443 spin_unlock_irqrestore(&ev_queue->lock, flags);
445 wake_up_interruptible(&ev_queue->poll_wait);
446 kill_fasync(&ev_queue->async_queue, SIGIO, POLL_IN);
449 static void ib_uverbs_async_handler(struct ib_uverbs_file *file,
450 __u64 element, __u64 event,
451 struct list_head *obj_list,
454 struct ib_uverbs_event *entry;
457 spin_lock_irqsave(&file->async_file->ev_queue.lock, flags);
458 if (file->async_file->ev_queue.is_closed) {
459 spin_unlock_irqrestore(&file->async_file->ev_queue.lock, flags);
463 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
465 spin_unlock_irqrestore(&file->async_file->ev_queue.lock, flags);
469 entry->desc.async.element = element;
470 entry->desc.async.event_type = event;
471 entry->desc.async.reserved = 0;
472 entry->counter = counter;
474 list_add_tail(&entry->list, &file->async_file->ev_queue.event_list);
476 list_add_tail(&entry->obj_list, obj_list);
477 spin_unlock_irqrestore(&file->async_file->ev_queue.lock, flags);
479 wake_up_interruptible(&file->async_file->ev_queue.poll_wait);
480 kill_fasync(&file->async_file->ev_queue.async_queue, SIGIO, POLL_IN);
483 void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr)
485 struct ib_ucq_object *uobj = container_of(event->element.cq->uobject,
486 struct ib_ucq_object, uobject);
488 ib_uverbs_async_handler(uobj->uobject.ufile, uobj->uobject.user_handle,
489 event->event, &uobj->async_list,
490 &uobj->async_events_reported);
493 void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr)
495 struct ib_uevent_object *uobj;
497 /* for XRC target qp's, check that qp is live */
498 if (!event->element.qp->uobject)
501 uobj = container_of(event->element.qp->uobject,
502 struct ib_uevent_object, uobject);
504 ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
505 event->event, &uobj->event_list,
506 &uobj->events_reported);
509 void ib_uverbs_wq_event_handler(struct ib_event *event, void *context_ptr)
511 struct ib_uevent_object *uobj = container_of(event->element.wq->uobject,
512 struct ib_uevent_object, uobject);
514 ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
515 event->event, &uobj->event_list,
516 &uobj->events_reported);
519 void ib_uverbs_srq_event_handler(struct ib_event *event, void *context_ptr)
521 struct ib_uevent_object *uobj;
523 uobj = container_of(event->element.srq->uobject,
524 struct ib_uevent_object, uobject);
526 ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
527 event->event, &uobj->event_list,
528 &uobj->events_reported);
531 void ib_uverbs_event_handler(struct ib_event_handler *handler,
532 struct ib_event *event)
534 struct ib_uverbs_file *file =
535 container_of(handler, struct ib_uverbs_file, event_handler);
537 ib_uverbs_async_handler(file, event->element.port_num, event->event,
541 void ib_uverbs_free_async_event_file(struct ib_uverbs_file *file)
543 kref_put(&file->async_file->ref, ib_uverbs_release_async_event_file);
544 file->async_file = NULL;
547 void ib_uverbs_init_event_queue(struct ib_uverbs_event_queue *ev_queue)
549 spin_lock_init(&ev_queue->lock);
550 INIT_LIST_HEAD(&ev_queue->event_list);
551 init_waitqueue_head(&ev_queue->poll_wait);
552 ev_queue->is_closed = 0;
553 ev_queue->async_queue = NULL;
556 struct file *ib_uverbs_alloc_async_event_file(struct ib_uverbs_file *uverbs_file,
557 struct ib_device *ib_dev)
559 struct ib_uverbs_async_event_file *ev_file;
562 ev_file = kzalloc(sizeof(*ev_file), GFP_KERNEL);
564 return ERR_PTR(-ENOMEM);
566 ib_uverbs_init_event_queue(&ev_file->ev_queue);
567 ev_file->uverbs_file = uverbs_file;
568 kref_get(&ev_file->uverbs_file->ref);
569 kref_init(&ev_file->ref);
570 filp = anon_inode_getfile("[infinibandevent]", &uverbs_async_event_fops,
575 mutex_lock(&uverbs_file->device->lists_mutex);
576 list_add_tail(&ev_file->list,
577 &uverbs_file->device->uverbs_events_file_list);
578 mutex_unlock(&uverbs_file->device->lists_mutex);
580 WARN_ON(uverbs_file->async_file);
581 uverbs_file->async_file = ev_file;
582 kref_get(&uverbs_file->async_file->ref);
583 INIT_IB_EVENT_HANDLER(&uverbs_file->event_handler,
585 ib_uverbs_event_handler);
586 ib_register_event_handler(&uverbs_file->event_handler);
587 /* At that point async file stuff was fully set */
592 kref_put(&ev_file->uverbs_file->ref, ib_uverbs_release_file);
593 kref_put(&ev_file->ref, ib_uverbs_release_async_event_file);
597 static ssize_t verify_hdr(struct ib_uverbs_cmd_hdr *hdr,
598 struct ib_uverbs_ex_cmd_hdr *ex_hdr, size_t count,
599 const struct uverbs_api_write_method *method_elm)
601 if (method_elm->is_ex) {
602 count -= sizeof(*hdr) + sizeof(*ex_hdr);
604 if ((hdr->in_words + ex_hdr->provider_in_words) * 8 != count)
607 if (hdr->in_words * 8 < method_elm->req_size)
610 if (ex_hdr->cmd_hdr_reserved)
613 if (ex_hdr->response) {
614 if (!hdr->out_words && !ex_hdr->provider_out_words)
617 if (hdr->out_words * 8 < method_elm->resp_size)
620 if (!access_ok(u64_to_user_ptr(ex_hdr->response),
621 (hdr->out_words + ex_hdr->provider_out_words) * 8))
624 if (hdr->out_words || ex_hdr->provider_out_words)
631 /* not extended command */
632 if (hdr->in_words * 4 != count)
635 if (count < method_elm->req_size + sizeof(hdr)) {
637 * rdma-core v18 and v19 have a bug where they send DESTROY_CQ
638 * with a 16 byte write instead of 24. Old kernels didn't
639 * check the size so they allowed this. Now that the size is
640 * checked provide a compatibility work around to not break
643 if (hdr->command == IB_USER_VERBS_CMD_DESTROY_CQ &&
650 if (hdr->out_words * 4 < method_elm->resp_size)
656 static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
657 size_t count, loff_t *pos)
659 struct ib_uverbs_file *file = filp->private_data;
660 const struct uverbs_api_write_method *method_elm;
661 struct uverbs_api *uapi = file->device->uapi;
662 struct ib_uverbs_ex_cmd_hdr ex_hdr;
663 struct ib_uverbs_cmd_hdr hdr;
664 struct uverbs_attr_bundle bundle;
668 if (!ib_safe_file_access(filp)) {
669 pr_err_once("uverbs_write: process %d (%s) changed security contexts after opening file descriptor, this is not allowed.\n",
670 task_tgid_vnr(current), current->comm);
674 if (count < sizeof(hdr))
677 if (copy_from_user(&hdr, buf, sizeof(hdr)))
680 method_elm = uapi_get_method(uapi, hdr.command);
681 if (IS_ERR(method_elm))
682 return PTR_ERR(method_elm);
684 if (method_elm->is_ex) {
685 if (count < (sizeof(hdr) + sizeof(ex_hdr)))
687 if (copy_from_user(&ex_hdr, buf + sizeof(hdr), sizeof(ex_hdr)))
691 ret = verify_hdr(&hdr, &ex_hdr, count, method_elm);
695 srcu_key = srcu_read_lock(&file->device->disassociate_srcu);
699 memset(bundle.attr_present, 0, sizeof(bundle.attr_present));
701 bundle.context = NULL; /* only valid if bundle has uobject */
702 if (!method_elm->is_ex) {
703 size_t in_len = hdr.in_words * 4 - sizeof(hdr);
704 size_t out_len = hdr.out_words * 4;
707 if (method_elm->has_udata) {
708 bundle.driver_udata.inlen =
709 in_len - method_elm->req_size;
710 in_len = method_elm->req_size;
711 if (bundle.driver_udata.inlen)
712 bundle.driver_udata.inbuf = buf + in_len;
714 bundle.driver_udata.inbuf = NULL;
716 memset(&bundle.driver_udata, 0,
717 sizeof(bundle.driver_udata));
720 if (method_elm->has_resp) {
722 * The macros check that if has_resp is set
723 * then the command request structure starts
724 * with a '__aligned u64 response' member.
726 ret = get_user(response, (const u64 *)buf);
730 if (method_elm->has_udata) {
731 bundle.driver_udata.outlen =
732 out_len - method_elm->resp_size;
733 out_len = method_elm->resp_size;
734 if (bundle.driver_udata.outlen)
735 bundle.driver_udata.outbuf =
736 u64_to_user_ptr(response +
739 bundle.driver_udata.outbuf = NULL;
742 bundle.driver_udata.outlen = 0;
743 bundle.driver_udata.outbuf = NULL;
746 ib_uverbs_init_udata_buf_or_null(
747 &bundle.ucore, buf, u64_to_user_ptr(response),
750 buf += sizeof(ex_hdr);
752 ib_uverbs_init_udata_buf_or_null(&bundle.ucore, buf,
753 u64_to_user_ptr(ex_hdr.response),
754 hdr.in_words * 8, hdr.out_words * 8);
756 ib_uverbs_init_udata_buf_or_null(
757 &bundle.driver_udata, buf + bundle.ucore.inlen,
758 u64_to_user_ptr(ex_hdr.response) + bundle.ucore.outlen,
759 ex_hdr.provider_in_words * 8,
760 ex_hdr.provider_out_words * 8);
764 ret = method_elm->handler(&bundle);
766 srcu_read_unlock(&file->device->disassociate_srcu, srcu_key);
767 return (ret) ? : count;
770 static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct *vma)
772 struct ib_uverbs_file *file = filp->private_data;
773 struct ib_ucontext *ucontext;
777 srcu_key = srcu_read_lock(&file->device->disassociate_srcu);
778 ucontext = ib_uverbs_get_ucontext_file(file);
779 if (IS_ERR(ucontext)) {
780 ret = PTR_ERR(ucontext);
784 ret = ucontext->device->ops.mmap(ucontext, vma);
786 srcu_read_unlock(&file->device->disassociate_srcu, srcu_key);
791 * Each time we map IO memory into user space this keeps track of the mapping.
792 * When the device is hot-unplugged we 'zap' the mmaps in user space to point
793 * to the zero page and allow the hot unplug to proceed.
795 * This is necessary for cases like PCI physical hot unplug as the actual BAR
796 * memory may vanish after this and access to it from userspace could MCE.
798 * RDMA drivers supporting disassociation must have their user space designed
799 * to cope in some way with their IO pages going to the zero page.
801 struct rdma_umap_priv {
802 struct vm_area_struct *vma;
803 struct list_head list;
806 static const struct vm_operations_struct rdma_umap_ops;
808 static void rdma_umap_priv_init(struct rdma_umap_priv *priv,
809 struct vm_area_struct *vma)
811 struct ib_uverbs_file *ufile = vma->vm_file->private_data;
814 vma->vm_private_data = priv;
815 vma->vm_ops = &rdma_umap_ops;
817 mutex_lock(&ufile->umap_lock);
818 list_add(&priv->list, &ufile->umaps);
819 mutex_unlock(&ufile->umap_lock);
823 * The VMA has been dup'd, initialize the vm_private_data with a new tracking
826 static void rdma_umap_open(struct vm_area_struct *vma)
828 struct ib_uverbs_file *ufile = vma->vm_file->private_data;
829 struct rdma_umap_priv *opriv = vma->vm_private_data;
830 struct rdma_umap_priv *priv;
835 /* We are racing with disassociation */
836 if (!down_read_trylock(&ufile->hw_destroy_rwsem))
839 * Disassociation already completed, the VMA should already be zapped.
841 if (!ufile->ucontext)
844 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
847 rdma_umap_priv_init(priv, vma);
849 up_read(&ufile->hw_destroy_rwsem);
853 up_read(&ufile->hw_destroy_rwsem);
856 * We can't allow the VMA to be created with the actual IO pages, that
857 * would break our API contract, and it can't be stopped at this
860 vma->vm_private_data = NULL;
861 zap_vma_ptes(vma, vma->vm_start, vma->vm_end - vma->vm_start);
864 static void rdma_umap_close(struct vm_area_struct *vma)
866 struct ib_uverbs_file *ufile = vma->vm_file->private_data;
867 struct rdma_umap_priv *priv = vma->vm_private_data;
873 * The vma holds a reference on the struct file that created it, which
874 * in turn means that the ib_uverbs_file is guaranteed to exist at
877 mutex_lock(&ufile->umap_lock);
878 list_del(&priv->list);
879 mutex_unlock(&ufile->umap_lock);
884 * Once the zap_vma_ptes has been called touches to the VMA will come here and
885 * we return a dummy writable zero page for all the pfns.
887 static vm_fault_t rdma_umap_fault(struct vm_fault *vmf)
889 struct ib_uverbs_file *ufile = vmf->vma->vm_file->private_data;
890 struct rdma_umap_priv *priv = vmf->vma->vm_private_data;
894 return VM_FAULT_SIGBUS;
896 /* Read only pages can just use the system zero page. */
897 if (!(vmf->vma->vm_flags & (VM_WRITE | VM_MAYWRITE))) {
898 vmf->page = ZERO_PAGE(vmf->address);
903 mutex_lock(&ufile->umap_lock);
904 if (!ufile->disassociate_page)
905 ufile->disassociate_page =
906 alloc_pages(vmf->gfp_mask | __GFP_ZERO, 0);
908 if (ufile->disassociate_page) {
910 * This VMA is forced to always be shared so this doesn't have
911 * to worry about COW.
913 vmf->page = ufile->disassociate_page;
916 ret = VM_FAULT_SIGBUS;
918 mutex_unlock(&ufile->umap_lock);
923 static const struct vm_operations_struct rdma_umap_ops = {
924 .open = rdma_umap_open,
925 .close = rdma_umap_close,
926 .fault = rdma_umap_fault,
929 static struct rdma_umap_priv *rdma_user_mmap_pre(struct ib_ucontext *ucontext,
930 struct vm_area_struct *vma,
933 struct ib_uverbs_file *ufile = ucontext->ufile;
934 struct rdma_umap_priv *priv;
936 if (!(vma->vm_flags & VM_SHARED))
937 return ERR_PTR(-EINVAL);
939 if (vma->vm_end - vma->vm_start != size)
940 return ERR_PTR(-EINVAL);
942 /* Driver is using this wrong, must be called by ib_uverbs_mmap */
943 if (WARN_ON(!vma->vm_file ||
944 vma->vm_file->private_data != ufile))
945 return ERR_PTR(-EINVAL);
946 lockdep_assert_held(&ufile->device->disassociate_srcu);
948 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
950 return ERR_PTR(-ENOMEM);
955 * Map IO memory into a process. This is to be called by drivers as part of
956 * their mmap() functions if they wish to send something like PCI-E BAR memory
959 int rdma_user_mmap_io(struct ib_ucontext *ucontext, struct vm_area_struct *vma,
960 unsigned long pfn, unsigned long size, pgprot_t prot)
962 struct rdma_umap_priv *priv = rdma_user_mmap_pre(ucontext, vma, size);
965 return PTR_ERR(priv);
967 vma->vm_page_prot = prot;
968 if (io_remap_pfn_range(vma, vma->vm_start, pfn, size, prot)) {
973 rdma_umap_priv_init(priv, vma);
976 EXPORT_SYMBOL(rdma_user_mmap_io);
979 * The page case is here for a slightly different reason, the driver expects
980 * to be able to free the page it is sharing to user space when it destroys
981 * its ucontext, which means we need to zap the user space references.
983 * We could handle this differently by providing an API to allocate a shared
984 * page and then only freeing the shared page when the last ufile is
987 int rdma_user_mmap_page(struct ib_ucontext *ucontext,
988 struct vm_area_struct *vma, struct page *page,
991 struct rdma_umap_priv *priv = rdma_user_mmap_pre(ucontext, vma, size);
994 return PTR_ERR(priv);
996 if (remap_pfn_range(vma, vma->vm_start, page_to_pfn(page), size,
997 vma->vm_page_prot)) {
1002 rdma_umap_priv_init(priv, vma);
1005 EXPORT_SYMBOL(rdma_user_mmap_page);
1007 void uverbs_user_mmap_disassociate(struct ib_uverbs_file *ufile)
1009 struct rdma_umap_priv *priv, *next_priv;
1011 lockdep_assert_held(&ufile->hw_destroy_rwsem);
1014 struct mm_struct *mm = NULL;
1016 /* Get an arbitrary mm pointer that hasn't been cleaned yet */
1017 mutex_lock(&ufile->umap_lock);
1018 while (!list_empty(&ufile->umaps)) {
1021 priv = list_first_entry(&ufile->umaps,
1022 struct rdma_umap_priv, list);
1023 mm = priv->vma->vm_mm;
1024 ret = mmget_not_zero(mm);
1026 list_del_init(&priv->list);
1032 mutex_unlock(&ufile->umap_lock);
1037 * The umap_lock is nested under mmap_sem since it used within
1038 * the vma_ops callbacks, so we have to clean the list one mm
1039 * at a time to get the lock ordering right. Typically there
1040 * will only be one mm, so no big deal.
1042 down_read(&mm->mmap_sem);
1043 if (!mmget_still_valid(mm))
1045 mutex_lock(&ufile->umap_lock);
1046 list_for_each_entry_safe (priv, next_priv, &ufile->umaps,
1048 struct vm_area_struct *vma = priv->vma;
1050 if (vma->vm_mm != mm)
1052 list_del_init(&priv->list);
1054 zap_vma_ptes(vma, vma->vm_start,
1055 vma->vm_end - vma->vm_start);
1057 mutex_unlock(&ufile->umap_lock);
1059 up_read(&mm->mmap_sem);
1065 * ib_uverbs_open() does not need the BKL:
1067 * - the ib_uverbs_device structures are properly reference counted and
1068 * everything else is purely local to the file being created, so
1069 * races against other open calls are not a problem;
1070 * - there is no ioctl method to race against;
1071 * - the open method will either immediately run -ENXIO, or all
1072 * required initialization will be done.
1074 static int ib_uverbs_open(struct inode *inode, struct file *filp)
1076 struct ib_uverbs_device *dev;
1077 struct ib_uverbs_file *file;
1078 struct ib_device *ib_dev;
1080 int module_dependent;
1083 dev = container_of(inode->i_cdev, struct ib_uverbs_device, cdev);
1084 if (!atomic_inc_not_zero(&dev->refcount))
1087 get_device(&dev->dev);
1088 srcu_key = srcu_read_lock(&dev->disassociate_srcu);
1089 mutex_lock(&dev->lists_mutex);
1090 ib_dev = srcu_dereference(dev->ib_dev,
1091 &dev->disassociate_srcu);
1097 /* In case IB device supports disassociate ucontext, there is no hard
1098 * dependency between uverbs device and its low level device.
1100 module_dependent = !(ib_dev->ops.disassociate_ucontext);
1102 if (module_dependent) {
1103 if (!try_module_get(ib_dev->owner)) {
1109 file = kzalloc(sizeof(*file), GFP_KERNEL);
1112 if (module_dependent)
1119 kref_init(&file->ref);
1120 mutex_init(&file->ucontext_lock);
1122 spin_lock_init(&file->uobjects_lock);
1123 INIT_LIST_HEAD(&file->uobjects);
1124 init_rwsem(&file->hw_destroy_rwsem);
1125 mutex_init(&file->umap_lock);
1126 INIT_LIST_HEAD(&file->umaps);
1128 filp->private_data = file;
1129 list_add_tail(&file->list, &dev->uverbs_file_list);
1130 mutex_unlock(&dev->lists_mutex);
1131 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
1133 setup_ufile_idr_uobject(file);
1135 return stream_open(inode, filp);
1138 module_put(ib_dev->owner);
1141 mutex_unlock(&dev->lists_mutex);
1142 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
1143 if (atomic_dec_and_test(&dev->refcount))
1144 ib_uverbs_comp_dev(dev);
1146 put_device(&dev->dev);
1150 static int ib_uverbs_close(struct inode *inode, struct file *filp)
1152 struct ib_uverbs_file *file = filp->private_data;
1154 uverbs_destroy_ufile_hw(file, RDMA_REMOVE_CLOSE);
1156 mutex_lock(&file->device->lists_mutex);
1157 list_del_init(&file->list);
1158 mutex_unlock(&file->device->lists_mutex);
1160 kref_put(&file->ref, ib_uverbs_release_file);
1165 static const struct file_operations uverbs_fops = {
1166 .owner = THIS_MODULE,
1167 .write = ib_uverbs_write,
1168 .open = ib_uverbs_open,
1169 .release = ib_uverbs_close,
1170 .llseek = no_llseek,
1171 .unlocked_ioctl = ib_uverbs_ioctl,
1172 .compat_ioctl = ib_uverbs_ioctl,
1175 static const struct file_operations uverbs_mmap_fops = {
1176 .owner = THIS_MODULE,
1177 .write = ib_uverbs_write,
1178 .mmap = ib_uverbs_mmap,
1179 .open = ib_uverbs_open,
1180 .release = ib_uverbs_close,
1181 .llseek = no_llseek,
1182 .unlocked_ioctl = ib_uverbs_ioctl,
1183 .compat_ioctl = ib_uverbs_ioctl,
1186 static struct ib_client uverbs_client = {
1188 .no_kverbs_req = true,
1189 .add = ib_uverbs_add_one,
1190 .remove = ib_uverbs_remove_one
1193 static ssize_t ibdev_show(struct device *device, struct device_attribute *attr,
1196 struct ib_uverbs_device *dev =
1197 container_of(device, struct ib_uverbs_device, dev);
1200 struct ib_device *ib_dev;
1202 srcu_key = srcu_read_lock(&dev->disassociate_srcu);
1203 ib_dev = srcu_dereference(dev->ib_dev, &dev->disassociate_srcu);
1205 ret = sprintf(buf, "%s\n", dev_name(&ib_dev->dev));
1206 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
1210 static DEVICE_ATTR_RO(ibdev);
1212 static ssize_t abi_version_show(struct device *device,
1213 struct device_attribute *attr, char *buf)
1215 struct ib_uverbs_device *dev =
1216 container_of(device, struct ib_uverbs_device, dev);
1219 struct ib_device *ib_dev;
1221 srcu_key = srcu_read_lock(&dev->disassociate_srcu);
1222 ib_dev = srcu_dereference(dev->ib_dev, &dev->disassociate_srcu);
1224 ret = sprintf(buf, "%d\n", ib_dev->uverbs_abi_ver);
1225 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
1229 static DEVICE_ATTR_RO(abi_version);
1231 static struct attribute *ib_dev_attrs[] = {
1232 &dev_attr_abi_version.attr,
1233 &dev_attr_ibdev.attr,
1237 static const struct attribute_group dev_attr_group = {
1238 .attrs = ib_dev_attrs,
1241 static CLASS_ATTR_STRING(abi_version, S_IRUGO,
1242 __stringify(IB_USER_VERBS_ABI_VERSION));
1244 static int ib_uverbs_create_uapi(struct ib_device *device,
1245 struct ib_uverbs_device *uverbs_dev)
1247 struct uverbs_api *uapi;
1249 uapi = uverbs_alloc_api(device);
1251 return PTR_ERR(uapi);
1253 uverbs_dev->uapi = uapi;
1257 static void ib_uverbs_add_one(struct ib_device *device)
1261 struct ib_uverbs_device *uverbs_dev;
1264 if (!device->ops.alloc_ucontext)
1267 uverbs_dev = kzalloc(sizeof(*uverbs_dev), GFP_KERNEL);
1271 ret = init_srcu_struct(&uverbs_dev->disassociate_srcu);
1277 device_initialize(&uverbs_dev->dev);
1278 uverbs_dev->dev.class = uverbs_class;
1279 uverbs_dev->dev.parent = device->dev.parent;
1280 uverbs_dev->dev.release = ib_uverbs_release_dev;
1281 uverbs_dev->groups[0] = &dev_attr_group;
1282 uverbs_dev->dev.groups = uverbs_dev->groups;
1283 atomic_set(&uverbs_dev->refcount, 1);
1284 init_completion(&uverbs_dev->comp);
1285 uverbs_dev->xrcd_tree = RB_ROOT;
1286 mutex_init(&uverbs_dev->xrcd_tree_mutex);
1287 mutex_init(&uverbs_dev->lists_mutex);
1288 INIT_LIST_HEAD(&uverbs_dev->uverbs_file_list);
1289 INIT_LIST_HEAD(&uverbs_dev->uverbs_events_file_list);
1290 rcu_assign_pointer(uverbs_dev->ib_dev, device);
1291 uverbs_dev->num_comp_vectors = device->num_comp_vectors;
1293 devnum = ida_alloc_max(&uverbs_ida, IB_UVERBS_MAX_DEVICES - 1,
1297 uverbs_dev->devnum = devnum;
1298 if (devnum >= IB_UVERBS_NUM_FIXED_MINOR)
1299 base = dynamic_uverbs_dev + devnum - IB_UVERBS_NUM_FIXED_MINOR;
1301 base = IB_UVERBS_BASE_DEV + devnum;
1303 if (ib_uverbs_create_uapi(device, uverbs_dev))
1306 uverbs_dev->dev.devt = base;
1307 dev_set_name(&uverbs_dev->dev, "uverbs%d", uverbs_dev->devnum);
1309 cdev_init(&uverbs_dev->cdev,
1310 device->ops.mmap ? &uverbs_mmap_fops : &uverbs_fops);
1311 uverbs_dev->cdev.owner = THIS_MODULE;
1313 ret = cdev_device_add(&uverbs_dev->cdev, &uverbs_dev->dev);
1317 ib_set_client_data(device, &uverbs_client, uverbs_dev);
1321 ida_free(&uverbs_ida, devnum);
1323 if (atomic_dec_and_test(&uverbs_dev->refcount))
1324 ib_uverbs_comp_dev(uverbs_dev);
1325 wait_for_completion(&uverbs_dev->comp);
1326 put_device(&uverbs_dev->dev);
1330 static void ib_uverbs_free_hw_resources(struct ib_uverbs_device *uverbs_dev,
1331 struct ib_device *ib_dev)
1333 struct ib_uverbs_file *file;
1334 struct ib_uverbs_async_event_file *event_file;
1335 struct ib_event event;
1337 /* Pending running commands to terminate */
1338 uverbs_disassociate_api_pre(uverbs_dev);
1339 event.event = IB_EVENT_DEVICE_FATAL;
1340 event.element.port_num = 0;
1341 event.device = ib_dev;
1343 mutex_lock(&uverbs_dev->lists_mutex);
1344 while (!list_empty(&uverbs_dev->uverbs_file_list)) {
1345 file = list_first_entry(&uverbs_dev->uverbs_file_list,
1346 struct ib_uverbs_file, list);
1347 list_del_init(&file->list);
1348 kref_get(&file->ref);
1350 /* We must release the mutex before going ahead and calling
1351 * uverbs_cleanup_ufile, as it might end up indirectly calling
1352 * uverbs_close, for example due to freeing the resources (e.g
1355 mutex_unlock(&uverbs_dev->lists_mutex);
1357 ib_uverbs_event_handler(&file->event_handler, &event);
1358 uverbs_destroy_ufile_hw(file, RDMA_REMOVE_DRIVER_REMOVE);
1359 kref_put(&file->ref, ib_uverbs_release_file);
1361 mutex_lock(&uverbs_dev->lists_mutex);
1364 while (!list_empty(&uverbs_dev->uverbs_events_file_list)) {
1365 event_file = list_first_entry(&uverbs_dev->
1366 uverbs_events_file_list,
1367 struct ib_uverbs_async_event_file,
1369 spin_lock_irq(&event_file->ev_queue.lock);
1370 event_file->ev_queue.is_closed = 1;
1371 spin_unlock_irq(&event_file->ev_queue.lock);
1373 list_del(&event_file->list);
1374 ib_unregister_event_handler(
1375 &event_file->uverbs_file->event_handler);
1376 event_file->uverbs_file->event_handler.device =
1379 wake_up_interruptible(&event_file->ev_queue.poll_wait);
1380 kill_fasync(&event_file->ev_queue.async_queue, SIGIO, POLL_IN);
1382 mutex_unlock(&uverbs_dev->lists_mutex);
1384 uverbs_disassociate_api(uverbs_dev->uapi);
1387 static void ib_uverbs_remove_one(struct ib_device *device, void *client_data)
1389 struct ib_uverbs_device *uverbs_dev = client_data;
1390 int wait_clients = 1;
1395 cdev_device_del(&uverbs_dev->cdev, &uverbs_dev->dev);
1396 ida_free(&uverbs_ida, uverbs_dev->devnum);
1398 if (device->ops.disassociate_ucontext) {
1399 /* We disassociate HW resources and immediately return.
1400 * Userspace will see a EIO errno for all future access.
1401 * Upon returning, ib_device may be freed internally and is not
1403 * uverbs_device is still available until all clients close
1404 * their files, then the uverbs device ref count will be zero
1405 * and its resources will be freed.
1406 * Note: At this point no more files can be opened since the
1407 * cdev was deleted, however active clients can still issue
1408 * commands and close their open files.
1410 ib_uverbs_free_hw_resources(uverbs_dev, device);
1414 if (atomic_dec_and_test(&uverbs_dev->refcount))
1415 ib_uverbs_comp_dev(uverbs_dev);
1417 wait_for_completion(&uverbs_dev->comp);
1419 put_device(&uverbs_dev->dev);
1422 static char *uverbs_devnode(struct device *dev, umode_t *mode)
1426 return kasprintf(GFP_KERNEL, "infiniband/%s", dev_name(dev));
1429 static int __init ib_uverbs_init(void)
1433 ret = register_chrdev_region(IB_UVERBS_BASE_DEV,
1434 IB_UVERBS_NUM_FIXED_MINOR,
1435 "infiniband_verbs");
1437 pr_err("user_verbs: couldn't register device number\n");
1441 ret = alloc_chrdev_region(&dynamic_uverbs_dev, 0,
1442 IB_UVERBS_NUM_DYNAMIC_MINOR,
1443 "infiniband_verbs");
1445 pr_err("couldn't register dynamic device number\n");
1449 uverbs_class = class_create(THIS_MODULE, "infiniband_verbs");
1450 if (IS_ERR(uverbs_class)) {
1451 ret = PTR_ERR(uverbs_class);
1452 pr_err("user_verbs: couldn't create class infiniband_verbs\n");
1456 uverbs_class->devnode = uverbs_devnode;
1458 ret = class_create_file(uverbs_class, &class_attr_abi_version.attr);
1460 pr_err("user_verbs: couldn't create abi_version attribute\n");
1464 ret = ib_register_client(&uverbs_client);
1466 pr_err("user_verbs: couldn't register client\n");
1473 class_destroy(uverbs_class);
1476 unregister_chrdev_region(dynamic_uverbs_dev,
1477 IB_UVERBS_NUM_DYNAMIC_MINOR);
1480 unregister_chrdev_region(IB_UVERBS_BASE_DEV,
1481 IB_UVERBS_NUM_FIXED_MINOR);
1487 static void __exit ib_uverbs_cleanup(void)
1489 ib_unregister_client(&uverbs_client);
1490 class_destroy(uverbs_class);
1491 unregister_chrdev_region(IB_UVERBS_BASE_DEV,
1492 IB_UVERBS_NUM_FIXED_MINOR);
1493 unregister_chrdev_region(dynamic_uverbs_dev,
1494 IB_UVERBS_NUM_DYNAMIC_MINOR);
1497 module_init(ib_uverbs_init);
1498 module_exit(ib_uverbs_cleanup);