Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2005 Topspin Communications. All rights reserved. |
Roland Dreier | 33b9b3e | 2006-01-30 14:29:21 -0800 | [diff] [blame] | 3 | * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved. |
Roland Dreier | 2a1d9b7 | 2005-08-10 23:03:10 -0700 | [diff] [blame] | 4 | * Copyright (c) 2005 Mellanox Technologies. All rights reserved. |
| 5 | * Copyright (c) 2005 Voltaire, Inc. All rights reserved. |
Roland Dreier | 67cdb40 | 2005-10-14 15:26:04 -0700 | [diff] [blame] | 6 | * Copyright (c) 2005 PathScale, Inc. All rights reserved. |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 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. |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 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> |
Alexey Dobriyan | a99bbaf | 2009-10-04 16:11:37 +0400 | [diff] [blame] | 43 | #include <linux/sched.h> |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 44 | #include <linux/file.h> |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 45 | #include <linux/cdev.h> |
Roland Dreier | a265e55 | 2010-02-24 16:51:20 -0800 | [diff] [blame] | 46 | #include <linux/anon_inodes.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 47 | #include <linux/slab.h> |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 48 | |
| 49 | #include <asm/uaccess.h> |
| 50 | |
Jason Gunthorpe | e6bd18f | 2016-04-10 19:13:13 -0600 | [diff] [blame] | 51 | #include <rdma/ib.h> |
| 52 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 53 | #include "uverbs.h" |
| 54 | |
| 55 | MODULE_AUTHOR("Roland Dreier"); |
| 56 | MODULE_DESCRIPTION("InfiniBand userspace verbs access"); |
| 57 | MODULE_LICENSE("Dual BSD/GPL"); |
| 58 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 59 | enum { |
| 60 | IB_UVERBS_MAJOR = 231, |
| 61 | IB_UVERBS_BASE_MINOR = 192, |
| 62 | IB_UVERBS_MAX_DEVICES = 32 |
| 63 | }; |
| 64 | |
| 65 | #define IB_UVERBS_BASE_DEV MKDEV(IB_UVERBS_MAJOR, IB_UVERBS_BASE_MINOR) |
| 66 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 67 | static struct class *uverbs_class; |
| 68 | |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 69 | DEFINE_SPINLOCK(ib_uverbs_idr_lock); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 70 | DEFINE_IDR(ib_uverbs_pd_idr); |
| 71 | DEFINE_IDR(ib_uverbs_mr_idr); |
| 72 | DEFINE_IDR(ib_uverbs_mw_idr); |
| 73 | DEFINE_IDR(ib_uverbs_ah_idr); |
| 74 | DEFINE_IDR(ib_uverbs_cq_idr); |
| 75 | DEFINE_IDR(ib_uverbs_qp_idr); |
Roland Dreier | f520ba5 | 2005-08-18 12:24:13 -0700 | [diff] [blame] | 76 | DEFINE_IDR(ib_uverbs_srq_idr); |
Sean Hefty | 53d0bd1 | 2011-05-24 08:33:46 -0700 | [diff] [blame] | 77 | DEFINE_IDR(ib_uverbs_xrcd_idr); |
Hadar Hen Zion | 436f2ad | 2013-08-14 13:58:30 +0300 | [diff] [blame] | 78 | DEFINE_IDR(ib_uverbs_rule_idr); |
Yishai Hadas | f213c05 | 2016-05-23 15:20:49 +0300 | [diff] [blame] | 79 | DEFINE_IDR(ib_uverbs_wq_idr); |
Yishai Hadas | de019a9 | 2016-05-23 15:20:52 +0300 | [diff] [blame] | 80 | DEFINE_IDR(ib_uverbs_rwq_ind_tbl_idr); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 81 | |
Roland Dreier | 6276e08 | 2009-09-05 20:24:23 -0700 | [diff] [blame] | 82 | static DEFINE_SPINLOCK(map_lock); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 83 | static DECLARE_BITMAP(dev_map, IB_UVERBS_MAX_DEVICES); |
| 84 | |
| 85 | static ssize_t (*uverbs_cmd_table[])(struct ib_uverbs_file *file, |
Yishai Hadas | 057aec0 | 2015-08-13 18:32:04 +0300 | [diff] [blame] | 86 | struct ib_device *ib_dev, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 87 | const char __user *buf, int in_len, |
| 88 | int out_len) = { |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 89 | [IB_USER_VERBS_CMD_GET_CONTEXT] = ib_uverbs_get_context, |
| 90 | [IB_USER_VERBS_CMD_QUERY_DEVICE] = ib_uverbs_query_device, |
| 91 | [IB_USER_VERBS_CMD_QUERY_PORT] = ib_uverbs_query_port, |
| 92 | [IB_USER_VERBS_CMD_ALLOC_PD] = ib_uverbs_alloc_pd, |
| 93 | [IB_USER_VERBS_CMD_DEALLOC_PD] = ib_uverbs_dealloc_pd, |
| 94 | [IB_USER_VERBS_CMD_REG_MR] = ib_uverbs_reg_mr, |
Matan Barak | 7e6edb9 | 2014-07-31 11:01:28 +0300 | [diff] [blame] | 95 | [IB_USER_VERBS_CMD_REREG_MR] = ib_uverbs_rereg_mr, |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 96 | [IB_USER_VERBS_CMD_DEREG_MR] = ib_uverbs_dereg_mr, |
Shani Michaeli | 6b52a12 | 2013-02-06 16:19:13 +0000 | [diff] [blame] | 97 | [IB_USER_VERBS_CMD_ALLOC_MW] = ib_uverbs_alloc_mw, |
| 98 | [IB_USER_VERBS_CMD_DEALLOC_MW] = ib_uverbs_dealloc_mw, |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 99 | [IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL] = ib_uverbs_create_comp_channel, |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 100 | [IB_USER_VERBS_CMD_CREATE_CQ] = ib_uverbs_create_cq, |
| 101 | [IB_USER_VERBS_CMD_RESIZE_CQ] = ib_uverbs_resize_cq, |
| 102 | [IB_USER_VERBS_CMD_POLL_CQ] = ib_uverbs_poll_cq, |
| 103 | [IB_USER_VERBS_CMD_REQ_NOTIFY_CQ] = ib_uverbs_req_notify_cq, |
| 104 | [IB_USER_VERBS_CMD_DESTROY_CQ] = ib_uverbs_destroy_cq, |
| 105 | [IB_USER_VERBS_CMD_CREATE_QP] = ib_uverbs_create_qp, |
| 106 | [IB_USER_VERBS_CMD_QUERY_QP] = ib_uverbs_query_qp, |
| 107 | [IB_USER_VERBS_CMD_MODIFY_QP] = ib_uverbs_modify_qp, |
| 108 | [IB_USER_VERBS_CMD_DESTROY_QP] = ib_uverbs_destroy_qp, |
| 109 | [IB_USER_VERBS_CMD_POST_SEND] = ib_uverbs_post_send, |
| 110 | [IB_USER_VERBS_CMD_POST_RECV] = ib_uverbs_post_recv, |
| 111 | [IB_USER_VERBS_CMD_POST_SRQ_RECV] = ib_uverbs_post_srq_recv, |
| 112 | [IB_USER_VERBS_CMD_CREATE_AH] = ib_uverbs_create_ah, |
| 113 | [IB_USER_VERBS_CMD_DESTROY_AH] = ib_uverbs_destroy_ah, |
| 114 | [IB_USER_VERBS_CMD_ATTACH_MCAST] = ib_uverbs_attach_mcast, |
| 115 | [IB_USER_VERBS_CMD_DETACH_MCAST] = ib_uverbs_detach_mcast, |
| 116 | [IB_USER_VERBS_CMD_CREATE_SRQ] = ib_uverbs_create_srq, |
| 117 | [IB_USER_VERBS_CMD_MODIFY_SRQ] = ib_uverbs_modify_srq, |
| 118 | [IB_USER_VERBS_CMD_QUERY_SRQ] = ib_uverbs_query_srq, |
| 119 | [IB_USER_VERBS_CMD_DESTROY_SRQ] = ib_uverbs_destroy_srq, |
Sean Hefty | 53d0bd1 | 2011-05-24 08:33:46 -0700 | [diff] [blame] | 120 | [IB_USER_VERBS_CMD_OPEN_XRCD] = ib_uverbs_open_xrcd, |
| 121 | [IB_USER_VERBS_CMD_CLOSE_XRCD] = ib_uverbs_close_xrcd, |
Sean Hefty | 42849b2 | 2011-08-11 13:57:43 -0700 | [diff] [blame] | 122 | [IB_USER_VERBS_CMD_CREATE_XSRQ] = ib_uverbs_create_xsrq, |
Hadar Hen Zion | 436f2ad | 2013-08-14 13:58:30 +0300 | [diff] [blame] | 123 | [IB_USER_VERBS_CMD_OPEN_QP] = ib_uverbs_open_qp, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 124 | }; |
| 125 | |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 126 | static int (*uverbs_ex_cmd_table[])(struct ib_uverbs_file *file, |
Yishai Hadas | 057aec0 | 2015-08-13 18:32:04 +0300 | [diff] [blame] | 127 | struct ib_device *ib_dev, |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 128 | struct ib_udata *ucore, |
| 129 | struct ib_udata *uhw) = { |
| 130 | [IB_USER_VERBS_EX_CMD_CREATE_FLOW] = ib_uverbs_ex_create_flow, |
Eli Cohen | 5a77abf | 2014-12-11 17:04:15 +0200 | [diff] [blame] | 131 | [IB_USER_VERBS_EX_CMD_DESTROY_FLOW] = ib_uverbs_ex_destroy_flow, |
Eli Cohen | 02d1aa7 | 2015-02-08 13:28:50 +0200 | [diff] [blame] | 132 | [IB_USER_VERBS_EX_CMD_QUERY_DEVICE] = ib_uverbs_ex_query_device, |
Matan Barak | 565197d | 2015-06-11 16:35:23 +0300 | [diff] [blame] | 133 | [IB_USER_VERBS_EX_CMD_CREATE_CQ] = ib_uverbs_ex_create_cq, |
Eran Ben Elisha | 6d8a749 | 2015-10-21 17:00:42 +0300 | [diff] [blame] | 134 | [IB_USER_VERBS_EX_CMD_CREATE_QP] = ib_uverbs_ex_create_qp, |
Yishai Hadas | f213c05 | 2016-05-23 15:20:49 +0300 | [diff] [blame] | 135 | [IB_USER_VERBS_EX_CMD_CREATE_WQ] = ib_uverbs_ex_create_wq, |
| 136 | [IB_USER_VERBS_EX_CMD_MODIFY_WQ] = ib_uverbs_ex_modify_wq, |
| 137 | [IB_USER_VERBS_EX_CMD_DESTROY_WQ] = ib_uverbs_ex_destroy_wq, |
Yishai Hadas | de019a9 | 2016-05-23 15:20:52 +0300 | [diff] [blame] | 138 | [IB_USER_VERBS_EX_CMD_CREATE_RWQ_IND_TBL] = ib_uverbs_ex_create_rwq_ind_table, |
| 139 | [IB_USER_VERBS_EX_CMD_DESTROY_RWQ_IND_TBL] = ib_uverbs_ex_destroy_rwq_ind_table, |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 140 | }; |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 141 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 142 | static void ib_uverbs_add_one(struct ib_device *device); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 143 | static void ib_uverbs_remove_one(struct ib_device *device, void *client_data); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 144 | |
Christoph Hellwig | feb7c1e | 2015-12-23 19:12:48 +0100 | [diff] [blame] | 145 | int uverbs_dealloc_mw(struct ib_mw *mw) |
| 146 | { |
| 147 | struct ib_pd *pd = mw->pd; |
| 148 | int ret; |
| 149 | |
| 150 | ret = mw->device->dealloc_mw(mw); |
| 151 | if (!ret) |
| 152 | atomic_dec(&pd->usecnt); |
| 153 | return ret; |
| 154 | } |
| 155 | |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 156 | static void ib_uverbs_release_dev(struct kobject *kobj) |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 157 | { |
| 158 | struct ib_uverbs_device *dev = |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 159 | container_of(kobj, struct ib_uverbs_device, kobj); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 160 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 161 | cleanup_srcu_struct(&dev->disassociate_srcu); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 162 | kfree(dev); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 165 | static struct kobj_type ib_uverbs_dev_ktype = { |
| 166 | .release = ib_uverbs_release_dev, |
| 167 | }; |
| 168 | |
Roland Dreier | 04d29b0 | 2007-10-09 19:59:15 -0700 | [diff] [blame] | 169 | static void ib_uverbs_release_event_file(struct kref *ref) |
| 170 | { |
| 171 | struct ib_uverbs_event_file *file = |
| 172 | container_of(ref, struct ib_uverbs_event_file, ref); |
| 173 | |
| 174 | kfree(file); |
| 175 | } |
| 176 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 177 | void ib_uverbs_release_ucq(struct ib_uverbs_file *file, |
| 178 | struct ib_uverbs_event_file *ev_file, |
| 179 | struct ib_ucq_object *uobj) |
| 180 | { |
| 181 | struct ib_uverbs_event *evt, *tmp; |
| 182 | |
| 183 | if (ev_file) { |
| 184 | spin_lock_irq(&ev_file->lock); |
| 185 | list_for_each_entry_safe(evt, tmp, &uobj->comp_list, obj_list) { |
| 186 | list_del(&evt->list); |
| 187 | kfree(evt); |
| 188 | } |
| 189 | spin_unlock_irq(&ev_file->lock); |
| 190 | |
| 191 | kref_put(&ev_file->ref, ib_uverbs_release_event_file); |
| 192 | } |
| 193 | |
| 194 | spin_lock_irq(&file->async_file->lock); |
| 195 | list_for_each_entry_safe(evt, tmp, &uobj->async_list, obj_list) { |
| 196 | list_del(&evt->list); |
| 197 | kfree(evt); |
| 198 | } |
| 199 | spin_unlock_irq(&file->async_file->lock); |
| 200 | } |
| 201 | |
| 202 | void ib_uverbs_release_uevent(struct ib_uverbs_file *file, |
| 203 | struct ib_uevent_object *uobj) |
| 204 | { |
| 205 | struct ib_uverbs_event *evt, *tmp; |
| 206 | |
| 207 | spin_lock_irq(&file->async_file->lock); |
| 208 | list_for_each_entry_safe(evt, tmp, &uobj->event_list, obj_list) { |
| 209 | list_del(&evt->list); |
| 210 | kfree(evt); |
| 211 | } |
| 212 | spin_unlock_irq(&file->async_file->lock); |
| 213 | } |
| 214 | |
Jack Morgenstein | f4e4015 | 2005-11-29 16:57:01 -0800 | [diff] [blame] | 215 | static void ib_uverbs_detach_umcast(struct ib_qp *qp, |
| 216 | struct ib_uqp_object *uobj) |
| 217 | { |
| 218 | struct ib_uverbs_mcast_entry *mcast, *tmp; |
| 219 | |
| 220 | list_for_each_entry_safe(mcast, tmp, &uobj->mcast_list, list) { |
| 221 | ib_detach_mcast(qp, &mcast->gid, mcast->lid); |
| 222 | list_del(&mcast->list); |
| 223 | kfree(mcast); |
| 224 | } |
| 225 | } |
| 226 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 227 | static int ib_uverbs_cleanup_ucontext(struct ib_uverbs_file *file, |
| 228 | struct ib_ucontext *context) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 229 | { |
| 230 | struct ib_uobject *uobj, *tmp; |
| 231 | |
Roland Dreier | f7c6a7b | 2007-03-04 16:15:11 -0800 | [diff] [blame] | 232 | context->closing = 1; |
| 233 | |
Roland Dreier | 67cdb40 | 2005-10-14 15:26:04 -0700 | [diff] [blame] | 234 | list_for_each_entry_safe(uobj, tmp, &context->ah_list, list) { |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 235 | struct ib_ah *ah = uobj->object; |
| 236 | |
| 237 | idr_remove_uobj(&ib_uverbs_ah_idr, uobj); |
Roland Dreier | 67cdb40 | 2005-10-14 15:26:04 -0700 | [diff] [blame] | 238 | ib_destroy_ah(ah); |
Roland Dreier | 67cdb40 | 2005-10-14 15:26:04 -0700 | [diff] [blame] | 239 | kfree(uobj); |
| 240 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 241 | |
Shani Michaeli | 6b52a12 | 2013-02-06 16:19:13 +0000 | [diff] [blame] | 242 | /* Remove MWs before QPs, in order to support type 2A MWs. */ |
| 243 | list_for_each_entry_safe(uobj, tmp, &context->mw_list, list) { |
| 244 | struct ib_mw *mw = uobj->object; |
| 245 | |
| 246 | idr_remove_uobj(&ib_uverbs_mw_idr, uobj); |
Christoph Hellwig | feb7c1e | 2015-12-23 19:12:48 +0100 | [diff] [blame] | 247 | uverbs_dealloc_mw(mw); |
Shani Michaeli | 6b52a12 | 2013-02-06 16:19:13 +0000 | [diff] [blame] | 248 | kfree(uobj); |
| 249 | } |
| 250 | |
Hadar Hen Zion | 436f2ad | 2013-08-14 13:58:30 +0300 | [diff] [blame] | 251 | list_for_each_entry_safe(uobj, tmp, &context->rule_list, list) { |
| 252 | struct ib_flow *flow_id = uobj->object; |
| 253 | |
| 254 | idr_remove_uobj(&ib_uverbs_rule_idr, uobj); |
| 255 | ib_destroy_flow(flow_id); |
| 256 | kfree(uobj); |
| 257 | } |
| 258 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 259 | list_for_each_entry_safe(uobj, tmp, &context->qp_list, list) { |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 260 | struct ib_qp *qp = uobj->object; |
Jack Morgenstein | f4e4015 | 2005-11-29 16:57:01 -0800 | [diff] [blame] | 261 | struct ib_uqp_object *uqp = |
| 262 | container_of(uobj, struct ib_uqp_object, uevent.uobject); |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 263 | |
| 264 | idr_remove_uobj(&ib_uverbs_qp_idr, uobj); |
Tariq Toukan | 5b810a2 | 2016-10-27 16:36:26 +0300 | [diff] [blame] | 265 | if (qp == qp->real_qp) |
Sean Hefty | b93f3c1 | 2011-05-27 00:00:12 -0700 | [diff] [blame] | 266 | ib_uverbs_detach_umcast(qp, uqp); |
Tariq Toukan | 5b810a2 | 2016-10-27 16:36:26 +0300 | [diff] [blame] | 267 | ib_destroy_qp(qp); |
Jack Morgenstein | f4e4015 | 2005-11-29 16:57:01 -0800 | [diff] [blame] | 268 | ib_uverbs_release_uevent(file, &uqp->uevent); |
| 269 | kfree(uqp); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Yishai Hadas | de019a9 | 2016-05-23 15:20:52 +0300 | [diff] [blame] | 272 | list_for_each_entry_safe(uobj, tmp, &context->rwq_ind_tbl_list, list) { |
| 273 | struct ib_rwq_ind_table *rwq_ind_tbl = uobj->object; |
| 274 | struct ib_wq **ind_tbl = rwq_ind_tbl->ind_tbl; |
| 275 | |
| 276 | idr_remove_uobj(&ib_uverbs_rwq_ind_tbl_idr, uobj); |
| 277 | ib_destroy_rwq_ind_table(rwq_ind_tbl); |
| 278 | kfree(ind_tbl); |
| 279 | kfree(uobj); |
| 280 | } |
| 281 | |
Yishai Hadas | f213c05 | 2016-05-23 15:20:49 +0300 | [diff] [blame] | 282 | list_for_each_entry_safe(uobj, tmp, &context->wq_list, list) { |
| 283 | struct ib_wq *wq = uobj->object; |
| 284 | struct ib_uwq_object *uwq = |
| 285 | container_of(uobj, struct ib_uwq_object, uevent.uobject); |
| 286 | |
| 287 | idr_remove_uobj(&ib_uverbs_wq_idr, uobj); |
| 288 | ib_destroy_wq(wq); |
| 289 | ib_uverbs_release_uevent(file, &uwq->uevent); |
| 290 | kfree(uwq); |
| 291 | } |
| 292 | |
Sébastien Dugué | a233c4b | 2015-04-09 11:13:41 +0200 | [diff] [blame] | 293 | list_for_each_entry_safe(uobj, tmp, &context->srq_list, list) { |
| 294 | struct ib_srq *srq = uobj->object; |
| 295 | struct ib_uevent_object *uevent = |
| 296 | container_of(uobj, struct ib_uevent_object, uobject); |
| 297 | |
| 298 | idr_remove_uobj(&ib_uverbs_srq_idr, uobj); |
| 299 | ib_destroy_srq(srq); |
| 300 | ib_uverbs_release_uevent(file, uevent); |
| 301 | kfree(uevent); |
| 302 | } |
| 303 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 304 | list_for_each_entry_safe(uobj, tmp, &context->cq_list, list) { |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 305 | struct ib_cq *cq = uobj->object; |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 306 | struct ib_uverbs_event_file *ev_file = cq->cq_context; |
| 307 | struct ib_ucq_object *ucq = |
| 308 | container_of(uobj, struct ib_ucq_object, uobject); |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 309 | |
| 310 | idr_remove_uobj(&ib_uverbs_cq_idr, uobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 311 | ib_destroy_cq(cq); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 312 | ib_uverbs_release_ucq(file, ev_file, ucq); |
| 313 | kfree(ucq); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 314 | } |
| 315 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 316 | list_for_each_entry_safe(uobj, tmp, &context->mr_list, list) { |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 317 | struct ib_mr *mr = uobj->object; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 318 | |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 319 | idr_remove_uobj(&ib_uverbs_mr_idr, uobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 320 | ib_dereg_mr(mr); |
Roland Dreier | f7c6a7b | 2007-03-04 16:15:11 -0800 | [diff] [blame] | 321 | kfree(uobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Sean Hefty | 53d0bd1 | 2011-05-24 08:33:46 -0700 | [diff] [blame] | 324 | mutex_lock(&file->device->xrcd_tree_mutex); |
| 325 | list_for_each_entry_safe(uobj, tmp, &context->xrcd_list, list) { |
| 326 | struct ib_xrcd *xrcd = uobj->object; |
| 327 | struct ib_uxrcd_object *uxrcd = |
| 328 | container_of(uobj, struct ib_uxrcd_object, uobject); |
| 329 | |
| 330 | idr_remove_uobj(&ib_uverbs_xrcd_idr, uobj); |
| 331 | ib_uverbs_dealloc_xrcd(file->device, xrcd); |
| 332 | kfree(uxrcd); |
| 333 | } |
| 334 | mutex_unlock(&file->device->xrcd_tree_mutex); |
| 335 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 336 | list_for_each_entry_safe(uobj, tmp, &context->pd_list, list) { |
Roland Dreier | 9ead190 | 2006-06-17 20:44:49 -0700 | [diff] [blame] | 337 | struct ib_pd *pd = uobj->object; |
| 338 | |
| 339 | idr_remove_uobj(&ib_uverbs_pd_idr, uobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 340 | ib_dealloc_pd(pd); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 341 | kfree(uobj); |
| 342 | } |
| 343 | |
Shachar Raindel | 8ada2c1 | 2014-12-11 17:04:17 +0200 | [diff] [blame] | 344 | put_pid(context->tgid); |
| 345 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 346 | return context->device->dealloc_ucontext(context); |
| 347 | } |
| 348 | |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 349 | static void ib_uverbs_comp_dev(struct ib_uverbs_device *dev) |
| 350 | { |
| 351 | complete(&dev->comp); |
| 352 | } |
| 353 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 354 | static void ib_uverbs_release_file(struct kref *ref) |
| 355 | { |
| 356 | struct ib_uverbs_file *file = |
| 357 | container_of(ref, struct ib_uverbs_file, ref); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 358 | struct ib_device *ib_dev; |
| 359 | int srcu_key; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 360 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 361 | srcu_key = srcu_read_lock(&file->device->disassociate_srcu); |
| 362 | ib_dev = srcu_dereference(file->device->ib_dev, |
| 363 | &file->device->disassociate_srcu); |
| 364 | if (ib_dev && !ib_dev->disassociate_ucontext) |
| 365 | module_put(ib_dev->owner); |
| 366 | srcu_read_unlock(&file->device->disassociate_srcu, srcu_key); |
| 367 | |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 368 | if (atomic_dec_and_test(&file->device->refcount)) |
| 369 | ib_uverbs_comp_dev(file->device); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 370 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 371 | kfree(file); |
| 372 | } |
| 373 | |
| 374 | static ssize_t ib_uverbs_event_read(struct file *filp, char __user *buf, |
| 375 | size_t count, loff_t *pos) |
| 376 | { |
| 377 | struct ib_uverbs_event_file *file = filp->private_data; |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 378 | struct ib_uverbs_event *event; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 379 | int eventsz; |
| 380 | int ret = 0; |
| 381 | |
| 382 | spin_lock_irq(&file->lock); |
| 383 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 384 | while (list_empty(&file->event_list)) { |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 385 | spin_unlock_irq(&file->lock); |
| 386 | |
| 387 | if (filp->f_flags & O_NONBLOCK) |
| 388 | return -EAGAIN; |
| 389 | |
| 390 | if (wait_event_interruptible(file->poll_wait, |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 391 | (!list_empty(&file->event_list) || |
| 392 | /* The barriers built into wait_event_interruptible() |
| 393 | * and wake_up() guarentee this will see the null set |
| 394 | * without using RCU |
| 395 | */ |
| 396 | !file->uverbs_file->device->ib_dev))) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 397 | return -ERESTARTSYS; |
| 398 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 399 | /* If device was disassociated and no event exists set an error */ |
| 400 | if (list_empty(&file->event_list) && |
| 401 | !file->uverbs_file->device->ib_dev) |
| 402 | return -EIO; |
| 403 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 404 | spin_lock_irq(&file->lock); |
| 405 | } |
| 406 | |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 407 | event = list_entry(file->event_list.next, struct ib_uverbs_event, list); |
| 408 | |
| 409 | if (file->is_async) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 410 | eventsz = sizeof (struct ib_uverbs_async_event_desc); |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 411 | else |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 412 | eventsz = sizeof (struct ib_uverbs_comp_event_desc); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 413 | |
| 414 | if (eventsz > count) { |
| 415 | ret = -EINVAL; |
| 416 | event = NULL; |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 417 | } else { |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 418 | list_del(file->event_list.next); |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 419 | if (event->counter) { |
| 420 | ++(*event->counter); |
| 421 | list_del(&event->obj_list); |
| 422 | } |
| 423 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 424 | |
| 425 | spin_unlock_irq(&file->lock); |
| 426 | |
| 427 | if (event) { |
| 428 | if (copy_to_user(buf, event, eventsz)) |
| 429 | ret = -EFAULT; |
| 430 | else |
| 431 | ret = eventsz; |
| 432 | } |
| 433 | |
| 434 | kfree(event); |
| 435 | |
| 436 | return ret; |
| 437 | } |
| 438 | |
| 439 | static unsigned int ib_uverbs_event_poll(struct file *filp, |
| 440 | struct poll_table_struct *wait) |
| 441 | { |
| 442 | unsigned int pollflags = 0; |
| 443 | struct ib_uverbs_event_file *file = filp->private_data; |
| 444 | |
| 445 | poll_wait(filp, &file->poll_wait, wait); |
| 446 | |
| 447 | spin_lock_irq(&file->lock); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 448 | if (!list_empty(&file->event_list)) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 449 | pollflags = POLLIN | POLLRDNORM; |
| 450 | spin_unlock_irq(&file->lock); |
| 451 | |
| 452 | return pollflags; |
| 453 | } |
| 454 | |
Gleb Natapov | abdf119 | 2005-07-27 14:40:00 -0700 | [diff] [blame] | 455 | static int ib_uverbs_event_fasync(int fd, struct file *filp, int on) |
| 456 | { |
| 457 | struct ib_uverbs_event_file *file = filp->private_data; |
| 458 | |
| 459 | return fasync_helper(fd, filp, on, &file->async_queue); |
| 460 | } |
| 461 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 462 | static int ib_uverbs_event_close(struct inode *inode, struct file *filp) |
| 463 | { |
| 464 | struct ib_uverbs_event_file *file = filp->private_data; |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 465 | struct ib_uverbs_event *entry, *tmp; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 466 | int closed_already = 0; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 467 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 468 | mutex_lock(&file->uverbs_file->device->lists_mutex); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 469 | spin_lock_irq(&file->lock); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 470 | closed_already = file->is_closed; |
Roland Dreier | 1ae5c18 | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 471 | file->is_closed = 1; |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 472 | list_for_each_entry_safe(entry, tmp, &file->event_list, list) { |
| 473 | if (entry->counter) |
| 474 | list_del(&entry->obj_list); |
| 475 | kfree(entry); |
| 476 | } |
| 477 | spin_unlock_irq(&file->lock); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 478 | if (!closed_already) { |
| 479 | list_del(&file->list); |
| 480 | if (file->is_async) |
| 481 | ib_unregister_event_handler(&file->uverbs_file-> |
| 482 | event_handler); |
| 483 | } |
| 484 | mutex_unlock(&file->uverbs_file->device->lists_mutex); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 485 | |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 486 | kref_put(&file->uverbs_file->ref, ib_uverbs_release_file); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 487 | kref_put(&file->ref, ib_uverbs_release_event_file); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 488 | |
| 489 | return 0; |
| 490 | } |
| 491 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 492 | static const struct file_operations uverbs_event_fops = { |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 493 | .owner = THIS_MODULE, |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 494 | .read = ib_uverbs_event_read, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 495 | .poll = ib_uverbs_event_poll, |
Gleb Natapov | abdf119 | 2005-07-27 14:40:00 -0700 | [diff] [blame] | 496 | .release = ib_uverbs_event_close, |
Roland Dreier | bc1db9a | 2010-04-09 17:13:50 -0700 | [diff] [blame] | 497 | .fasync = ib_uverbs_event_fasync, |
| 498 | .llseek = no_llseek, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 499 | }; |
| 500 | |
| 501 | void ib_uverbs_comp_handler(struct ib_cq *cq, void *cq_context) |
| 502 | { |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 503 | struct ib_uverbs_event_file *file = cq_context; |
| 504 | struct ib_ucq_object *uobj; |
| 505 | struct ib_uverbs_event *entry; |
| 506 | unsigned long flags; |
| 507 | |
| 508 | if (!file) |
| 509 | return; |
| 510 | |
| 511 | spin_lock_irqsave(&file->lock, flags); |
Roland Dreier | 1ae5c18 | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 512 | if (file->is_closed) { |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 513 | spin_unlock_irqrestore(&file->lock, flags); |
| 514 | return; |
| 515 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 516 | |
| 517 | entry = kmalloc(sizeof *entry, GFP_ATOMIC); |
Roland Dreier | 305a7e8 | 2005-10-11 15:39:38 -0700 | [diff] [blame] | 518 | if (!entry) { |
| 519 | spin_unlock_irqrestore(&file->lock, flags); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 520 | return; |
Roland Dreier | 305a7e8 | 2005-10-11 15:39:38 -0700 | [diff] [blame] | 521 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 522 | |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 523 | uobj = container_of(cq->uobject, struct ib_ucq_object, uobject); |
| 524 | |
| 525 | entry->desc.comp.cq_handle = cq->uobject->user_handle; |
| 526 | entry->counter = &uobj->comp_events_reported; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 527 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 528 | list_add_tail(&entry->list, &file->event_list); |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 529 | list_add_tail(&entry->obj_list, &uobj->comp_list); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 530 | spin_unlock_irqrestore(&file->lock, flags); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 531 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 532 | wake_up_interruptible(&file->poll_wait); |
| 533 | kill_fasync(&file->async_queue, SIGIO, POLL_IN); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | static void ib_uverbs_async_handler(struct ib_uverbs_file *file, |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 537 | __u64 element, __u64 event, |
| 538 | struct list_head *obj_list, |
| 539 | u32 *counter) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 540 | { |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 541 | struct ib_uverbs_event *entry; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 542 | unsigned long flags; |
| 543 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 544 | spin_lock_irqsave(&file->async_file->lock, flags); |
Jack Morgenstein | fb77bce | 2008-06-18 15:36:38 -0700 | [diff] [blame] | 545 | if (file->async_file->is_closed) { |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 546 | spin_unlock_irqrestore(&file->async_file->lock, flags); |
| 547 | return; |
| 548 | } |
| 549 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 550 | entry = kmalloc(sizeof *entry, GFP_ATOMIC); |
Roland Dreier | 305a7e8 | 2005-10-11 15:39:38 -0700 | [diff] [blame] | 551 | if (!entry) { |
| 552 | spin_unlock_irqrestore(&file->async_file->lock, flags); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 553 | return; |
Roland Dreier | 305a7e8 | 2005-10-11 15:39:38 -0700 | [diff] [blame] | 554 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 555 | |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 556 | entry->desc.async.element = element; |
| 557 | entry->desc.async.event_type = event; |
Eli Cohen | 377b513 | 2014-09-14 16:47:52 +0300 | [diff] [blame] | 558 | entry->desc.async.reserved = 0; |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 559 | entry->counter = counter; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 560 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 561 | list_add_tail(&entry->list, &file->async_file->event_list); |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 562 | if (obj_list) |
| 563 | list_add_tail(&entry->obj_list, obj_list); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 564 | spin_unlock_irqrestore(&file->async_file->lock, flags); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 565 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 566 | wake_up_interruptible(&file->async_file->poll_wait); |
| 567 | kill_fasync(&file->async_file->async_queue, SIGIO, POLL_IN); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr) |
| 571 | { |
Roland Dreier | 7162a3e | 2005-10-30 09:50:04 -0800 | [diff] [blame] | 572 | struct ib_ucq_object *uobj = container_of(event->element.cq->uobject, |
| 573 | struct ib_ucq_object, uobject); |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 574 | |
Roland Dreier | 7162a3e | 2005-10-30 09:50:04 -0800 | [diff] [blame] | 575 | ib_uverbs_async_handler(uobj->uverbs_file, uobj->uobject.user_handle, |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 576 | event->event, &uobj->async_list, |
| 577 | &uobj->async_events_reported); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr) |
| 581 | { |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 582 | struct ib_uevent_object *uobj; |
| 583 | |
Jack Morgenstein | a040f95 | 2014-09-23 12:38:26 +0300 | [diff] [blame] | 584 | /* for XRC target qp's, check that qp is live */ |
| 585 | if (!event->element.qp->uobject || !event->element.qp->uobject->live) |
| 586 | return; |
| 587 | |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 588 | uobj = container_of(event->element.qp->uobject, |
| 589 | struct ib_uevent_object, uobject); |
| 590 | |
| 591 | ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle, |
| 592 | event->event, &uobj->event_list, |
| 593 | &uobj->events_reported); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Yishai Hadas | f213c05 | 2016-05-23 15:20:49 +0300 | [diff] [blame] | 596 | void ib_uverbs_wq_event_handler(struct ib_event *event, void *context_ptr) |
| 597 | { |
| 598 | struct ib_uevent_object *uobj = container_of(event->element.wq->uobject, |
| 599 | struct ib_uevent_object, uobject); |
| 600 | |
| 601 | ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle, |
| 602 | event->event, &uobj->event_list, |
| 603 | &uobj->events_reported); |
| 604 | } |
| 605 | |
Roland Dreier | f520ba5 | 2005-08-18 12:24:13 -0700 | [diff] [blame] | 606 | void ib_uverbs_srq_event_handler(struct ib_event *event, void *context_ptr) |
| 607 | { |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 608 | struct ib_uevent_object *uobj; |
| 609 | |
| 610 | uobj = container_of(event->element.srq->uobject, |
| 611 | struct ib_uevent_object, uobject); |
| 612 | |
| 613 | ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle, |
| 614 | event->event, &uobj->event_list, |
| 615 | &uobj->events_reported); |
Roland Dreier | f520ba5 | 2005-08-18 12:24:13 -0700 | [diff] [blame] | 616 | } |
| 617 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 618 | void ib_uverbs_event_handler(struct ib_event_handler *handler, |
| 619 | struct ib_event *event) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 620 | { |
| 621 | struct ib_uverbs_file *file = |
| 622 | container_of(handler, struct ib_uverbs_file, event_handler); |
| 623 | |
Roland Dreier | 63aaf64 | 2005-09-09 15:55:08 -0700 | [diff] [blame] | 624 | ib_uverbs_async_handler(file, event->element.port_num, event->event, |
| 625 | NULL, NULL); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 628 | void ib_uverbs_free_async_event_file(struct ib_uverbs_file *file) |
| 629 | { |
| 630 | kref_put(&file->async_file->ref, ib_uverbs_release_event_file); |
| 631 | file->async_file = NULL; |
| 632 | } |
| 633 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 634 | struct file *ib_uverbs_alloc_event_file(struct ib_uverbs_file *uverbs_file, |
Yishai Hadas | 057aec0 | 2015-08-13 18:32:04 +0300 | [diff] [blame] | 635 | struct ib_device *ib_dev, |
Al Viro | b1e4594b | 2010-01-18 01:38:00 -0500 | [diff] [blame] | 636 | int is_async) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 637 | { |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 638 | struct ib_uverbs_event_file *ev_file; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 639 | struct file *filp; |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 640 | int ret; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 641 | |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 642 | ev_file = kzalloc(sizeof(*ev_file), GFP_KERNEL); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 643 | if (!ev_file) |
| 644 | return ERR_PTR(-ENOMEM); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 645 | |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 646 | kref_init(&ev_file->ref); |
| 647 | spin_lock_init(&ev_file->lock); |
| 648 | INIT_LIST_HEAD(&ev_file->event_list); |
| 649 | init_waitqueue_head(&ev_file->poll_wait); |
| 650 | ev_file->uverbs_file = uverbs_file; |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 651 | kref_get(&ev_file->uverbs_file->ref); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 652 | ev_file->async_queue = NULL; |
Roland Dreier | 1ae5c18 | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 653 | ev_file->is_closed = 0; |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 654 | |
Al Viro | b1e4594b | 2010-01-18 01:38:00 -0500 | [diff] [blame] | 655 | filp = anon_inode_getfile("[infinibandevent]", &uverbs_event_fops, |
Roland Dreier | a265e55 | 2010-02-24 16:51:20 -0800 | [diff] [blame] | 656 | ev_file, O_RDONLY); |
Al Viro | b1e4594b | 2010-01-18 01:38:00 -0500 | [diff] [blame] | 657 | if (IS_ERR(filp)) |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 658 | goto err_put_refs; |
Roland Dreier | a7dab9e | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 659 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 660 | mutex_lock(&uverbs_file->device->lists_mutex); |
| 661 | list_add_tail(&ev_file->list, |
| 662 | &uverbs_file->device->uverbs_events_file_list); |
| 663 | mutex_unlock(&uverbs_file->device->lists_mutex); |
| 664 | |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 665 | if (is_async) { |
| 666 | WARN_ON(uverbs_file->async_file); |
| 667 | uverbs_file->async_file = ev_file; |
| 668 | kref_get(&uverbs_file->async_file->ref); |
| 669 | INIT_IB_EVENT_HANDLER(&uverbs_file->event_handler, |
Yishai Hadas | 057aec0 | 2015-08-13 18:32:04 +0300 | [diff] [blame] | 670 | ib_dev, |
Yishai Hadas | 03c4044 | 2015-08-13 18:32:02 +0300 | [diff] [blame] | 671 | ib_uverbs_event_handler); |
| 672 | ret = ib_register_event_handler(&uverbs_file->event_handler); |
| 673 | if (ret) |
| 674 | goto err_put_file; |
| 675 | |
| 676 | /* At that point async file stuff was fully set */ |
| 677 | ev_file->is_async = 1; |
| 678 | } |
| 679 | |
| 680 | return filp; |
| 681 | |
| 682 | err_put_file: |
| 683 | fput(filp); |
| 684 | kref_put(&uverbs_file->async_file->ref, ib_uverbs_release_event_file); |
| 685 | uverbs_file->async_file = NULL; |
| 686 | return ERR_PTR(ret); |
| 687 | |
| 688 | err_put_refs: |
| 689 | kref_put(&ev_file->uverbs_file->ref, ib_uverbs_release_file); |
| 690 | kref_put(&ev_file->ref, ib_uverbs_release_event_file); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 691 | return filp; |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | /* |
| 695 | * Look up a completion event file by FD. If lookup is successful, |
| 696 | * takes a ref to the event file struct that it returns; if |
| 697 | * unsuccessful, returns NULL. |
| 698 | */ |
| 699 | struct ib_uverbs_event_file *ib_uverbs_lookup_comp_file(int fd) |
| 700 | { |
| 701 | struct ib_uverbs_event_file *ev_file = NULL; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 702 | struct fd f = fdget(fd); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 703 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 704 | if (!f.file) |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 705 | return NULL; |
| 706 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 707 | if (f.file->f_op != &uverbs_event_fops) |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 708 | goto out; |
| 709 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 710 | ev_file = f.file->private_data; |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 711 | if (ev_file->is_async) { |
| 712 | ev_file = NULL; |
| 713 | goto out; |
| 714 | } |
| 715 | |
| 716 | kref_get(&ev_file->ref); |
| 717 | |
| 718 | out: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 719 | fdput(f); |
Roland Dreier | 6b73597e | 2005-09-26 13:53:25 -0700 | [diff] [blame] | 720 | return ev_file; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 721 | } |
| 722 | |
Eli Cohen | 2dbd518 | 2016-02-14 17:07:48 +0200 | [diff] [blame] | 723 | static int verify_command_mask(struct ib_device *ib_dev, __u32 command) |
| 724 | { |
| 725 | u64 mask; |
| 726 | |
| 727 | if (command <= IB_USER_VERBS_CMD_OPEN_QP) |
| 728 | mask = ib_dev->uverbs_cmd_mask; |
| 729 | else |
| 730 | mask = ib_dev->uverbs_ex_cmd_mask; |
| 731 | |
| 732 | if (mask & ((u64)1 << command)) |
| 733 | return 0; |
| 734 | |
| 735 | return -1; |
| 736 | } |
| 737 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 738 | static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf, |
| 739 | size_t count, loff_t *pos) |
| 740 | { |
| 741 | struct ib_uverbs_file *file = filp->private_data; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 742 | struct ib_device *ib_dev; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 743 | struct ib_uverbs_cmd_hdr hdr; |
Eli Cohen | 74a0b0a | 2016-02-14 17:07:47 +0200 | [diff] [blame] | 744 | __u32 command; |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 745 | __u32 flags; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 746 | int srcu_key; |
| 747 | ssize_t ret; |
Yishai Hadas | 057aec0 | 2015-08-13 18:32:04 +0300 | [diff] [blame] | 748 | |
Jason Gunthorpe | e6bd18f | 2016-04-10 19:13:13 -0600 | [diff] [blame] | 749 | if (WARN_ON_ONCE(!ib_safe_file_access(filp))) |
| 750 | return -EACCES; |
| 751 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 752 | if (count < sizeof hdr) |
| 753 | return -EINVAL; |
| 754 | |
| 755 | if (copy_from_user(&hdr, buf, sizeof hdr)) |
| 756 | return -EFAULT; |
| 757 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 758 | srcu_key = srcu_read_lock(&file->device->disassociate_srcu); |
| 759 | ib_dev = srcu_dereference(file->device->ib_dev, |
| 760 | &file->device->disassociate_srcu); |
| 761 | if (!ib_dev) { |
| 762 | ret = -EIO; |
| 763 | goto out; |
| 764 | } |
| 765 | |
Eli Cohen | 74a0b0a | 2016-02-14 17:07:47 +0200 | [diff] [blame] | 766 | if (hdr.command & ~(__u32)(IB_USER_VERBS_CMD_FLAGS_MASK | |
| 767 | IB_USER_VERBS_CMD_COMMAND_MASK)) { |
| 768 | ret = -EINVAL; |
| 769 | goto out; |
| 770 | } |
| 771 | |
| 772 | command = hdr.command & IB_USER_VERBS_CMD_COMMAND_MASK; |
Eli Cohen | 2dbd518 | 2016-02-14 17:07:48 +0200 | [diff] [blame] | 773 | if (verify_command_mask(ib_dev, command)) { |
| 774 | ret = -EOPNOTSUPP; |
| 775 | goto out; |
| 776 | } |
Eli Cohen | 74a0b0a | 2016-02-14 17:07:47 +0200 | [diff] [blame] | 777 | |
Eli Cohen | eaebc7d | 2016-02-14 17:07:49 +0200 | [diff] [blame] | 778 | if (!file->ucontext && |
| 779 | command != IB_USER_VERBS_CMD_GET_CONTEXT) { |
| 780 | ret = -EINVAL; |
| 781 | goto out; |
| 782 | } |
| 783 | |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 784 | flags = (hdr.command & |
| 785 | IB_USER_VERBS_CMD_FLAGS_MASK) >> IB_USER_VERBS_CMD_FLAGS_SHIFT; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 786 | |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 787 | if (!flags) { |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 788 | if (command >= ARRAY_SIZE(uverbs_cmd_table) || |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 789 | !uverbs_cmd_table[command]) { |
| 790 | ret = -EINVAL; |
| 791 | goto out; |
| 792 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 793 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 794 | if (hdr.in_words * 4 != count) { |
| 795 | ret = -EINVAL; |
| 796 | goto out; |
| 797 | } |
Igor Ivanov | 400dbc9 | 2013-08-14 13:58:29 +0300 | [diff] [blame] | 798 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 799 | ret = uverbs_cmd_table[command](file, ib_dev, |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 800 | buf + sizeof(hdr), |
| 801 | hdr.in_words * 4, |
| 802 | hdr.out_words * 4); |
| 803 | |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 804 | } else if (flags == IB_USER_VERBS_CMD_FLAG_EXTENDED) { |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 805 | struct ib_uverbs_ex_cmd_hdr ex_hdr; |
| 806 | struct ib_udata ucore; |
| 807 | struct ib_udata uhw; |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 808 | size_t written_count = count; |
| 809 | |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 810 | if (command >= ARRAY_SIZE(uverbs_ex_cmd_table) || |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 811 | !uverbs_ex_cmd_table[command]) { |
| 812 | ret = -ENOSYS; |
| 813 | goto out; |
| 814 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 815 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 816 | if (!file->ucontext) { |
| 817 | ret = -EINVAL; |
| 818 | goto out; |
| 819 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 820 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 821 | if (count < (sizeof(hdr) + sizeof(ex_hdr))) { |
| 822 | ret = -EINVAL; |
| 823 | goto out; |
| 824 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 825 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 826 | if (copy_from_user(&ex_hdr, buf + sizeof(hdr), sizeof(ex_hdr))) { |
| 827 | ret = -EFAULT; |
| 828 | goto out; |
| 829 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 830 | |
| 831 | count -= sizeof(hdr) + sizeof(ex_hdr); |
| 832 | buf += sizeof(hdr) + sizeof(ex_hdr); |
| 833 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 834 | if ((hdr.in_words + ex_hdr.provider_in_words) * 8 != count) { |
| 835 | ret = -EINVAL; |
| 836 | goto out; |
| 837 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 838 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 839 | if (ex_hdr.cmd_hdr_reserved) { |
| 840 | ret = -EINVAL; |
| 841 | goto out; |
| 842 | } |
Yann Droneaud | 7efb1b1 | 2013-12-11 23:01:47 +0100 | [diff] [blame] | 843 | |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 844 | if (ex_hdr.response) { |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 845 | if (!hdr.out_words && !ex_hdr.provider_out_words) { |
| 846 | ret = -EINVAL; |
| 847 | goto out; |
| 848 | } |
Yann Droneaud | 6cc3df8 | 2013-12-11 23:01:51 +0100 | [diff] [blame] | 849 | |
| 850 | if (!access_ok(VERIFY_WRITE, |
| 851 | (void __user *) (unsigned long) ex_hdr.response, |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 852 | (hdr.out_words + ex_hdr.provider_out_words) * 8)) { |
| 853 | ret = -EFAULT; |
| 854 | goto out; |
| 855 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 856 | } else { |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 857 | if (hdr.out_words || ex_hdr.provider_out_words) { |
| 858 | ret = -EINVAL; |
| 859 | goto out; |
| 860 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 861 | } |
| 862 | |
Roland Dreier | a96e4e2 | 2013-12-19 08:37:03 -0800 | [diff] [blame] | 863 | INIT_UDATA_BUF_OR_NULL(&ucore, buf, (unsigned long) ex_hdr.response, |
| 864 | hdr.in_words * 8, hdr.out_words * 8); |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 865 | |
Roland Dreier | a96e4e2 | 2013-12-19 08:37:03 -0800 | [diff] [blame] | 866 | INIT_UDATA_BUF_OR_NULL(&uhw, |
| 867 | buf + ucore.inlen, |
| 868 | (unsigned long) ex_hdr.response + ucore.outlen, |
| 869 | ex_hdr.provider_in_words * 8, |
| 870 | ex_hdr.provider_out_words * 8); |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 871 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 872 | ret = uverbs_ex_cmd_table[command](file, |
Yishai Hadas | 057aec0 | 2015-08-13 18:32:04 +0300 | [diff] [blame] | 873 | ib_dev, |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 874 | &ucore, |
| 875 | &uhw); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 876 | if (!ret) |
| 877 | ret = written_count; |
| 878 | } else { |
| 879 | ret = -ENOSYS; |
Igor Ivanov | 400dbc9 | 2013-08-14 13:58:29 +0300 | [diff] [blame] | 880 | } |
Yann Droneaud | f21519b | 2013-11-06 23:21:49 +0100 | [diff] [blame] | 881 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 882 | out: |
| 883 | srcu_read_unlock(&file->device->disassociate_srcu, srcu_key); |
| 884 | return ret; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct *vma) |
| 888 | { |
| 889 | struct ib_uverbs_file *file = filp->private_data; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 890 | struct ib_device *ib_dev; |
| 891 | int ret = 0; |
| 892 | int srcu_key; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 893 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 894 | srcu_key = srcu_read_lock(&file->device->disassociate_srcu); |
| 895 | ib_dev = srcu_dereference(file->device->ib_dev, |
| 896 | &file->device->disassociate_srcu); |
| 897 | if (!ib_dev) { |
| 898 | ret = -EIO; |
| 899 | goto out; |
| 900 | } |
| 901 | |
| 902 | if (!file->ucontext) |
| 903 | ret = -ENODEV; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 904 | else |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 905 | ret = ib_dev->mmap(file->ucontext, vma); |
| 906 | out: |
| 907 | srcu_read_unlock(&file->device->disassociate_srcu, srcu_key); |
| 908 | return ret; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 909 | } |
| 910 | |
Roland Dreier | 5b2d281 | 2008-06-27 14:43:20 -0700 | [diff] [blame] | 911 | /* |
| 912 | * ib_uverbs_open() does not need the BKL: |
| 913 | * |
Alexander Chiang | 2a72f21 | 2010-02-02 19:07:54 +0000 | [diff] [blame] | 914 | * - the ib_uverbs_device structures are properly reference counted and |
Roland Dreier | 5b2d281 | 2008-06-27 14:43:20 -0700 | [diff] [blame] | 915 | * everything else is purely local to the file being created, so |
| 916 | * races against other open calls are not a problem; |
| 917 | * - there is no ioctl method to race against; |
Alexander Chiang | 2a72f21 | 2010-02-02 19:07:54 +0000 | [diff] [blame] | 918 | * - the open method will either immediately run -ENXIO, or all |
| 919 | * required initialization will be done. |
Roland Dreier | 5b2d281 | 2008-06-27 14:43:20 -0700 | [diff] [blame] | 920 | */ |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 921 | static int ib_uverbs_open(struct inode *inode, struct file *filp) |
| 922 | { |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 923 | struct ib_uverbs_device *dev; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 924 | struct ib_uverbs_file *file; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 925 | struct ib_device *ib_dev; |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 926 | int ret; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 927 | int module_dependent; |
| 928 | int srcu_key; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 929 | |
Alexander Chiang | 2a72f21 | 2010-02-02 19:07:54 +0000 | [diff] [blame] | 930 | dev = container_of(inode->i_cdev, struct ib_uverbs_device, cdev); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 931 | if (!atomic_inc_not_zero(&dev->refcount)) |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 932 | return -ENXIO; |
| 933 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 934 | srcu_key = srcu_read_lock(&dev->disassociate_srcu); |
| 935 | mutex_lock(&dev->lists_mutex); |
| 936 | ib_dev = srcu_dereference(dev->ib_dev, |
| 937 | &dev->disassociate_srcu); |
| 938 | if (!ib_dev) { |
| 939 | ret = -EIO; |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 940 | goto err; |
| 941 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 942 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 943 | /* In case IB device supports disassociate ucontext, there is no hard |
| 944 | * dependency between uverbs device and its low level device. |
| 945 | */ |
| 946 | module_dependent = !(ib_dev->disassociate_ucontext); |
| 947 | |
| 948 | if (module_dependent) { |
| 949 | if (!try_module_get(ib_dev->owner)) { |
| 950 | ret = -ENODEV; |
| 951 | goto err; |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | file = kzalloc(sizeof(*file), GFP_KERNEL); |
Roland Dreier | 63c47c2 | 2005-09-26 13:01:03 -0700 | [diff] [blame] | 956 | if (!file) { |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 957 | ret = -ENOMEM; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 958 | if (module_dependent) |
| 959 | goto err_module; |
| 960 | |
| 961 | goto err; |
Roland Dreier | 63c47c2 | 2005-09-26 13:01:03 -0700 | [diff] [blame] | 962 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 963 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 964 | file->device = dev; |
| 965 | file->ucontext = NULL; |
| 966 | file->async_file = NULL; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 967 | kref_init(&file->ref); |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 968 | mutex_init(&file->mutex); |
Jason Gunthorpe | d1e09f30 | 2016-07-03 15:28:18 +0300 | [diff] [blame] | 969 | mutex_init(&file->cleanup_mutex); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 970 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 971 | filp->private_data = file; |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 972 | kobject_get(&dev->kobj); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 973 | list_add_tail(&file->list, &dev->uverbs_file_list); |
| 974 | mutex_unlock(&dev->lists_mutex); |
| 975 | srcu_read_unlock(&dev->disassociate_srcu, srcu_key); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 976 | |
Roland Dreier | bc1db9a | 2010-04-09 17:13:50 -0700 | [diff] [blame] | 977 | return nonseekable_open(inode, filp); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 978 | |
| 979 | err_module: |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 980 | module_put(ib_dev->owner); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 981 | |
| 982 | err: |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 983 | mutex_unlock(&dev->lists_mutex); |
| 984 | srcu_read_unlock(&dev->disassociate_srcu, srcu_key); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 985 | if (atomic_dec_and_test(&dev->refcount)) |
| 986 | ib_uverbs_comp_dev(dev); |
| 987 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 988 | return ret; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | static int ib_uverbs_close(struct inode *inode, struct file *filp) |
| 992 | { |
| 993 | struct ib_uverbs_file *file = filp->private_data; |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 994 | struct ib_uverbs_device *dev = file->device; |
Jason Gunthorpe | d1e09f30 | 2016-07-03 15:28:18 +0300 | [diff] [blame] | 995 | |
| 996 | mutex_lock(&file->cleanup_mutex); |
| 997 | if (file->ucontext) { |
| 998 | ib_uverbs_cleanup_ucontext(file, file->ucontext); |
| 999 | file->ucontext = NULL; |
| 1000 | } |
| 1001 | mutex_unlock(&file->cleanup_mutex); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1002 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1003 | mutex_lock(&file->device->lists_mutex); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1004 | if (!file->is_closed) { |
| 1005 | list_del(&file->list); |
| 1006 | file->is_closed = 1; |
| 1007 | } |
| 1008 | mutex_unlock(&file->device->lists_mutex); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1009 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1010 | if (file->async_file) |
| 1011 | kref_put(&file->async_file->ref, ib_uverbs_release_event_file); |
| 1012 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1013 | kref_put(&file->ref, ib_uverbs_release_file); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1014 | kobject_put(&dev->kobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1015 | |
| 1016 | return 0; |
| 1017 | } |
| 1018 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 1019 | static const struct file_operations uverbs_fops = { |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 1020 | .owner = THIS_MODULE, |
| 1021 | .write = ib_uverbs_write, |
| 1022 | .open = ib_uverbs_open, |
Roland Dreier | bc1db9a | 2010-04-09 17:13:50 -0700 | [diff] [blame] | 1023 | .release = ib_uverbs_close, |
| 1024 | .llseek = no_llseek, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1025 | }; |
| 1026 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 1027 | static const struct file_operations uverbs_mmap_fops = { |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 1028 | .owner = THIS_MODULE, |
| 1029 | .write = ib_uverbs_write, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1030 | .mmap = ib_uverbs_mmap, |
Alexander Chiang | 9afed76 | 2010-02-02 19:08:19 +0000 | [diff] [blame] | 1031 | .open = ib_uverbs_open, |
Roland Dreier | bc1db9a | 2010-04-09 17:13:50 -0700 | [diff] [blame] | 1032 | .release = ib_uverbs_close, |
| 1033 | .llseek = no_llseek, |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1034 | }; |
| 1035 | |
| 1036 | static struct ib_client uverbs_client = { |
| 1037 | .name = "uverbs", |
| 1038 | .add = ib_uverbs_add_one, |
| 1039 | .remove = ib_uverbs_remove_one |
| 1040 | }; |
| 1041 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1042 | static ssize_t show_ibdev(struct device *device, struct device_attribute *attr, |
| 1043 | char *buf) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1044 | { |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1045 | int ret = -ENODEV; |
| 1046 | int srcu_key; |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1047 | struct ib_uverbs_device *dev = dev_get_drvdata(device); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1048 | struct ib_device *ib_dev; |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1049 | |
| 1050 | if (!dev) |
| 1051 | return -ENODEV; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1052 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1053 | srcu_key = srcu_read_lock(&dev->disassociate_srcu); |
| 1054 | ib_dev = srcu_dereference(dev->ib_dev, &dev->disassociate_srcu); |
| 1055 | if (ib_dev) |
| 1056 | ret = sprintf(buf, "%s\n", ib_dev->name); |
| 1057 | srcu_read_unlock(&dev->disassociate_srcu, srcu_key); |
| 1058 | |
| 1059 | return ret; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1060 | } |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1061 | static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1062 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1063 | static ssize_t show_dev_abi_version(struct device *device, |
| 1064 | struct device_attribute *attr, char *buf) |
Roland Dreier | 274c089 | 2005-09-29 14:17:48 -0700 | [diff] [blame] | 1065 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1066 | struct ib_uverbs_device *dev = dev_get_drvdata(device); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1067 | int ret = -ENODEV; |
| 1068 | int srcu_key; |
| 1069 | struct ib_device *ib_dev; |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1070 | |
| 1071 | if (!dev) |
| 1072 | return -ENODEV; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1073 | srcu_key = srcu_read_lock(&dev->disassociate_srcu); |
| 1074 | ib_dev = srcu_dereference(dev->ib_dev, &dev->disassociate_srcu); |
| 1075 | if (ib_dev) |
| 1076 | ret = sprintf(buf, "%d\n", ib_dev->uverbs_abi_ver); |
| 1077 | srcu_read_unlock(&dev->disassociate_srcu, srcu_key); |
Roland Dreier | 274c089 | 2005-09-29 14:17:48 -0700 | [diff] [blame] | 1078 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1079 | return ret; |
Roland Dreier | 274c089 | 2005-09-29 14:17:48 -0700 | [diff] [blame] | 1080 | } |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1081 | static DEVICE_ATTR(abi_version, S_IRUGO, show_dev_abi_version, NULL); |
Roland Dreier | 274c089 | 2005-09-29 14:17:48 -0700 | [diff] [blame] | 1082 | |
Andi Kleen | 0933e2d | 2010-01-05 12:48:09 +0100 | [diff] [blame] | 1083 | static CLASS_ATTR_STRING(abi_version, S_IRUGO, |
| 1084 | __stringify(IB_USER_VERBS_ABI_VERSION)); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1085 | |
Alexander Chiang | 6d6a0e7 | 2010-02-02 19:08:09 +0000 | [diff] [blame] | 1086 | static dev_t overflow_maj; |
| 1087 | static DECLARE_BITMAP(overflow_map, IB_UVERBS_MAX_DEVICES); |
| 1088 | |
| 1089 | /* |
| 1090 | * If we have more than IB_UVERBS_MAX_DEVICES, dynamically overflow by |
| 1091 | * requesting a new major number and doubling the number of max devices we |
| 1092 | * support. It's stupid, but simple. |
| 1093 | */ |
| 1094 | static int find_overflow_devnum(void) |
| 1095 | { |
| 1096 | int ret; |
| 1097 | |
| 1098 | if (!overflow_maj) { |
| 1099 | ret = alloc_chrdev_region(&overflow_maj, 0, IB_UVERBS_MAX_DEVICES, |
| 1100 | "infiniband_verbs"); |
| 1101 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1102 | pr_err("user_verbs: couldn't register dynamic device number\n"); |
Alexander Chiang | 6d6a0e7 | 2010-02-02 19:08:09 +0000 | [diff] [blame] | 1103 | return ret; |
| 1104 | } |
| 1105 | } |
| 1106 | |
| 1107 | ret = find_first_zero_bit(overflow_map, IB_UVERBS_MAX_DEVICES); |
| 1108 | if (ret >= IB_UVERBS_MAX_DEVICES) |
| 1109 | return -1; |
| 1110 | |
| 1111 | return ret; |
| 1112 | } |
| 1113 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1114 | static void ib_uverbs_add_one(struct ib_device *device) |
| 1115 | { |
Alexander Chiang | 3870798 | 2010-02-02 19:07:59 +0000 | [diff] [blame] | 1116 | int devnum; |
Alexander Chiang | ddbd688 | 2010-02-02 19:08:04 +0000 | [diff] [blame] | 1117 | dev_t base; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1118 | struct ib_uverbs_device *uverbs_dev; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1119 | int ret; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1120 | |
| 1121 | if (!device->alloc_ucontext) |
| 1122 | return; |
| 1123 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 1124 | uverbs_dev = kzalloc(sizeof *uverbs_dev, GFP_KERNEL); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1125 | if (!uverbs_dev) |
| 1126 | return; |
| 1127 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1128 | ret = init_srcu_struct(&uverbs_dev->disassociate_srcu); |
| 1129 | if (ret) { |
| 1130 | kfree(uverbs_dev); |
| 1131 | return; |
| 1132 | } |
| 1133 | |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1134 | atomic_set(&uverbs_dev->refcount, 1); |
Jack Morgenstein | fd60ae4 | 2006-08-03 10:56:42 -0700 | [diff] [blame] | 1135 | init_completion(&uverbs_dev->comp); |
Sean Hefty | 53d0bd1 | 2011-05-24 08:33:46 -0700 | [diff] [blame] | 1136 | uverbs_dev->xrcd_tree = RB_ROOT; |
| 1137 | mutex_init(&uverbs_dev->xrcd_tree_mutex); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1138 | kobject_init(&uverbs_dev->kobj, &ib_uverbs_dev_ktype); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1139 | mutex_init(&uverbs_dev->lists_mutex); |
| 1140 | INIT_LIST_HEAD(&uverbs_dev->uverbs_file_list); |
| 1141 | INIT_LIST_HEAD(&uverbs_dev->uverbs_events_file_list); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1142 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1143 | spin_lock(&map_lock); |
Alexander Chiang | 3870798 | 2010-02-02 19:07:59 +0000 | [diff] [blame] | 1144 | devnum = find_first_zero_bit(dev_map, IB_UVERBS_MAX_DEVICES); |
| 1145 | if (devnum >= IB_UVERBS_MAX_DEVICES) { |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1146 | spin_unlock(&map_lock); |
Alexander Chiang | 6d6a0e7 | 2010-02-02 19:08:09 +0000 | [diff] [blame] | 1147 | devnum = find_overflow_devnum(); |
| 1148 | if (devnum < 0) |
| 1149 | goto err; |
| 1150 | |
| 1151 | spin_lock(&map_lock); |
| 1152 | uverbs_dev->devnum = devnum + IB_UVERBS_MAX_DEVICES; |
| 1153 | base = devnum + overflow_maj; |
| 1154 | set_bit(devnum, overflow_map); |
| 1155 | } else { |
| 1156 | uverbs_dev->devnum = devnum; |
| 1157 | base = devnum + IB_UVERBS_BASE_DEV; |
| 1158 | set_bit(devnum, dev_map); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1159 | } |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1160 | spin_unlock(&map_lock); |
| 1161 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1162 | rcu_assign_pointer(uverbs_dev->ib_dev, device); |
Michael S. Tsirkin | f4fd0b2 | 2007-05-03 13:48:47 +0300 | [diff] [blame] | 1163 | uverbs_dev->num_comp_vectors = device->num_comp_vectors; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1164 | |
Alexander Chiang | 055422d | 2010-02-02 19:07:49 +0000 | [diff] [blame] | 1165 | cdev_init(&uverbs_dev->cdev, NULL); |
| 1166 | uverbs_dev->cdev.owner = THIS_MODULE; |
| 1167 | uverbs_dev->cdev.ops = device->mmap ? &uverbs_mmap_fops : &uverbs_fops; |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1168 | uverbs_dev->cdev.kobj.parent = &uverbs_dev->kobj; |
Alexander Chiang | 055422d | 2010-02-02 19:07:49 +0000 | [diff] [blame] | 1169 | kobject_set_name(&uverbs_dev->cdev.kobj, "uverbs%d", uverbs_dev->devnum); |
Alexander Chiang | ddbd688 | 2010-02-02 19:08:04 +0000 | [diff] [blame] | 1170 | if (cdev_add(&uverbs_dev->cdev, base, 1)) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1171 | goto err_cdev; |
| 1172 | |
Greg Kroah-Hartman | 91bd418 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 1173 | uverbs_dev->dev = device_create(uverbs_class, device->dma_device, |
Alexander Chiang | 055422d | 2010-02-02 19:07:49 +0000 | [diff] [blame] | 1174 | uverbs_dev->cdev.dev, uverbs_dev, |
Greg Kroah-Hartman | 91bd418 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 1175 | "uverbs%d", uverbs_dev->devnum); |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1176 | if (IS_ERR(uverbs_dev->dev)) |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1177 | goto err_cdev; |
| 1178 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1179 | if (device_create_file(uverbs_dev->dev, &dev_attr_ibdev)) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1180 | goto err_class; |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1181 | if (device_create_file(uverbs_dev->dev, &dev_attr_abi_version)) |
Roland Dreier | 274c089 | 2005-09-29 14:17:48 -0700 | [diff] [blame] | 1182 | goto err_class; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1183 | |
| 1184 | ib_set_client_data(device, &uverbs_client, uverbs_dev); |
| 1185 | |
| 1186 | return; |
| 1187 | |
| 1188 | err_class: |
Alexander Chiang | 055422d | 2010-02-02 19:07:49 +0000 | [diff] [blame] | 1189 | device_destroy(uverbs_class, uverbs_dev->cdev.dev); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1190 | |
| 1191 | err_cdev: |
Alexander Chiang | 055422d | 2010-02-02 19:07:49 +0000 | [diff] [blame] | 1192 | cdev_del(&uverbs_dev->cdev); |
Alexander Chiang | 6d6a0e7 | 2010-02-02 19:08:09 +0000 | [diff] [blame] | 1193 | if (uverbs_dev->devnum < IB_UVERBS_MAX_DEVICES) |
| 1194 | clear_bit(devnum, dev_map); |
| 1195 | else |
| 1196 | clear_bit(devnum, overflow_map); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1197 | |
| 1198 | err: |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1199 | if (atomic_dec_and_test(&uverbs_dev->refcount)) |
| 1200 | ib_uverbs_comp_dev(uverbs_dev); |
Jack Morgenstein | fd60ae4 | 2006-08-03 10:56:42 -0700 | [diff] [blame] | 1201 | wait_for_completion(&uverbs_dev->comp); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1202 | kobject_put(&uverbs_dev->kobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1203 | return; |
| 1204 | } |
| 1205 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1206 | static void ib_uverbs_free_hw_resources(struct ib_uverbs_device *uverbs_dev, |
| 1207 | struct ib_device *ib_dev) |
| 1208 | { |
| 1209 | struct ib_uverbs_file *file; |
| 1210 | struct ib_uverbs_event_file *event_file; |
| 1211 | struct ib_event event; |
| 1212 | |
| 1213 | /* Pending running commands to terminate */ |
| 1214 | synchronize_srcu(&uverbs_dev->disassociate_srcu); |
| 1215 | event.event = IB_EVENT_DEVICE_FATAL; |
| 1216 | event.element.port_num = 0; |
| 1217 | event.device = ib_dev; |
| 1218 | |
| 1219 | mutex_lock(&uverbs_dev->lists_mutex); |
| 1220 | while (!list_empty(&uverbs_dev->uverbs_file_list)) { |
| 1221 | struct ib_ucontext *ucontext; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1222 | file = list_first_entry(&uverbs_dev->uverbs_file_list, |
| 1223 | struct ib_uverbs_file, list); |
| 1224 | file->is_closed = 1; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1225 | list_del(&file->list); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1226 | kref_get(&file->ref); |
| 1227 | mutex_unlock(&uverbs_dev->lists_mutex); |
Jason Gunthorpe | d1e09f30 | 2016-07-03 15:28:18 +0300 | [diff] [blame] | 1228 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1229 | ib_uverbs_event_handler(&file->event_handler, &event); |
Jason Gunthorpe | d1e09f30 | 2016-07-03 15:28:18 +0300 | [diff] [blame] | 1230 | |
| 1231 | mutex_lock(&file->cleanup_mutex); |
| 1232 | ucontext = file->ucontext; |
| 1233 | file->ucontext = NULL; |
| 1234 | mutex_unlock(&file->cleanup_mutex); |
| 1235 | |
| 1236 | /* At this point ib_uverbs_close cannot be running |
| 1237 | * ib_uverbs_cleanup_ucontext |
| 1238 | */ |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1239 | if (ucontext) { |
Jason Gunthorpe | d1e09f30 | 2016-07-03 15:28:18 +0300 | [diff] [blame] | 1240 | /* We must release the mutex before going ahead and |
| 1241 | * calling disassociate_ucontext. disassociate_ucontext |
| 1242 | * might end up indirectly calling uverbs_close, |
| 1243 | * for example due to freeing the resources |
| 1244 | * (e.g mmput). |
| 1245 | */ |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1246 | ib_dev->disassociate_ucontext(ucontext); |
| 1247 | ib_uverbs_cleanup_ucontext(file, ucontext); |
| 1248 | } |
| 1249 | |
| 1250 | mutex_lock(&uverbs_dev->lists_mutex); |
| 1251 | kref_put(&file->ref, ib_uverbs_release_file); |
| 1252 | } |
| 1253 | |
| 1254 | while (!list_empty(&uverbs_dev->uverbs_events_file_list)) { |
| 1255 | event_file = list_first_entry(&uverbs_dev-> |
| 1256 | uverbs_events_file_list, |
| 1257 | struct ib_uverbs_event_file, |
| 1258 | list); |
| 1259 | spin_lock_irq(&event_file->lock); |
| 1260 | event_file->is_closed = 1; |
| 1261 | spin_unlock_irq(&event_file->lock); |
| 1262 | |
| 1263 | list_del(&event_file->list); |
| 1264 | if (event_file->is_async) { |
| 1265 | ib_unregister_event_handler(&event_file->uverbs_file-> |
| 1266 | event_handler); |
| 1267 | event_file->uverbs_file->event_handler.device = NULL; |
| 1268 | } |
| 1269 | |
| 1270 | wake_up_interruptible(&event_file->poll_wait); |
| 1271 | kill_fasync(&event_file->async_queue, SIGIO, POLL_IN); |
| 1272 | } |
| 1273 | mutex_unlock(&uverbs_dev->lists_mutex); |
| 1274 | } |
| 1275 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 1276 | static void ib_uverbs_remove_one(struct ib_device *device, void *client_data) |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1277 | { |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 1278 | struct ib_uverbs_device *uverbs_dev = client_data; |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1279 | int wait_clients = 1; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1280 | |
| 1281 | if (!uverbs_dev) |
| 1282 | return; |
| 1283 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1284 | dev_set_drvdata(uverbs_dev->dev, NULL); |
Alexander Chiang | 055422d | 2010-02-02 19:07:49 +0000 | [diff] [blame] | 1285 | device_destroy(uverbs_class, uverbs_dev->cdev.dev); |
| 1286 | cdev_del(&uverbs_dev->cdev); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1287 | |
Alexander Chiang | 6d6a0e7 | 2010-02-02 19:08:09 +0000 | [diff] [blame] | 1288 | if (uverbs_dev->devnum < IB_UVERBS_MAX_DEVICES) |
| 1289 | clear_bit(uverbs_dev->devnum, dev_map); |
| 1290 | else |
| 1291 | clear_bit(uverbs_dev->devnum - IB_UVERBS_MAX_DEVICES, overflow_map); |
Jack Morgenstein | fd60ae4 | 2006-08-03 10:56:42 -0700 | [diff] [blame] | 1292 | |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1293 | if (device->disassociate_ucontext) { |
| 1294 | /* We disassociate HW resources and immediately return. |
| 1295 | * Userspace will see a EIO errno for all future access. |
| 1296 | * Upon returning, ib_device may be freed internally and is not |
| 1297 | * valid any more. |
| 1298 | * uverbs_device is still available until all clients close |
| 1299 | * their files, then the uverbs device ref count will be zero |
| 1300 | * and its resources will be freed. |
| 1301 | * Note: At this point no more files can be opened since the |
| 1302 | * cdev was deleted, however active clients can still issue |
| 1303 | * commands and close their open files. |
| 1304 | */ |
| 1305 | rcu_assign_pointer(uverbs_dev->ib_dev, NULL); |
| 1306 | ib_uverbs_free_hw_resources(uverbs_dev, device); |
| 1307 | wait_clients = 0; |
| 1308 | } |
| 1309 | |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1310 | if (atomic_dec_and_test(&uverbs_dev->refcount)) |
| 1311 | ib_uverbs_comp_dev(uverbs_dev); |
Yishai Hadas | 036b106 | 2015-08-13 18:32:05 +0300 | [diff] [blame] | 1312 | if (wait_clients) |
| 1313 | wait_for_completion(&uverbs_dev->comp); |
Yishai Hadas | 35d4a0b | 2015-08-13 18:32:03 +0300 | [diff] [blame] | 1314 | kobject_put(&uverbs_dev->kobj); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1315 | } |
| 1316 | |
Al Viro | 2c9ede5 | 2011-07-23 20:24:48 -0400 | [diff] [blame] | 1317 | static char *uverbs_devnode(struct device *dev, umode_t *mode) |
Roland Dreier | 71c29bd | 2011-05-23 11:10:05 -0700 | [diff] [blame] | 1318 | { |
Goldwyn Rodrigues | b2bc4782 | 2011-07-04 09:26:57 -0700 | [diff] [blame] | 1319 | if (mode) |
| 1320 | *mode = 0666; |
Roland Dreier | 71c29bd | 2011-05-23 11:10:05 -0700 | [diff] [blame] | 1321 | return kasprintf(GFP_KERNEL, "infiniband/%s", dev_name(dev)); |
| 1322 | } |
| 1323 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1324 | static int __init ib_uverbs_init(void) |
| 1325 | { |
| 1326 | int ret; |
| 1327 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1328 | ret = register_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES, |
| 1329 | "infiniband_verbs"); |
| 1330 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1331 | pr_err("user_verbs: couldn't register device number\n"); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1332 | goto out; |
| 1333 | } |
| 1334 | |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1335 | uverbs_class = class_create(THIS_MODULE, "infiniband_verbs"); |
| 1336 | if (IS_ERR(uverbs_class)) { |
| 1337 | ret = PTR_ERR(uverbs_class); |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1338 | pr_err("user_verbs: couldn't create class infiniband_verbs\n"); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1339 | goto out_chrdev; |
| 1340 | } |
| 1341 | |
Roland Dreier | 71c29bd | 2011-05-23 11:10:05 -0700 | [diff] [blame] | 1342 | uverbs_class->devnode = uverbs_devnode; |
| 1343 | |
Andi Kleen | 0933e2d | 2010-01-05 12:48:09 +0100 | [diff] [blame] | 1344 | ret = class_create_file(uverbs_class, &class_attr_abi_version.attr); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1345 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1346 | pr_err("user_verbs: couldn't create abi_version attribute\n"); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1347 | goto out_class; |
| 1348 | } |
| 1349 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1350 | ret = ib_register_client(&uverbs_client); |
| 1351 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1352 | pr_err("user_verbs: couldn't register client\n"); |
Roland Dreier | a265e55 | 2010-02-24 16:51:20 -0800 | [diff] [blame] | 1353 | goto out_class; |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | return 0; |
| 1357 | |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1358 | out_class: |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1359 | class_destroy(uverbs_class); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1360 | |
| 1361 | out_chrdev: |
| 1362 | unregister_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES); |
| 1363 | |
| 1364 | out: |
| 1365 | return ret; |
| 1366 | } |
| 1367 | |
| 1368 | static void __exit ib_uverbs_cleanup(void) |
| 1369 | { |
| 1370 | ib_unregister_client(&uverbs_client); |
Roland Dreier | 70a30e1 | 2005-10-28 15:38:26 -0700 | [diff] [blame] | 1371 | class_destroy(uverbs_class); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1372 | unregister_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES); |
Alexander Chiang | 6d6a0e7 | 2010-02-02 19:08:09 +0000 | [diff] [blame] | 1373 | if (overflow_maj) |
| 1374 | unregister_chrdev_region(overflow_maj, IB_UVERBS_MAX_DEVICES); |
Roland Dreier | 5d7edb3 | 2005-10-24 10:53:25 -0700 | [diff] [blame] | 1375 | idr_destroy(&ib_uverbs_pd_idr); |
| 1376 | idr_destroy(&ib_uverbs_mr_idr); |
| 1377 | idr_destroy(&ib_uverbs_mw_idr); |
| 1378 | idr_destroy(&ib_uverbs_ah_idr); |
| 1379 | idr_destroy(&ib_uverbs_cq_idr); |
| 1380 | idr_destroy(&ib_uverbs_qp_idr); |
| 1381 | idr_destroy(&ib_uverbs_srq_idr); |
Roland Dreier | bc38a6a | 2005-07-07 17:57:13 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | module_init(ib_uverbs_init); |
| 1385 | module_exit(ib_uverbs_cleanup); |