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