1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0
3 *
4 * Copyright (c) 2005 Topspin Communications. All rights reserved.
5 * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
6 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
7 * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
8 * Copyright (c) 2005 PathScale, Inc. All rights reserved.
9 *
10 * This software is available to you under a choice of one of two
11 * licenses. You may choose to be licensed under the terms of the GNU
12 * General Public License (GPL) Version 2, available from the file
13 * COPYING in the main directory of this source tree, or the
14 * OpenIB.org BSD license below:
15 *
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
18 * conditions are met:
19 *
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer.
23 *
24 * - Redistributions in binary form must reproduce the above
25 * copyright notice, this list of conditions and the following
26 * disclaimer in the documentation and/or other materials
27 * provided with the distribution.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 * SOFTWARE.
37 */
38
39 #include <sys/cdefs.h>
40 #include <linux/module.h>
41 #include <linux/device.h>
42 #include <linux/err.h>
43 #include <linux/fs.h>
44 #include <linux/poll.h>
45 #include <linux/sched.h>
46 #include <linux/file.h>
47 #include <linux/cdev.h>
48 #include <linux/slab.h>
49 #include <linux/pci.h>
50 #include <linux/lockdep.h>
51
52 #include <asm/uaccess.h>
53
54 #include <rdma/ib.h>
55 #include <rdma/uverbs_std_types.h>
56
57 #include "uverbs.h"
58 #include "core_priv.h"
59 #include "rdma_core.h"
60
61 MODULE_AUTHOR("Roland Dreier");
62 MODULE_DESCRIPTION("InfiniBand userspace verbs access");
63 MODULE_LICENSE("Dual BSD/GPL");
64
65 enum {
66 IB_UVERBS_MAJOR = 231,
67 IB_UVERBS_BASE_MINOR = 192,
68 IB_UVERBS_MAX_DEVICES = RDMA_MAX_PORTS,
69 IB_UVERBS_NUM_FIXED_MINOR = 32,
70 IB_UVERBS_NUM_DYNAMIC_MINOR = IB_UVERBS_MAX_DEVICES - IB_UVERBS_NUM_FIXED_MINOR,
71 };
72
73 #define IB_UVERBS_BASE_DEV MKDEV(IB_UVERBS_MAJOR, IB_UVERBS_BASE_MINOR)
74
75 static dev_t dynamic_uverbs_dev;
76 static struct class *uverbs_class;
77
78 static DEFINE_IDA(uverbs_ida);
79 static void ib_uverbs_add_one(struct ib_device *device);
80 static void ib_uverbs_remove_one(struct ib_device *device, void *client_data);
81
82 /*
83 * Must be called with the ufile->device->disassociate_srcu held, and the lock
84 * must be held until use of the ucontext is finished.
85 */
ib_uverbs_get_ucontext_file(struct ib_uverbs_file * ufile)86 struct ib_ucontext *ib_uverbs_get_ucontext_file(struct ib_uverbs_file *ufile)
87 {
88 /*
89 * We do not hold the hw_destroy_rwsem lock for this flow, instead
90 * srcu is used. It does not matter if someone races this with
91 * get_context, we get NULL or valid ucontext.
92 */
93 struct ib_ucontext *ucontext = READ_ONCE(ufile->ucontext);
94
95 if (!srcu_dereference(ufile->device->ib_dev,
96 &ufile->device->disassociate_srcu))
97 return ERR_PTR(-EIO);
98
99 if (!ucontext)
100 return ERR_PTR(-EINVAL);
101
102 return ucontext;
103 }
104 EXPORT_SYMBOL(ib_uverbs_get_ucontext_file);
105
uverbs_dealloc_mw(struct ib_mw * mw)106 int uverbs_dealloc_mw(struct ib_mw *mw)
107 {
108 struct ib_pd *pd = mw->pd;
109 int ret;
110
111 ret = mw->device->dealloc_mw(mw);
112 if (!ret)
113 atomic_dec(&pd->usecnt);
114 return ret;
115 }
116
ib_uverbs_release_dev(struct device * device)117 static void ib_uverbs_release_dev(struct device *device)
118 {
119 struct ib_uverbs_device *dev =
120 container_of(device, struct ib_uverbs_device, dev);
121
122 uverbs_destroy_api(dev->uapi);
123 cleanup_srcu_struct(&dev->disassociate_srcu);
124 mutex_destroy(&dev->lists_mutex);
125 mutex_destroy(&dev->xrcd_tree_mutex);
126 kfree(dev);
127 }
128
ib_uverbs_release_ucq(struct ib_uverbs_completion_event_file * ev_file,struct ib_ucq_object * uobj)129 void ib_uverbs_release_ucq(struct ib_uverbs_completion_event_file *ev_file,
130 struct ib_ucq_object *uobj)
131 {
132 struct ib_uverbs_event *evt, *tmp;
133
134 if (ev_file) {
135 spin_lock_irq(&ev_file->ev_queue.lock);
136 list_for_each_entry_safe(evt, tmp, &uobj->comp_list, obj_list) {
137 list_del(&evt->list);
138 kfree(evt);
139 }
140 spin_unlock_irq(&ev_file->ev_queue.lock);
141
142 uverbs_uobject_put(&ev_file->uobj);
143 }
144
145 ib_uverbs_release_uevent(&uobj->uevent);
146 }
147
ib_uverbs_release_uevent(struct ib_uevent_object * uobj)148 void ib_uverbs_release_uevent(struct ib_uevent_object *uobj)
149 {
150 struct ib_uverbs_async_event_file *async_file =
151 READ_ONCE(uobj->uobject.ufile->async_file);
152 struct ib_uverbs_event *evt, *tmp;
153
154 if (!async_file)
155 return;
156
157 spin_lock_irq(&async_file->ev_queue.lock);
158 list_for_each_entry_safe(evt, tmp, &uobj->event_list, obj_list) {
159 list_del(&evt->list);
160 kfree(evt);
161 }
162 spin_unlock_irq(&async_file->ev_queue.lock);
163 }
164
ib_uverbs_detach_umcast(struct ib_qp * qp,struct ib_uqp_object * uobj)165 void ib_uverbs_detach_umcast(struct ib_qp *qp,
166 struct ib_uqp_object *uobj)
167 {
168 struct ib_uverbs_mcast_entry *mcast, *tmp;
169
170 list_for_each_entry_safe(mcast, tmp, &uobj->mcast_list, list) {
171 ib_detach_mcast(qp, &mcast->gid, mcast->lid);
172 list_del(&mcast->list);
173 kfree(mcast);
174 }
175 }
176
ib_uverbs_comp_dev(struct ib_uverbs_device * dev)177 static void ib_uverbs_comp_dev(struct ib_uverbs_device *dev)
178 {
179 complete(&dev->comp);
180 }
181
ib_uverbs_release_file(struct kref * ref)182 void ib_uverbs_release_file(struct kref *ref)
183 {
184 struct ib_uverbs_file *file =
185 container_of(ref, struct ib_uverbs_file, ref);
186 struct ib_device *ib_dev;
187 int srcu_key;
188
189 release_ufile_idr_uobject(file);
190
191 srcu_key = srcu_read_lock(&file->device->disassociate_srcu);
192 ib_dev = srcu_dereference(file->device->ib_dev,
193 &file->device->disassociate_srcu);
194 if (ib_dev && !ib_dev->disassociate_ucontext)
195 module_put(ib_dev->owner);
196 srcu_read_unlock(&file->device->disassociate_srcu, srcu_key);
197
198 if (atomic_dec_and_test(&file->device->refcount))
199 ib_uverbs_comp_dev(file->device);
200
201 if (file->async_file)
202 uverbs_uobject_put(&file->async_file->uobj);
203 put_device(&file->device->dev);
204
205 mutex_destroy(&file->umap_lock);
206 mutex_destroy(&file->ucontext_lock);
207 kfree(file);
208 }
209
ib_uverbs_event_read(struct ib_uverbs_event_queue * ev_queue,struct file * filp,char __user * buf,size_t count,loff_t * pos,size_t eventsz)210 static ssize_t ib_uverbs_event_read(struct ib_uverbs_event_queue *ev_queue,
211 struct file *filp, char __user *buf,
212 size_t count, loff_t *pos,
213 size_t eventsz)
214 {
215 struct ib_uverbs_event *event;
216 int ret = 0;
217
218 spin_lock_irq(&ev_queue->lock);
219
220 while (list_empty(&ev_queue->event_list)) {
221 spin_unlock_irq(&ev_queue->lock);
222
223 if (filp->f_flags & O_NONBLOCK)
224 return -EAGAIN;
225
226 if (wait_event_interruptible(ev_queue->poll_wait,
227 (!list_empty(&ev_queue->event_list) ||
228 ev_queue->is_closed)))
229 return -ERESTARTSYS;
230
231 spin_lock_irq(&ev_queue->lock);
232
233 /* If device was disassociated and no event exists set an error */
234 if (list_empty(&ev_queue->event_list) && ev_queue->is_closed) {
235 spin_unlock_irq(&ev_queue->lock);
236 return -EIO;
237 }
238 }
239
240 event = list_entry(ev_queue->event_list.next, struct ib_uverbs_event, list);
241
242 if (eventsz > count) {
243 ret = -EINVAL;
244 event = NULL;
245 } else {
246 list_del(ev_queue->event_list.next);
247 if (event->counter) {
248 ++(*event->counter);
249 list_del(&event->obj_list);
250 }
251 }
252
253 spin_unlock_irq(&ev_queue->lock);
254
255 if (event) {
256 if (copy_to_user(buf, event, eventsz))
257 ret = -EFAULT;
258 else
259 ret = eventsz;
260 }
261
262 kfree(event);
263
264 return ret;
265 }
266
ib_uverbs_async_event_read(struct file * filp,char __user * buf,size_t count,loff_t * pos)267 static ssize_t ib_uverbs_async_event_read(struct file *filp, char __user *buf,
268 size_t count, loff_t *pos)
269 {
270 struct ib_uverbs_async_event_file *file = filp->private_data;
271
272 return ib_uverbs_event_read(&file->ev_queue, filp, buf, count, pos,
273 sizeof(struct ib_uverbs_async_event_desc));
274 }
275
ib_uverbs_comp_event_read(struct file * filp,char __user * buf,size_t count,loff_t * pos)276 static ssize_t ib_uverbs_comp_event_read(struct file *filp, char __user *buf,
277 size_t count, loff_t *pos)
278 {
279 struct ib_uverbs_completion_event_file *comp_ev_file =
280 filp->private_data;
281
282 return ib_uverbs_event_read(&comp_ev_file->ev_queue, filp, buf, count,
283 pos,
284 sizeof(struct ib_uverbs_comp_event_desc));
285 }
286
ib_uverbs_event_poll(struct ib_uverbs_event_queue * ev_queue,struct file * filp,struct poll_table_struct * wait)287 static __poll_t ib_uverbs_event_poll(struct ib_uverbs_event_queue *ev_queue,
288 struct file *filp,
289 struct poll_table_struct *wait)
290 {
291 __poll_t pollflags = 0;
292
293 poll_wait(filp, &ev_queue->poll_wait, wait);
294
295 spin_lock_irq(&ev_queue->lock);
296 if (!list_empty(&ev_queue->event_list))
297 pollflags = POLLIN | POLLRDNORM;
298 spin_unlock_irq(&ev_queue->lock);
299
300 return pollflags;
301 }
302
ib_uverbs_async_event_poll(struct file * filp,struct poll_table_struct * wait)303 static __poll_t ib_uverbs_async_event_poll(struct file *filp,
304 struct poll_table_struct *wait)
305 {
306 struct ib_uverbs_async_event_file *file = filp->private_data;
307
308 return ib_uverbs_event_poll(&file->ev_queue, filp, wait);
309 }
310
ib_uverbs_comp_event_poll(struct file * filp,struct poll_table_struct * wait)311 static __poll_t ib_uverbs_comp_event_poll(struct file *filp,
312 struct poll_table_struct *wait)
313 {
314 struct ib_uverbs_completion_event_file *comp_ev_file =
315 filp->private_data;
316
317 return ib_uverbs_event_poll(&comp_ev_file->ev_queue, filp, wait);
318 }
319
ib_uverbs_async_event_fasync(int fd,struct file * filp,int on)320 static int ib_uverbs_async_event_fasync(int fd, struct file *filp, int on)
321 {
322 struct ib_uverbs_async_event_file *file = filp->private_data;
323
324 return fasync_helper(fd, filp, on, &file->ev_queue.async_queue);
325 }
326
ib_uverbs_comp_event_fasync(int fd,struct file * filp,int on)327 static int ib_uverbs_comp_event_fasync(int fd, struct file *filp, int on)
328 {
329 struct ib_uverbs_completion_event_file *comp_ev_file =
330 filp->private_data;
331
332 return fasync_helper(fd, filp, on, &comp_ev_file->ev_queue.async_queue);
333 }
334
335 const struct file_operations uverbs_event_fops = {
336 .owner = THIS_MODULE,
337 .read = ib_uverbs_comp_event_read,
338 .poll = ib_uverbs_comp_event_poll,
339 .release = uverbs_uobject_fd_release,
340 .fasync = ib_uverbs_comp_event_fasync,
341 .llseek = no_llseek,
342 };
343
344 const struct file_operations uverbs_async_event_fops = {
345 .owner = THIS_MODULE,
346 .read = ib_uverbs_async_event_read,
347 .poll = ib_uverbs_async_event_poll,
348 .release = uverbs_uobject_fd_release,
349 .fasync = ib_uverbs_async_event_fasync,
350 .llseek = no_llseek,
351 };
352
ib_uverbs_comp_handler(struct ib_cq * cq,void * cq_context)353 void ib_uverbs_comp_handler(struct ib_cq *cq, void *cq_context)
354 {
355 struct ib_uverbs_event_queue *ev_queue = cq_context;
356 struct ib_ucq_object *uobj;
357 struct ib_uverbs_event *entry;
358 unsigned long flags;
359
360 if (!ev_queue)
361 return;
362
363 spin_lock_irqsave(&ev_queue->lock, flags);
364 if (ev_queue->is_closed) {
365 spin_unlock_irqrestore(&ev_queue->lock, flags);
366 return;
367 }
368
369 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
370 if (!entry) {
371 spin_unlock_irqrestore(&ev_queue->lock, flags);
372 return;
373 }
374
375 uobj = cq->uobject;
376
377 entry->desc.comp.cq_handle = cq->uobject->uevent.uobject.user_handle;
378 entry->counter = &uobj->comp_events_reported;
379
380 list_add_tail(&entry->list, &ev_queue->event_list);
381 list_add_tail(&entry->obj_list, &uobj->comp_list);
382 spin_unlock_irqrestore(&ev_queue->lock, flags);
383
384 wake_up_interruptible(&ev_queue->poll_wait);
385 kill_fasync(&ev_queue->async_queue, SIGIO, POLL_IN);
386 }
387
388 static void
ib_uverbs_async_handler(struct ib_uverbs_async_event_file * async_file,__u64 element,__u64 event,struct list_head * obj_list,u32 * counter)389 ib_uverbs_async_handler(struct ib_uverbs_async_event_file *async_file,
390 __u64 element, __u64 event, struct list_head *obj_list,
391 u32 *counter)
392 {
393 struct ib_uverbs_event *entry;
394 unsigned long flags;
395
396 if (!async_file)
397 return;
398
399 spin_lock_irqsave(&async_file->ev_queue.lock, flags);
400 if (async_file->ev_queue.is_closed) {
401 spin_unlock_irqrestore(&async_file->ev_queue.lock, flags);
402 return;
403 }
404
405 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
406 if (!entry) {
407 spin_unlock_irqrestore(&async_file->ev_queue.lock, flags);
408 return;
409 }
410
411 entry->desc.async.element = element;
412 entry->desc.async.event_type = event;
413 entry->desc.async.reserved = 0;
414 entry->counter = counter;
415
416 list_add_tail(&entry->list, &async_file->ev_queue.event_list);
417 if (obj_list)
418 list_add_tail(&entry->obj_list, obj_list);
419 spin_unlock_irqrestore(&async_file->ev_queue.lock, flags);
420
421 wake_up_interruptible(&async_file->ev_queue.poll_wait);
422 kill_fasync(&async_file->ev_queue.async_queue, SIGIO, POLL_IN);
423 }
424
uverbs_uobj_event(struct ib_uevent_object * eobj,struct ib_event * event)425 static void uverbs_uobj_event(struct ib_uevent_object *eobj,
426 struct ib_event *event)
427 {
428 ib_uverbs_async_handler(READ_ONCE(eobj->uobject.ufile->async_file),
429 eobj->uobject.user_handle, event->event,
430 &eobj->event_list, &eobj->events_reported);
431 }
432
ib_uverbs_cq_event_handler(struct ib_event * event,void * context_ptr)433 void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr)
434 {
435 uverbs_uobj_event(&event->element.cq->uobject->uevent, event);
436 }
437
ib_uverbs_qp_event_handler(struct ib_event * event,void * context_ptr)438 void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr)
439 {
440 /* for XRC target qp's, check that qp is live */
441 if (!event->element.qp->uobject)
442 return;
443
444 uverbs_uobj_event(&event->element.qp->uobject->uevent, event);
445 }
446
ib_uverbs_wq_event_handler(struct ib_event * event,void * context_ptr)447 void ib_uverbs_wq_event_handler(struct ib_event *event, void *context_ptr)
448 {
449 uverbs_uobj_event(&event->element.wq->uobject->uevent, event);
450 }
451
ib_uverbs_srq_event_handler(struct ib_event * event,void * context_ptr)452 void ib_uverbs_srq_event_handler(struct ib_event *event, void *context_ptr)
453 {
454 uverbs_uobj_event(&event->element.srq->uobject->uevent, event);
455 }
456
ib_uverbs_event_handler(struct ib_event_handler * handler,struct ib_event * event)457 static void ib_uverbs_event_handler(struct ib_event_handler *handler,
458 struct ib_event *event)
459 {
460 ib_uverbs_async_handler(
461 container_of(handler, struct ib_uverbs_async_event_file,
462 event_handler),
463 event->element.port_num, event->event, NULL, NULL);
464 }
465
ib_uverbs_init_event_queue(struct ib_uverbs_event_queue * ev_queue)466 void ib_uverbs_init_event_queue(struct ib_uverbs_event_queue *ev_queue)
467 {
468 spin_lock_init(&ev_queue->lock);
469 INIT_LIST_HEAD(&ev_queue->event_list);
470 init_waitqueue_head(&ev_queue->poll_wait);
471 ev_queue->is_closed = 0;
472 ev_queue->async_queue = NULL;
473 }
474
ib_uverbs_init_async_event_file(struct ib_uverbs_async_event_file * async_file)475 void ib_uverbs_init_async_event_file(
476 struct ib_uverbs_async_event_file *async_file)
477 {
478 struct ib_uverbs_file *uverbs_file = async_file->uobj.ufile;
479 struct ib_device *ib_dev = async_file->uobj.context->device;
480
481 ib_uverbs_init_event_queue(&async_file->ev_queue);
482
483 /* The first async_event_file becomes the default one for the file. */
484 mutex_lock(&uverbs_file->ucontext_lock);
485 if (!uverbs_file->async_file) {
486 /* Pairs with the put in ib_uverbs_release_file */
487 uverbs_uobject_get(&async_file->uobj);
488 atomic_store_rel_ptr((uintptr_t *)&uverbs_file->async_file, (uintptr_t)async_file);
489 }
490 mutex_unlock(&uverbs_file->ucontext_lock);
491
492 INIT_IB_EVENT_HANDLER(&async_file->event_handler, ib_dev,
493 ib_uverbs_event_handler);
494 ib_register_event_handler(&async_file->event_handler);
495 }
496
verify_hdr(struct ib_uverbs_cmd_hdr * hdr,struct ib_uverbs_ex_cmd_hdr * ex_hdr,size_t count,const struct uverbs_api_write_method * method_elm)497 static ssize_t verify_hdr(struct ib_uverbs_cmd_hdr *hdr,
498 struct ib_uverbs_ex_cmd_hdr *ex_hdr, size_t count,
499 const struct uverbs_api_write_method *method_elm)
500 {
501 if (method_elm->is_ex) {
502 count -= sizeof(*hdr) + sizeof(*ex_hdr);
503
504 if ((hdr->in_words + ex_hdr->provider_in_words) * 8 != count)
505 return -EINVAL;
506
507 if (hdr->in_words * 8 < method_elm->req_size)
508 return -ENOSPC;
509
510 if (ex_hdr->cmd_hdr_reserved)
511 return -EINVAL;
512
513 if (ex_hdr->response) {
514 if (!hdr->out_words && !ex_hdr->provider_out_words)
515 return -EINVAL;
516
517 if (hdr->out_words * 8 < method_elm->resp_size)
518 return -ENOSPC;
519
520 if (!access_ok(u64_to_user_ptr(ex_hdr->response),
521 (hdr->out_words + ex_hdr->provider_out_words) * 8))
522 return -EFAULT;
523 } else {
524 if (hdr->out_words || ex_hdr->provider_out_words)
525 return -EINVAL;
526 }
527
528 return 0;
529 }
530
531 /* not extended command */
532 if (hdr->in_words * 4 != count)
533 return -EINVAL;
534
535 if (count < method_elm->req_size + sizeof(hdr)) {
536 /*
537 * rdma-core v18 and v19 have a bug where they send DESTROY_CQ
538 * with a 16 byte write instead of 24. Old kernels didn't
539 * check the size so they allowed this. Now that the size is
540 * checked provide a compatibility work around to not break
541 * those userspaces.
542 */
543 if (hdr->command == IB_USER_VERBS_CMD_DESTROY_CQ &&
544 count == 16) {
545 hdr->in_words = 6;
546 return 0;
547 }
548 return -ENOSPC;
549 }
550 if (hdr->out_words * 4 < method_elm->resp_size)
551 return -ENOSPC;
552
553 return 0;
554 }
555
ib_uverbs_write(struct file * filp,const char __user * buf,size_t count,loff_t * pos)556 static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
557 size_t count, loff_t *pos)
558 {
559 struct ib_uverbs_file *file = filp->private_data;
560 const struct uverbs_api_write_method *method_elm;
561 struct uverbs_api *uapi = file->device->uapi;
562 struct ib_uverbs_ex_cmd_hdr ex_hdr;
563 struct ib_uverbs_cmd_hdr hdr;
564 struct uverbs_attr_bundle bundle;
565 int srcu_key;
566 ssize_t ret;
567
568 if (!ib_safe_file_access(filp)) {
569 pr_err_once("uverbs_write: process %d (%s) changed security contexts after opening file descriptor, this is not allowed.\n",
570 current->pid, current->comm);
571 return -EACCES;
572 }
573
574 if (count < sizeof(hdr))
575 return -EINVAL;
576
577 if (copy_from_user(&hdr, buf, sizeof(hdr)))
578 return -EFAULT;
579
580 method_elm = uapi_get_method(uapi, hdr.command);
581 if (IS_ERR(method_elm))
582 return PTR_ERR(method_elm);
583
584 if (method_elm->is_ex) {
585 if (count < (sizeof(hdr) + sizeof(ex_hdr)))
586 return -EINVAL;
587 if (copy_from_user(&ex_hdr, buf + sizeof(hdr), sizeof(ex_hdr)))
588 return -EFAULT;
589 }
590
591 ret = verify_hdr(&hdr, &ex_hdr, count, method_elm);
592 if (ret)
593 return ret;
594
595 srcu_key = srcu_read_lock(&file->device->disassociate_srcu);
596
597 buf += sizeof(hdr);
598
599 memset(bundle.attr_present, 0, sizeof(bundle.attr_present));
600 bundle.ufile = file;
601 bundle.context = NULL; /* only valid if bundle has uobject */
602 if (!method_elm->is_ex) {
603 size_t in_len = hdr.in_words * 4 - sizeof(hdr);
604 size_t out_len = hdr.out_words * 4;
605 u64 response = 0;
606
607 if (method_elm->has_udata) {
608 bundle.driver_udata.inlen =
609 in_len - method_elm->req_size;
610 in_len = method_elm->req_size;
611 if (bundle.driver_udata.inlen)
612 bundle.driver_udata.inbuf = buf + in_len;
613 else
614 bundle.driver_udata.inbuf = NULL;
615 } else {
616 memset(&bundle.driver_udata, 0,
617 sizeof(bundle.driver_udata));
618 }
619
620 if (method_elm->has_resp) {
621 /*
622 * The macros check that if has_resp is set
623 * then the command request structure starts
624 * with a '__aligned u64 response' member.
625 */
626 ret = get_user(response, (const u64 __user *)buf);
627 if (ret)
628 goto out_unlock;
629
630 if (method_elm->has_udata) {
631 bundle.driver_udata.outlen =
632 out_len - method_elm->resp_size;
633 out_len = method_elm->resp_size;
634 if (bundle.driver_udata.outlen)
635 bundle.driver_udata.outbuf =
636 u64_to_user_ptr(response +
637 out_len);
638 else
639 bundle.driver_udata.outbuf = NULL;
640 }
641 } else {
642 bundle.driver_udata.outlen = 0;
643 bundle.driver_udata.outbuf = NULL;
644 }
645
646 ib_uverbs_init_udata_buf_or_null(
647 &bundle.ucore, buf, u64_to_user_ptr(response),
648 in_len, out_len);
649 } else {
650 buf += sizeof(ex_hdr);
651
652 ib_uverbs_init_udata_buf_or_null(&bundle.ucore, buf,
653 u64_to_user_ptr(ex_hdr.response),
654 hdr.in_words * 8, hdr.out_words * 8);
655
656 ib_uverbs_init_udata_buf_or_null(
657 &bundle.driver_udata, buf + bundle.ucore.inlen,
658 u64_to_user_ptr(ex_hdr.response + bundle.ucore.outlen),
659 ex_hdr.provider_in_words * 8,
660 ex_hdr.provider_out_words * 8);
661
662 }
663
664 ret = method_elm->handler(&bundle);
665 out_unlock:
666 srcu_read_unlock(&file->device->disassociate_srcu, srcu_key);
667 return (ret) ? : count;
668 }
669
670 static const struct vm_operations_struct rdma_umap_ops;
671
ib_uverbs_mmap(struct file * filp,struct vm_area_struct * vma)672 static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct *vma)
673 {
674 struct ib_uverbs_file *file = filp->private_data;
675 struct ib_ucontext *ucontext;
676 int ret = 0;
677 int srcu_key;
678
679 srcu_key = srcu_read_lock(&file->device->disassociate_srcu);
680 ucontext = ib_uverbs_get_ucontext_file(file);
681 if (IS_ERR(ucontext)) {
682 ret = PTR_ERR(ucontext);
683 goto out;
684 }
685 vma->vm_ops = &rdma_umap_ops;
686 ret = ucontext->device->mmap(ucontext, vma);
687 out:
688 srcu_read_unlock(&file->device->disassociate_srcu, srcu_key);
689 return ret;
690 }
691
692 /*
693 * The VMA has been dup'd, initialize the vm_private_data with a new tracking
694 * struct
695 */
rdma_umap_open(struct vm_area_struct * vma)696 static void rdma_umap_open(struct vm_area_struct *vma)
697 {
698 struct ib_uverbs_file *ufile = vma->vm_file->private_data;
699 struct rdma_umap_priv *opriv = vma->vm_private_data;
700 struct rdma_umap_priv *priv;
701
702 if (!opriv)
703 return;
704
705 /* We are racing with disassociation */
706 if (!down_read_trylock(&ufile->hw_destroy_rwsem))
707 goto out_zap;
708 /*
709 * Disassociation already completed, the VMA should already be zapped.
710 */
711 if (!ufile->ucontext)
712 goto out_unlock;
713
714 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
715 if (!priv)
716 goto out_unlock;
717 rdma_umap_priv_init(priv, vma, opriv->entry);
718
719 up_read(&ufile->hw_destroy_rwsem);
720 return;
721
722 out_unlock:
723 up_read(&ufile->hw_destroy_rwsem);
724 out_zap:
725 /*
726 * We can't allow the VMA to be created with the actual IO pages, that
727 * would break our API contract, and it can't be stopped at this
728 * point, so zap it.
729 */
730 vma->vm_private_data = NULL;
731 zap_vma_ptes(vma, vma->vm_start, vma->vm_end - vma->vm_start);
732 }
733
rdma_umap_close(struct vm_area_struct * vma)734 static void rdma_umap_close(struct vm_area_struct *vma)
735 {
736 struct ib_uverbs_file *ufile = vma->vm_file->private_data;
737 struct rdma_umap_priv *priv = vma->vm_private_data;
738
739 if (!priv)
740 return;
741
742 /*
743 * The vma holds a reference on the struct file that created it, which
744 * in turn means that the ib_uverbs_file is guaranteed to exist at
745 * this point.
746 */
747 mutex_lock(&ufile->umap_lock);
748 if (priv->entry)
749 rdma_user_mmap_entry_put(priv->entry);
750
751 list_del(&priv->list);
752 mutex_unlock(&ufile->umap_lock);
753 kfree(priv);
754 }
755
756 static const struct vm_operations_struct rdma_umap_ops = {
757 .open = rdma_umap_open,
758 .close = rdma_umap_close,
759 };
760
uverbs_user_mmap_disassociate(struct ib_uverbs_file * ufile)761 void uverbs_user_mmap_disassociate(struct ib_uverbs_file *ufile)
762 {
763 struct rdma_umap_priv *priv, *next_priv;
764
765 lockdep_assert_held(&ufile->hw_destroy_rwsem);
766
767 while (1) {
768 struct mm_struct *mm = NULL;
769
770 /* Get an arbitrary mm pointer that hasn't been cleaned yet */
771 mutex_lock(&ufile->umap_lock);
772 while (!list_empty(&ufile->umaps)) {
773 int ret;
774
775 priv = list_first_entry(&ufile->umaps,
776 struct rdma_umap_priv, list);
777 mm = priv->vma->vm_mm;
778 ret = mmget_not_zero(mm);
779 if (!ret) {
780 list_del_init(&priv->list);
781 if (priv->entry) {
782 rdma_user_mmap_entry_put(priv->entry);
783 priv->entry = NULL;
784 }
785 mm = NULL;
786 continue;
787 }
788 break;
789 }
790 mutex_unlock(&ufile->umap_lock);
791 if (!mm)
792 return;
793
794 /*
795 * The umap_lock is nested under mmap_sem since it used within
796 * the vma_ops callbacks, so we have to clean the list one mm
797 * at a time to get the lock ordering right. Typically there
798 * will only be one mm, so no big deal.
799 */
800 down_read(&mm->mmap_sem);
801 mutex_lock(&ufile->umap_lock);
802 list_for_each_entry_safe (priv, next_priv, &ufile->umaps,
803 list) {
804 struct vm_area_struct *vma = priv->vma;
805
806 if (vma->vm_mm != mm)
807 continue;
808 list_del_init(&priv->list);
809
810 zap_vma_ptes(vma, vma->vm_start,
811 vma->vm_end - vma->vm_start);
812 }
813 mutex_unlock(&ufile->umap_lock);
814 up_read(&mm->mmap_sem);
815 mmput(mm);
816 }
817 }
818
819 /*
820 * ib_uverbs_open() does not need the BKL:
821 *
822 * - the ib_uverbs_device structures are properly reference counted and
823 * everything else is purely local to the file being created, so
824 * races against other open calls are not a problem;
825 * - there is no ioctl method to race against;
826 * - the open method will either immediately run -ENXIO, or all
827 * required initialization will be done.
828 */
ib_uverbs_open(struct inode * inode,struct file * filp)829 static int ib_uverbs_open(struct inode *inode, struct file *filp)
830 {
831 struct ib_uverbs_device *dev;
832 struct ib_uverbs_file *file;
833 struct ib_device *ib_dev;
834 int ret;
835 int module_dependent;
836 int srcu_key;
837
838 dev = container_of(inode->i_cdev->si_drv1, struct ib_uverbs_device, cdev);
839 if (!atomic_inc_not_zero(&dev->refcount))
840 return -ENXIO;
841
842 get_device(&dev->dev);
843 srcu_key = srcu_read_lock(&dev->disassociate_srcu);
844 mutex_lock(&dev->lists_mutex);
845 ib_dev = srcu_dereference(dev->ib_dev,
846 &dev->disassociate_srcu);
847 if (!ib_dev) {
848 ret = -EIO;
849 goto err;
850 }
851
852 /* In case IB device supports disassociate ucontext, there is no hard
853 * dependency between uverbs device and its low level device.
854 */
855 module_dependent = !(ib_dev->disassociate_ucontext);
856
857 if (module_dependent) {
858 if (!try_module_get(ib_dev->owner)) {
859 ret = -ENODEV;
860 goto err;
861 }
862 }
863
864 file = kzalloc(sizeof(*file), GFP_KERNEL);
865 if (!file) {
866 ret = -ENOMEM;
867 if (module_dependent)
868 goto err_module;
869
870 goto err;
871 }
872
873 file->device = dev;
874 kref_init(&file->ref);
875 mutex_init(&file->ucontext_lock);
876
877 spin_lock_init(&file->uobjects_lock);
878 INIT_LIST_HEAD(&file->uobjects);
879 init_rwsem(&file->hw_destroy_rwsem);
880 mutex_init(&file->umap_lock);
881 INIT_LIST_HEAD(&file->umaps);
882
883 filp->private_data = file;
884 list_add_tail(&file->list, &dev->uverbs_file_list);
885 mutex_unlock(&dev->lists_mutex);
886 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
887
888 setup_ufile_idr_uobject(file);
889
890 return nonseekable_open(inode, filp);
891
892 err_module:
893 module_put(ib_dev->owner);
894
895 err:
896 mutex_unlock(&dev->lists_mutex);
897 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
898 if (atomic_dec_and_test(&dev->refcount))
899 ib_uverbs_comp_dev(dev);
900
901 put_device(&dev->dev);
902 return ret;
903 }
904
ib_uverbs_close(struct inode * inode,struct file * filp)905 static int ib_uverbs_close(struct inode *inode, struct file *filp)
906 {
907 struct ib_uverbs_file *file = filp->private_data;
908
909 uverbs_destroy_ufile_hw(file, RDMA_REMOVE_CLOSE);
910
911 mutex_lock(&file->device->lists_mutex);
912 list_del_init(&file->list);
913 mutex_unlock(&file->device->lists_mutex);
914
915 kref_put(&file->ref, ib_uverbs_release_file);
916
917 return 0;
918 }
919
920 static const struct file_operations uverbs_fops = {
921 .owner = THIS_MODULE,
922 .write = ib_uverbs_write,
923 .open = ib_uverbs_open,
924 .release = ib_uverbs_close,
925 .llseek = no_llseek,
926 .unlocked_ioctl = ib_uverbs_ioctl,
927 .compat_ioctl = NULL,
928 };
929
930 static const struct file_operations uverbs_mmap_fops = {
931 .owner = THIS_MODULE,
932 .write = ib_uverbs_write,
933 .mmap = ib_uverbs_mmap,
934 .open = ib_uverbs_open,
935 .release = ib_uverbs_close,
936 .llseek = no_llseek,
937 .unlocked_ioctl = ib_uverbs_ioctl,
938 .compat_ioctl = NULL,
939 };
940
941 static struct ib_client uverbs_client = {
942 .name = "uverbs",
943 .add = ib_uverbs_add_one,
944 .remove = ib_uverbs_remove_one
945 };
946
ibdev_show(struct device * device,struct device_attribute * attr,char * buf)947 static ssize_t ibdev_show(struct device *device, struct device_attribute *attr,
948 char *buf)
949 {
950 struct ib_uverbs_device *dev =
951 container_of(device, struct ib_uverbs_device, dev);
952 int ret = -ENODEV;
953 int srcu_key;
954 struct ib_device *ib_dev;
955
956 srcu_key = srcu_read_lock(&dev->disassociate_srcu);
957 ib_dev = srcu_dereference(dev->ib_dev, &dev->disassociate_srcu);
958 if (ib_dev)
959 ret = sprintf(buf, "%s\n", ib_dev->name);
960 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
961
962 return ret;
963 }
964 static DEVICE_ATTR(ibdev, S_IRUGO, ibdev_show, NULL);
965
abi_version_show(struct device * device,struct device_attribute * attr,char * buf)966 static ssize_t abi_version_show(struct device *device,
967 struct device_attribute *attr, char *buf)
968 {
969 struct ib_uverbs_device *dev =
970 container_of(device, struct ib_uverbs_device, dev);
971 int ret = -ENODEV;
972 int srcu_key;
973 struct ib_device *ib_dev;
974
975 srcu_key = srcu_read_lock(&dev->disassociate_srcu);
976 ib_dev = srcu_dereference(dev->ib_dev, &dev->disassociate_srcu);
977 if (ib_dev)
978 ret = sprintf(buf, "%d\n", ib_dev->uverbs_abi_ver);
979 srcu_read_unlock(&dev->disassociate_srcu, srcu_key);
980
981 return ret;
982 }
983 static DEVICE_ATTR(abi_version, S_IRUGO, abi_version_show, NULL);
984
985 static CLASS_ATTR_STRING(abi_version, S_IRUGO,
986 __stringify(IB_USER_VERBS_ABI_VERSION));
987
ib_uverbs_create_uapi(struct ib_device * device,struct ib_uverbs_device * uverbs_dev)988 static int ib_uverbs_create_uapi(struct ib_device *device,
989 struct ib_uverbs_device *uverbs_dev)
990 {
991 struct uverbs_api *uapi;
992
993 uapi = uverbs_alloc_api(device);
994 if (IS_ERR(uapi))
995 return PTR_ERR(uapi);
996
997 uverbs_dev->uapi = uapi;
998 return 0;
999 }
1000
1001 static ssize_t
show_dev_device(struct device * device,struct device_attribute * attr,char * buf)1002 show_dev_device(struct device *device, struct device_attribute *attr, char *buf)
1003 {
1004 struct ib_uverbs_device *dev =
1005 container_of(device, struct ib_uverbs_device, dev);
1006
1007 if (!dev->ib_dev->dma_device)
1008 return -ENODEV;
1009
1010 return sprintf(buf, "0x%04x\n",
1011 ((struct pci_dev *)dev->ib_dev->dma_device)->device);
1012 }
1013 static DEVICE_ATTR(device, S_IRUGO, show_dev_device, NULL);
1014
1015 static ssize_t
show_dev_vendor(struct device * device,struct device_attribute * attr,char * buf)1016 show_dev_vendor(struct device *device, struct device_attribute *attr, char *buf)
1017 {
1018 struct ib_uverbs_device *dev =
1019 container_of(device, struct ib_uverbs_device, dev);
1020
1021 if (!dev->ib_dev->dma_device)
1022 return -ENODEV;
1023
1024 return sprintf(buf, "0x%04x\n",
1025 ((struct pci_dev *)dev->ib_dev->dma_device)->vendor);
1026 }
1027 static DEVICE_ATTR(vendor, S_IRUGO, show_dev_vendor, NULL);
1028
1029 static struct attribute *ib_dev_attrs[] = {
1030 &dev_attr_device.attr,
1031 &dev_attr_vendor.attr,
1032 NULL,
1033 };
1034
1035 static const struct attribute_group dev_attr_group = {
1036 .name = "device",
1037 .attrs = ib_dev_attrs,
1038 };
1039
ib_uverbs_add_one(struct ib_device * device)1040 static void ib_uverbs_add_one(struct ib_device *device)
1041 {
1042 int devnum;
1043 dev_t base;
1044 struct ib_uverbs_device *uverbs_dev;
1045 int ret;
1046
1047 if (!device->alloc_ucontext)
1048 return;
1049
1050 uverbs_dev = kzalloc(sizeof(*uverbs_dev), GFP_KERNEL);
1051 if (!uverbs_dev)
1052 return;
1053
1054 ret = init_srcu_struct(&uverbs_dev->disassociate_srcu);
1055 if (ret) {
1056 kfree(uverbs_dev);
1057 return;
1058 }
1059
1060 uverbs_dev->dev.class = uverbs_class;
1061 uverbs_dev->dev.parent = device->dev.parent;
1062 uverbs_dev->dev.release = ib_uverbs_release_dev;
1063 device_initialize(&uverbs_dev->dev);
1064 atomic_set(&uverbs_dev->refcount, 1);
1065 init_completion(&uverbs_dev->comp);
1066 uverbs_dev->xrcd_tree = RB_ROOT;
1067 mutex_init(&uverbs_dev->xrcd_tree_mutex);
1068 mutex_init(&uverbs_dev->lists_mutex);
1069 INIT_LIST_HEAD(&uverbs_dev->uverbs_file_list);
1070 rcu_assign_pointer(uverbs_dev->ib_dev, device);
1071 uverbs_dev->num_comp_vectors = device->num_comp_vectors;
1072
1073 devnum = ida_alloc_max(&uverbs_ida, IB_UVERBS_MAX_DEVICES - 1,
1074 GFP_KERNEL);
1075 if (devnum < 0)
1076 goto err;
1077 uverbs_dev->devnum = devnum;
1078 if (devnum >= IB_UVERBS_NUM_FIXED_MINOR)
1079 base = dynamic_uverbs_dev + devnum - IB_UVERBS_NUM_FIXED_MINOR;
1080 else
1081 base = IB_UVERBS_BASE_DEV + devnum;
1082
1083 if (ib_uverbs_create_uapi(device, uverbs_dev))
1084 goto err_uapi;
1085
1086 uverbs_dev->dev.devt = base;
1087 dev_set_name(&uverbs_dev->dev, "uverbs%d", uverbs_dev->devnum);
1088
1089 cdev_init(&uverbs_dev->cdev,
1090 device->mmap ? &uverbs_mmap_fops : &uverbs_fops);
1091 uverbs_dev->cdev.owner = THIS_MODULE;
1092
1093 kobject_set_name(&uverbs_dev->cdev.kobj, "uverbs%d", uverbs_dev->devnum);
1094 ret = cdev_device_add(&uverbs_dev->cdev, &uverbs_dev->dev);
1095 if (ret)
1096 goto err_uapi;
1097
1098 if (device_create_file(&uverbs_dev->dev, &dev_attr_ibdev))
1099 goto err_cdev;
1100 if (device_create_file(&uverbs_dev->dev, &dev_attr_abi_version))
1101 goto err_cdev;
1102 if (sysfs_create_group(&uverbs_dev->dev.kobj, &dev_attr_group))
1103 goto err_cdev;
1104
1105 ib_set_client_data(device, &uverbs_client, uverbs_dev);
1106 return;
1107
1108 err_cdev:
1109 cdev_device_del(&uverbs_dev->cdev, &uverbs_dev->dev);
1110 err_uapi:
1111 ida_free(&uverbs_ida, devnum);
1112 err:
1113 if (atomic_dec_and_test(&uverbs_dev->refcount))
1114 ib_uverbs_comp_dev(uverbs_dev);
1115 wait_for_completion(&uverbs_dev->comp);
1116 put_device(&uverbs_dev->dev);
1117 return;
1118 }
1119
ib_uverbs_free_hw_resources(struct ib_uverbs_device * uverbs_dev,struct ib_device * ib_dev)1120 static void ib_uverbs_free_hw_resources(struct ib_uverbs_device *uverbs_dev,
1121 struct ib_device *ib_dev)
1122 {
1123 struct ib_uverbs_file *file;
1124
1125 /* Pending running commands to terminate */
1126 uverbs_disassociate_api_pre(uverbs_dev);
1127
1128 mutex_lock(&uverbs_dev->lists_mutex);
1129 while (!list_empty(&uverbs_dev->uverbs_file_list)) {
1130 file = list_first_entry(&uverbs_dev->uverbs_file_list,
1131 struct ib_uverbs_file, list);
1132 list_del_init(&file->list);
1133 kref_get(&file->ref);
1134
1135 /* We must release the mutex before going ahead and calling
1136 * uverbs_cleanup_ufile, as it might end up indirectly calling
1137 * uverbs_close, for example due to freeing the resources (e.g
1138 * mmput).
1139 */
1140 mutex_unlock(&uverbs_dev->lists_mutex);
1141
1142 ib_uverbs_async_handler(READ_ONCE(file->async_file), 0,
1143 IB_EVENT_DEVICE_FATAL, NULL, NULL);
1144
1145 uverbs_destroy_ufile_hw(file, RDMA_REMOVE_DRIVER_REMOVE);
1146 kref_put(&file->ref, ib_uverbs_release_file);
1147
1148 mutex_lock(&uverbs_dev->lists_mutex);
1149 }
1150 mutex_unlock(&uverbs_dev->lists_mutex);
1151
1152 uverbs_disassociate_api(uverbs_dev->uapi);
1153 }
1154
ib_uverbs_remove_one(struct ib_device * device,void * client_data)1155 static void ib_uverbs_remove_one(struct ib_device *device, void *client_data)
1156 {
1157 struct ib_uverbs_device *uverbs_dev = client_data;
1158 int wait_clients = 1;
1159
1160 if (!uverbs_dev)
1161 return;
1162
1163 cdev_device_del(&uverbs_dev->cdev, &uverbs_dev->dev);
1164 ida_free(&uverbs_ida, uverbs_dev->devnum);
1165
1166 if (device->disassociate_ucontext) {
1167 /* We disassociate HW resources and immediately return.
1168 * Userspace will see a EIO errno for all future access.
1169 * Upon returning, ib_device may be freed internally and is not
1170 * valid any more.
1171 * uverbs_device is still available until all clients close
1172 * their files, then the uverbs device ref count will be zero
1173 * and its resources will be freed.
1174 * Note: At this point no more files can be opened since the
1175 * cdev was deleted, however active clients can still issue
1176 * commands and close their open files.
1177 */
1178 ib_uverbs_free_hw_resources(uverbs_dev, device);
1179 wait_clients = 0;
1180 }
1181
1182 if (atomic_dec_and_test(&uverbs_dev->refcount))
1183 ib_uverbs_comp_dev(uverbs_dev);
1184 if (wait_clients)
1185 wait_for_completion(&uverbs_dev->comp);
1186
1187 put_device(&uverbs_dev->dev);
1188 }
1189
uverbs_devnode(struct device * dev,umode_t * mode)1190 static char *uverbs_devnode(struct device *dev, umode_t *mode)
1191 {
1192 if (mode)
1193 *mode = 0666;
1194 return kasprintf(GFP_KERNEL, "infiniband/%s", dev_name(dev));
1195 }
1196
ib_uverbs_init(void)1197 static int __init ib_uverbs_init(void)
1198 {
1199 int ret;
1200
1201 ret = register_chrdev_region(IB_UVERBS_BASE_DEV,
1202 IB_UVERBS_NUM_FIXED_MINOR,
1203 "infiniband_verbs");
1204 if (ret) {
1205 pr_err("user_verbs: couldn't register device number\n");
1206 goto out;
1207 }
1208
1209 ret = alloc_chrdev_region(&dynamic_uverbs_dev, 0,
1210 IB_UVERBS_NUM_DYNAMIC_MINOR,
1211 "infiniband_verbs");
1212 if (ret) {
1213 pr_err("couldn't register dynamic device number\n");
1214 goto out_alloc;
1215 }
1216
1217 uverbs_class = class_create(THIS_MODULE, "infiniband_verbs");
1218 if (IS_ERR(uverbs_class)) {
1219 ret = PTR_ERR(uverbs_class);
1220 pr_err("user_verbs: couldn't create class infiniband_verbs\n");
1221 goto out_chrdev;
1222 }
1223
1224 uverbs_class->devnode = uverbs_devnode;
1225
1226 ret = class_create_file(uverbs_class, &class_attr_abi_version.attr);
1227 if (ret) {
1228 pr_err("user_verbs: couldn't create abi_version attribute\n");
1229 goto out_class;
1230 }
1231
1232 ret = ib_register_client(&uverbs_client);
1233 if (ret) {
1234 pr_err("user_verbs: couldn't register client\n");
1235 goto out_class;
1236 }
1237
1238 return 0;
1239
1240 out_class:
1241 class_destroy(uverbs_class);
1242
1243 out_chrdev:
1244 unregister_chrdev_region(dynamic_uverbs_dev,
1245 IB_UVERBS_NUM_DYNAMIC_MINOR);
1246
1247 out_alloc:
1248 unregister_chrdev_region(IB_UVERBS_BASE_DEV,
1249 IB_UVERBS_NUM_FIXED_MINOR);
1250
1251 out:
1252 return ret;
1253 }
1254
ib_uverbs_cleanup(void)1255 static void __exit ib_uverbs_cleanup(void)
1256 {
1257 ib_unregister_client(&uverbs_client);
1258 class_destroy(uverbs_class);
1259 unregister_chrdev_region(IB_UVERBS_BASE_DEV,
1260 IB_UVERBS_NUM_FIXED_MINOR);
1261 unregister_chrdev_region(dynamic_uverbs_dev,
1262 IB_UVERBS_NUM_DYNAMIC_MINOR);
1263 }
1264
1265 module_init_order(ib_uverbs_init, SI_ORDER_FIFTH);
1266 module_exit_order(ib_uverbs_cleanup, SI_ORDER_FIFTH);
1267