Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2005 Topspin Communications. All rights reserved. |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 3 | * Copyright (c) 2005 Intel Corporation. All rights reserved. |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software is available to you under a choice of one of two |
| 6 | * licenses. You may choose to be licensed under the terms of the GNU |
| 7 | * General Public License (GPL) Version 2, available from the file |
| 8 | * COPYING in the main directory of this source tree, or the |
| 9 | * OpenIB.org BSD license below: |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or |
| 12 | * without modification, are permitted provided that the following |
| 13 | * conditions are met: |
| 14 | * |
| 15 | * - Redistributions of source code must retain the above |
| 16 | * copyright notice, this list of conditions and the following |
| 17 | * disclaimer. |
| 18 | * |
| 19 | * - Redistributions in binary form must reproduce the above |
| 20 | * copyright notice, this list of conditions and the following |
| 21 | * disclaimer in the documentation and/or other materials |
| 22 | * provided with the distribution. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 25 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 26 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 27 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 28 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 29 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 30 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 31 | * SOFTWARE. |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 32 | */ |
Sean Hefty | 1b52fa98 | 2006-05-12 14:57:52 -0700 | [diff] [blame] | 33 | |
| 34 | #include <linux/completion.h> |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 35 | #include <linux/init.h> |
| 36 | #include <linux/fs.h> |
| 37 | #include <linux/module.h> |
| 38 | #include <linux/device.h> |
| 39 | #include <linux/err.h> |
| 40 | #include <linux/poll.h> |
Alexey Dobriyan | a99bbaf | 2009-10-04 16:11:37 +0400 | [diff] [blame] | 41 | #include <linux/sched.h> |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 42 | #include <linux/file.h> |
| 43 | #include <linux/mount.h> |
| 44 | #include <linux/cdev.h> |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 45 | #include <linux/idr.h> |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 46 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 47 | #include <linux/slab.h> |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -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> |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 52 | #include <rdma/ib_cm.h> |
| 53 | #include <rdma/ib_user_cm.h> |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 54 | #include <rdma/ib_marshall.h> |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 55 | |
| 56 | MODULE_AUTHOR("Libor Michalek"); |
| 57 | MODULE_DESCRIPTION("InfiniBand userspace Connection Manager access"); |
| 58 | MODULE_LICENSE("Dual BSD/GPL"); |
| 59 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 60 | struct ib_ucm_device { |
| 61 | int devnum; |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 62 | struct cdev cdev; |
| 63 | struct device dev; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 64 | struct ib_device *ib_dev; |
| 65 | }; |
| 66 | |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 67 | struct ib_ucm_file { |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 68 | struct mutex file_mutex; |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 69 | struct file *filp; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 70 | struct ib_ucm_device *device; |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 71 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 72 | struct list_head ctxs; |
| 73 | struct list_head events; |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 74 | wait_queue_head_t poll_wait; |
| 75 | }; |
| 76 | |
| 77 | struct ib_ucm_context { |
| 78 | int id; |
Sean Hefty | 1b52fa98 | 2006-05-12 14:57:52 -0700 | [diff] [blame] | 79 | struct completion comp; |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 80 | atomic_t ref; |
| 81 | int events_reported; |
| 82 | |
| 83 | struct ib_ucm_file *file; |
| 84 | struct ib_cm_id *cm_id; |
| 85 | __u64 uid; |
| 86 | |
| 87 | struct list_head events; /* list of pending events. */ |
| 88 | struct list_head file_list; /* member in file ctx list */ |
| 89 | }; |
| 90 | |
| 91 | struct ib_ucm_event { |
| 92 | struct ib_ucm_context *ctx; |
| 93 | struct list_head file_list; /* member in file event list */ |
| 94 | struct list_head ctx_list; /* member in ctx event list */ |
| 95 | |
| 96 | struct ib_cm_id *cm_id; |
| 97 | struct ib_ucm_event_resp resp; |
| 98 | void *data; |
| 99 | void *info; |
| 100 | int data_len; |
| 101 | int info_len; |
| 102 | }; |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 103 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 104 | enum { |
| 105 | IB_UCM_MAJOR = 231, |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 106 | IB_UCM_BASE_MINOR = 224, |
| 107 | IB_UCM_MAX_DEVICES = 32 |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 110 | #define IB_UCM_BASE_DEV MKDEV(IB_UCM_MAJOR, IB_UCM_BASE_MINOR) |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 111 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 112 | static void ib_ucm_add_one(struct ib_device *device); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 113 | static void ib_ucm_remove_one(struct ib_device *device, void *client_data); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 114 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 115 | static struct ib_client ucm_client = { |
| 116 | .name = "ucm", |
| 117 | .add = ib_ucm_add_one, |
| 118 | .remove = ib_ucm_remove_one |
| 119 | }; |
| 120 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 121 | static DEFINE_MUTEX(ctx_id_mutex); |
Roland Dreier | 762a03e | 2005-10-17 15:38:50 -0700 | [diff] [blame] | 122 | static DEFINE_IDR(ctx_id_table); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 123 | static DECLARE_BITMAP(dev_map, IB_UCM_MAX_DEVICES); |
Sean Hefty | 595e726 | 2005-10-17 15:33:47 -0700 | [diff] [blame] | 124 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 125 | static struct ib_ucm_context *ib_ucm_ctx_get(struct ib_ucm_file *file, int id) |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 126 | { |
| 127 | struct ib_ucm_context *ctx; |
| 128 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 129 | mutex_lock(&ctx_id_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 130 | ctx = idr_find(&ctx_id_table, id); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 131 | if (!ctx) |
| 132 | ctx = ERR_PTR(-ENOENT); |
| 133 | else if (ctx->file != file) |
| 134 | ctx = ERR_PTR(-EINVAL); |
| 135 | else |
| 136 | atomic_inc(&ctx->ref); |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 137 | mutex_unlock(&ctx_id_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 138 | |
| 139 | return ctx; |
| 140 | } |
| 141 | |
| 142 | static void ib_ucm_ctx_put(struct ib_ucm_context *ctx) |
| 143 | { |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 144 | if (atomic_dec_and_test(&ctx->ref)) |
Sean Hefty | 1b52fa98 | 2006-05-12 14:57:52 -0700 | [diff] [blame] | 145 | complete(&ctx->comp); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 148 | static inline int ib_ucm_new_cm_id(int event) |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 149 | { |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 150 | return event == IB_CM_REQ_RECEIVED || event == IB_CM_SIDR_REQ_RECEIVED; |
| 151 | } |
| 152 | |
| 153 | static void ib_ucm_cleanup_events(struct ib_ucm_context *ctx) |
| 154 | { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 155 | struct ib_ucm_event *uevent; |
| 156 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 157 | mutex_lock(&ctx->file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 158 | list_del(&ctx->file_list); |
| 159 | while (!list_empty(&ctx->events)) { |
| 160 | |
| 161 | uevent = list_entry(ctx->events.next, |
| 162 | struct ib_ucm_event, ctx_list); |
| 163 | list_del(&uevent->file_list); |
| 164 | list_del(&uevent->ctx_list); |
Michael S. Tsirkin | f469b26 | 2006-11-29 15:33:10 -0800 | [diff] [blame] | 165 | mutex_unlock(&ctx->file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 166 | |
| 167 | /* clear incoming connections. */ |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 168 | if (ib_ucm_new_cm_id(uevent->resp.event)) |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 169 | ib_destroy_cm_id(uevent->cm_id); |
| 170 | |
| 171 | kfree(uevent); |
Michael S. Tsirkin | f469b26 | 2006-11-29 15:33:10 -0800 | [diff] [blame] | 172 | mutex_lock(&ctx->file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 173 | } |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 174 | mutex_unlock(&ctx->file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | static struct ib_ucm_context *ib_ucm_ctx_alloc(struct ib_ucm_file *file) |
| 178 | { |
| 179 | struct ib_ucm_context *ctx; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 180 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 181 | ctx = kzalloc(sizeof *ctx, GFP_KERNEL); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 182 | if (!ctx) |
| 183 | return NULL; |
| 184 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 185 | atomic_set(&ctx->ref, 1); |
Sean Hefty | 1b52fa98 | 2006-05-12 14:57:52 -0700 | [diff] [blame] | 186 | init_completion(&ctx->comp); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 187 | ctx->file = file; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 188 | INIT_LIST_HEAD(&ctx->events); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 189 | |
Tejun Heo | 3b069c5 | 2013-02-27 17:04:16 -0800 | [diff] [blame] | 190 | mutex_lock(&ctx_id_mutex); |
| 191 | ctx->id = idr_alloc(&ctx_id_table, ctx, 0, 0, GFP_KERNEL); |
| 192 | mutex_unlock(&ctx_id_mutex); |
| 193 | if (ctx->id < 0) |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 194 | goto error; |
| 195 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 196 | list_add_tail(&ctx->file_list, &file->ctxs); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 197 | return ctx; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 198 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 199 | error: |
| 200 | kfree(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 201 | return NULL; |
| 202 | } |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 203 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 204 | static void ib_ucm_event_req_get(struct ib_ucm_req_event_resp *ureq, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 205 | struct ib_cm_req_event_param *kreq) |
| 206 | { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 207 | ureq->remote_ca_guid = kreq->remote_ca_guid; |
| 208 | ureq->remote_qkey = kreq->remote_qkey; |
| 209 | ureq->remote_qpn = kreq->remote_qpn; |
| 210 | ureq->qp_type = kreq->qp_type; |
| 211 | ureq->starting_psn = kreq->starting_psn; |
| 212 | ureq->responder_resources = kreq->responder_resources; |
| 213 | ureq->initiator_depth = kreq->initiator_depth; |
| 214 | ureq->local_cm_response_timeout = kreq->local_cm_response_timeout; |
| 215 | ureq->flow_control = kreq->flow_control; |
| 216 | ureq->remote_cm_response_timeout = kreq->remote_cm_response_timeout; |
| 217 | ureq->retry_count = kreq->retry_count; |
| 218 | ureq->rnr_retry_count = kreq->rnr_retry_count; |
| 219 | ureq->srq = kreq->srq; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 220 | ureq->port = kreq->port; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 221 | |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 222 | ib_copy_path_rec_to_user(&ureq->primary_path, kreq->primary_path); |
| 223 | if (kreq->alternate_path) |
| 224 | ib_copy_path_rec_to_user(&ureq->alternate_path, |
| 225 | kreq->alternate_path); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | static void ib_ucm_event_rep_get(struct ib_ucm_rep_event_resp *urep, |
| 229 | struct ib_cm_rep_event_param *krep) |
| 230 | { |
| 231 | urep->remote_ca_guid = krep->remote_ca_guid; |
| 232 | urep->remote_qkey = krep->remote_qkey; |
| 233 | urep->remote_qpn = krep->remote_qpn; |
| 234 | urep->starting_psn = krep->starting_psn; |
| 235 | urep->responder_resources = krep->responder_resources; |
| 236 | urep->initiator_depth = krep->initiator_depth; |
| 237 | urep->target_ack_delay = krep->target_ack_delay; |
| 238 | urep->failover_accepted = krep->failover_accepted; |
| 239 | urep->flow_control = krep->flow_control; |
| 240 | urep->rnr_retry_count = krep->rnr_retry_count; |
| 241 | urep->srq = krep->srq; |
| 242 | } |
| 243 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 244 | static void ib_ucm_event_sidr_rep_get(struct ib_ucm_sidr_rep_event_resp *urep, |
| 245 | struct ib_cm_sidr_rep_event_param *krep) |
| 246 | { |
| 247 | urep->status = krep->status; |
| 248 | urep->qkey = krep->qkey; |
| 249 | urep->qpn = krep->qpn; |
| 250 | }; |
| 251 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 252 | static int ib_ucm_event_process(struct ib_cm_event *evt, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 253 | struct ib_ucm_event *uvt) |
| 254 | { |
| 255 | void *info = NULL; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 256 | |
| 257 | switch (evt->event) { |
| 258 | case IB_CM_REQ_RECEIVED: |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 259 | ib_ucm_event_req_get(&uvt->resp.u.req_resp, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 260 | &evt->param.req_rcvd); |
| 261 | uvt->data_len = IB_CM_REQ_PRIVATE_DATA_SIZE; |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 262 | uvt->resp.present = IB_UCM_PRES_PRIMARY; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 263 | uvt->resp.present |= (evt->param.req_rcvd.alternate_path ? |
| 264 | IB_UCM_PRES_ALTERNATE : 0); |
| 265 | break; |
| 266 | case IB_CM_REP_RECEIVED: |
| 267 | ib_ucm_event_rep_get(&uvt->resp.u.rep_resp, |
| 268 | &evt->param.rep_rcvd); |
| 269 | uvt->data_len = IB_CM_REP_PRIVATE_DATA_SIZE; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 270 | break; |
| 271 | case IB_CM_RTU_RECEIVED: |
| 272 | uvt->data_len = IB_CM_RTU_PRIVATE_DATA_SIZE; |
| 273 | uvt->resp.u.send_status = evt->param.send_status; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 274 | break; |
| 275 | case IB_CM_DREQ_RECEIVED: |
| 276 | uvt->data_len = IB_CM_DREQ_PRIVATE_DATA_SIZE; |
| 277 | uvt->resp.u.send_status = evt->param.send_status; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 278 | break; |
| 279 | case IB_CM_DREP_RECEIVED: |
| 280 | uvt->data_len = IB_CM_DREP_PRIVATE_DATA_SIZE; |
| 281 | uvt->resp.u.send_status = evt->param.send_status; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 282 | break; |
| 283 | case IB_CM_MRA_RECEIVED: |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 284 | uvt->resp.u.mra_resp.timeout = |
| 285 | evt->param.mra_rcvd.service_timeout; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 286 | uvt->data_len = IB_CM_MRA_PRIVATE_DATA_SIZE; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 287 | break; |
| 288 | case IB_CM_REJ_RECEIVED: |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 289 | uvt->resp.u.rej_resp.reason = evt->param.rej_rcvd.reason; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 290 | uvt->data_len = IB_CM_REJ_PRIVATE_DATA_SIZE; |
| 291 | uvt->info_len = evt->param.rej_rcvd.ari_length; |
| 292 | info = evt->param.rej_rcvd.ari; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 293 | break; |
| 294 | case IB_CM_LAP_RECEIVED: |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 295 | ib_copy_path_rec_to_user(&uvt->resp.u.lap_resp.path, |
| 296 | evt->param.lap_rcvd.alternate_path); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 297 | uvt->data_len = IB_CM_LAP_PRIVATE_DATA_SIZE; |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 298 | uvt->resp.present = IB_UCM_PRES_ALTERNATE; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 299 | break; |
| 300 | case IB_CM_APR_RECEIVED: |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 301 | uvt->resp.u.apr_resp.status = evt->param.apr_rcvd.ap_status; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 302 | uvt->data_len = IB_CM_APR_PRIVATE_DATA_SIZE; |
| 303 | uvt->info_len = evt->param.apr_rcvd.info_len; |
| 304 | info = evt->param.apr_rcvd.apr_info; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 305 | break; |
| 306 | case IB_CM_SIDR_REQ_RECEIVED: |
Roland Dreier | 3cd9656 | 2006-09-22 15:22:46 -0700 | [diff] [blame] | 307 | uvt->resp.u.sidr_req_resp.pkey = |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 308 | evt->param.sidr_req_rcvd.pkey; |
Roland Dreier | 3cd9656 | 2006-09-22 15:22:46 -0700 | [diff] [blame] | 309 | uvt->resp.u.sidr_req_resp.port = |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 310 | evt->param.sidr_req_rcvd.port; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 311 | uvt->data_len = IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 312 | break; |
| 313 | case IB_CM_SIDR_REP_RECEIVED: |
| 314 | ib_ucm_event_sidr_rep_get(&uvt->resp.u.sidr_rep_resp, |
| 315 | &evt->param.sidr_rep_rcvd); |
| 316 | uvt->data_len = IB_CM_SIDR_REP_PRIVATE_DATA_SIZE; |
| 317 | uvt->info_len = evt->param.sidr_rep_rcvd.info_len; |
| 318 | info = evt->param.sidr_rep_rcvd.info; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 319 | break; |
| 320 | default: |
| 321 | uvt->resp.u.send_status = evt->param.send_status; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 322 | break; |
| 323 | } |
| 324 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 325 | if (uvt->data_len) { |
Eric Sesterhenn | bed8bdf | 2006-10-23 22:17:21 +0200 | [diff] [blame] | 326 | uvt->data = kmemdup(evt->private_data, uvt->data_len, GFP_KERNEL); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 327 | if (!uvt->data) |
| 328 | goto err1; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 329 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 330 | uvt->resp.present |= IB_UCM_PRES_DATA; |
| 331 | } |
| 332 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 333 | if (uvt->info_len) { |
Eric Sesterhenn | bed8bdf | 2006-10-23 22:17:21 +0200 | [diff] [blame] | 334 | uvt->info = kmemdup(info, uvt->info_len, GFP_KERNEL); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 335 | if (!uvt->info) |
| 336 | goto err2; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 337 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 338 | uvt->resp.present |= IB_UCM_PRES_INFO; |
| 339 | } |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 340 | return 0; |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 341 | |
| 342 | err2: |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 343 | kfree(uvt->data); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 344 | err1: |
| 345 | return -ENOMEM; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | static int ib_ucm_event_handler(struct ib_cm_id *cm_id, |
| 349 | struct ib_cm_event *event) |
| 350 | { |
| 351 | struct ib_ucm_event *uevent; |
| 352 | struct ib_ucm_context *ctx; |
| 353 | int result = 0; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 354 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 355 | ctx = cm_id->context; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 356 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 357 | uevent = kzalloc(sizeof *uevent, GFP_KERNEL); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 358 | if (!uevent) |
| 359 | goto err1; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 360 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 361 | uevent->ctx = ctx; |
| 362 | uevent->cm_id = cm_id; |
| 363 | uevent->resp.uid = ctx->uid; |
| 364 | uevent->resp.id = ctx->id; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 365 | uevent->resp.event = event->event; |
| 366 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 367 | result = ib_ucm_event_process(event, uevent); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 368 | if (result) |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 369 | goto err2; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 370 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 371 | mutex_lock(&ctx->file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 372 | list_add_tail(&uevent->file_list, &ctx->file->events); |
| 373 | list_add_tail(&uevent->ctx_list, &ctx->events); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 374 | wake_up_interruptible(&ctx->file->poll_wait); |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 375 | mutex_unlock(&ctx->file->file_mutex); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 376 | return 0; |
| 377 | |
| 378 | err2: |
| 379 | kfree(uevent); |
| 380 | err1: |
| 381 | /* Destroy new cm_id's */ |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 382 | return ib_ucm_new_cm_id(event->event); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | static ssize_t ib_ucm_event(struct ib_ucm_file *file, |
| 386 | const char __user *inbuf, |
| 387 | int in_len, int out_len) |
| 388 | { |
| 389 | struct ib_ucm_context *ctx; |
| 390 | struct ib_ucm_event_get cmd; |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 391 | struct ib_ucm_event *uevent; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 392 | int result = 0; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 393 | |
| 394 | if (out_len < sizeof(struct ib_ucm_event_resp)) |
| 395 | return -ENOSPC; |
| 396 | |
| 397 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 398 | return -EFAULT; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 399 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 400 | mutex_lock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 401 | while (list_empty(&file->events)) { |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 402 | mutex_unlock(&file->file_mutex); |
Sean Hefty | 9d41b7f | 2007-04-05 10:51:05 -0700 | [diff] [blame] | 403 | |
| 404 | if (file->filp->f_flags & O_NONBLOCK) |
| 405 | return -EAGAIN; |
| 406 | |
| 407 | if (wait_event_interruptible(file->poll_wait, |
| 408 | !list_empty(&file->events))) |
| 409 | return -ERESTARTSYS; |
| 410 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 411 | mutex_lock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 414 | uevent = list_entry(file->events.next, struct ib_ucm_event, file_list); |
| 415 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 416 | if (ib_ucm_new_cm_id(uevent->resp.event)) { |
| 417 | ctx = ib_ucm_ctx_alloc(file); |
| 418 | if (!ctx) { |
| 419 | result = -ENOMEM; |
| 420 | goto done; |
| 421 | } |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 422 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 423 | ctx->cm_id = uevent->cm_id; |
| 424 | ctx->cm_id->context = ctx; |
| 425 | uevent->resp.id = ctx->id; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 426 | } |
| 427 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 428 | if (copy_to_user((void __user *)(unsigned long)cmd.response, |
| 429 | &uevent->resp, sizeof(uevent->resp))) { |
| 430 | result = -EFAULT; |
| 431 | goto done; |
| 432 | } |
| 433 | |
| 434 | if (uevent->data) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 435 | if (cmd.data_len < uevent->data_len) { |
| 436 | result = -ENOMEM; |
| 437 | goto done; |
| 438 | } |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 439 | if (copy_to_user((void __user *)(unsigned long)cmd.data, |
| 440 | uevent->data, uevent->data_len)) { |
| 441 | result = -EFAULT; |
| 442 | goto done; |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | if (uevent->info) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 447 | if (cmd.info_len < uevent->info_len) { |
| 448 | result = -ENOMEM; |
| 449 | goto done; |
| 450 | } |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 451 | if (copy_to_user((void __user *)(unsigned long)cmd.info, |
| 452 | uevent->info, uevent->info_len)) { |
| 453 | result = -EFAULT; |
| 454 | goto done; |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | list_del(&uevent->file_list); |
| 459 | list_del(&uevent->ctx_list); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 460 | uevent->ctx->events_reported++; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 461 | |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 462 | kfree(uevent->data); |
| 463 | kfree(uevent->info); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 464 | kfree(uevent); |
| 465 | done: |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 466 | mutex_unlock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 467 | return result; |
| 468 | } |
| 469 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 470 | static ssize_t ib_ucm_create_id(struct ib_ucm_file *file, |
| 471 | const char __user *inbuf, |
| 472 | int in_len, int out_len) |
| 473 | { |
| 474 | struct ib_ucm_create_id cmd; |
| 475 | struct ib_ucm_create_id_resp resp; |
| 476 | struct ib_ucm_context *ctx; |
| 477 | int result; |
| 478 | |
| 479 | if (out_len < sizeof(resp)) |
| 480 | return -ENOSPC; |
| 481 | |
| 482 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 483 | return -EFAULT; |
| 484 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 485 | mutex_lock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 486 | ctx = ib_ucm_ctx_alloc(file); |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 487 | mutex_unlock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 488 | if (!ctx) |
| 489 | return -ENOMEM; |
| 490 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 491 | ctx->uid = cmd.uid; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 492 | ctx->cm_id = ib_create_cm_id(file->device->ib_dev, |
| 493 | ib_ucm_event_handler, ctx); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 494 | if (IS_ERR(ctx->cm_id)) { |
| 495 | result = PTR_ERR(ctx->cm_id); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 496 | goto err1; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | resp.id = ctx->id; |
| 500 | if (copy_to_user((void __user *)(unsigned long)cmd.response, |
| 501 | &resp, sizeof(resp))) { |
| 502 | result = -EFAULT; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 503 | goto err2; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 504 | } |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 505 | return 0; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 506 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 507 | err2: |
| 508 | ib_destroy_cm_id(ctx->cm_id); |
| 509 | err1: |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 510 | mutex_lock(&ctx_id_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 511 | idr_remove(&ctx_id_table, ctx->id); |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 512 | mutex_unlock(&ctx_id_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 513 | kfree(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 514 | return result; |
| 515 | } |
| 516 | |
| 517 | static ssize_t ib_ucm_destroy_id(struct ib_ucm_file *file, |
| 518 | const char __user *inbuf, |
| 519 | int in_len, int out_len) |
| 520 | { |
| 521 | struct ib_ucm_destroy_id cmd; |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 522 | struct ib_ucm_destroy_id_resp resp; |
| 523 | struct ib_ucm_context *ctx; |
| 524 | int result = 0; |
| 525 | |
| 526 | if (out_len < sizeof(resp)) |
| 527 | return -ENOSPC; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 528 | |
| 529 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 530 | return -EFAULT; |
| 531 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 532 | mutex_lock(&ctx_id_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 533 | ctx = idr_find(&ctx_id_table, cmd.id); |
| 534 | if (!ctx) |
| 535 | ctx = ERR_PTR(-ENOENT); |
| 536 | else if (ctx->file != file) |
| 537 | ctx = ERR_PTR(-EINVAL); |
| 538 | else |
| 539 | idr_remove(&ctx_id_table, ctx->id); |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 540 | mutex_unlock(&ctx_id_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 541 | |
| 542 | if (IS_ERR(ctx)) |
| 543 | return PTR_ERR(ctx); |
| 544 | |
Sean Hefty | 1b52fa98 | 2006-05-12 14:57:52 -0700 | [diff] [blame] | 545 | ib_ucm_ctx_put(ctx); |
| 546 | wait_for_completion(&ctx->comp); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 547 | |
| 548 | /* No new events will be generated after destroying the cm_id. */ |
| 549 | ib_destroy_cm_id(ctx->cm_id); |
| 550 | /* Cleanup events not yet reported to the user. */ |
| 551 | ib_ucm_cleanup_events(ctx); |
| 552 | |
| 553 | resp.events_reported = ctx->events_reported; |
| 554 | if (copy_to_user((void __user *)(unsigned long)cmd.response, |
| 555 | &resp, sizeof(resp))) |
| 556 | result = -EFAULT; |
| 557 | |
| 558 | kfree(ctx); |
| 559 | return result; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | static ssize_t ib_ucm_attr_id(struct ib_ucm_file *file, |
| 563 | const char __user *inbuf, |
| 564 | int in_len, int out_len) |
| 565 | { |
| 566 | struct ib_ucm_attr_id_resp resp; |
| 567 | struct ib_ucm_attr_id cmd; |
| 568 | struct ib_ucm_context *ctx; |
| 569 | int result = 0; |
| 570 | |
| 571 | if (out_len < sizeof(resp)) |
| 572 | return -ENOSPC; |
| 573 | |
| 574 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 575 | return -EFAULT; |
| 576 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 577 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 578 | if (IS_ERR(ctx)) |
| 579 | return PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 580 | |
| 581 | resp.service_id = ctx->cm_id->service_id; |
| 582 | resp.service_mask = ctx->cm_id->service_mask; |
| 583 | resp.local_id = ctx->cm_id->local_id; |
| 584 | resp.remote_id = ctx->cm_id->remote_id; |
| 585 | |
| 586 | if (copy_to_user((void __user *)(unsigned long)cmd.response, |
| 587 | &resp, sizeof(resp))) |
| 588 | result = -EFAULT; |
| 589 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 590 | ib_ucm_ctx_put(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 591 | return result; |
| 592 | } |
| 593 | |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 594 | static ssize_t ib_ucm_init_qp_attr(struct ib_ucm_file *file, |
| 595 | const char __user *inbuf, |
| 596 | int in_len, int out_len) |
| 597 | { |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 598 | struct ib_uverbs_qp_attr resp; |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 599 | struct ib_ucm_init_qp_attr cmd; |
| 600 | struct ib_ucm_context *ctx; |
| 601 | struct ib_qp_attr qp_attr; |
| 602 | int result = 0; |
| 603 | |
| 604 | if (out_len < sizeof(resp)) |
| 605 | return -ENOSPC; |
| 606 | |
| 607 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 608 | return -EFAULT; |
| 609 | |
| 610 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 611 | if (IS_ERR(ctx)) |
| 612 | return PTR_ERR(ctx); |
| 613 | |
| 614 | resp.qp_attr_mask = 0; |
| 615 | memset(&qp_attr, 0, sizeof qp_attr); |
| 616 | qp_attr.qp_state = cmd.qp_state; |
| 617 | result = ib_cm_init_qp_attr(ctx->cm_id, &qp_attr, &resp.qp_attr_mask); |
| 618 | if (result) |
| 619 | goto out; |
| 620 | |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 621 | ib_copy_qp_attr_to_user(&resp, &qp_attr); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 622 | |
| 623 | if (copy_to_user((void __user *)(unsigned long)cmd.response, |
| 624 | &resp, sizeof(resp))) |
| 625 | result = -EFAULT; |
| 626 | |
| 627 | out: |
| 628 | ib_ucm_ctx_put(ctx); |
| 629 | return result; |
| 630 | } |
| 631 | |
Sean Hefty | 6e61d04 | 2006-06-17 20:37:28 -0700 | [diff] [blame] | 632 | static int ucm_validate_listen(__be64 service_id, __be64 service_mask) |
| 633 | { |
| 634 | service_id &= service_mask; |
| 635 | |
| 636 | if (((service_id & IB_CMA_SERVICE_ID_MASK) == IB_CMA_SERVICE_ID) || |
| 637 | ((service_id & IB_SDP_SERVICE_ID_MASK) == IB_SDP_SERVICE_ID)) |
| 638 | return -EINVAL; |
| 639 | |
| 640 | return 0; |
| 641 | } |
| 642 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 643 | static ssize_t ib_ucm_listen(struct ib_ucm_file *file, |
| 644 | const char __user *inbuf, |
| 645 | int in_len, int out_len) |
| 646 | { |
| 647 | struct ib_ucm_listen cmd; |
| 648 | struct ib_ucm_context *ctx; |
| 649 | int result; |
| 650 | |
| 651 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 652 | return -EFAULT; |
| 653 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 654 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 655 | if (IS_ERR(ctx)) |
| 656 | return PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 657 | |
Sean Hefty | 6e61d04 | 2006-06-17 20:37:28 -0700 | [diff] [blame] | 658 | result = ucm_validate_listen(cmd.service_id, cmd.service_mask); |
| 659 | if (result) |
| 660 | goto out; |
| 661 | |
Haggai Eran | 73fec7f | 2015-07-30 17:50:26 +0300 | [diff] [blame] | 662 | result = ib_cm_listen(ctx->cm_id, cmd.service_id, cmd.service_mask); |
Sean Hefty | 6e61d04 | 2006-06-17 20:37:28 -0700 | [diff] [blame] | 663 | out: |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 664 | ib_ucm_ctx_put(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 665 | return result; |
| 666 | } |
| 667 | |
Sean Hefty | e1444b5 | 2006-11-28 14:57:13 -0800 | [diff] [blame] | 668 | static ssize_t ib_ucm_notify(struct ib_ucm_file *file, |
| 669 | const char __user *inbuf, |
| 670 | int in_len, int out_len) |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 671 | { |
Sean Hefty | e1444b5 | 2006-11-28 14:57:13 -0800 | [diff] [blame] | 672 | struct ib_ucm_notify cmd; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 673 | struct ib_ucm_context *ctx; |
| 674 | int result; |
| 675 | |
| 676 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 677 | return -EFAULT; |
| 678 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 679 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 680 | if (IS_ERR(ctx)) |
| 681 | return PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 682 | |
Sean Hefty | e1444b5 | 2006-11-28 14:57:13 -0800 | [diff] [blame] | 683 | result = ib_cm_notify(ctx->cm_id, (enum ib_event_type) cmd.event); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 684 | ib_ucm_ctx_put(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 685 | return result; |
| 686 | } |
| 687 | |
| 688 | static int ib_ucm_alloc_data(const void **dest, u64 src, u32 len) |
| 689 | { |
| 690 | void *data; |
| 691 | |
| 692 | *dest = NULL; |
| 693 | |
| 694 | if (!len) |
| 695 | return 0; |
| 696 | |
Julia Lawall | e642df6 | 2010-05-22 10:21:27 +0200 | [diff] [blame] | 697 | data = memdup_user((void __user *)(unsigned long)src, len); |
| 698 | if (IS_ERR(data)) |
| 699 | return PTR_ERR(data); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 700 | |
| 701 | *dest = data; |
| 702 | return 0; |
| 703 | } |
| 704 | |
| 705 | static int ib_ucm_path_get(struct ib_sa_path_rec **path, u64 src) |
| 706 | { |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 707 | struct ib_user_path_rec upath; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 708 | struct ib_sa_path_rec *sa_path; |
| 709 | |
| 710 | *path = NULL; |
| 711 | |
| 712 | if (!src) |
| 713 | return 0; |
| 714 | |
| 715 | sa_path = kmalloc(sizeof(*sa_path), GFP_KERNEL); |
| 716 | if (!sa_path) |
| 717 | return -ENOMEM; |
| 718 | |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 719 | if (copy_from_user(&upath, (void __user *)(unsigned long)src, |
| 720 | sizeof(upath))) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 721 | |
| 722 | kfree(sa_path); |
| 723 | return -EFAULT; |
| 724 | } |
| 725 | |
Sean Hefty | 6a9af2e | 2006-06-17 20:37:27 -0700 | [diff] [blame] | 726 | ib_copy_path_rec_from_user(sa_path, &upath); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 727 | *path = sa_path; |
| 728 | return 0; |
| 729 | } |
| 730 | |
| 731 | static ssize_t ib_ucm_send_req(struct ib_ucm_file *file, |
| 732 | const char __user *inbuf, |
| 733 | int in_len, int out_len) |
| 734 | { |
| 735 | struct ib_cm_req_param param; |
| 736 | struct ib_ucm_context *ctx; |
| 737 | struct ib_ucm_req cmd; |
| 738 | int result; |
| 739 | |
| 740 | param.private_data = NULL; |
| 741 | param.primary_path = NULL; |
| 742 | param.alternate_path = NULL; |
| 743 | |
| 744 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 745 | return -EFAULT; |
| 746 | |
| 747 | result = ib_ucm_alloc_data(¶m.private_data, cmd.data, cmd.len); |
| 748 | if (result) |
| 749 | goto done; |
| 750 | |
| 751 | result = ib_ucm_path_get(¶m.primary_path, cmd.primary_path); |
| 752 | if (result) |
| 753 | goto done; |
| 754 | |
| 755 | result = ib_ucm_path_get(¶m.alternate_path, cmd.alternate_path); |
| 756 | if (result) |
| 757 | goto done; |
| 758 | |
| 759 | param.private_data_len = cmd.len; |
| 760 | param.service_id = cmd.sid; |
| 761 | param.qp_num = cmd.qpn; |
| 762 | param.qp_type = cmd.qp_type; |
| 763 | param.starting_psn = cmd.psn; |
| 764 | param.peer_to_peer = cmd.peer_to_peer; |
| 765 | param.responder_resources = cmd.responder_resources; |
| 766 | param.initiator_depth = cmd.initiator_depth; |
| 767 | param.remote_cm_response_timeout = cmd.remote_cm_response_timeout; |
| 768 | param.flow_control = cmd.flow_control; |
| 769 | param.local_cm_response_timeout = cmd.local_cm_response_timeout; |
| 770 | param.retry_count = cmd.retry_count; |
| 771 | param.rnr_retry_count = cmd.rnr_retry_count; |
| 772 | param.max_cm_retries = cmd.max_cm_retries; |
| 773 | param.srq = cmd.srq; |
| 774 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 775 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 776 | if (!IS_ERR(ctx)) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 777 | result = ib_send_cm_req(ctx->cm_id, ¶m); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 778 | ib_ucm_ctx_put(ctx); |
| 779 | } else |
| 780 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 781 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 782 | done: |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 783 | kfree(param.private_data); |
| 784 | kfree(param.primary_path); |
| 785 | kfree(param.alternate_path); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 786 | return result; |
| 787 | } |
| 788 | |
| 789 | static ssize_t ib_ucm_send_rep(struct ib_ucm_file *file, |
| 790 | const char __user *inbuf, |
| 791 | int in_len, int out_len) |
| 792 | { |
| 793 | struct ib_cm_rep_param param; |
| 794 | struct ib_ucm_context *ctx; |
| 795 | struct ib_ucm_rep cmd; |
| 796 | int result; |
| 797 | |
| 798 | param.private_data = NULL; |
| 799 | |
| 800 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 801 | return -EFAULT; |
| 802 | |
| 803 | result = ib_ucm_alloc_data(¶m.private_data, cmd.data, cmd.len); |
| 804 | if (result) |
| 805 | return result; |
| 806 | |
| 807 | param.qp_num = cmd.qpn; |
| 808 | param.starting_psn = cmd.psn; |
| 809 | param.private_data_len = cmd.len; |
| 810 | param.responder_resources = cmd.responder_resources; |
| 811 | param.initiator_depth = cmd.initiator_depth; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 812 | param.failover_accepted = cmd.failover_accepted; |
| 813 | param.flow_control = cmd.flow_control; |
| 814 | param.rnr_retry_count = cmd.rnr_retry_count; |
| 815 | param.srq = cmd.srq; |
| 816 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 817 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 818 | if (!IS_ERR(ctx)) { |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 819 | ctx->uid = cmd.uid; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 820 | result = ib_send_cm_rep(ctx->cm_id, ¶m); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 821 | ib_ucm_ctx_put(ctx); |
| 822 | } else |
| 823 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 824 | |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 825 | kfree(param.private_data); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 826 | return result; |
| 827 | } |
| 828 | |
| 829 | static ssize_t ib_ucm_send_private_data(struct ib_ucm_file *file, |
| 830 | const char __user *inbuf, int in_len, |
| 831 | int (*func)(struct ib_cm_id *cm_id, |
| 832 | const void *private_data, |
| 833 | u8 private_data_len)) |
| 834 | { |
| 835 | struct ib_ucm_private_data cmd; |
| 836 | struct ib_ucm_context *ctx; |
| 837 | const void *private_data = NULL; |
| 838 | int result; |
| 839 | |
| 840 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 841 | return -EFAULT; |
| 842 | |
| 843 | result = ib_ucm_alloc_data(&private_data, cmd.data, cmd.len); |
| 844 | if (result) |
| 845 | return result; |
| 846 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 847 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 848 | if (!IS_ERR(ctx)) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 849 | result = func(ctx->cm_id, private_data, cmd.len); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 850 | ib_ucm_ctx_put(ctx); |
| 851 | } else |
| 852 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 853 | |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 854 | kfree(private_data); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 855 | return result; |
| 856 | } |
| 857 | |
| 858 | static ssize_t ib_ucm_send_rtu(struct ib_ucm_file *file, |
| 859 | const char __user *inbuf, |
| 860 | int in_len, int out_len) |
| 861 | { |
| 862 | return ib_ucm_send_private_data(file, inbuf, in_len, ib_send_cm_rtu); |
| 863 | } |
| 864 | |
| 865 | static ssize_t ib_ucm_send_dreq(struct ib_ucm_file *file, |
| 866 | const char __user *inbuf, |
| 867 | int in_len, int out_len) |
| 868 | { |
| 869 | return ib_ucm_send_private_data(file, inbuf, in_len, ib_send_cm_dreq); |
| 870 | } |
| 871 | |
| 872 | static ssize_t ib_ucm_send_drep(struct ib_ucm_file *file, |
| 873 | const char __user *inbuf, |
| 874 | int in_len, int out_len) |
| 875 | { |
| 876 | return ib_ucm_send_private_data(file, inbuf, in_len, ib_send_cm_drep); |
| 877 | } |
| 878 | |
| 879 | static ssize_t ib_ucm_send_info(struct ib_ucm_file *file, |
| 880 | const char __user *inbuf, int in_len, |
| 881 | int (*func)(struct ib_cm_id *cm_id, |
| 882 | int status, |
| 883 | const void *info, |
| 884 | u8 info_len, |
| 885 | const void *data, |
| 886 | u8 data_len)) |
| 887 | { |
| 888 | struct ib_ucm_context *ctx; |
| 889 | struct ib_ucm_info cmd; |
| 890 | const void *data = NULL; |
| 891 | const void *info = NULL; |
| 892 | int result; |
| 893 | |
| 894 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 895 | return -EFAULT; |
| 896 | |
| 897 | result = ib_ucm_alloc_data(&data, cmd.data, cmd.data_len); |
| 898 | if (result) |
| 899 | goto done; |
| 900 | |
| 901 | result = ib_ucm_alloc_data(&info, cmd.info, cmd.info_len); |
| 902 | if (result) |
| 903 | goto done; |
| 904 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 905 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 906 | if (!IS_ERR(ctx)) { |
| 907 | result = func(ctx->cm_id, cmd.status, info, cmd.info_len, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 908 | data, cmd.data_len); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 909 | ib_ucm_ctx_put(ctx); |
| 910 | } else |
| 911 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 912 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 913 | done: |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 914 | kfree(data); |
| 915 | kfree(info); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 916 | return result; |
| 917 | } |
| 918 | |
| 919 | static ssize_t ib_ucm_send_rej(struct ib_ucm_file *file, |
| 920 | const char __user *inbuf, |
| 921 | int in_len, int out_len) |
| 922 | { |
| 923 | return ib_ucm_send_info(file, inbuf, in_len, (void *)ib_send_cm_rej); |
| 924 | } |
| 925 | |
| 926 | static ssize_t ib_ucm_send_apr(struct ib_ucm_file *file, |
| 927 | const char __user *inbuf, |
| 928 | int in_len, int out_len) |
| 929 | { |
| 930 | return ib_ucm_send_info(file, inbuf, in_len, (void *)ib_send_cm_apr); |
| 931 | } |
| 932 | |
| 933 | static ssize_t ib_ucm_send_mra(struct ib_ucm_file *file, |
| 934 | const char __user *inbuf, |
| 935 | int in_len, int out_len) |
| 936 | { |
| 937 | struct ib_ucm_context *ctx; |
| 938 | struct ib_ucm_mra cmd; |
| 939 | const void *data = NULL; |
| 940 | int result; |
| 941 | |
| 942 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 943 | return -EFAULT; |
| 944 | |
| 945 | result = ib_ucm_alloc_data(&data, cmd.data, cmd.len); |
| 946 | if (result) |
| 947 | return result; |
| 948 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 949 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 950 | if (!IS_ERR(ctx)) { |
| 951 | result = ib_send_cm_mra(ctx->cm_id, cmd.timeout, data, cmd.len); |
| 952 | ib_ucm_ctx_put(ctx); |
| 953 | } else |
| 954 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 955 | |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 956 | kfree(data); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 957 | return result; |
| 958 | } |
| 959 | |
| 960 | static ssize_t ib_ucm_send_lap(struct ib_ucm_file *file, |
| 961 | const char __user *inbuf, |
| 962 | int in_len, int out_len) |
| 963 | { |
| 964 | struct ib_ucm_context *ctx; |
| 965 | struct ib_sa_path_rec *path = NULL; |
| 966 | struct ib_ucm_lap cmd; |
| 967 | const void *data = NULL; |
| 968 | int result; |
| 969 | |
| 970 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 971 | return -EFAULT; |
| 972 | |
| 973 | result = ib_ucm_alloc_data(&data, cmd.data, cmd.len); |
| 974 | if (result) |
| 975 | goto done; |
| 976 | |
| 977 | result = ib_ucm_path_get(&path, cmd.path); |
| 978 | if (result) |
| 979 | goto done; |
| 980 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 981 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 982 | if (!IS_ERR(ctx)) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 983 | result = ib_send_cm_lap(ctx->cm_id, path, data, cmd.len); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 984 | ib_ucm_ctx_put(ctx); |
| 985 | } else |
| 986 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 987 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 988 | done: |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 989 | kfree(data); |
| 990 | kfree(path); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 991 | return result; |
| 992 | } |
| 993 | |
| 994 | static ssize_t ib_ucm_send_sidr_req(struct ib_ucm_file *file, |
| 995 | const char __user *inbuf, |
| 996 | int in_len, int out_len) |
| 997 | { |
| 998 | struct ib_cm_sidr_req_param param; |
| 999 | struct ib_ucm_context *ctx; |
| 1000 | struct ib_ucm_sidr_req cmd; |
| 1001 | int result; |
| 1002 | |
| 1003 | param.private_data = NULL; |
| 1004 | param.path = NULL; |
| 1005 | |
| 1006 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 1007 | return -EFAULT; |
| 1008 | |
| 1009 | result = ib_ucm_alloc_data(¶m.private_data, cmd.data, cmd.len); |
| 1010 | if (result) |
| 1011 | goto done; |
| 1012 | |
| 1013 | result = ib_ucm_path_get(¶m.path, cmd.path); |
| 1014 | if (result) |
| 1015 | goto done; |
| 1016 | |
| 1017 | param.private_data_len = cmd.len; |
| 1018 | param.service_id = cmd.sid; |
| 1019 | param.timeout_ms = cmd.timeout; |
| 1020 | param.max_cm_retries = cmd.max_cm_retries; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1021 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 1022 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 1023 | if (!IS_ERR(ctx)) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1024 | result = ib_send_cm_sidr_req(ctx->cm_id, ¶m); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 1025 | ib_ucm_ctx_put(ctx); |
| 1026 | } else |
| 1027 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1028 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1029 | done: |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 1030 | kfree(param.private_data); |
| 1031 | kfree(param.path); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1032 | return result; |
| 1033 | } |
| 1034 | |
| 1035 | static ssize_t ib_ucm_send_sidr_rep(struct ib_ucm_file *file, |
| 1036 | const char __user *inbuf, |
| 1037 | int in_len, int out_len) |
| 1038 | { |
| 1039 | struct ib_cm_sidr_rep_param param; |
| 1040 | struct ib_ucm_sidr_rep cmd; |
| 1041 | struct ib_ucm_context *ctx; |
| 1042 | int result; |
| 1043 | |
| 1044 | param.info = NULL; |
| 1045 | |
| 1046 | if (copy_from_user(&cmd, inbuf, sizeof(cmd))) |
| 1047 | return -EFAULT; |
| 1048 | |
| 1049 | result = ib_ucm_alloc_data(¶m.private_data, |
| 1050 | cmd.data, cmd.data_len); |
| 1051 | if (result) |
| 1052 | goto done; |
| 1053 | |
| 1054 | result = ib_ucm_alloc_data(¶m.info, cmd.info, cmd.info_len); |
| 1055 | if (result) |
| 1056 | goto done; |
| 1057 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 1058 | param.qp_num = cmd.qpn; |
| 1059 | param.qkey = cmd.qkey; |
| 1060 | param.status = cmd.status; |
| 1061 | param.info_length = cmd.info_len; |
| 1062 | param.private_data_len = cmd.data_len; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1063 | |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 1064 | ctx = ib_ucm_ctx_get(file, cmd.id); |
| 1065 | if (!IS_ERR(ctx)) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1066 | result = ib_send_cm_sidr_rep(ctx->cm_id, ¶m); |
Sean Hefty | b9ef520 | 2005-08-19 13:46:34 -0700 | [diff] [blame] | 1067 | ib_ucm_ctx_put(ctx); |
| 1068 | } else |
| 1069 | result = PTR_ERR(ctx); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1070 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1071 | done: |
Hal Rosenstock | 79d8190 | 2005-07-27 20:38:56 -0700 | [diff] [blame] | 1072 | kfree(param.private_data); |
| 1073 | kfree(param.info); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1074 | return result; |
| 1075 | } |
| 1076 | |
| 1077 | static ssize_t (*ucm_cmd_table[])(struct ib_ucm_file *file, |
| 1078 | const char __user *inbuf, |
| 1079 | int in_len, int out_len) = { |
| 1080 | [IB_USER_CM_CMD_CREATE_ID] = ib_ucm_create_id, |
| 1081 | [IB_USER_CM_CMD_DESTROY_ID] = ib_ucm_destroy_id, |
| 1082 | [IB_USER_CM_CMD_ATTR_ID] = ib_ucm_attr_id, |
| 1083 | [IB_USER_CM_CMD_LISTEN] = ib_ucm_listen, |
Sean Hefty | e1444b5 | 2006-11-28 14:57:13 -0800 | [diff] [blame] | 1084 | [IB_USER_CM_CMD_NOTIFY] = ib_ucm_notify, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1085 | [IB_USER_CM_CMD_SEND_REQ] = ib_ucm_send_req, |
| 1086 | [IB_USER_CM_CMD_SEND_REP] = ib_ucm_send_rep, |
| 1087 | [IB_USER_CM_CMD_SEND_RTU] = ib_ucm_send_rtu, |
| 1088 | [IB_USER_CM_CMD_SEND_DREQ] = ib_ucm_send_dreq, |
| 1089 | [IB_USER_CM_CMD_SEND_DREP] = ib_ucm_send_drep, |
| 1090 | [IB_USER_CM_CMD_SEND_REJ] = ib_ucm_send_rej, |
| 1091 | [IB_USER_CM_CMD_SEND_MRA] = ib_ucm_send_mra, |
| 1092 | [IB_USER_CM_CMD_SEND_LAP] = ib_ucm_send_lap, |
| 1093 | [IB_USER_CM_CMD_SEND_APR] = ib_ucm_send_apr, |
| 1094 | [IB_USER_CM_CMD_SEND_SIDR_REQ] = ib_ucm_send_sidr_req, |
| 1095 | [IB_USER_CM_CMD_SEND_SIDR_REP] = ib_ucm_send_sidr_rep, |
| 1096 | [IB_USER_CM_CMD_EVENT] = ib_ucm_event, |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 1097 | [IB_USER_CM_CMD_INIT_QP_ATTR] = ib_ucm_init_qp_attr, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1098 | }; |
| 1099 | |
| 1100 | static ssize_t ib_ucm_write(struct file *filp, const char __user *buf, |
| 1101 | size_t len, loff_t *pos) |
| 1102 | { |
| 1103 | struct ib_ucm_file *file = filp->private_data; |
| 1104 | struct ib_ucm_cmd_hdr hdr; |
| 1105 | ssize_t result; |
| 1106 | |
Jason Gunthorpe | e6bd18f | 2016-04-10 19:13:13 -0600 | [diff] [blame] | 1107 | if (WARN_ON_ONCE(!ib_safe_file_access(filp))) |
| 1108 | return -EACCES; |
| 1109 | |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1110 | if (len < sizeof(hdr)) |
| 1111 | return -EINVAL; |
| 1112 | |
| 1113 | if (copy_from_user(&hdr, buf, sizeof(hdr))) |
| 1114 | return -EFAULT; |
| 1115 | |
Hefty, Sean | caf6e3f | 2011-10-06 09:33:05 -0700 | [diff] [blame] | 1116 | if (hdr.cmd >= ARRAY_SIZE(ucm_cmd_table)) |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1117 | return -EINVAL; |
| 1118 | |
| 1119 | if (hdr.in + sizeof(hdr) > len) |
| 1120 | return -EINVAL; |
| 1121 | |
| 1122 | result = ucm_cmd_table[hdr.cmd](file, buf + sizeof(hdr), |
| 1123 | hdr.in, hdr.out); |
| 1124 | if (!result) |
| 1125 | result = len; |
| 1126 | |
| 1127 | return result; |
| 1128 | } |
| 1129 | |
| 1130 | static unsigned int ib_ucm_poll(struct file *filp, |
| 1131 | struct poll_table_struct *wait) |
| 1132 | { |
| 1133 | struct ib_ucm_file *file = filp->private_data; |
| 1134 | unsigned int mask = 0; |
| 1135 | |
| 1136 | poll_wait(filp, &file->poll_wait, wait); |
| 1137 | |
| 1138 | if (!list_empty(&file->events)) |
| 1139 | mask = POLLIN | POLLRDNORM; |
| 1140 | |
| 1141 | return mask; |
| 1142 | } |
| 1143 | |
Roland Dreier | 5ba18b1 | 2008-07-24 20:36:59 -0700 | [diff] [blame] | 1144 | /* |
| 1145 | * ib_ucm_open() does not need the BKL: |
| 1146 | * |
| 1147 | * - no global state is referred to; |
| 1148 | * - there is no ioctl method to race against; |
| 1149 | * - no further module initialization is required for open to work |
| 1150 | * after the device is registered. |
| 1151 | */ |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1152 | static int ib_ucm_open(struct inode *inode, struct file *filp) |
| 1153 | { |
| 1154 | struct ib_ucm_file *file; |
| 1155 | |
| 1156 | file = kmalloc(sizeof(*file), GFP_KERNEL); |
| 1157 | if (!file) |
| 1158 | return -ENOMEM; |
| 1159 | |
| 1160 | INIT_LIST_HEAD(&file->events); |
| 1161 | INIT_LIST_HEAD(&file->ctxs); |
| 1162 | init_waitqueue_head(&file->poll_wait); |
| 1163 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 1164 | mutex_init(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1165 | |
| 1166 | filp->private_data = file; |
| 1167 | file->filp = filp; |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1168 | file->device = container_of(inode->i_cdev, struct ib_ucm_device, cdev); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1169 | |
Roland Dreier | bc1db9a | 2010-04-09 17:13:50 -0700 | [diff] [blame] | 1170 | return nonseekable_open(inode, filp); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | static int ib_ucm_close(struct inode *inode, struct file *filp) |
| 1174 | { |
| 1175 | struct ib_ucm_file *file = filp->private_data; |
| 1176 | struct ib_ucm_context *ctx; |
| 1177 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 1178 | mutex_lock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1179 | while (!list_empty(&file->ctxs)) { |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1180 | ctx = list_entry(file->ctxs.next, |
| 1181 | struct ib_ucm_context, file_list); |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 1182 | mutex_unlock(&file->file_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 1183 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 1184 | mutex_lock(&ctx_id_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 1185 | idr_remove(&ctx_id_table, ctx->id); |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 1186 | mutex_unlock(&ctx_id_mutex); |
Sean Hefty | 0b2b35f | 2005-09-01 09:28:03 -0700 | [diff] [blame] | 1187 | |
| 1188 | ib_destroy_cm_id(ctx->cm_id); |
| 1189 | ib_ucm_cleanup_events(ctx); |
| 1190 | kfree(ctx); |
| 1191 | |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 1192 | mutex_lock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1193 | } |
Sean Hefty | 4be10c1e | 2006-05-25 10:03:23 -0700 | [diff] [blame] | 1194 | mutex_unlock(&file->file_mutex); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1195 | kfree(file); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1196 | return 0; |
| 1197 | } |
| 1198 | |
Carol L Soto | 59d40dd | 2015-06-11 11:06:41 -0500 | [diff] [blame] | 1199 | static DECLARE_BITMAP(overflow_map, IB_UCM_MAX_DEVICES); |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1200 | static void ib_ucm_release_dev(struct device *dev) |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1201 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1202 | struct ib_ucm_device *ucm_dev; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1203 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1204 | ucm_dev = container_of(dev, struct ib_ucm_device, dev); |
| 1205 | cdev_del(&ucm_dev->cdev); |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1206 | if (ucm_dev->devnum < IB_UCM_MAX_DEVICES) |
| 1207 | clear_bit(ucm_dev->devnum, dev_map); |
| 1208 | else |
Carol L Soto | 59d40dd | 2015-06-11 11:06:41 -0500 | [diff] [blame] | 1209 | clear_bit(ucm_dev->devnum - IB_UCM_MAX_DEVICES, overflow_map); |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1210 | kfree(ucm_dev); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1211 | } |
| 1212 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 1213 | static const struct file_operations ucm_fops = { |
Alexander Chiang | cdb8e43 | 2010-02-02 19:09:11 +0000 | [diff] [blame] | 1214 | .owner = THIS_MODULE, |
| 1215 | .open = ib_ucm_open, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1216 | .release = ib_ucm_close, |
Alexander Chiang | cdb8e43 | 2010-02-02 19:09:11 +0000 | [diff] [blame] | 1217 | .write = ib_ucm_write, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1218 | .poll = ib_ucm_poll, |
Roland Dreier | bc1db9a | 2010-04-09 17:13:50 -0700 | [diff] [blame] | 1219 | .llseek = no_llseek, |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1220 | }; |
| 1221 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1222 | static ssize_t show_ibdev(struct device *dev, struct device_attribute *attr, |
| 1223 | char *buf) |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1224 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1225 | struct ib_ucm_device *ucm_dev; |
Roland Dreier | 3cd9656 | 2006-09-22 15:22:46 -0700 | [diff] [blame] | 1226 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1227 | ucm_dev = container_of(dev, struct ib_ucm_device, dev); |
| 1228 | return sprintf(buf, "%s\n", ucm_dev->ib_dev->name); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1229 | } |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1230 | static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1231 | |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1232 | static dev_t overflow_maj; |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1233 | static int find_overflow_devnum(void) |
| 1234 | { |
| 1235 | int ret; |
| 1236 | |
| 1237 | if (!overflow_maj) { |
| 1238 | ret = alloc_chrdev_region(&overflow_maj, 0, IB_UCM_MAX_DEVICES, |
| 1239 | "infiniband_cm"); |
| 1240 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1241 | pr_err("ucm: couldn't register dynamic device number\n"); |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1242 | return ret; |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | ret = find_first_zero_bit(overflow_map, IB_UCM_MAX_DEVICES); |
| 1247 | if (ret >= IB_UCM_MAX_DEVICES) |
| 1248 | return -1; |
| 1249 | |
| 1250 | return ret; |
| 1251 | } |
| 1252 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1253 | static void ib_ucm_add_one(struct ib_device *device) |
| 1254 | { |
Alexander Chiang | dd08f70 | 2010-02-02 19:08:55 +0000 | [diff] [blame] | 1255 | int devnum; |
Alexander Chiang | 31d14b6 | 2010-02-02 19:09:00 +0000 | [diff] [blame] | 1256 | dev_t base; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1257 | struct ib_ucm_device *ucm_dev; |
| 1258 | |
Michael Wang | 72219cea | 2015-05-05 14:50:34 +0200 | [diff] [blame] | 1259 | if (!device->alloc_ucontext || !rdma_cap_ib_cm(device, 1)) |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1260 | return; |
| 1261 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 1262 | ucm_dev = kzalloc(sizeof *ucm_dev, GFP_KERNEL); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1263 | if (!ucm_dev) |
| 1264 | return; |
| 1265 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1266 | ucm_dev->ib_dev = device; |
| 1267 | |
Alexander Chiang | dd08f70 | 2010-02-02 19:08:55 +0000 | [diff] [blame] | 1268 | devnum = find_first_zero_bit(dev_map, IB_UCM_MAX_DEVICES); |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1269 | if (devnum >= IB_UCM_MAX_DEVICES) { |
| 1270 | devnum = find_overflow_devnum(); |
| 1271 | if (devnum < 0) |
| 1272 | goto err; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1273 | |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1274 | ucm_dev->devnum = devnum + IB_UCM_MAX_DEVICES; |
| 1275 | base = devnum + overflow_maj; |
| 1276 | set_bit(devnum, overflow_map); |
| 1277 | } else { |
| 1278 | ucm_dev->devnum = devnum; |
| 1279 | base = devnum + IB_UCM_BASE_DEV; |
| 1280 | set_bit(devnum, dev_map); |
| 1281 | } |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1282 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1283 | cdev_init(&ucm_dev->cdev, &ucm_fops); |
| 1284 | ucm_dev->cdev.owner = THIS_MODULE; |
| 1285 | kobject_set_name(&ucm_dev->cdev.kobj, "ucm%d", ucm_dev->devnum); |
Alexander Chiang | 31d14b6 | 2010-02-02 19:09:00 +0000 | [diff] [blame] | 1286 | if (cdev_add(&ucm_dev->cdev, base, 1)) |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1287 | goto err; |
| 1288 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1289 | ucm_dev->dev.class = &cm_class; |
| 1290 | ucm_dev->dev.parent = device->dma_device; |
| 1291 | ucm_dev->dev.devt = ucm_dev->cdev.dev; |
| 1292 | ucm_dev->dev.release = ib_ucm_release_dev; |
Kay Sievers | d927e38 | 2009-01-06 10:44:39 -0800 | [diff] [blame] | 1293 | dev_set_name(&ucm_dev->dev, "ucm%d", ucm_dev->devnum); |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1294 | if (device_register(&ucm_dev->dev)) |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1295 | goto err_cdev; |
| 1296 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1297 | if (device_create_file(&ucm_dev->dev, &dev_attr_ibdev)) |
| 1298 | goto err_dev; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1299 | |
| 1300 | ib_set_client_data(device, &ucm_client, ucm_dev); |
| 1301 | return; |
| 1302 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1303 | err_dev: |
| 1304 | device_unregister(&ucm_dev->dev); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1305 | err_cdev: |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1306 | cdev_del(&ucm_dev->cdev); |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1307 | if (ucm_dev->devnum < IB_UCM_MAX_DEVICES) |
| 1308 | clear_bit(devnum, dev_map); |
| 1309 | else |
| 1310 | clear_bit(devnum, overflow_map); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1311 | err: |
| 1312 | kfree(ucm_dev); |
| 1313 | return; |
| 1314 | } |
| 1315 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 1316 | static void ib_ucm_remove_one(struct ib_device *device, void *client_data) |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1317 | { |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 1318 | struct ib_ucm_device *ucm_dev = client_data; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1319 | |
| 1320 | if (!ucm_dev) |
| 1321 | return; |
| 1322 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1323 | device_unregister(&ucm_dev->dev); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1324 | } |
| 1325 | |
Andi Kleen | 0933e2d | 2010-01-05 12:48:09 +0100 | [diff] [blame] | 1326 | static CLASS_ATTR_STRING(abi_version, S_IRUGO, |
| 1327 | __stringify(IB_USER_CM_ABI_VERSION)); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1328 | |
| 1329 | static int __init ib_ucm_init(void) |
| 1330 | { |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1331 | int ret; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1332 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1333 | ret = register_chrdev_region(IB_UCM_BASE_DEV, IB_UCM_MAX_DEVICES, |
| 1334 | "infiniband_cm"); |
| 1335 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1336 | pr_err("ucm: couldn't register device number\n"); |
Sean Hefty | 9af57b7 | 2007-07-16 21:49:35 -0700 | [diff] [blame] | 1337 | goto error1; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1338 | } |
| 1339 | |
Andi Kleen | 0933e2d | 2010-01-05 12:48:09 +0100 | [diff] [blame] | 1340 | ret = class_create_file(&cm_class, &class_attr_abi_version.attr); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1341 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1342 | pr_err("ucm: couldn't create abi_version attribute\n"); |
Sean Hefty | 9af57b7 | 2007-07-16 21:49:35 -0700 | [diff] [blame] | 1343 | goto error2; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1344 | } |
| 1345 | |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1346 | ret = ib_register_client(&ucm_client); |
| 1347 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1348 | pr_err("ucm: couldn't register client\n"); |
Sean Hefty | 9af57b7 | 2007-07-16 21:49:35 -0700 | [diff] [blame] | 1349 | goto error3; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1350 | } |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1351 | return 0; |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1352 | |
Sean Hefty | 9af57b7 | 2007-07-16 21:49:35 -0700 | [diff] [blame] | 1353 | error3: |
Andi Kleen | 0933e2d | 2010-01-05 12:48:09 +0100 | [diff] [blame] | 1354 | class_remove_file(&cm_class, &class_attr_abi_version.attr); |
Sean Hefty | 9af57b7 | 2007-07-16 21:49:35 -0700 | [diff] [blame] | 1355 | error2: |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1356 | unregister_chrdev_region(IB_UCM_BASE_DEV, IB_UCM_MAX_DEVICES); |
Sean Hefty | 9af57b7 | 2007-07-16 21:49:35 -0700 | [diff] [blame] | 1357 | error1: |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1358 | return ret; |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1359 | } |
| 1360 | |
| 1361 | static void __exit ib_ucm_cleanup(void) |
| 1362 | { |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1363 | ib_unregister_client(&ucm_client); |
Andi Kleen | 0933e2d | 2010-01-05 12:48:09 +0100 | [diff] [blame] | 1364 | class_remove_file(&cm_class, &class_attr_abi_version.attr); |
Sean Hefty | 07d357d | 2005-10-17 15:37:43 -0700 | [diff] [blame] | 1365 | unregister_chrdev_region(IB_UCM_BASE_DEV, IB_UCM_MAX_DEVICES); |
Alexander Chiang | daa9135 | 2010-02-02 19:09:06 +0000 | [diff] [blame] | 1366 | if (overflow_maj) |
| 1367 | unregister_chrdev_region(overflow_maj, IB_UCM_MAX_DEVICES); |
Roland Dreier | 5d7edb3 | 2005-10-24 10:53:25 -0700 | [diff] [blame] | 1368 | idr_destroy(&ctx_id_table); |
Hal Rosenstock | a5b7454 | 2005-07-27 11:45:44 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | module_init(ib_ucm_init); |
| 1372 | module_exit(ib_ucm_cleanup); |