2 * Copyright (c) 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
4 * Copyright (c) 2005 PathScale, Inc. All rights reserved.
5 * Copyright (c) 2006 Mellanox Technologies. All rights reserved.
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/file.h>
38 #include <linux/slab.h>
40 #include <asm/uaccess.h>
44 static struct lock_class_key pd_lock_key;
45 static struct lock_class_key mr_lock_key;
46 static struct lock_class_key cq_lock_key;
47 static struct lock_class_key qp_lock_key;
48 static struct lock_class_key ah_lock_key;
49 static struct lock_class_key srq_lock_key;
51 #define INIT_UDATA(udata, ibuf, obuf, ilen, olen) \
53 (udata)->inbuf = (void __user *) (ibuf); \
54 (udata)->outbuf = (void __user *) (obuf); \
55 (udata)->inlen = (ilen); \
56 (udata)->outlen = (olen); \
60 * The ib_uobject locking scheme is as follows:
62 * - ib_uverbs_idr_lock protects the uverbs idrs themselves, so it
63 * needs to be held during all idr operations. When an object is
64 * looked up, a reference must be taken on the object's kref before
67 * - Each object also has an rwsem. This rwsem must be held for
68 * reading while an operation that uses the object is performed.
69 * For example, while registering an MR, the associated PD's
70 * uobject.mutex must be held for reading. The rwsem must be held
71 * for writing while initializing or destroying an object.
73 * - In addition, each object has a "live" flag. If this flag is not
74 * set, then lookups of the object will fail even if it is found in
75 * the idr. This handles a reader that blocks and does not acquire
76 * the rwsem until after the object is destroyed. The destroy
77 * operation will set the live flag to 0 and then drop the rwsem;
78 * this will allow the reader to acquire the rwsem, see that the
79 * live flag is 0, and then drop the rwsem and its reference to
80 * object. The underlying storage will not be freed until the last
81 * reference to the object is dropped.
84 static void init_uobj(struct ib_uobject *uobj, u64 user_handle,
85 struct ib_ucontext *context, struct lock_class_key *key)
87 uobj->user_handle = user_handle;
88 uobj->context = context;
89 kref_init(&uobj->ref);
90 init_rwsem(&uobj->mutex);
91 lockdep_set_class(&uobj->mutex, key);
95 static void release_uobj(struct kref *kref)
97 kfree(container_of(kref, struct ib_uobject, ref));
100 static void put_uobj(struct ib_uobject *uobj)
102 kref_put(&uobj->ref, release_uobj);
105 static void put_uobj_read(struct ib_uobject *uobj)
107 up_read(&uobj->mutex);
111 static void put_uobj_write(struct ib_uobject *uobj)
113 up_write(&uobj->mutex);
117 static int idr_add_uobj(struct idr *idr, struct ib_uobject *uobj)
122 if (!idr_pre_get(idr, GFP_KERNEL))
125 spin_lock(&ib_uverbs_idr_lock);
126 ret = idr_get_new(idr, uobj, &uobj->id);
127 spin_unlock(&ib_uverbs_idr_lock);
135 void idr_remove_uobj(struct idr *idr, struct ib_uobject *uobj)
137 spin_lock(&ib_uverbs_idr_lock);
138 idr_remove(idr, uobj->id);
139 spin_unlock(&ib_uverbs_idr_lock);
142 static struct ib_uobject *__idr_get_uobj(struct idr *idr, int id,
143 struct ib_ucontext *context)
145 struct ib_uobject *uobj;
147 spin_lock(&ib_uverbs_idr_lock);
148 uobj = idr_find(idr, id);
150 if (uobj->context == context)
151 kref_get(&uobj->ref);
155 spin_unlock(&ib_uverbs_idr_lock);
160 static struct ib_uobject *idr_read_uobj(struct idr *idr, int id,
161 struct ib_ucontext *context, int nested)
163 struct ib_uobject *uobj;
165 uobj = __idr_get_uobj(idr, id, context);
170 down_read_nested(&uobj->mutex, SINGLE_DEPTH_NESTING);
172 down_read(&uobj->mutex);
181 static struct ib_uobject *idr_write_uobj(struct idr *idr, int id,
182 struct ib_ucontext *context)
184 struct ib_uobject *uobj;
186 uobj = __idr_get_uobj(idr, id, context);
190 down_write(&uobj->mutex);
192 put_uobj_write(uobj);
199 static void *idr_read_obj(struct idr *idr, int id, struct ib_ucontext *context,
202 struct ib_uobject *uobj;
204 uobj = idr_read_uobj(idr, id, context, nested);
205 return uobj ? uobj->object : NULL;
208 static struct ib_pd *idr_read_pd(int pd_handle, struct ib_ucontext *context)
210 return idr_read_obj(&ib_uverbs_pd_idr, pd_handle, context, 0);
213 static void put_pd_read(struct ib_pd *pd)
215 put_uobj_read(pd->uobject);
218 static struct ib_cq *idr_read_cq(int cq_handle, struct ib_ucontext *context, int nested)
220 return idr_read_obj(&ib_uverbs_cq_idr, cq_handle, context, nested);
223 static void put_cq_read(struct ib_cq *cq)
225 put_uobj_read(cq->uobject);
228 static struct ib_ah *idr_read_ah(int ah_handle, struct ib_ucontext *context)
230 return idr_read_obj(&ib_uverbs_ah_idr, ah_handle, context, 0);
233 static void put_ah_read(struct ib_ah *ah)
235 put_uobj_read(ah->uobject);
238 static struct ib_qp *idr_read_qp(int qp_handle, struct ib_ucontext *context)
240 return idr_read_obj(&ib_uverbs_qp_idr, qp_handle, context, 0);
243 static void put_qp_read(struct ib_qp *qp)
245 put_uobj_read(qp->uobject);
248 static struct ib_srq *idr_read_srq(int srq_handle, struct ib_ucontext *context)
250 return idr_read_obj(&ib_uverbs_srq_idr, srq_handle, context, 0);
253 static void put_srq_read(struct ib_srq *srq)
255 put_uobj_read(srq->uobject);
258 ssize_t ib_uverbs_get_context(struct ib_uverbs_file *file,
259 const char __user *buf,
260 int in_len, int out_len)
262 struct ib_uverbs_get_context cmd;
263 struct ib_uverbs_get_context_resp resp;
264 struct ib_udata udata;
265 struct ib_device *ibdev = file->device->ib_dev;
266 struct ib_ucontext *ucontext;
270 if (out_len < sizeof resp)
273 if (copy_from_user(&cmd, buf, sizeof cmd))
276 mutex_lock(&file->mutex);
278 if (file->ucontext) {
283 INIT_UDATA(&udata, buf + sizeof cmd,
284 (unsigned long) cmd.response + sizeof resp,
285 in_len - sizeof cmd, out_len - sizeof resp);
287 ucontext = ibdev->alloc_ucontext(ibdev, &udata);
288 if (IS_ERR(ucontext)) {
289 ret = PTR_ERR(ucontext);
293 ucontext->device = ibdev;
294 INIT_LIST_HEAD(&ucontext->pd_list);
295 INIT_LIST_HEAD(&ucontext->mr_list);
296 INIT_LIST_HEAD(&ucontext->mw_list);
297 INIT_LIST_HEAD(&ucontext->cq_list);
298 INIT_LIST_HEAD(&ucontext->qp_list);
299 INIT_LIST_HEAD(&ucontext->srq_list);
300 INIT_LIST_HEAD(&ucontext->ah_list);
301 ucontext->closing = 0;
303 resp.num_comp_vectors = file->device->num_comp_vectors;
305 ret = get_unused_fd();
310 filp = ib_uverbs_alloc_event_file(file, 1);
316 if (copy_to_user((void __user *) (unsigned long) cmd.response,
317 &resp, sizeof resp)) {
322 file->async_file = filp->private_data;
324 INIT_IB_EVENT_HANDLER(&file->event_handler, file->device->ib_dev,
325 ib_uverbs_event_handler);
326 ret = ib_register_event_handler(&file->event_handler);
330 kref_get(&file->async_file->ref);
331 kref_get(&file->ref);
332 file->ucontext = ucontext;
334 fd_install(resp.async_fd, filp);
336 mutex_unlock(&file->mutex);
344 put_unused_fd(resp.async_fd);
347 ibdev->dealloc_ucontext(ucontext);
350 mutex_unlock(&file->mutex);
354 ssize_t ib_uverbs_query_device(struct ib_uverbs_file *file,
355 const char __user *buf,
356 int in_len, int out_len)
358 struct ib_uverbs_query_device cmd;
359 struct ib_uverbs_query_device_resp resp;
360 struct ib_device_attr attr;
363 if (out_len < sizeof resp)
366 if (copy_from_user(&cmd, buf, sizeof cmd))
369 ret = ib_query_device(file->device->ib_dev, &attr);
373 memset(&resp, 0, sizeof resp);
375 resp.fw_ver = attr.fw_ver;
376 resp.node_guid = file->device->ib_dev->node_guid;
377 resp.sys_image_guid = attr.sys_image_guid;
378 resp.max_mr_size = attr.max_mr_size;
379 resp.page_size_cap = attr.page_size_cap;
380 resp.vendor_id = attr.vendor_id;
381 resp.vendor_part_id = attr.vendor_part_id;
382 resp.hw_ver = attr.hw_ver;
383 resp.max_qp = attr.max_qp;
384 resp.max_qp_wr = attr.max_qp_wr;
385 resp.device_cap_flags = attr.device_cap_flags;
386 resp.max_sge = attr.max_sge;
387 resp.max_sge_rd = attr.max_sge_rd;
388 resp.max_cq = attr.max_cq;
389 resp.max_cqe = attr.max_cqe;
390 resp.max_mr = attr.max_mr;
391 resp.max_pd = attr.max_pd;
392 resp.max_qp_rd_atom = attr.max_qp_rd_atom;
393 resp.max_ee_rd_atom = attr.max_ee_rd_atom;
394 resp.max_res_rd_atom = attr.max_res_rd_atom;
395 resp.max_qp_init_rd_atom = attr.max_qp_init_rd_atom;
396 resp.max_ee_init_rd_atom = attr.max_ee_init_rd_atom;
397 resp.atomic_cap = attr.atomic_cap;
398 resp.max_ee = attr.max_ee;
399 resp.max_rdd = attr.max_rdd;
400 resp.max_mw = attr.max_mw;
401 resp.max_raw_ipv6_qp = attr.max_raw_ipv6_qp;
402 resp.max_raw_ethy_qp = attr.max_raw_ethy_qp;
403 resp.max_mcast_grp = attr.max_mcast_grp;
404 resp.max_mcast_qp_attach = attr.max_mcast_qp_attach;
405 resp.max_total_mcast_qp_attach = attr.max_total_mcast_qp_attach;
406 resp.max_ah = attr.max_ah;
407 resp.max_fmr = attr.max_fmr;
408 resp.max_map_per_fmr = attr.max_map_per_fmr;
409 resp.max_srq = attr.max_srq;
410 resp.max_srq_wr = attr.max_srq_wr;
411 resp.max_srq_sge = attr.max_srq_sge;
412 resp.max_pkeys = attr.max_pkeys;
413 resp.local_ca_ack_delay = attr.local_ca_ack_delay;
414 resp.phys_port_cnt = file->device->ib_dev->phys_port_cnt;
416 if (copy_to_user((void __user *) (unsigned long) cmd.response,
423 ssize_t ib_uverbs_query_port(struct ib_uverbs_file *file,
424 const char __user *buf,
425 int in_len, int out_len)
427 struct ib_uverbs_query_port cmd;
428 struct ib_uverbs_query_port_resp resp;
429 struct ib_port_attr attr;
432 if (out_len < sizeof resp)
435 if (copy_from_user(&cmd, buf, sizeof cmd))
438 ret = ib_query_port(file->device->ib_dev, cmd.port_num, &attr);
442 memset(&resp, 0, sizeof resp);
444 resp.state = attr.state;
445 resp.max_mtu = attr.max_mtu;
446 resp.active_mtu = attr.active_mtu;
447 resp.gid_tbl_len = attr.gid_tbl_len;
448 resp.port_cap_flags = attr.port_cap_flags;
449 resp.max_msg_sz = attr.max_msg_sz;
450 resp.bad_pkey_cntr = attr.bad_pkey_cntr;
451 resp.qkey_viol_cntr = attr.qkey_viol_cntr;
452 resp.pkey_tbl_len = attr.pkey_tbl_len;
454 resp.sm_lid = attr.sm_lid;
456 resp.max_vl_num = attr.max_vl_num;
457 resp.sm_sl = attr.sm_sl;
458 resp.subnet_timeout = attr.subnet_timeout;
459 resp.init_type_reply = attr.init_type_reply;
460 resp.active_width = attr.active_width;
461 resp.active_speed = attr.active_speed;
462 resp.phys_state = attr.phys_state;
464 if (copy_to_user((void __user *) (unsigned long) cmd.response,
471 ssize_t ib_uverbs_alloc_pd(struct ib_uverbs_file *file,
472 const char __user *buf,
473 int in_len, int out_len)
475 struct ib_uverbs_alloc_pd cmd;
476 struct ib_uverbs_alloc_pd_resp resp;
477 struct ib_udata udata;
478 struct ib_uobject *uobj;
482 if (out_len < sizeof resp)
485 if (copy_from_user(&cmd, buf, sizeof cmd))
488 INIT_UDATA(&udata, buf + sizeof cmd,
489 (unsigned long) cmd.response + sizeof resp,
490 in_len - sizeof cmd, out_len - sizeof resp);
492 uobj = kmalloc(sizeof *uobj, GFP_KERNEL);
496 init_uobj(uobj, 0, file->ucontext, &pd_lock_key);
497 down_write(&uobj->mutex);
499 pd = file->device->ib_dev->alloc_pd(file->device->ib_dev,
500 file->ucontext, &udata);
506 pd->device = file->device->ib_dev;
508 atomic_set(&pd->usecnt, 0);
511 ret = idr_add_uobj(&ib_uverbs_pd_idr, uobj);
515 memset(&resp, 0, sizeof resp);
516 resp.pd_handle = uobj->id;
518 if (copy_to_user((void __user *) (unsigned long) cmd.response,
519 &resp, sizeof resp)) {
524 mutex_lock(&file->mutex);
525 list_add_tail(&uobj->list, &file->ucontext->pd_list);
526 mutex_unlock(&file->mutex);
530 up_write(&uobj->mutex);
535 idr_remove_uobj(&ib_uverbs_pd_idr, uobj);
541 put_uobj_write(uobj);
545 ssize_t ib_uverbs_dealloc_pd(struct ib_uverbs_file *file,
546 const char __user *buf,
547 int in_len, int out_len)
549 struct ib_uverbs_dealloc_pd cmd;
550 struct ib_uobject *uobj;
553 if (copy_from_user(&cmd, buf, sizeof cmd))
556 uobj = idr_write_uobj(&ib_uverbs_pd_idr, cmd.pd_handle, file->ucontext);
560 ret = ib_dealloc_pd(uobj->object);
564 put_uobj_write(uobj);
569 idr_remove_uobj(&ib_uverbs_pd_idr, uobj);
571 mutex_lock(&file->mutex);
572 list_del(&uobj->list);
573 mutex_unlock(&file->mutex);
580 ssize_t ib_uverbs_reg_mr(struct ib_uverbs_file *file,
581 const char __user *buf, int in_len,
584 struct ib_uverbs_reg_mr cmd;
585 struct ib_uverbs_reg_mr_resp resp;
586 struct ib_udata udata;
587 struct ib_uobject *uobj;
592 if (out_len < sizeof resp)
595 if (copy_from_user(&cmd, buf, sizeof cmd))
598 INIT_UDATA(&udata, buf + sizeof cmd,
599 (unsigned long) cmd.response + sizeof resp,
600 in_len - sizeof cmd, out_len - sizeof resp);
602 if ((cmd.start & ~PAGE_MASK) != (cmd.hca_va & ~PAGE_MASK))
606 * Local write permission is required if remote write or
607 * remote atomic permission is also requested.
609 if (cmd.access_flags & (IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_REMOTE_WRITE) &&
610 !(cmd.access_flags & IB_ACCESS_LOCAL_WRITE))
613 uobj = kmalloc(sizeof *uobj, GFP_KERNEL);
617 init_uobj(uobj, 0, file->ucontext, &mr_lock_key);
618 down_write(&uobj->mutex);
620 pd = idr_read_pd(cmd.pd_handle, file->ucontext);
626 mr = pd->device->reg_user_mr(pd, cmd.start, cmd.length, cmd.hca_va,
627 cmd.access_flags, &udata);
633 mr->device = pd->device;
636 atomic_inc(&pd->usecnt);
637 atomic_set(&mr->usecnt, 0);
640 ret = idr_add_uobj(&ib_uverbs_mr_idr, uobj);
644 memset(&resp, 0, sizeof resp);
645 resp.lkey = mr->lkey;
646 resp.rkey = mr->rkey;
647 resp.mr_handle = uobj->id;
649 if (copy_to_user((void __user *) (unsigned long) cmd.response,
650 &resp, sizeof resp)) {
657 mutex_lock(&file->mutex);
658 list_add_tail(&uobj->list, &file->ucontext->mr_list);
659 mutex_unlock(&file->mutex);
663 up_write(&uobj->mutex);
668 idr_remove_uobj(&ib_uverbs_mr_idr, uobj);
677 put_uobj_write(uobj);
681 ssize_t ib_uverbs_dereg_mr(struct ib_uverbs_file *file,
682 const char __user *buf, int in_len,
685 struct ib_uverbs_dereg_mr cmd;
687 struct ib_uobject *uobj;
690 if (copy_from_user(&cmd, buf, sizeof cmd))
693 uobj = idr_write_uobj(&ib_uverbs_mr_idr, cmd.mr_handle, file->ucontext);
699 ret = ib_dereg_mr(mr);
703 put_uobj_write(uobj);
708 idr_remove_uobj(&ib_uverbs_mr_idr, uobj);
710 mutex_lock(&file->mutex);
711 list_del(&uobj->list);
712 mutex_unlock(&file->mutex);
719 ssize_t ib_uverbs_create_comp_channel(struct ib_uverbs_file *file,
720 const char __user *buf, int in_len,
723 struct ib_uverbs_create_comp_channel cmd;
724 struct ib_uverbs_create_comp_channel_resp resp;
728 if (out_len < sizeof resp)
731 if (copy_from_user(&cmd, buf, sizeof cmd))
734 ret = get_unused_fd();
739 filp = ib_uverbs_alloc_event_file(file, 0);
741 put_unused_fd(resp.fd);
742 return PTR_ERR(filp);
745 if (copy_to_user((void __user *) (unsigned long) cmd.response,
746 &resp, sizeof resp)) {
747 put_unused_fd(resp.fd);
752 fd_install(resp.fd, filp);
756 ssize_t ib_uverbs_create_cq(struct ib_uverbs_file *file,
757 const char __user *buf, int in_len,
760 struct ib_uverbs_create_cq cmd;
761 struct ib_uverbs_create_cq_resp resp;
762 struct ib_udata udata;
763 struct ib_ucq_object *obj;
764 struct ib_uverbs_event_file *ev_file = NULL;
768 if (out_len < sizeof resp)
771 if (copy_from_user(&cmd, buf, sizeof cmd))
774 INIT_UDATA(&udata, buf + sizeof cmd,
775 (unsigned long) cmd.response + sizeof resp,
776 in_len - sizeof cmd, out_len - sizeof resp);
778 if (cmd.comp_vector >= file->device->num_comp_vectors)
781 obj = kmalloc(sizeof *obj, GFP_KERNEL);
785 init_uobj(&obj->uobject, cmd.user_handle, file->ucontext, &cq_lock_key);
786 down_write(&obj->uobject.mutex);
788 if (cmd.comp_channel >= 0) {
789 ev_file = ib_uverbs_lookup_comp_file(cmd.comp_channel);
796 obj->uverbs_file = file;
797 obj->comp_events_reported = 0;
798 obj->async_events_reported = 0;
799 INIT_LIST_HEAD(&obj->comp_list);
800 INIT_LIST_HEAD(&obj->async_list);
802 cq = file->device->ib_dev->create_cq(file->device->ib_dev, cmd.cqe,
804 file->ucontext, &udata);
810 cq->device = file->device->ib_dev;
811 cq->uobject = &obj->uobject;
812 cq->comp_handler = ib_uverbs_comp_handler;
813 cq->event_handler = ib_uverbs_cq_event_handler;
814 cq->cq_context = ev_file;
815 atomic_set(&cq->usecnt, 0);
817 obj->uobject.object = cq;
818 ret = idr_add_uobj(&ib_uverbs_cq_idr, &obj->uobject);
822 memset(&resp, 0, sizeof resp);
823 resp.cq_handle = obj->uobject.id;
826 if (copy_to_user((void __user *) (unsigned long) cmd.response,
827 &resp, sizeof resp)) {
832 mutex_lock(&file->mutex);
833 list_add_tail(&obj->uobject.list, &file->ucontext->cq_list);
834 mutex_unlock(&file->mutex);
836 obj->uobject.live = 1;
838 up_write(&obj->uobject.mutex);
843 idr_remove_uobj(&ib_uverbs_cq_idr, &obj->uobject);
850 ib_uverbs_release_ucq(file, ev_file, obj);
853 put_uobj_write(&obj->uobject);
857 ssize_t ib_uverbs_resize_cq(struct ib_uverbs_file *file,
858 const char __user *buf, int in_len,
861 struct ib_uverbs_resize_cq cmd;
862 struct ib_uverbs_resize_cq_resp resp;
863 struct ib_udata udata;
867 if (copy_from_user(&cmd, buf, sizeof cmd))
870 INIT_UDATA(&udata, buf + sizeof cmd,
871 (unsigned long) cmd.response + sizeof resp,
872 in_len - sizeof cmd, out_len - sizeof resp);
874 cq = idr_read_cq(cmd.cq_handle, file->ucontext, 0);
878 ret = cq->device->resize_cq(cq, cmd.cqe, &udata);
884 if (copy_to_user((void __user *) (unsigned long) cmd.response,
885 &resp, sizeof resp.cqe))
891 return ret ? ret : in_len;
894 ssize_t ib_uverbs_poll_cq(struct ib_uverbs_file *file,
895 const char __user *buf, int in_len,
898 struct ib_uverbs_poll_cq cmd;
899 struct ib_uverbs_poll_cq_resp *resp;
906 if (copy_from_user(&cmd, buf, sizeof cmd))
909 wc = kmalloc(cmd.ne * sizeof *wc, GFP_KERNEL);
913 rsize = sizeof *resp + cmd.ne * sizeof(struct ib_uverbs_wc);
914 resp = kmalloc(rsize, GFP_KERNEL);
920 cq = idr_read_cq(cmd.cq_handle, file->ucontext, 0);
926 resp->count = ib_poll_cq(cq, cmd.ne, wc);
930 for (i = 0; i < resp->count; i++) {
931 resp->wc[i].wr_id = wc[i].wr_id;
932 resp->wc[i].status = wc[i].status;
933 resp->wc[i].opcode = wc[i].opcode;
934 resp->wc[i].vendor_err = wc[i].vendor_err;
935 resp->wc[i].byte_len = wc[i].byte_len;
936 resp->wc[i].ex.imm_data = (__u32 __force) wc[i].ex.imm_data;
937 resp->wc[i].qp_num = wc[i].qp->qp_num;
938 resp->wc[i].src_qp = wc[i].src_qp;
939 resp->wc[i].wc_flags = wc[i].wc_flags;
940 resp->wc[i].pkey_index = wc[i].pkey_index;
941 resp->wc[i].slid = wc[i].slid;
942 resp->wc[i].sl = wc[i].sl;
943 resp->wc[i].dlid_path_bits = wc[i].dlid_path_bits;
944 resp->wc[i].port_num = wc[i].port_num;
947 if (copy_to_user((void __user *) (unsigned long) cmd.response, resp, rsize))
955 return ret ? ret : in_len;
958 ssize_t ib_uverbs_req_notify_cq(struct ib_uverbs_file *file,
959 const char __user *buf, int in_len,
962 struct ib_uverbs_req_notify_cq cmd;
965 if (copy_from_user(&cmd, buf, sizeof cmd))
968 cq = idr_read_cq(cmd.cq_handle, file->ucontext, 0);
972 ib_req_notify_cq(cq, cmd.solicited_only ?
973 IB_CQ_SOLICITED : IB_CQ_NEXT_COMP);
980 ssize_t ib_uverbs_destroy_cq(struct ib_uverbs_file *file,
981 const char __user *buf, int in_len,
984 struct ib_uverbs_destroy_cq cmd;
985 struct ib_uverbs_destroy_cq_resp resp;
986 struct ib_uobject *uobj;
988 struct ib_ucq_object *obj;
989 struct ib_uverbs_event_file *ev_file;
992 if (copy_from_user(&cmd, buf, sizeof cmd))
995 uobj = idr_write_uobj(&ib_uverbs_cq_idr, cmd.cq_handle, file->ucontext);
999 ev_file = cq->cq_context;
1000 obj = container_of(cq->uobject, struct ib_ucq_object, uobject);
1002 ret = ib_destroy_cq(cq);
1006 put_uobj_write(uobj);
1011 idr_remove_uobj(&ib_uverbs_cq_idr, uobj);
1013 mutex_lock(&file->mutex);
1014 list_del(&uobj->list);
1015 mutex_unlock(&file->mutex);
1017 ib_uverbs_release_ucq(file, ev_file, obj);
1019 memset(&resp, 0, sizeof resp);
1020 resp.comp_events_reported = obj->comp_events_reported;
1021 resp.async_events_reported = obj->async_events_reported;
1025 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1026 &resp, sizeof resp))
1032 ssize_t ib_uverbs_create_qp(struct ib_uverbs_file *file,
1033 const char __user *buf, int in_len,
1036 struct ib_uverbs_create_qp cmd;
1037 struct ib_uverbs_create_qp_resp resp;
1038 struct ib_udata udata;
1039 struct ib_uqp_object *obj;
1041 struct ib_cq *scq, *rcq;
1044 struct ib_qp_init_attr attr;
1047 if (out_len < sizeof resp)
1050 if (copy_from_user(&cmd, buf, sizeof cmd))
1053 INIT_UDATA(&udata, buf + sizeof cmd,
1054 (unsigned long) cmd.response + sizeof resp,
1055 in_len - sizeof cmd, out_len - sizeof resp);
1057 obj = kmalloc(sizeof *obj, GFP_KERNEL);
1061 init_uobj(&obj->uevent.uobject, cmd.user_handle, file->ucontext, &qp_lock_key);
1062 down_write(&obj->uevent.uobject.mutex);
1064 srq = cmd.is_srq ? idr_read_srq(cmd.srq_handle, file->ucontext) : NULL;
1065 pd = idr_read_pd(cmd.pd_handle, file->ucontext);
1066 scq = idr_read_cq(cmd.send_cq_handle, file->ucontext, 0);
1067 rcq = cmd.recv_cq_handle == cmd.send_cq_handle ?
1068 scq : idr_read_cq(cmd.recv_cq_handle, file->ucontext, 1);
1070 if (!pd || !scq || !rcq || (cmd.is_srq && !srq)) {
1075 attr.event_handler = ib_uverbs_qp_event_handler;
1076 attr.qp_context = file;
1080 attr.sq_sig_type = cmd.sq_sig_all ? IB_SIGNAL_ALL_WR : IB_SIGNAL_REQ_WR;
1081 attr.qp_type = cmd.qp_type;
1082 attr.create_flags = 0;
1084 attr.cap.max_send_wr = cmd.max_send_wr;
1085 attr.cap.max_recv_wr = cmd.max_recv_wr;
1086 attr.cap.max_send_sge = cmd.max_send_sge;
1087 attr.cap.max_recv_sge = cmd.max_recv_sge;
1088 attr.cap.max_inline_data = cmd.max_inline_data;
1090 obj->uevent.events_reported = 0;
1091 INIT_LIST_HEAD(&obj->uevent.event_list);
1092 INIT_LIST_HEAD(&obj->mcast_list);
1094 qp = pd->device->create_qp(pd, &attr, &udata);
1100 qp->device = pd->device;
1102 qp->send_cq = attr.send_cq;
1103 qp->recv_cq = attr.recv_cq;
1105 qp->uobject = &obj->uevent.uobject;
1106 qp->event_handler = attr.event_handler;
1107 qp->qp_context = attr.qp_context;
1108 qp->qp_type = attr.qp_type;
1109 atomic_inc(&pd->usecnt);
1110 atomic_inc(&attr.send_cq->usecnt);
1111 atomic_inc(&attr.recv_cq->usecnt);
1113 atomic_inc(&attr.srq->usecnt);
1115 obj->uevent.uobject.object = qp;
1116 ret = idr_add_uobj(&ib_uverbs_qp_idr, &obj->uevent.uobject);
1120 memset(&resp, 0, sizeof resp);
1121 resp.qpn = qp->qp_num;
1122 resp.qp_handle = obj->uevent.uobject.id;
1123 resp.max_recv_sge = attr.cap.max_recv_sge;
1124 resp.max_send_sge = attr.cap.max_send_sge;
1125 resp.max_recv_wr = attr.cap.max_recv_wr;
1126 resp.max_send_wr = attr.cap.max_send_wr;
1127 resp.max_inline_data = attr.cap.max_inline_data;
1129 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1130 &resp, sizeof resp)) {
1142 mutex_lock(&file->mutex);
1143 list_add_tail(&obj->uevent.uobject.list, &file->ucontext->qp_list);
1144 mutex_unlock(&file->mutex);
1146 obj->uevent.uobject.live = 1;
1148 up_write(&obj->uevent.uobject.mutex);
1153 idr_remove_uobj(&ib_uverbs_qp_idr, &obj->uevent.uobject);
1163 if (rcq && rcq != scq)
1168 put_uobj_write(&obj->uevent.uobject);
1172 ssize_t ib_uverbs_query_qp(struct ib_uverbs_file *file,
1173 const char __user *buf, int in_len,
1176 struct ib_uverbs_query_qp cmd;
1177 struct ib_uverbs_query_qp_resp resp;
1179 struct ib_qp_attr *attr;
1180 struct ib_qp_init_attr *init_attr;
1183 if (copy_from_user(&cmd, buf, sizeof cmd))
1186 attr = kmalloc(sizeof *attr, GFP_KERNEL);
1187 init_attr = kmalloc(sizeof *init_attr, GFP_KERNEL);
1188 if (!attr || !init_attr) {
1193 qp = idr_read_qp(cmd.qp_handle, file->ucontext);
1199 ret = ib_query_qp(qp, attr, cmd.attr_mask, init_attr);
1206 memset(&resp, 0, sizeof resp);
1208 resp.qp_state = attr->qp_state;
1209 resp.cur_qp_state = attr->cur_qp_state;
1210 resp.path_mtu = attr->path_mtu;
1211 resp.path_mig_state = attr->path_mig_state;
1212 resp.qkey = attr->qkey;
1213 resp.rq_psn = attr->rq_psn;
1214 resp.sq_psn = attr->sq_psn;
1215 resp.dest_qp_num = attr->dest_qp_num;
1216 resp.qp_access_flags = attr->qp_access_flags;
1217 resp.pkey_index = attr->pkey_index;
1218 resp.alt_pkey_index = attr->alt_pkey_index;
1219 resp.sq_draining = attr->sq_draining;
1220 resp.max_rd_atomic = attr->max_rd_atomic;
1221 resp.max_dest_rd_atomic = attr->max_dest_rd_atomic;
1222 resp.min_rnr_timer = attr->min_rnr_timer;
1223 resp.port_num = attr->port_num;
1224 resp.timeout = attr->timeout;
1225 resp.retry_cnt = attr->retry_cnt;
1226 resp.rnr_retry = attr->rnr_retry;
1227 resp.alt_port_num = attr->alt_port_num;
1228 resp.alt_timeout = attr->alt_timeout;
1230 memcpy(resp.dest.dgid, attr->ah_attr.grh.dgid.raw, 16);
1231 resp.dest.flow_label = attr->ah_attr.grh.flow_label;
1232 resp.dest.sgid_index = attr->ah_attr.grh.sgid_index;
1233 resp.dest.hop_limit = attr->ah_attr.grh.hop_limit;
1234 resp.dest.traffic_class = attr->ah_attr.grh.traffic_class;
1235 resp.dest.dlid = attr->ah_attr.dlid;
1236 resp.dest.sl = attr->ah_attr.sl;
1237 resp.dest.src_path_bits = attr->ah_attr.src_path_bits;
1238 resp.dest.static_rate = attr->ah_attr.static_rate;
1239 resp.dest.is_global = !!(attr->ah_attr.ah_flags & IB_AH_GRH);
1240 resp.dest.port_num = attr->ah_attr.port_num;
1242 memcpy(resp.alt_dest.dgid, attr->alt_ah_attr.grh.dgid.raw, 16);
1243 resp.alt_dest.flow_label = attr->alt_ah_attr.grh.flow_label;
1244 resp.alt_dest.sgid_index = attr->alt_ah_attr.grh.sgid_index;
1245 resp.alt_dest.hop_limit = attr->alt_ah_attr.grh.hop_limit;
1246 resp.alt_dest.traffic_class = attr->alt_ah_attr.grh.traffic_class;
1247 resp.alt_dest.dlid = attr->alt_ah_attr.dlid;
1248 resp.alt_dest.sl = attr->alt_ah_attr.sl;
1249 resp.alt_dest.src_path_bits = attr->alt_ah_attr.src_path_bits;
1250 resp.alt_dest.static_rate = attr->alt_ah_attr.static_rate;
1251 resp.alt_dest.is_global = !!(attr->alt_ah_attr.ah_flags & IB_AH_GRH);
1252 resp.alt_dest.port_num = attr->alt_ah_attr.port_num;
1254 resp.max_send_wr = init_attr->cap.max_send_wr;
1255 resp.max_recv_wr = init_attr->cap.max_recv_wr;
1256 resp.max_send_sge = init_attr->cap.max_send_sge;
1257 resp.max_recv_sge = init_attr->cap.max_recv_sge;
1258 resp.max_inline_data = init_attr->cap.max_inline_data;
1259 resp.sq_sig_all = init_attr->sq_sig_type == IB_SIGNAL_ALL_WR;
1261 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1262 &resp, sizeof resp))
1269 return ret ? ret : in_len;
1272 ssize_t ib_uverbs_modify_qp(struct ib_uverbs_file *file,
1273 const char __user *buf, int in_len,
1276 struct ib_uverbs_modify_qp cmd;
1277 struct ib_udata udata;
1279 struct ib_qp_attr *attr;
1282 if (copy_from_user(&cmd, buf, sizeof cmd))
1285 INIT_UDATA(&udata, buf + sizeof cmd, NULL, in_len - sizeof cmd,
1288 attr = kmalloc(sizeof *attr, GFP_KERNEL);
1292 qp = idr_read_qp(cmd.qp_handle, file->ucontext);
1298 attr->qp_state = cmd.qp_state;
1299 attr->cur_qp_state = cmd.cur_qp_state;
1300 attr->path_mtu = cmd.path_mtu;
1301 attr->path_mig_state = cmd.path_mig_state;
1302 attr->qkey = cmd.qkey;
1303 attr->rq_psn = cmd.rq_psn;
1304 attr->sq_psn = cmd.sq_psn;
1305 attr->dest_qp_num = cmd.dest_qp_num;
1306 attr->qp_access_flags = cmd.qp_access_flags;
1307 attr->pkey_index = cmd.pkey_index;
1308 attr->alt_pkey_index = cmd.alt_pkey_index;
1309 attr->en_sqd_async_notify = cmd.en_sqd_async_notify;
1310 attr->max_rd_atomic = cmd.max_rd_atomic;
1311 attr->max_dest_rd_atomic = cmd.max_dest_rd_atomic;
1312 attr->min_rnr_timer = cmd.min_rnr_timer;
1313 attr->port_num = cmd.port_num;
1314 attr->timeout = cmd.timeout;
1315 attr->retry_cnt = cmd.retry_cnt;
1316 attr->rnr_retry = cmd.rnr_retry;
1317 attr->alt_port_num = cmd.alt_port_num;
1318 attr->alt_timeout = cmd.alt_timeout;
1320 memcpy(attr->ah_attr.grh.dgid.raw, cmd.dest.dgid, 16);
1321 attr->ah_attr.grh.flow_label = cmd.dest.flow_label;
1322 attr->ah_attr.grh.sgid_index = cmd.dest.sgid_index;
1323 attr->ah_attr.grh.hop_limit = cmd.dest.hop_limit;
1324 attr->ah_attr.grh.traffic_class = cmd.dest.traffic_class;
1325 attr->ah_attr.dlid = cmd.dest.dlid;
1326 attr->ah_attr.sl = cmd.dest.sl;
1327 attr->ah_attr.src_path_bits = cmd.dest.src_path_bits;
1328 attr->ah_attr.static_rate = cmd.dest.static_rate;
1329 attr->ah_attr.ah_flags = cmd.dest.is_global ? IB_AH_GRH : 0;
1330 attr->ah_attr.port_num = cmd.dest.port_num;
1332 memcpy(attr->alt_ah_attr.grh.dgid.raw, cmd.alt_dest.dgid, 16);
1333 attr->alt_ah_attr.grh.flow_label = cmd.alt_dest.flow_label;
1334 attr->alt_ah_attr.grh.sgid_index = cmd.alt_dest.sgid_index;
1335 attr->alt_ah_attr.grh.hop_limit = cmd.alt_dest.hop_limit;
1336 attr->alt_ah_attr.grh.traffic_class = cmd.alt_dest.traffic_class;
1337 attr->alt_ah_attr.dlid = cmd.alt_dest.dlid;
1338 attr->alt_ah_attr.sl = cmd.alt_dest.sl;
1339 attr->alt_ah_attr.src_path_bits = cmd.alt_dest.src_path_bits;
1340 attr->alt_ah_attr.static_rate = cmd.alt_dest.static_rate;
1341 attr->alt_ah_attr.ah_flags = cmd.alt_dest.is_global ? IB_AH_GRH : 0;
1342 attr->alt_ah_attr.port_num = cmd.alt_dest.port_num;
1344 ret = qp->device->modify_qp(qp, attr, cmd.attr_mask, &udata);
1359 ssize_t ib_uverbs_destroy_qp(struct ib_uverbs_file *file,
1360 const char __user *buf, int in_len,
1363 struct ib_uverbs_destroy_qp cmd;
1364 struct ib_uverbs_destroy_qp_resp resp;
1365 struct ib_uobject *uobj;
1367 struct ib_uqp_object *obj;
1370 if (copy_from_user(&cmd, buf, sizeof cmd))
1373 memset(&resp, 0, sizeof resp);
1375 uobj = idr_write_uobj(&ib_uverbs_qp_idr, cmd.qp_handle, file->ucontext);
1379 obj = container_of(uobj, struct ib_uqp_object, uevent.uobject);
1381 if (!list_empty(&obj->mcast_list)) {
1382 put_uobj_write(uobj);
1386 ret = ib_destroy_qp(qp);
1390 put_uobj_write(uobj);
1395 idr_remove_uobj(&ib_uverbs_qp_idr, uobj);
1397 mutex_lock(&file->mutex);
1398 list_del(&uobj->list);
1399 mutex_unlock(&file->mutex);
1401 ib_uverbs_release_uevent(file, &obj->uevent);
1403 resp.events_reported = obj->uevent.events_reported;
1407 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1408 &resp, sizeof resp))
1414 ssize_t ib_uverbs_post_send(struct ib_uverbs_file *file,
1415 const char __user *buf, int in_len,
1418 struct ib_uverbs_post_send cmd;
1419 struct ib_uverbs_post_send_resp resp;
1420 struct ib_uverbs_send_wr *user_wr;
1421 struct ib_send_wr *wr = NULL, *last, *next, *bad_wr;
1425 ssize_t ret = -EINVAL;
1427 if (copy_from_user(&cmd, buf, sizeof cmd))
1430 if (in_len < sizeof cmd + cmd.wqe_size * cmd.wr_count +
1431 cmd.sge_count * sizeof (struct ib_uverbs_sge))
1434 if (cmd.wqe_size < sizeof (struct ib_uverbs_send_wr))
1437 user_wr = kmalloc(cmd.wqe_size, GFP_KERNEL);
1441 qp = idr_read_qp(cmd.qp_handle, file->ucontext);
1445 is_ud = qp->qp_type == IB_QPT_UD;
1448 for (i = 0; i < cmd.wr_count; ++i) {
1449 if (copy_from_user(user_wr,
1450 buf + sizeof cmd + i * cmd.wqe_size,
1456 if (user_wr->num_sge + sg_ind > cmd.sge_count) {
1461 next = kmalloc(ALIGN(sizeof *next, sizeof (struct ib_sge)) +
1462 user_wr->num_sge * sizeof (struct ib_sge),
1476 next->wr_id = user_wr->wr_id;
1477 next->num_sge = user_wr->num_sge;
1478 next->opcode = user_wr->opcode;
1479 next->send_flags = user_wr->send_flags;
1482 next->wr.ud.ah = idr_read_ah(user_wr->wr.ud.ah,
1484 if (!next->wr.ud.ah) {
1488 next->wr.ud.remote_qpn = user_wr->wr.ud.remote_qpn;
1489 next->wr.ud.remote_qkey = user_wr->wr.ud.remote_qkey;
1491 switch (next->opcode) {
1492 case IB_WR_RDMA_WRITE_WITH_IMM:
1494 (__be32 __force) user_wr->ex.imm_data;
1495 case IB_WR_RDMA_WRITE:
1496 case IB_WR_RDMA_READ:
1497 next->wr.rdma.remote_addr =
1498 user_wr->wr.rdma.remote_addr;
1499 next->wr.rdma.rkey =
1500 user_wr->wr.rdma.rkey;
1502 case IB_WR_SEND_WITH_IMM:
1504 (__be32 __force) user_wr->ex.imm_data;
1506 case IB_WR_SEND_WITH_INV:
1507 next->ex.invalidate_rkey =
1508 user_wr->ex.invalidate_rkey;
1510 case IB_WR_ATOMIC_CMP_AND_SWP:
1511 case IB_WR_ATOMIC_FETCH_AND_ADD:
1512 next->wr.atomic.remote_addr =
1513 user_wr->wr.atomic.remote_addr;
1514 next->wr.atomic.compare_add =
1515 user_wr->wr.atomic.compare_add;
1516 next->wr.atomic.swap = user_wr->wr.atomic.swap;
1517 next->wr.atomic.rkey = user_wr->wr.atomic.rkey;
1524 if (next->num_sge) {
1525 next->sg_list = (void *) next +
1526 ALIGN(sizeof *next, sizeof (struct ib_sge));
1527 if (copy_from_user(next->sg_list,
1529 cmd.wr_count * cmd.wqe_size +
1530 sg_ind * sizeof (struct ib_sge),
1531 next->num_sge * sizeof (struct ib_sge))) {
1535 sg_ind += next->num_sge;
1537 next->sg_list = NULL;
1541 ret = qp->device->post_send(qp, wr, &bad_wr);
1543 for (next = wr; next; next = next->next) {
1549 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1550 &resp, sizeof resp))
1557 if (is_ud && wr->wr.ud.ah)
1558 put_ah_read(wr->wr.ud.ah);
1567 return ret ? ret : in_len;
1570 static struct ib_recv_wr *ib_uverbs_unmarshall_recv(const char __user *buf,
1576 struct ib_uverbs_recv_wr *user_wr;
1577 struct ib_recv_wr *wr = NULL, *last, *next;
1582 if (in_len < wqe_size * wr_count +
1583 sge_count * sizeof (struct ib_uverbs_sge))
1584 return ERR_PTR(-EINVAL);
1586 if (wqe_size < sizeof (struct ib_uverbs_recv_wr))
1587 return ERR_PTR(-EINVAL);
1589 user_wr = kmalloc(wqe_size, GFP_KERNEL);
1591 return ERR_PTR(-ENOMEM);
1595 for (i = 0; i < wr_count; ++i) {
1596 if (copy_from_user(user_wr, buf + i * wqe_size,
1602 if (user_wr->num_sge + sg_ind > sge_count) {
1607 next = kmalloc(ALIGN(sizeof *next, sizeof (struct ib_sge)) +
1608 user_wr->num_sge * sizeof (struct ib_sge),
1622 next->wr_id = user_wr->wr_id;
1623 next->num_sge = user_wr->num_sge;
1625 if (next->num_sge) {
1626 next->sg_list = (void *) next +
1627 ALIGN(sizeof *next, sizeof (struct ib_sge));
1628 if (copy_from_user(next->sg_list,
1629 buf + wr_count * wqe_size +
1630 sg_ind * sizeof (struct ib_sge),
1631 next->num_sge * sizeof (struct ib_sge))) {
1635 sg_ind += next->num_sge;
1637 next->sg_list = NULL;
1652 return ERR_PTR(ret);
1655 ssize_t ib_uverbs_post_recv(struct ib_uverbs_file *file,
1656 const char __user *buf, int in_len,
1659 struct ib_uverbs_post_recv cmd;
1660 struct ib_uverbs_post_recv_resp resp;
1661 struct ib_recv_wr *wr, *next, *bad_wr;
1663 ssize_t ret = -EINVAL;
1665 if (copy_from_user(&cmd, buf, sizeof cmd))
1668 wr = ib_uverbs_unmarshall_recv(buf + sizeof cmd,
1669 in_len - sizeof cmd, cmd.wr_count,
1670 cmd.sge_count, cmd.wqe_size);
1674 qp = idr_read_qp(cmd.qp_handle, file->ucontext);
1679 ret = qp->device->post_recv(qp, wr, &bad_wr);
1684 for (next = wr; next; next = next->next) {
1690 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1691 &resp, sizeof resp))
1701 return ret ? ret : in_len;
1704 ssize_t ib_uverbs_post_srq_recv(struct ib_uverbs_file *file,
1705 const char __user *buf, int in_len,
1708 struct ib_uverbs_post_srq_recv cmd;
1709 struct ib_uverbs_post_srq_recv_resp resp;
1710 struct ib_recv_wr *wr, *next, *bad_wr;
1712 ssize_t ret = -EINVAL;
1714 if (copy_from_user(&cmd, buf, sizeof cmd))
1717 wr = ib_uverbs_unmarshall_recv(buf + sizeof cmd,
1718 in_len - sizeof cmd, cmd.wr_count,
1719 cmd.sge_count, cmd.wqe_size);
1723 srq = idr_read_srq(cmd.srq_handle, file->ucontext);
1728 ret = srq->device->post_srq_recv(srq, wr, &bad_wr);
1733 for (next = wr; next; next = next->next) {
1739 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1740 &resp, sizeof resp))
1750 return ret ? ret : in_len;
1753 ssize_t ib_uverbs_create_ah(struct ib_uverbs_file *file,
1754 const char __user *buf, int in_len,
1757 struct ib_uverbs_create_ah cmd;
1758 struct ib_uverbs_create_ah_resp resp;
1759 struct ib_uobject *uobj;
1762 struct ib_ah_attr attr;
1765 if (out_len < sizeof resp)
1768 if (copy_from_user(&cmd, buf, sizeof cmd))
1771 uobj = kmalloc(sizeof *uobj, GFP_KERNEL);
1775 init_uobj(uobj, cmd.user_handle, file->ucontext, &ah_lock_key);
1776 down_write(&uobj->mutex);
1778 pd = idr_read_pd(cmd.pd_handle, file->ucontext);
1784 attr.dlid = cmd.attr.dlid;
1785 attr.sl = cmd.attr.sl;
1786 attr.src_path_bits = cmd.attr.src_path_bits;
1787 attr.static_rate = cmd.attr.static_rate;
1788 attr.ah_flags = cmd.attr.is_global ? IB_AH_GRH : 0;
1789 attr.port_num = cmd.attr.port_num;
1790 attr.grh.flow_label = cmd.attr.grh.flow_label;
1791 attr.grh.sgid_index = cmd.attr.grh.sgid_index;
1792 attr.grh.hop_limit = cmd.attr.grh.hop_limit;
1793 attr.grh.traffic_class = cmd.attr.grh.traffic_class;
1794 memcpy(attr.grh.dgid.raw, cmd.attr.grh.dgid, 16);
1796 ah = ib_create_ah(pd, &attr);
1805 ret = idr_add_uobj(&ib_uverbs_ah_idr, uobj);
1809 resp.ah_handle = uobj->id;
1811 if (copy_to_user((void __user *) (unsigned long) cmd.response,
1812 &resp, sizeof resp)) {
1819 mutex_lock(&file->mutex);
1820 list_add_tail(&uobj->list, &file->ucontext->ah_list);
1821 mutex_unlock(&file->mutex);
1825 up_write(&uobj->mutex);
1830 idr_remove_uobj(&ib_uverbs_ah_idr, uobj);
1839 put_uobj_write(uobj);
1843 ssize_t ib_uverbs_destroy_ah(struct ib_uverbs_file *file,
1844 const char __user *buf, int in_len, int out_len)
1846 struct ib_uverbs_destroy_ah cmd;
1848 struct ib_uobject *uobj;
1851 if (copy_from_user(&cmd, buf, sizeof cmd))
1854 uobj = idr_write_uobj(&ib_uverbs_ah_idr, cmd.ah_handle, file->ucontext);
1859 ret = ib_destroy_ah(ah);
1863 put_uobj_write(uobj);
1868 idr_remove_uobj(&ib_uverbs_ah_idr, uobj);
1870 mutex_lock(&file->mutex);
1871 list_del(&uobj->list);
1872 mutex_unlock(&file->mutex);
1879 ssize_t ib_uverbs_attach_mcast(struct ib_uverbs_file *file,
1880 const char __user *buf, int in_len,
1883 struct ib_uverbs_attach_mcast cmd;
1885 struct ib_uqp_object *obj;
1886 struct ib_uverbs_mcast_entry *mcast;
1889 if (copy_from_user(&cmd, buf, sizeof cmd))
1892 qp = idr_read_qp(cmd.qp_handle, file->ucontext);
1896 obj = container_of(qp->uobject, struct ib_uqp_object, uevent.uobject);
1898 list_for_each_entry(mcast, &obj->mcast_list, list)
1899 if (cmd.mlid == mcast->lid &&
1900 !memcmp(cmd.gid, mcast->gid.raw, sizeof mcast->gid.raw)) {
1905 mcast = kmalloc(sizeof *mcast, GFP_KERNEL);
1911 mcast->lid = cmd.mlid;
1912 memcpy(mcast->gid.raw, cmd.gid, sizeof mcast->gid.raw);
1914 ret = ib_attach_mcast(qp, &mcast->gid, cmd.mlid);
1916 list_add_tail(&mcast->list, &obj->mcast_list);
1923 return ret ? ret : in_len;
1926 ssize_t ib_uverbs_detach_mcast(struct ib_uverbs_file *file,
1927 const char __user *buf, int in_len,
1930 struct ib_uverbs_detach_mcast cmd;
1931 struct ib_uqp_object *obj;
1933 struct ib_uverbs_mcast_entry *mcast;
1936 if (copy_from_user(&cmd, buf, sizeof cmd))
1939 qp = idr_read_qp(cmd.qp_handle, file->ucontext);
1943 ret = ib_detach_mcast(qp, (union ib_gid *) cmd.gid, cmd.mlid);
1947 obj = container_of(qp->uobject, struct ib_uqp_object, uevent.uobject);
1949 list_for_each_entry(mcast, &obj->mcast_list, list)
1950 if (cmd.mlid == mcast->lid &&
1951 !memcmp(cmd.gid, mcast->gid.raw, sizeof mcast->gid.raw)) {
1952 list_del(&mcast->list);
1960 return ret ? ret : in_len;
1963 ssize_t ib_uverbs_create_srq(struct ib_uverbs_file *file,
1964 const char __user *buf, int in_len,
1967 struct ib_uverbs_create_srq cmd;
1968 struct ib_uverbs_create_srq_resp resp;
1969 struct ib_udata udata;
1970 struct ib_uevent_object *obj;
1973 struct ib_srq_init_attr attr;
1976 if (out_len < sizeof resp)
1979 if (copy_from_user(&cmd, buf, sizeof cmd))
1982 INIT_UDATA(&udata, buf + sizeof cmd,
1983 (unsigned long) cmd.response + sizeof resp,
1984 in_len - sizeof cmd, out_len - sizeof resp);
1986 obj = kmalloc(sizeof *obj, GFP_KERNEL);
1990 init_uobj(&obj->uobject, cmd.user_handle, file->ucontext, &srq_lock_key);
1991 down_write(&obj->uobject.mutex);
1993 pd = idr_read_pd(cmd.pd_handle, file->ucontext);
1999 attr.event_handler = ib_uverbs_srq_event_handler;
2000 attr.srq_context = file;
2001 attr.attr.max_wr = cmd.max_wr;
2002 attr.attr.max_sge = cmd.max_sge;
2003 attr.attr.srq_limit = cmd.srq_limit;
2005 obj->events_reported = 0;
2006 INIT_LIST_HEAD(&obj->event_list);
2008 srq = pd->device->create_srq(pd, &attr, &udata);
2014 srq->device = pd->device;
2016 srq->uobject = &obj->uobject;
2017 srq->event_handler = attr.event_handler;
2018 srq->srq_context = attr.srq_context;
2019 atomic_inc(&pd->usecnt);
2020 atomic_set(&srq->usecnt, 0);
2022 obj->uobject.object = srq;
2023 ret = idr_add_uobj(&ib_uverbs_srq_idr, &obj->uobject);
2027 memset(&resp, 0, sizeof resp);
2028 resp.srq_handle = obj->uobject.id;
2029 resp.max_wr = attr.attr.max_wr;
2030 resp.max_sge = attr.attr.max_sge;
2032 if (copy_to_user((void __user *) (unsigned long) cmd.response,
2033 &resp, sizeof resp)) {
2040 mutex_lock(&file->mutex);
2041 list_add_tail(&obj->uobject.list, &file->ucontext->srq_list);
2042 mutex_unlock(&file->mutex);
2044 obj->uobject.live = 1;
2046 up_write(&obj->uobject.mutex);
2051 idr_remove_uobj(&ib_uverbs_srq_idr, &obj->uobject);
2054 ib_destroy_srq(srq);
2060 put_uobj_write(&obj->uobject);
2064 ssize_t ib_uverbs_modify_srq(struct ib_uverbs_file *file,
2065 const char __user *buf, int in_len,
2068 struct ib_uverbs_modify_srq cmd;
2069 struct ib_udata udata;
2071 struct ib_srq_attr attr;
2074 if (copy_from_user(&cmd, buf, sizeof cmd))
2077 INIT_UDATA(&udata, buf + sizeof cmd, NULL, in_len - sizeof cmd,
2080 srq = idr_read_srq(cmd.srq_handle, file->ucontext);
2084 attr.max_wr = cmd.max_wr;
2085 attr.srq_limit = cmd.srq_limit;
2087 ret = srq->device->modify_srq(srq, &attr, cmd.attr_mask, &udata);
2091 return ret ? ret : in_len;
2094 ssize_t ib_uverbs_query_srq(struct ib_uverbs_file *file,
2095 const char __user *buf,
2096 int in_len, int out_len)
2098 struct ib_uverbs_query_srq cmd;
2099 struct ib_uverbs_query_srq_resp resp;
2100 struct ib_srq_attr attr;
2104 if (out_len < sizeof resp)
2107 if (copy_from_user(&cmd, buf, sizeof cmd))
2110 srq = idr_read_srq(cmd.srq_handle, file->ucontext);
2114 ret = ib_query_srq(srq, &attr);
2121 memset(&resp, 0, sizeof resp);
2123 resp.max_wr = attr.max_wr;
2124 resp.max_sge = attr.max_sge;
2125 resp.srq_limit = attr.srq_limit;
2127 if (copy_to_user((void __user *) (unsigned long) cmd.response,
2128 &resp, sizeof resp))
2134 ssize_t ib_uverbs_destroy_srq(struct ib_uverbs_file *file,
2135 const char __user *buf, int in_len,
2138 struct ib_uverbs_destroy_srq cmd;
2139 struct ib_uverbs_destroy_srq_resp resp;
2140 struct ib_uobject *uobj;
2142 struct ib_uevent_object *obj;
2145 if (copy_from_user(&cmd, buf, sizeof cmd))
2148 uobj = idr_write_uobj(&ib_uverbs_srq_idr, cmd.srq_handle, file->ucontext);
2152 obj = container_of(uobj, struct ib_uevent_object, uobject);
2154 ret = ib_destroy_srq(srq);
2158 put_uobj_write(uobj);
2163 idr_remove_uobj(&ib_uverbs_srq_idr, uobj);
2165 mutex_lock(&file->mutex);
2166 list_del(&uobj->list);
2167 mutex_unlock(&file->mutex);
2169 ib_uverbs_release_uevent(file, obj);
2171 memset(&resp, 0, sizeof resp);
2172 resp.events_reported = obj->events_reported;
2176 if (copy_to_user((void __user *) (unsigned long) cmd.response,
2177 &resp, sizeof resp))
2180 return ret ? ret : in_len;