2 * Copyright (c) 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Intel Corporation. All rights reserved.
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:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
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.
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
34 #include <linux/completion.h>
35 #include <linux/init.h>
37 #include <linux/module.h>
38 #include <linux/device.h>
39 #include <linux/err.h>
40 #include <linux/poll.h>
41 #include <linux/sched.h>
42 #include <linux/file.h>
43 #include <linux/mount.h>
44 #include <linux/cdev.h>
45 #include <linux/idr.h>
46 #include <linux/mutex.h>
47 #include <linux/slab.h>
49 #include <linux/uaccess.h>
52 #include <rdma/ib_cm.h>
53 #include <rdma/ib_user_cm.h>
54 #include <rdma/ib_marshall.h>
56 #include "core_priv.h"
58 MODULE_AUTHOR("Libor Michalek");
59 MODULE_DESCRIPTION("InfiniBand userspace Connection Manager access");
60 MODULE_LICENSE("Dual BSD/GPL");
62 struct ib_ucm_device
{
66 struct ib_device
*ib_dev
;
70 struct mutex file_mutex
;
72 struct ib_ucm_device
*device
;
74 struct list_head ctxs
;
75 struct list_head events
;
76 wait_queue_head_t poll_wait
;
79 struct ib_ucm_context
{
81 struct completion comp
;
85 struct ib_ucm_file
*file
;
86 struct ib_cm_id
*cm_id
;
89 struct list_head events
; /* list of pending events. */
90 struct list_head file_list
; /* member in file ctx list */
94 struct ib_ucm_context
*ctx
;
95 struct list_head file_list
; /* member in file event list */
96 struct list_head ctx_list
; /* member in ctx event list */
98 struct ib_cm_id
*cm_id
;
99 struct ib_ucm_event_resp resp
;
108 IB_UCM_BASE_MINOR
= 224,
109 IB_UCM_MAX_DEVICES
= RDMA_MAX_PORTS
,
110 IB_UCM_NUM_FIXED_MINOR
= 32,
111 IB_UCM_NUM_DYNAMIC_MINOR
= IB_UCM_MAX_DEVICES
- IB_UCM_NUM_FIXED_MINOR
,
114 #define IB_UCM_BASE_DEV MKDEV(IB_UCM_MAJOR, IB_UCM_BASE_MINOR)
115 static dev_t dynamic_ucm_dev
;
117 static void ib_ucm_add_one(struct ib_device
*device
);
118 static void ib_ucm_remove_one(struct ib_device
*device
, void *client_data
);
120 static struct ib_client ucm_client
= {
122 .add
= ib_ucm_add_one
,
123 .remove
= ib_ucm_remove_one
126 static DEFINE_MUTEX(ctx_id_mutex
);
127 static DEFINE_IDR(ctx_id_table
);
128 static DECLARE_BITMAP(dev_map
, IB_UCM_MAX_DEVICES
);
130 static struct ib_ucm_context
*ib_ucm_ctx_get(struct ib_ucm_file
*file
, int id
)
132 struct ib_ucm_context
*ctx
;
134 mutex_lock(&ctx_id_mutex
);
135 ctx
= idr_find(&ctx_id_table
, id
);
137 ctx
= ERR_PTR(-ENOENT
);
138 else if (ctx
->file
!= file
)
139 ctx
= ERR_PTR(-EINVAL
);
141 atomic_inc(&ctx
->ref
);
142 mutex_unlock(&ctx_id_mutex
);
147 static void ib_ucm_ctx_put(struct ib_ucm_context
*ctx
)
149 if (atomic_dec_and_test(&ctx
->ref
))
150 complete(&ctx
->comp
);
153 static inline int ib_ucm_new_cm_id(int event
)
155 return event
== IB_CM_REQ_RECEIVED
|| event
== IB_CM_SIDR_REQ_RECEIVED
;
158 static void ib_ucm_cleanup_events(struct ib_ucm_context
*ctx
)
160 struct ib_ucm_event
*uevent
;
162 mutex_lock(&ctx
->file
->file_mutex
);
163 list_del(&ctx
->file_list
);
164 while (!list_empty(&ctx
->events
)) {
166 uevent
= list_entry(ctx
->events
.next
,
167 struct ib_ucm_event
, ctx_list
);
168 list_del(&uevent
->file_list
);
169 list_del(&uevent
->ctx_list
);
170 mutex_unlock(&ctx
->file
->file_mutex
);
172 /* clear incoming connections. */
173 if (ib_ucm_new_cm_id(uevent
->resp
.event
))
174 ib_destroy_cm_id(uevent
->cm_id
);
177 mutex_lock(&ctx
->file
->file_mutex
);
179 mutex_unlock(&ctx
->file
->file_mutex
);
182 static struct ib_ucm_context
*ib_ucm_ctx_alloc(struct ib_ucm_file
*file
)
184 struct ib_ucm_context
*ctx
;
186 ctx
= kzalloc(sizeof *ctx
, GFP_KERNEL
);
190 atomic_set(&ctx
->ref
, 1);
191 init_completion(&ctx
->comp
);
193 INIT_LIST_HEAD(&ctx
->events
);
195 mutex_lock(&ctx_id_mutex
);
196 ctx
->id
= idr_alloc(&ctx_id_table
, ctx
, 0, 0, GFP_KERNEL
);
197 mutex_unlock(&ctx_id_mutex
);
201 list_add_tail(&ctx
->file_list
, &file
->ctxs
);
209 static void ib_ucm_event_req_get(struct ib_ucm_req_event_resp
*ureq
,
210 struct ib_cm_req_event_param
*kreq
)
212 ureq
->remote_ca_guid
= kreq
->remote_ca_guid
;
213 ureq
->remote_qkey
= kreq
->remote_qkey
;
214 ureq
->remote_qpn
= kreq
->remote_qpn
;
215 ureq
->qp_type
= kreq
->qp_type
;
216 ureq
->starting_psn
= kreq
->starting_psn
;
217 ureq
->responder_resources
= kreq
->responder_resources
;
218 ureq
->initiator_depth
= kreq
->initiator_depth
;
219 ureq
->local_cm_response_timeout
= kreq
->local_cm_response_timeout
;
220 ureq
->flow_control
= kreq
->flow_control
;
221 ureq
->remote_cm_response_timeout
= kreq
->remote_cm_response_timeout
;
222 ureq
->retry_count
= kreq
->retry_count
;
223 ureq
->rnr_retry_count
= kreq
->rnr_retry_count
;
224 ureq
->srq
= kreq
->srq
;
225 ureq
->port
= kreq
->port
;
227 ib_copy_path_rec_to_user(&ureq
->primary_path
, kreq
->primary_path
);
228 if (kreq
->alternate_path
)
229 ib_copy_path_rec_to_user(&ureq
->alternate_path
,
230 kreq
->alternate_path
);
233 static void ib_ucm_event_rep_get(struct ib_ucm_rep_event_resp
*urep
,
234 struct ib_cm_rep_event_param
*krep
)
236 urep
->remote_ca_guid
= krep
->remote_ca_guid
;
237 urep
->remote_qkey
= krep
->remote_qkey
;
238 urep
->remote_qpn
= krep
->remote_qpn
;
239 urep
->starting_psn
= krep
->starting_psn
;
240 urep
->responder_resources
= krep
->responder_resources
;
241 urep
->initiator_depth
= krep
->initiator_depth
;
242 urep
->target_ack_delay
= krep
->target_ack_delay
;
243 urep
->failover_accepted
= krep
->failover_accepted
;
244 urep
->flow_control
= krep
->flow_control
;
245 urep
->rnr_retry_count
= krep
->rnr_retry_count
;
246 urep
->srq
= krep
->srq
;
249 static void ib_ucm_event_sidr_rep_get(struct ib_ucm_sidr_rep_event_resp
*urep
,
250 struct ib_cm_sidr_rep_event_param
*krep
)
252 urep
->status
= krep
->status
;
253 urep
->qkey
= krep
->qkey
;
254 urep
->qpn
= krep
->qpn
;
257 static int ib_ucm_event_process(struct ib_cm_event
*evt
,
258 struct ib_ucm_event
*uvt
)
262 switch (evt
->event
) {
263 case IB_CM_REQ_RECEIVED
:
264 ib_ucm_event_req_get(&uvt
->resp
.u
.req_resp
,
265 &evt
->param
.req_rcvd
);
266 uvt
->data_len
= IB_CM_REQ_PRIVATE_DATA_SIZE
;
267 uvt
->resp
.present
= IB_UCM_PRES_PRIMARY
;
268 uvt
->resp
.present
|= (evt
->param
.req_rcvd
.alternate_path
?
269 IB_UCM_PRES_ALTERNATE
: 0);
271 case IB_CM_REP_RECEIVED
:
272 ib_ucm_event_rep_get(&uvt
->resp
.u
.rep_resp
,
273 &evt
->param
.rep_rcvd
);
274 uvt
->data_len
= IB_CM_REP_PRIVATE_DATA_SIZE
;
276 case IB_CM_RTU_RECEIVED
:
277 uvt
->data_len
= IB_CM_RTU_PRIVATE_DATA_SIZE
;
278 uvt
->resp
.u
.send_status
= evt
->param
.send_status
;
280 case IB_CM_DREQ_RECEIVED
:
281 uvt
->data_len
= IB_CM_DREQ_PRIVATE_DATA_SIZE
;
282 uvt
->resp
.u
.send_status
= evt
->param
.send_status
;
284 case IB_CM_DREP_RECEIVED
:
285 uvt
->data_len
= IB_CM_DREP_PRIVATE_DATA_SIZE
;
286 uvt
->resp
.u
.send_status
= evt
->param
.send_status
;
288 case IB_CM_MRA_RECEIVED
:
289 uvt
->resp
.u
.mra_resp
.timeout
=
290 evt
->param
.mra_rcvd
.service_timeout
;
291 uvt
->data_len
= IB_CM_MRA_PRIVATE_DATA_SIZE
;
293 case IB_CM_REJ_RECEIVED
:
294 uvt
->resp
.u
.rej_resp
.reason
= evt
->param
.rej_rcvd
.reason
;
295 uvt
->data_len
= IB_CM_REJ_PRIVATE_DATA_SIZE
;
296 uvt
->info_len
= evt
->param
.rej_rcvd
.ari_length
;
297 info
= evt
->param
.rej_rcvd
.ari
;
299 case IB_CM_LAP_RECEIVED
:
300 ib_copy_path_rec_to_user(&uvt
->resp
.u
.lap_resp
.path
,
301 evt
->param
.lap_rcvd
.alternate_path
);
302 uvt
->data_len
= IB_CM_LAP_PRIVATE_DATA_SIZE
;
303 uvt
->resp
.present
= IB_UCM_PRES_ALTERNATE
;
305 case IB_CM_APR_RECEIVED
:
306 uvt
->resp
.u
.apr_resp
.status
= evt
->param
.apr_rcvd
.ap_status
;
307 uvt
->data_len
= IB_CM_APR_PRIVATE_DATA_SIZE
;
308 uvt
->info_len
= evt
->param
.apr_rcvd
.info_len
;
309 info
= evt
->param
.apr_rcvd
.apr_info
;
311 case IB_CM_SIDR_REQ_RECEIVED
:
312 uvt
->resp
.u
.sidr_req_resp
.pkey
=
313 evt
->param
.sidr_req_rcvd
.pkey
;
314 uvt
->resp
.u
.sidr_req_resp
.port
=
315 evt
->param
.sidr_req_rcvd
.port
;
316 uvt
->data_len
= IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE
;
318 case IB_CM_SIDR_REP_RECEIVED
:
319 ib_ucm_event_sidr_rep_get(&uvt
->resp
.u
.sidr_rep_resp
,
320 &evt
->param
.sidr_rep_rcvd
);
321 uvt
->data_len
= IB_CM_SIDR_REP_PRIVATE_DATA_SIZE
;
322 uvt
->info_len
= evt
->param
.sidr_rep_rcvd
.info_len
;
323 info
= evt
->param
.sidr_rep_rcvd
.info
;
326 uvt
->resp
.u
.send_status
= evt
->param
.send_status
;
331 uvt
->data
= kmemdup(evt
->private_data
, uvt
->data_len
, GFP_KERNEL
);
335 uvt
->resp
.present
|= IB_UCM_PRES_DATA
;
339 uvt
->info
= kmemdup(info
, uvt
->info_len
, GFP_KERNEL
);
343 uvt
->resp
.present
|= IB_UCM_PRES_INFO
;
353 static int ib_ucm_event_handler(struct ib_cm_id
*cm_id
,
354 struct ib_cm_event
*event
)
356 struct ib_ucm_event
*uevent
;
357 struct ib_ucm_context
*ctx
;
360 ctx
= cm_id
->context
;
362 uevent
= kzalloc(sizeof *uevent
, GFP_KERNEL
);
367 uevent
->cm_id
= cm_id
;
368 uevent
->resp
.uid
= ctx
->uid
;
369 uevent
->resp
.id
= ctx
->id
;
370 uevent
->resp
.event
= event
->event
;
372 result
= ib_ucm_event_process(event
, uevent
);
376 mutex_lock(&ctx
->file
->file_mutex
);
377 list_add_tail(&uevent
->file_list
, &ctx
->file
->events
);
378 list_add_tail(&uevent
->ctx_list
, &ctx
->events
);
379 wake_up_interruptible(&ctx
->file
->poll_wait
);
380 mutex_unlock(&ctx
->file
->file_mutex
);
386 /* Destroy new cm_id's */
387 return ib_ucm_new_cm_id(event
->event
);
390 static ssize_t
ib_ucm_event(struct ib_ucm_file
*file
,
391 const char __user
*inbuf
,
392 int in_len
, int out_len
)
394 struct ib_ucm_context
*ctx
;
395 struct ib_ucm_event_get cmd
;
396 struct ib_ucm_event
*uevent
;
399 if (out_len
< sizeof(struct ib_ucm_event_resp
))
402 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
405 mutex_lock(&file
->file_mutex
);
406 while (list_empty(&file
->events
)) {
407 mutex_unlock(&file
->file_mutex
);
409 if (file
->filp
->f_flags
& O_NONBLOCK
)
412 if (wait_event_interruptible(file
->poll_wait
,
413 !list_empty(&file
->events
)))
416 mutex_lock(&file
->file_mutex
);
419 uevent
= list_entry(file
->events
.next
, struct ib_ucm_event
, file_list
);
421 if (ib_ucm_new_cm_id(uevent
->resp
.event
)) {
422 ctx
= ib_ucm_ctx_alloc(file
);
428 ctx
->cm_id
= uevent
->cm_id
;
429 ctx
->cm_id
->context
= ctx
;
430 uevent
->resp
.id
= ctx
->id
;
433 if (copy_to_user((void __user
*)(unsigned long)cmd
.response
,
434 &uevent
->resp
, sizeof(uevent
->resp
))) {
440 if (cmd
.data_len
< uevent
->data_len
) {
444 if (copy_to_user((void __user
*)(unsigned long)cmd
.data
,
445 uevent
->data
, uevent
->data_len
)) {
452 if (cmd
.info_len
< uevent
->info_len
) {
456 if (copy_to_user((void __user
*)(unsigned long)cmd
.info
,
457 uevent
->info
, uevent
->info_len
)) {
463 list_del(&uevent
->file_list
);
464 list_del(&uevent
->ctx_list
);
465 uevent
->ctx
->events_reported
++;
471 mutex_unlock(&file
->file_mutex
);
475 static ssize_t
ib_ucm_create_id(struct ib_ucm_file
*file
,
476 const char __user
*inbuf
,
477 int in_len
, int out_len
)
479 struct ib_ucm_create_id cmd
;
480 struct ib_ucm_create_id_resp resp
;
481 struct ib_ucm_context
*ctx
;
484 if (out_len
< sizeof(resp
))
487 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
490 mutex_lock(&file
->file_mutex
);
491 ctx
= ib_ucm_ctx_alloc(file
);
492 mutex_unlock(&file
->file_mutex
);
497 ctx
->cm_id
= ib_create_cm_id(file
->device
->ib_dev
,
498 ib_ucm_event_handler
, ctx
);
499 if (IS_ERR(ctx
->cm_id
)) {
500 result
= PTR_ERR(ctx
->cm_id
);
505 if (copy_to_user((void __user
*)(unsigned long)cmd
.response
,
506 &resp
, sizeof(resp
))) {
513 ib_destroy_cm_id(ctx
->cm_id
);
515 mutex_lock(&ctx_id_mutex
);
516 idr_remove(&ctx_id_table
, ctx
->id
);
517 mutex_unlock(&ctx_id_mutex
);
522 static ssize_t
ib_ucm_destroy_id(struct ib_ucm_file
*file
,
523 const char __user
*inbuf
,
524 int in_len
, int out_len
)
526 struct ib_ucm_destroy_id cmd
;
527 struct ib_ucm_destroy_id_resp resp
;
528 struct ib_ucm_context
*ctx
;
531 if (out_len
< sizeof(resp
))
534 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
537 mutex_lock(&ctx_id_mutex
);
538 ctx
= idr_find(&ctx_id_table
, cmd
.id
);
540 ctx
= ERR_PTR(-ENOENT
);
541 else if (ctx
->file
!= file
)
542 ctx
= ERR_PTR(-EINVAL
);
544 idr_remove(&ctx_id_table
, ctx
->id
);
545 mutex_unlock(&ctx_id_mutex
);
551 wait_for_completion(&ctx
->comp
);
553 /* No new events will be generated after destroying the cm_id. */
554 ib_destroy_cm_id(ctx
->cm_id
);
555 /* Cleanup events not yet reported to the user. */
556 ib_ucm_cleanup_events(ctx
);
558 resp
.events_reported
= ctx
->events_reported
;
559 if (copy_to_user((void __user
*)(unsigned long)cmd
.response
,
560 &resp
, sizeof(resp
)))
567 static ssize_t
ib_ucm_attr_id(struct ib_ucm_file
*file
,
568 const char __user
*inbuf
,
569 int in_len
, int out_len
)
571 struct ib_ucm_attr_id_resp resp
;
572 struct ib_ucm_attr_id cmd
;
573 struct ib_ucm_context
*ctx
;
576 if (out_len
< sizeof(resp
))
579 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
582 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
586 resp
.service_id
= ctx
->cm_id
->service_id
;
587 resp
.service_mask
= ctx
->cm_id
->service_mask
;
588 resp
.local_id
= ctx
->cm_id
->local_id
;
589 resp
.remote_id
= ctx
->cm_id
->remote_id
;
591 if (copy_to_user((void __user
*)(unsigned long)cmd
.response
,
592 &resp
, sizeof(resp
)))
599 static ssize_t
ib_ucm_init_qp_attr(struct ib_ucm_file
*file
,
600 const char __user
*inbuf
,
601 int in_len
, int out_len
)
603 struct ib_uverbs_qp_attr resp
;
604 struct ib_ucm_init_qp_attr cmd
;
605 struct ib_ucm_context
*ctx
;
606 struct ib_qp_attr qp_attr
;
609 if (out_len
< sizeof(resp
))
612 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
615 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
619 resp
.qp_attr_mask
= 0;
620 memset(&qp_attr
, 0, sizeof qp_attr
);
621 qp_attr
.qp_state
= cmd
.qp_state
;
622 result
= ib_cm_init_qp_attr(ctx
->cm_id
, &qp_attr
, &resp
.qp_attr_mask
);
626 ib_copy_qp_attr_to_user(ctx
->cm_id
->device
, &resp
, &qp_attr
);
628 if (copy_to_user((void __user
*)(unsigned long)cmd
.response
,
629 &resp
, sizeof(resp
)))
637 static int ucm_validate_listen(__be64 service_id
, __be64 service_mask
)
639 service_id
&= service_mask
;
641 if (((service_id
& IB_CMA_SERVICE_ID_MASK
) == IB_CMA_SERVICE_ID
) ||
642 ((service_id
& IB_SDP_SERVICE_ID_MASK
) == IB_SDP_SERVICE_ID
))
648 static ssize_t
ib_ucm_listen(struct ib_ucm_file
*file
,
649 const char __user
*inbuf
,
650 int in_len
, int out_len
)
652 struct ib_ucm_listen cmd
;
653 struct ib_ucm_context
*ctx
;
656 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
659 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
663 result
= ucm_validate_listen(cmd
.service_id
, cmd
.service_mask
);
667 result
= ib_cm_listen(ctx
->cm_id
, cmd
.service_id
, cmd
.service_mask
);
673 static ssize_t
ib_ucm_notify(struct ib_ucm_file
*file
,
674 const char __user
*inbuf
,
675 int in_len
, int out_len
)
677 struct ib_ucm_notify cmd
;
678 struct ib_ucm_context
*ctx
;
681 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
684 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
688 result
= ib_cm_notify(ctx
->cm_id
, (enum ib_event_type
) cmd
.event
);
693 static int ib_ucm_alloc_data(const void **dest
, u64 src
, u32 len
)
702 data
= memdup_user((void __user
*)(unsigned long)src
, len
);
704 return PTR_ERR(data
);
710 static int ib_ucm_path_get(struct sa_path_rec
**path
, u64 src
)
712 struct ib_user_path_rec upath
;
713 struct sa_path_rec
*sa_path
;
720 sa_path
= kmalloc(sizeof(*sa_path
), GFP_KERNEL
);
724 if (copy_from_user(&upath
, (void __user
*)(unsigned long)src
,
731 ib_copy_path_rec_from_user(sa_path
, &upath
);
736 static ssize_t
ib_ucm_send_req(struct ib_ucm_file
*file
,
737 const char __user
*inbuf
,
738 int in_len
, int out_len
)
740 struct ib_cm_req_param param
;
741 struct ib_ucm_context
*ctx
;
742 struct ib_ucm_req cmd
;
745 param
.private_data
= NULL
;
746 param
.primary_path
= NULL
;
747 param
.alternate_path
= NULL
;
749 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
752 result
= ib_ucm_alloc_data(¶m
.private_data
, cmd
.data
, cmd
.len
);
756 result
= ib_ucm_path_get(¶m
.primary_path
, cmd
.primary_path
);
760 result
= ib_ucm_path_get(¶m
.alternate_path
, cmd
.alternate_path
);
764 param
.private_data_len
= cmd
.len
;
765 param
.service_id
= cmd
.sid
;
766 param
.qp_num
= cmd
.qpn
;
767 param
.qp_type
= cmd
.qp_type
;
768 param
.starting_psn
= cmd
.psn
;
769 param
.peer_to_peer
= cmd
.peer_to_peer
;
770 param
.responder_resources
= cmd
.responder_resources
;
771 param
.initiator_depth
= cmd
.initiator_depth
;
772 param
.remote_cm_response_timeout
= cmd
.remote_cm_response_timeout
;
773 param
.flow_control
= cmd
.flow_control
;
774 param
.local_cm_response_timeout
= cmd
.local_cm_response_timeout
;
775 param
.retry_count
= cmd
.retry_count
;
776 param
.rnr_retry_count
= cmd
.rnr_retry_count
;
777 param
.max_cm_retries
= cmd
.max_cm_retries
;
780 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
782 result
= ib_send_cm_req(ctx
->cm_id
, ¶m
);
785 result
= PTR_ERR(ctx
);
788 kfree(param
.private_data
);
789 kfree(param
.primary_path
);
790 kfree(param
.alternate_path
);
794 static ssize_t
ib_ucm_send_rep(struct ib_ucm_file
*file
,
795 const char __user
*inbuf
,
796 int in_len
, int out_len
)
798 struct ib_cm_rep_param param
;
799 struct ib_ucm_context
*ctx
;
800 struct ib_ucm_rep cmd
;
803 param
.private_data
= NULL
;
805 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
808 result
= ib_ucm_alloc_data(¶m
.private_data
, cmd
.data
, cmd
.len
);
812 param
.qp_num
= cmd
.qpn
;
813 param
.starting_psn
= cmd
.psn
;
814 param
.private_data_len
= cmd
.len
;
815 param
.responder_resources
= cmd
.responder_resources
;
816 param
.initiator_depth
= cmd
.initiator_depth
;
817 param
.failover_accepted
= cmd
.failover_accepted
;
818 param
.flow_control
= cmd
.flow_control
;
819 param
.rnr_retry_count
= cmd
.rnr_retry_count
;
822 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
825 result
= ib_send_cm_rep(ctx
->cm_id
, ¶m
);
828 result
= PTR_ERR(ctx
);
830 kfree(param
.private_data
);
834 static ssize_t
ib_ucm_send_private_data(struct ib_ucm_file
*file
,
835 const char __user
*inbuf
, int in_len
,
836 int (*func
)(struct ib_cm_id
*cm_id
,
837 const void *private_data
,
838 u8 private_data_len
))
840 struct ib_ucm_private_data cmd
;
841 struct ib_ucm_context
*ctx
;
842 const void *private_data
= NULL
;
845 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
848 result
= ib_ucm_alloc_data(&private_data
, cmd
.data
, cmd
.len
);
852 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
854 result
= func(ctx
->cm_id
, private_data
, cmd
.len
);
857 result
= PTR_ERR(ctx
);
863 static ssize_t
ib_ucm_send_rtu(struct ib_ucm_file
*file
,
864 const char __user
*inbuf
,
865 int in_len
, int out_len
)
867 return ib_ucm_send_private_data(file
, inbuf
, in_len
, ib_send_cm_rtu
);
870 static ssize_t
ib_ucm_send_dreq(struct ib_ucm_file
*file
,
871 const char __user
*inbuf
,
872 int in_len
, int out_len
)
874 return ib_ucm_send_private_data(file
, inbuf
, in_len
, ib_send_cm_dreq
);
877 static ssize_t
ib_ucm_send_drep(struct ib_ucm_file
*file
,
878 const char __user
*inbuf
,
879 int in_len
, int out_len
)
881 return ib_ucm_send_private_data(file
, inbuf
, in_len
, ib_send_cm_drep
);
884 static ssize_t
ib_ucm_send_info(struct ib_ucm_file
*file
,
885 const char __user
*inbuf
, int in_len
,
886 int (*func
)(struct ib_cm_id
*cm_id
,
893 struct ib_ucm_context
*ctx
;
894 struct ib_ucm_info cmd
;
895 const void *data
= NULL
;
896 const void *info
= NULL
;
899 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
902 result
= ib_ucm_alloc_data(&data
, cmd
.data
, cmd
.data_len
);
906 result
= ib_ucm_alloc_data(&info
, cmd
.info
, cmd
.info_len
);
910 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
912 result
= func(ctx
->cm_id
, cmd
.status
, info
, cmd
.info_len
,
916 result
= PTR_ERR(ctx
);
924 static ssize_t
ib_ucm_send_rej(struct ib_ucm_file
*file
,
925 const char __user
*inbuf
,
926 int in_len
, int out_len
)
928 return ib_ucm_send_info(file
, inbuf
, in_len
, (void *)ib_send_cm_rej
);
931 static ssize_t
ib_ucm_send_apr(struct ib_ucm_file
*file
,
932 const char __user
*inbuf
,
933 int in_len
, int out_len
)
935 return ib_ucm_send_info(file
, inbuf
, in_len
, (void *)ib_send_cm_apr
);
938 static ssize_t
ib_ucm_send_mra(struct ib_ucm_file
*file
,
939 const char __user
*inbuf
,
940 int in_len
, int out_len
)
942 struct ib_ucm_context
*ctx
;
943 struct ib_ucm_mra cmd
;
944 const void *data
= NULL
;
947 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
950 result
= ib_ucm_alloc_data(&data
, cmd
.data
, cmd
.len
);
954 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
956 result
= ib_send_cm_mra(ctx
->cm_id
, cmd
.timeout
, data
, cmd
.len
);
959 result
= PTR_ERR(ctx
);
965 static ssize_t
ib_ucm_send_lap(struct ib_ucm_file
*file
,
966 const char __user
*inbuf
,
967 int in_len
, int out_len
)
969 struct ib_ucm_context
*ctx
;
970 struct sa_path_rec
*path
= NULL
;
971 struct ib_ucm_lap cmd
;
972 const void *data
= NULL
;
975 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
978 result
= ib_ucm_alloc_data(&data
, cmd
.data
, cmd
.len
);
982 result
= ib_ucm_path_get(&path
, cmd
.path
);
986 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
988 result
= ib_send_cm_lap(ctx
->cm_id
, path
, data
, cmd
.len
);
991 result
= PTR_ERR(ctx
);
999 static ssize_t
ib_ucm_send_sidr_req(struct ib_ucm_file
*file
,
1000 const char __user
*inbuf
,
1001 int in_len
, int out_len
)
1003 struct ib_cm_sidr_req_param param
;
1004 struct ib_ucm_context
*ctx
;
1005 struct ib_ucm_sidr_req cmd
;
1008 param
.private_data
= NULL
;
1011 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
1014 result
= ib_ucm_alloc_data(¶m
.private_data
, cmd
.data
, cmd
.len
);
1018 result
= ib_ucm_path_get(¶m
.path
, cmd
.path
);
1022 param
.private_data_len
= cmd
.len
;
1023 param
.service_id
= cmd
.sid
;
1024 param
.timeout_ms
= cmd
.timeout
;
1025 param
.max_cm_retries
= cmd
.max_cm_retries
;
1027 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
1029 result
= ib_send_cm_sidr_req(ctx
->cm_id
, ¶m
);
1030 ib_ucm_ctx_put(ctx
);
1032 result
= PTR_ERR(ctx
);
1035 kfree(param
.private_data
);
1040 static ssize_t
ib_ucm_send_sidr_rep(struct ib_ucm_file
*file
,
1041 const char __user
*inbuf
,
1042 int in_len
, int out_len
)
1044 struct ib_cm_sidr_rep_param param
;
1045 struct ib_ucm_sidr_rep cmd
;
1046 struct ib_ucm_context
*ctx
;
1051 if (copy_from_user(&cmd
, inbuf
, sizeof(cmd
)))
1054 result
= ib_ucm_alloc_data(¶m
.private_data
,
1055 cmd
.data
, cmd
.data_len
);
1059 result
= ib_ucm_alloc_data(¶m
.info
, cmd
.info
, cmd
.info_len
);
1063 param
.qp_num
= cmd
.qpn
;
1064 param
.qkey
= cmd
.qkey
;
1065 param
.status
= cmd
.status
;
1066 param
.info_length
= cmd
.info_len
;
1067 param
.private_data_len
= cmd
.data_len
;
1069 ctx
= ib_ucm_ctx_get(file
, cmd
.id
);
1071 result
= ib_send_cm_sidr_rep(ctx
->cm_id
, ¶m
);
1072 ib_ucm_ctx_put(ctx
);
1074 result
= PTR_ERR(ctx
);
1077 kfree(param
.private_data
);
1082 static ssize_t (*ucm_cmd_table
[])(struct ib_ucm_file
*file
,
1083 const char __user
*inbuf
,
1084 int in_len
, int out_len
) = {
1085 [IB_USER_CM_CMD_CREATE_ID
] = ib_ucm_create_id
,
1086 [IB_USER_CM_CMD_DESTROY_ID
] = ib_ucm_destroy_id
,
1087 [IB_USER_CM_CMD_ATTR_ID
] = ib_ucm_attr_id
,
1088 [IB_USER_CM_CMD_LISTEN
] = ib_ucm_listen
,
1089 [IB_USER_CM_CMD_NOTIFY
] = ib_ucm_notify
,
1090 [IB_USER_CM_CMD_SEND_REQ
] = ib_ucm_send_req
,
1091 [IB_USER_CM_CMD_SEND_REP
] = ib_ucm_send_rep
,
1092 [IB_USER_CM_CMD_SEND_RTU
] = ib_ucm_send_rtu
,
1093 [IB_USER_CM_CMD_SEND_DREQ
] = ib_ucm_send_dreq
,
1094 [IB_USER_CM_CMD_SEND_DREP
] = ib_ucm_send_drep
,
1095 [IB_USER_CM_CMD_SEND_REJ
] = ib_ucm_send_rej
,
1096 [IB_USER_CM_CMD_SEND_MRA
] = ib_ucm_send_mra
,
1097 [IB_USER_CM_CMD_SEND_LAP
] = ib_ucm_send_lap
,
1098 [IB_USER_CM_CMD_SEND_APR
] = ib_ucm_send_apr
,
1099 [IB_USER_CM_CMD_SEND_SIDR_REQ
] = ib_ucm_send_sidr_req
,
1100 [IB_USER_CM_CMD_SEND_SIDR_REP
] = ib_ucm_send_sidr_rep
,
1101 [IB_USER_CM_CMD_EVENT
] = ib_ucm_event
,
1102 [IB_USER_CM_CMD_INIT_QP_ATTR
] = ib_ucm_init_qp_attr
,
1105 static ssize_t
ib_ucm_write(struct file
*filp
, const char __user
*buf
,
1106 size_t len
, loff_t
*pos
)
1108 struct ib_ucm_file
*file
= filp
->private_data
;
1109 struct ib_ucm_cmd_hdr hdr
;
1112 if (!ib_safe_file_access(filp
)) {
1113 pr_err_once("ucm_write: process %d (%s) changed security contexts after opening file descriptor, this is not allowed.\n",
1114 task_tgid_vnr(current
), current
->comm
);
1118 if (len
< sizeof(hdr
))
1121 if (copy_from_user(&hdr
, buf
, sizeof(hdr
)))
1124 if (hdr
.cmd
>= ARRAY_SIZE(ucm_cmd_table
))
1127 if (hdr
.in
+ sizeof(hdr
) > len
)
1130 result
= ucm_cmd_table
[hdr
.cmd
](file
, buf
+ sizeof(hdr
),
1138 static __poll_t
ib_ucm_poll(struct file
*filp
,
1139 struct poll_table_struct
*wait
)
1141 struct ib_ucm_file
*file
= filp
->private_data
;
1144 poll_wait(filp
, &file
->poll_wait
, wait
);
1146 if (!list_empty(&file
->events
))
1147 mask
= EPOLLIN
| EPOLLRDNORM
;
1153 * ib_ucm_open() does not need the BKL:
1155 * - no global state is referred to;
1156 * - there is no ioctl method to race against;
1157 * - no further module initialization is required for open to work
1158 * after the device is registered.
1160 static int ib_ucm_open(struct inode
*inode
, struct file
*filp
)
1162 struct ib_ucm_file
*file
;
1164 file
= kmalloc(sizeof(*file
), GFP_KERNEL
);
1168 INIT_LIST_HEAD(&file
->events
);
1169 INIT_LIST_HEAD(&file
->ctxs
);
1170 init_waitqueue_head(&file
->poll_wait
);
1172 mutex_init(&file
->file_mutex
);
1174 filp
->private_data
= file
;
1176 file
->device
= container_of(inode
->i_cdev
, struct ib_ucm_device
, cdev
);
1178 return nonseekable_open(inode
, filp
);
1181 static int ib_ucm_close(struct inode
*inode
, struct file
*filp
)
1183 struct ib_ucm_file
*file
= filp
->private_data
;
1184 struct ib_ucm_context
*ctx
;
1186 mutex_lock(&file
->file_mutex
);
1187 while (!list_empty(&file
->ctxs
)) {
1188 ctx
= list_entry(file
->ctxs
.next
,
1189 struct ib_ucm_context
, file_list
);
1190 mutex_unlock(&file
->file_mutex
);
1192 mutex_lock(&ctx_id_mutex
);
1193 idr_remove(&ctx_id_table
, ctx
->id
);
1194 mutex_unlock(&ctx_id_mutex
);
1196 ib_destroy_cm_id(ctx
->cm_id
);
1197 ib_ucm_cleanup_events(ctx
);
1200 mutex_lock(&file
->file_mutex
);
1202 mutex_unlock(&file
->file_mutex
);
1207 static void ib_ucm_release_dev(struct device
*dev
)
1209 struct ib_ucm_device
*ucm_dev
;
1211 ucm_dev
= container_of(dev
, struct ib_ucm_device
, dev
);
1215 static void ib_ucm_free_dev(struct ib_ucm_device
*ucm_dev
)
1217 clear_bit(ucm_dev
->devnum
, dev_map
);
1220 static const struct file_operations ucm_fops
= {
1221 .owner
= THIS_MODULE
,
1222 .open
= ib_ucm_open
,
1223 .release
= ib_ucm_close
,
1224 .write
= ib_ucm_write
,
1225 .poll
= ib_ucm_poll
,
1226 .llseek
= no_llseek
,
1229 static ssize_t
show_ibdev(struct device
*dev
, struct device_attribute
*attr
,
1232 struct ib_ucm_device
*ucm_dev
;
1234 ucm_dev
= container_of(dev
, struct ib_ucm_device
, dev
);
1235 return sprintf(buf
, "%s\n", ucm_dev
->ib_dev
->name
);
1237 static DEVICE_ATTR(ibdev
, S_IRUGO
, show_ibdev
, NULL
);
1239 static void ib_ucm_add_one(struct ib_device
*device
)
1243 struct ib_ucm_device
*ucm_dev
;
1245 if (!device
->alloc_ucontext
|| !rdma_cap_ib_cm(device
, 1))
1248 ucm_dev
= kzalloc(sizeof *ucm_dev
, GFP_KERNEL
);
1252 device_initialize(&ucm_dev
->dev
);
1253 ucm_dev
->ib_dev
= device
;
1254 ucm_dev
->dev
.release
= ib_ucm_release_dev
;
1256 devnum
= find_first_zero_bit(dev_map
, IB_UCM_MAX_DEVICES
);
1257 if (devnum
>= IB_UCM_MAX_DEVICES
)
1259 ucm_dev
->devnum
= devnum
;
1260 set_bit(devnum
, dev_map
);
1261 if (devnum
>= IB_UCM_NUM_FIXED_MINOR
)
1262 base
= dynamic_ucm_dev
+ devnum
- IB_UCM_NUM_FIXED_MINOR
;
1264 base
= IB_UCM_BASE_DEV
+ devnum
;
1266 cdev_init(&ucm_dev
->cdev
, &ucm_fops
);
1267 ucm_dev
->cdev
.owner
= THIS_MODULE
;
1268 kobject_set_name(&ucm_dev
->cdev
.kobj
, "ucm%d", ucm_dev
->devnum
);
1270 ucm_dev
->dev
.class = &cm_class
;
1271 ucm_dev
->dev
.parent
= device
->dev
.parent
;
1272 ucm_dev
->dev
.devt
= base
;
1274 dev_set_name(&ucm_dev
->dev
, "ucm%d", ucm_dev
->devnum
);
1275 if (cdev_device_add(&ucm_dev
->cdev
, &ucm_dev
->dev
))
1278 if (device_create_file(&ucm_dev
->dev
, &dev_attr_ibdev
))
1281 ib_set_client_data(device
, &ucm_client
, ucm_dev
);
1285 cdev_device_del(&ucm_dev
->cdev
, &ucm_dev
->dev
);
1287 ib_ucm_free_dev(ucm_dev
);
1289 put_device(&ucm_dev
->dev
);
1293 static void ib_ucm_remove_one(struct ib_device
*device
, void *client_data
)
1295 struct ib_ucm_device
*ucm_dev
= client_data
;
1300 cdev_device_del(&ucm_dev
->cdev
, &ucm_dev
->dev
);
1301 ib_ucm_free_dev(ucm_dev
);
1302 put_device(&ucm_dev
->dev
);
1305 static CLASS_ATTR_STRING(abi_version
, S_IRUGO
,
1306 __stringify(IB_USER_CM_ABI_VERSION
));
1308 static int __init
ib_ucm_init(void)
1312 ret
= register_chrdev_region(IB_UCM_BASE_DEV
, IB_UCM_NUM_FIXED_MINOR
,
1315 pr_err("ucm: couldn't register device number\n");
1319 ret
= alloc_chrdev_region(&dynamic_ucm_dev
, 0, IB_UCM_NUM_DYNAMIC_MINOR
,
1322 pr_err("ucm: couldn't register dynamic device number\n");
1326 ret
= class_create_file(&cm_class
, &class_attr_abi_version
.attr
);
1328 pr_err("ucm: couldn't create abi_version attribute\n");
1332 ret
= ib_register_client(&ucm_client
);
1334 pr_err("ucm: couldn't register client\n");
1340 class_remove_file(&cm_class
, &class_attr_abi_version
.attr
);
1342 unregister_chrdev_region(dynamic_ucm_dev
, IB_UCM_NUM_DYNAMIC_MINOR
);
1344 unregister_chrdev_region(IB_UCM_BASE_DEV
, IB_UCM_NUM_FIXED_MINOR
);
1349 static void __exit
ib_ucm_cleanup(void)
1351 ib_unregister_client(&ucm_client
);
1352 class_remove_file(&cm_class
, &class_attr_abi_version
.attr
);
1353 unregister_chrdev_region(IB_UCM_BASE_DEV
, IB_UCM_NUM_FIXED_MINOR
);
1354 unregister_chrdev_region(dynamic_ucm_dev
, IB_UCM_NUM_DYNAMIC_MINOR
);
1355 idr_destroy(&ctx_id_table
);
1358 module_init(ib_ucm_init
);
1359 module_exit(ib_ucm_cleanup
);