RDMA/hns: Fix usage of bitmap allocation functions return values
[platform/kernel/linux-rpi.git] / drivers / infiniband / core / uverbs_cmd.c
1 /*
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.
6  *
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:
12  *
13  *     Redistribution and use in source and binary forms, with or
14  *     without modification, are permitted provided that the following
15  *     conditions are met:
16  *
17  *      - Redistributions of source code must retain the above
18  *        copyright notice, this list of conditions and the following
19  *        disclaimer.
20  *
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.
25  *
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
33  * SOFTWARE.
34  */
35
36 #include <linux/file.h>
37 #include <linux/fs.h>
38 #include <linux/slab.h>
39 #include <linux/sched.h>
40
41 #include <linux/uaccess.h>
42
43 #include <rdma/uverbs_types.h>
44 #include <rdma/uverbs_std_types.h>
45 #include "rdma_core.h"
46
47 #include "uverbs.h"
48 #include "core_priv.h"
49
50 static struct ib_uverbs_completion_event_file *
51 _ib_uverbs_lookup_comp_file(s32 fd, struct ib_uverbs_file *ufile)
52 {
53         struct ib_uobject *uobj = ufd_get_read(UVERBS_OBJECT_COMP_CHANNEL,
54                                                fd, ufile);
55
56         if (IS_ERR(uobj))
57                 return (void *)uobj;
58
59         uverbs_uobject_get(uobj);
60         uobj_put_read(uobj);
61
62         return container_of(uobj, struct ib_uverbs_completion_event_file,
63                             uobj);
64 }
65 #define ib_uverbs_lookup_comp_file(_fd, _ufile)                                \
66         _ib_uverbs_lookup_comp_file((_fd)*typecheck(s32, _fd), _ufile)
67
68 ssize_t ib_uverbs_get_context(struct ib_uverbs_file *file,
69                               const char __user *buf,
70                               int in_len, int out_len)
71 {
72         struct ib_uverbs_get_context      cmd;
73         struct ib_uverbs_get_context_resp resp;
74         struct ib_udata                   udata;
75         struct ib_ucontext               *ucontext;
76         struct file                      *filp;
77         struct ib_rdmacg_object          cg_obj;
78         struct ib_device *ib_dev;
79         int ret;
80
81         if (out_len < sizeof resp)
82                 return -ENOSPC;
83
84         if (copy_from_user(&cmd, buf, sizeof cmd))
85                 return -EFAULT;
86
87         mutex_lock(&file->ucontext_lock);
88         ib_dev = srcu_dereference(file->device->ib_dev,
89                                   &file->device->disassociate_srcu);
90         if (!ib_dev) {
91                 ret = -EIO;
92                 goto err;
93         }
94
95         if (file->ucontext) {
96                 ret = -EINVAL;
97                 goto err;
98         }
99
100         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
101                    u64_to_user_ptr(cmd.response) + sizeof(resp),
102                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
103                    out_len - sizeof(resp));
104
105         ret = ib_rdmacg_try_charge(&cg_obj, ib_dev, RDMACG_RESOURCE_HCA_HANDLE);
106         if (ret)
107                 goto err;
108
109         ucontext = ib_dev->alloc_ucontext(ib_dev, &udata);
110         if (IS_ERR(ucontext)) {
111                 ret = PTR_ERR(ucontext);
112                 goto err_alloc;
113         }
114
115         ucontext->device = ib_dev;
116         ucontext->cg_obj = cg_obj;
117         /* ufile is required when some objects are released */
118         ucontext->ufile = file;
119
120         rcu_read_lock();
121         ucontext->tgid = get_task_pid(current->group_leader, PIDTYPE_PID);
122         rcu_read_unlock();
123         ucontext->closing = 0;
124         ucontext->cleanup_retryable = false;
125
126 #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
127         ucontext->umem_tree = RB_ROOT_CACHED;
128         init_rwsem(&ucontext->umem_rwsem);
129         ucontext->odp_mrs_count = 0;
130         INIT_LIST_HEAD(&ucontext->no_private_counters);
131
132         if (!(ib_dev->attrs.device_cap_flags & IB_DEVICE_ON_DEMAND_PAGING))
133                 ucontext->invalidate_range = NULL;
134
135 #endif
136
137         resp.num_comp_vectors = file->device->num_comp_vectors;
138
139         ret = get_unused_fd_flags(O_CLOEXEC);
140         if (ret < 0)
141                 goto err_free;
142         resp.async_fd = ret;
143
144         filp = ib_uverbs_alloc_async_event_file(file, ib_dev);
145         if (IS_ERR(filp)) {
146                 ret = PTR_ERR(filp);
147                 goto err_fd;
148         }
149
150         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
151                 ret = -EFAULT;
152                 goto err_file;
153         }
154
155         fd_install(resp.async_fd, filp);
156
157         /*
158          * Make sure that ib_uverbs_get_ucontext() sees the pointer update
159          * only after all writes to setup the ucontext have completed
160          */
161         smp_store_release(&file->ucontext, ucontext);
162
163         mutex_unlock(&file->ucontext_lock);
164
165         return in_len;
166
167 err_file:
168         ib_uverbs_free_async_event_file(file);
169         fput(filp);
170
171 err_fd:
172         put_unused_fd(resp.async_fd);
173
174 err_free:
175         put_pid(ucontext->tgid);
176         ib_dev->dealloc_ucontext(ucontext);
177
178 err_alloc:
179         ib_rdmacg_uncharge(&cg_obj, ib_dev, RDMACG_RESOURCE_HCA_HANDLE);
180
181 err:
182         mutex_unlock(&file->ucontext_lock);
183         return ret;
184 }
185
186 static void copy_query_dev_fields(struct ib_ucontext *ucontext,
187                                   struct ib_uverbs_query_device_resp *resp,
188                                   struct ib_device_attr *attr)
189 {
190         struct ib_device *ib_dev = ucontext->device;
191
192         resp->fw_ver            = attr->fw_ver;
193         resp->node_guid         = ib_dev->node_guid;
194         resp->sys_image_guid    = attr->sys_image_guid;
195         resp->max_mr_size       = attr->max_mr_size;
196         resp->page_size_cap     = attr->page_size_cap;
197         resp->vendor_id         = attr->vendor_id;
198         resp->vendor_part_id    = attr->vendor_part_id;
199         resp->hw_ver            = attr->hw_ver;
200         resp->max_qp            = attr->max_qp;
201         resp->max_qp_wr         = attr->max_qp_wr;
202         resp->device_cap_flags  = lower_32_bits(attr->device_cap_flags);
203         resp->max_sge           = min(attr->max_send_sge, attr->max_recv_sge);
204         resp->max_sge_rd        = attr->max_sge_rd;
205         resp->max_cq            = attr->max_cq;
206         resp->max_cqe           = attr->max_cqe;
207         resp->max_mr            = attr->max_mr;
208         resp->max_pd            = attr->max_pd;
209         resp->max_qp_rd_atom    = attr->max_qp_rd_atom;
210         resp->max_ee_rd_atom    = attr->max_ee_rd_atom;
211         resp->max_res_rd_atom   = attr->max_res_rd_atom;
212         resp->max_qp_init_rd_atom       = attr->max_qp_init_rd_atom;
213         resp->max_ee_init_rd_atom       = attr->max_ee_init_rd_atom;
214         resp->atomic_cap                = attr->atomic_cap;
215         resp->max_ee                    = attr->max_ee;
216         resp->max_rdd                   = attr->max_rdd;
217         resp->max_mw                    = attr->max_mw;
218         resp->max_raw_ipv6_qp           = attr->max_raw_ipv6_qp;
219         resp->max_raw_ethy_qp           = attr->max_raw_ethy_qp;
220         resp->max_mcast_grp             = attr->max_mcast_grp;
221         resp->max_mcast_qp_attach       = attr->max_mcast_qp_attach;
222         resp->max_total_mcast_qp_attach = attr->max_total_mcast_qp_attach;
223         resp->max_ah                    = attr->max_ah;
224         resp->max_fmr                   = attr->max_fmr;
225         resp->max_map_per_fmr           = attr->max_map_per_fmr;
226         resp->max_srq                   = attr->max_srq;
227         resp->max_srq_wr                = attr->max_srq_wr;
228         resp->max_srq_sge               = attr->max_srq_sge;
229         resp->max_pkeys                 = attr->max_pkeys;
230         resp->local_ca_ack_delay        = attr->local_ca_ack_delay;
231         resp->phys_port_cnt             = ib_dev->phys_port_cnt;
232 }
233
234 ssize_t ib_uverbs_query_device(struct ib_uverbs_file *file,
235                                const char __user *buf,
236                                int in_len, int out_len)
237 {
238         struct ib_uverbs_query_device      cmd;
239         struct ib_uverbs_query_device_resp resp;
240         struct ib_ucontext *ucontext;
241
242         ucontext = ib_uverbs_get_ucontext(file);
243         if (IS_ERR(ucontext))
244                 return PTR_ERR(ucontext);
245
246         if (out_len < sizeof resp)
247                 return -ENOSPC;
248
249         if (copy_from_user(&cmd, buf, sizeof cmd))
250                 return -EFAULT;
251
252         memset(&resp, 0, sizeof resp);
253         copy_query_dev_fields(ucontext, &resp, &ucontext->device->attrs);
254
255         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
256                 return -EFAULT;
257
258         return in_len;
259 }
260
261 /*
262  * ib_uverbs_query_port_resp.port_cap_flags started out as just a copy of the
263  * PortInfo CapabilityMask, but was extended with unique bits.
264  */
265 static u32 make_port_cap_flags(const struct ib_port_attr *attr)
266 {
267         u32 res;
268
269         /* All IBA CapabilityMask bits are passed through here, except bit 26,
270          * which is overridden with IP_BASED_GIDS. This is due to a historical
271          * mistake in the implementation of IP_BASED_GIDS. Otherwise all other
272          * bits match the IBA definition across all kernel versions.
273          */
274         res = attr->port_cap_flags & ~(u32)IB_UVERBS_PCF_IP_BASED_GIDS;
275
276         if (attr->ip_gids)
277                 res |= IB_UVERBS_PCF_IP_BASED_GIDS;
278
279         return res;
280 }
281
282 ssize_t ib_uverbs_query_port(struct ib_uverbs_file *file,
283                              const char __user *buf,
284                              int in_len, int out_len)
285 {
286         struct ib_uverbs_query_port      cmd;
287         struct ib_uverbs_query_port_resp resp;
288         struct ib_port_attr              attr;
289         int                              ret;
290         struct ib_ucontext *ucontext;
291         struct ib_device *ib_dev;
292
293         ucontext = ib_uverbs_get_ucontext(file);
294         if (IS_ERR(ucontext))
295                 return PTR_ERR(ucontext);
296         ib_dev = ucontext->device;
297
298         if (out_len < sizeof resp)
299                 return -ENOSPC;
300
301         if (copy_from_user(&cmd, buf, sizeof cmd))
302                 return -EFAULT;
303
304         ret = ib_query_port(ib_dev, cmd.port_num, &attr);
305         if (ret)
306                 return ret;
307
308         memset(&resp, 0, sizeof resp);
309
310         resp.state           = attr.state;
311         resp.max_mtu         = attr.max_mtu;
312         resp.active_mtu      = attr.active_mtu;
313         resp.gid_tbl_len     = attr.gid_tbl_len;
314         resp.port_cap_flags  = make_port_cap_flags(&attr);
315         resp.max_msg_sz      = attr.max_msg_sz;
316         resp.bad_pkey_cntr   = attr.bad_pkey_cntr;
317         resp.qkey_viol_cntr  = attr.qkey_viol_cntr;
318         resp.pkey_tbl_len    = attr.pkey_tbl_len;
319
320         if (rdma_is_grh_required(ib_dev, cmd.port_num))
321                 resp.flags |= IB_UVERBS_QPF_GRH_REQUIRED;
322
323         if (rdma_cap_opa_ah(ib_dev, cmd.port_num)) {
324                 resp.lid     = OPA_TO_IB_UCAST_LID(attr.lid);
325                 resp.sm_lid  = OPA_TO_IB_UCAST_LID(attr.sm_lid);
326         } else {
327                 resp.lid     = ib_lid_cpu16(attr.lid);
328                 resp.sm_lid  = ib_lid_cpu16(attr.sm_lid);
329         }
330         resp.lmc             = attr.lmc;
331         resp.max_vl_num      = attr.max_vl_num;
332         resp.sm_sl           = attr.sm_sl;
333         resp.subnet_timeout  = attr.subnet_timeout;
334         resp.init_type_reply = attr.init_type_reply;
335         resp.active_width    = attr.active_width;
336         resp.active_speed    = attr.active_speed;
337         resp.phys_state      = attr.phys_state;
338         resp.link_layer      = rdma_port_get_link_layer(ib_dev,
339                                                         cmd.port_num);
340
341         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
342                 return -EFAULT;
343
344         return in_len;
345 }
346
347 ssize_t ib_uverbs_alloc_pd(struct ib_uverbs_file *file,
348                            const char __user *buf,
349                            int in_len, int out_len)
350 {
351         struct ib_uverbs_alloc_pd      cmd;
352         struct ib_uverbs_alloc_pd_resp resp;
353         struct ib_udata                udata;
354         struct ib_uobject             *uobj;
355         struct ib_pd                  *pd;
356         int                            ret;
357         struct ib_device *ib_dev;
358
359         if (out_len < sizeof resp)
360                 return -ENOSPC;
361
362         if (copy_from_user(&cmd, buf, sizeof cmd))
363                 return -EFAULT;
364
365         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
366                    u64_to_user_ptr(cmd.response) + sizeof(resp),
367                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
368                    out_len - sizeof(resp));
369
370         uobj = uobj_alloc(UVERBS_OBJECT_PD, file, &ib_dev);
371         if (IS_ERR(uobj))
372                 return PTR_ERR(uobj);
373
374         pd = ib_dev->alloc_pd(ib_dev, uobj->context, &udata);
375         if (IS_ERR(pd)) {
376                 ret = PTR_ERR(pd);
377                 goto err;
378         }
379
380         pd->device  = ib_dev;
381         pd->uobject = uobj;
382         pd->__internal_mr = NULL;
383         atomic_set(&pd->usecnt, 0);
384
385         uobj->object = pd;
386         memset(&resp, 0, sizeof resp);
387         resp.pd_handle = uobj->id;
388         pd->res.type = RDMA_RESTRACK_PD;
389         rdma_restrack_add(&pd->res);
390
391         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
392                 ret = -EFAULT;
393                 goto err_copy;
394         }
395
396         return uobj_alloc_commit(uobj, in_len);
397
398 err_copy:
399         ib_dealloc_pd(pd);
400
401 err:
402         uobj_alloc_abort(uobj);
403         return ret;
404 }
405
406 ssize_t ib_uverbs_dealloc_pd(struct ib_uverbs_file *file,
407                              const char __user *buf,
408                              int in_len, int out_len)
409 {
410         struct ib_uverbs_dealloc_pd cmd;
411
412         if (copy_from_user(&cmd, buf, sizeof cmd))
413                 return -EFAULT;
414
415         return uobj_perform_destroy(UVERBS_OBJECT_PD, cmd.pd_handle, file,
416                                     in_len);
417 }
418
419 struct xrcd_table_entry {
420         struct rb_node  node;
421         struct ib_xrcd *xrcd;
422         struct inode   *inode;
423 };
424
425 static int xrcd_table_insert(struct ib_uverbs_device *dev,
426                             struct inode *inode,
427                             struct ib_xrcd *xrcd)
428 {
429         struct xrcd_table_entry *entry, *scan;
430         struct rb_node **p = &dev->xrcd_tree.rb_node;
431         struct rb_node *parent = NULL;
432
433         entry = kmalloc(sizeof *entry, GFP_KERNEL);
434         if (!entry)
435                 return -ENOMEM;
436
437         entry->xrcd  = xrcd;
438         entry->inode = inode;
439
440         while (*p) {
441                 parent = *p;
442                 scan = rb_entry(parent, struct xrcd_table_entry, node);
443
444                 if (inode < scan->inode) {
445                         p = &(*p)->rb_left;
446                 } else if (inode > scan->inode) {
447                         p = &(*p)->rb_right;
448                 } else {
449                         kfree(entry);
450                         return -EEXIST;
451                 }
452         }
453
454         rb_link_node(&entry->node, parent, p);
455         rb_insert_color(&entry->node, &dev->xrcd_tree);
456         igrab(inode);
457         return 0;
458 }
459
460 static struct xrcd_table_entry *xrcd_table_search(struct ib_uverbs_device *dev,
461                                                   struct inode *inode)
462 {
463         struct xrcd_table_entry *entry;
464         struct rb_node *p = dev->xrcd_tree.rb_node;
465
466         while (p) {
467                 entry = rb_entry(p, struct xrcd_table_entry, node);
468
469                 if (inode < entry->inode)
470                         p = p->rb_left;
471                 else if (inode > entry->inode)
472                         p = p->rb_right;
473                 else
474                         return entry;
475         }
476
477         return NULL;
478 }
479
480 static struct ib_xrcd *find_xrcd(struct ib_uverbs_device *dev, struct inode *inode)
481 {
482         struct xrcd_table_entry *entry;
483
484         entry = xrcd_table_search(dev, inode);
485         if (!entry)
486                 return NULL;
487
488         return entry->xrcd;
489 }
490
491 static void xrcd_table_delete(struct ib_uverbs_device *dev,
492                               struct inode *inode)
493 {
494         struct xrcd_table_entry *entry;
495
496         entry = xrcd_table_search(dev, inode);
497         if (entry) {
498                 iput(inode);
499                 rb_erase(&entry->node, &dev->xrcd_tree);
500                 kfree(entry);
501         }
502 }
503
504 ssize_t ib_uverbs_open_xrcd(struct ib_uverbs_file *file,
505                             const char __user *buf, int in_len,
506                             int out_len)
507 {
508         struct ib_uverbs_open_xrcd      cmd;
509         struct ib_uverbs_open_xrcd_resp resp;
510         struct ib_udata                 udata;
511         struct ib_uxrcd_object         *obj;
512         struct ib_xrcd                 *xrcd = NULL;
513         struct fd                       f = {NULL, 0};
514         struct inode                   *inode = NULL;
515         int                             ret = 0;
516         int                             new_xrcd = 0;
517         struct ib_device *ib_dev;
518
519         if (out_len < sizeof resp)
520                 return -ENOSPC;
521
522         if (copy_from_user(&cmd, buf, sizeof cmd))
523                 return -EFAULT;
524
525         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
526                    u64_to_user_ptr(cmd.response) + sizeof(resp),
527                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
528                    out_len - sizeof(resp));
529
530         mutex_lock(&file->device->xrcd_tree_mutex);
531
532         if (cmd.fd != -1) {
533                 /* search for file descriptor */
534                 f = fdget(cmd.fd);
535                 if (!f.file) {
536                         ret = -EBADF;
537                         goto err_tree_mutex_unlock;
538                 }
539
540                 inode = file_inode(f.file);
541                 xrcd = find_xrcd(file->device, inode);
542                 if (!xrcd && !(cmd.oflags & O_CREAT)) {
543                         /* no file descriptor. Need CREATE flag */
544                         ret = -EAGAIN;
545                         goto err_tree_mutex_unlock;
546                 }
547
548                 if (xrcd && cmd.oflags & O_EXCL) {
549                         ret = -EINVAL;
550                         goto err_tree_mutex_unlock;
551                 }
552         }
553
554         obj = (struct ib_uxrcd_object *)uobj_alloc(UVERBS_OBJECT_XRCD, file,
555                                                    &ib_dev);
556         if (IS_ERR(obj)) {
557                 ret = PTR_ERR(obj);
558                 goto err_tree_mutex_unlock;
559         }
560
561         if (!xrcd) {
562                 xrcd = ib_dev->alloc_xrcd(ib_dev, obj->uobject.context, &udata);
563                 if (IS_ERR(xrcd)) {
564                         ret = PTR_ERR(xrcd);
565                         goto err;
566                 }
567
568                 xrcd->inode   = inode;
569                 xrcd->device  = ib_dev;
570                 atomic_set(&xrcd->usecnt, 0);
571                 mutex_init(&xrcd->tgt_qp_mutex);
572                 INIT_LIST_HEAD(&xrcd->tgt_qp_list);
573                 new_xrcd = 1;
574         }
575
576         atomic_set(&obj->refcnt, 0);
577         obj->uobject.object = xrcd;
578         memset(&resp, 0, sizeof resp);
579         resp.xrcd_handle = obj->uobject.id;
580
581         if (inode) {
582                 if (new_xrcd) {
583                         /* create new inode/xrcd table entry */
584                         ret = xrcd_table_insert(file->device, inode, xrcd);
585                         if (ret)
586                                 goto err_dealloc_xrcd;
587                 }
588                 atomic_inc(&xrcd->usecnt);
589         }
590
591         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
592                 ret = -EFAULT;
593                 goto err_copy;
594         }
595
596         if (f.file)
597                 fdput(f);
598
599         mutex_unlock(&file->device->xrcd_tree_mutex);
600
601         return uobj_alloc_commit(&obj->uobject, in_len);
602
603 err_copy:
604         if (inode) {
605                 if (new_xrcd)
606                         xrcd_table_delete(file->device, inode);
607                 atomic_dec(&xrcd->usecnt);
608         }
609
610 err_dealloc_xrcd:
611         ib_dealloc_xrcd(xrcd);
612
613 err:
614         uobj_alloc_abort(&obj->uobject);
615
616 err_tree_mutex_unlock:
617         if (f.file)
618                 fdput(f);
619
620         mutex_unlock(&file->device->xrcd_tree_mutex);
621
622         return ret;
623 }
624
625 ssize_t ib_uverbs_close_xrcd(struct ib_uverbs_file *file,
626                              const char __user *buf, int in_len,
627                              int out_len)
628 {
629         struct ib_uverbs_close_xrcd cmd;
630
631         if (copy_from_user(&cmd, buf, sizeof cmd))
632                 return -EFAULT;
633
634         return uobj_perform_destroy(UVERBS_OBJECT_XRCD, cmd.xrcd_handle, file,
635                                     in_len);
636 }
637
638 int ib_uverbs_dealloc_xrcd(struct ib_uobject *uobject,
639                            struct ib_xrcd *xrcd,
640                            enum rdma_remove_reason why)
641 {
642         struct inode *inode;
643         int ret;
644         struct ib_uverbs_device *dev = uobject->context->ufile->device;
645
646         inode = xrcd->inode;
647         if (inode && !atomic_dec_and_test(&xrcd->usecnt))
648                 return 0;
649
650         ret = ib_dealloc_xrcd(xrcd);
651
652         if (ib_is_destroy_retryable(ret, why, uobject)) {
653                 atomic_inc(&xrcd->usecnt);
654                 return ret;
655         }
656
657         if (inode)
658                 xrcd_table_delete(dev, inode);
659
660         return ret;
661 }
662
663 ssize_t ib_uverbs_reg_mr(struct ib_uverbs_file *file,
664                          const char __user *buf, int in_len,
665                          int out_len)
666 {
667         struct ib_uverbs_reg_mr      cmd;
668         struct ib_uverbs_reg_mr_resp resp;
669         struct ib_udata              udata;
670         struct ib_uobject           *uobj;
671         struct ib_pd                *pd;
672         struct ib_mr                *mr;
673         int                          ret;
674         struct ib_device *ib_dev;
675
676         if (out_len < sizeof resp)
677                 return -ENOSPC;
678
679         if (copy_from_user(&cmd, buf, sizeof cmd))
680                 return -EFAULT;
681
682         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
683                    u64_to_user_ptr(cmd.response) + sizeof(resp),
684                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
685                    out_len - sizeof(resp));
686
687         if ((cmd.start & ~PAGE_MASK) != (cmd.hca_va & ~PAGE_MASK))
688                 return -EINVAL;
689
690         ret = ib_check_mr_access(cmd.access_flags);
691         if (ret)
692                 return ret;
693
694         uobj = uobj_alloc(UVERBS_OBJECT_MR, file, &ib_dev);
695         if (IS_ERR(uobj))
696                 return PTR_ERR(uobj);
697
698         pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd.pd_handle, file);
699         if (!pd) {
700                 ret = -EINVAL;
701                 goto err_free;
702         }
703
704         if (cmd.access_flags & IB_ACCESS_ON_DEMAND) {
705                 if (!(pd->device->attrs.device_cap_flags &
706                       IB_DEVICE_ON_DEMAND_PAGING)) {
707                         pr_debug("ODP support not available\n");
708                         ret = -EINVAL;
709                         goto err_put;
710                 }
711         }
712
713         mr = pd->device->reg_user_mr(pd, cmd.start, cmd.length, cmd.hca_va,
714                                      cmd.access_flags, &udata);
715         if (IS_ERR(mr)) {
716                 ret = PTR_ERR(mr);
717                 goto err_put;
718         }
719
720         mr->device  = pd->device;
721         mr->pd      = pd;
722         mr->dm      = NULL;
723         mr->uobject = uobj;
724         atomic_inc(&pd->usecnt);
725         mr->res.type = RDMA_RESTRACK_MR;
726         rdma_restrack_add(&mr->res);
727
728         uobj->object = mr;
729
730         memset(&resp, 0, sizeof resp);
731         resp.lkey      = mr->lkey;
732         resp.rkey      = mr->rkey;
733         resp.mr_handle = uobj->id;
734
735         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
736                 ret = -EFAULT;
737                 goto err_copy;
738         }
739
740         uobj_put_obj_read(pd);
741
742         return uobj_alloc_commit(uobj, in_len);
743
744 err_copy:
745         ib_dereg_mr(mr);
746
747 err_put:
748         uobj_put_obj_read(pd);
749
750 err_free:
751         uobj_alloc_abort(uobj);
752         return ret;
753 }
754
755 ssize_t ib_uverbs_rereg_mr(struct ib_uverbs_file *file,
756                            const char __user *buf, int in_len,
757                            int out_len)
758 {
759         struct ib_uverbs_rereg_mr      cmd;
760         struct ib_uverbs_rereg_mr_resp resp;
761         struct ib_udata              udata;
762         struct ib_pd                *pd = NULL;
763         struct ib_mr                *mr;
764         struct ib_pd                *old_pd;
765         int                          ret;
766         struct ib_uobject           *uobj;
767
768         if (out_len < sizeof(resp))
769                 return -ENOSPC;
770
771         if (copy_from_user(&cmd, buf, sizeof(cmd)))
772                 return -EFAULT;
773
774         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
775                    u64_to_user_ptr(cmd.response) + sizeof(resp),
776                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
777                    out_len - sizeof(resp));
778
779         if (cmd.flags & ~IB_MR_REREG_SUPPORTED || !cmd.flags)
780                 return -EINVAL;
781
782         if ((cmd.flags & IB_MR_REREG_TRANS) &&
783             (!cmd.start || !cmd.hca_va || 0 >= cmd.length ||
784              (cmd.start & ~PAGE_MASK) != (cmd.hca_va & ~PAGE_MASK)))
785                         return -EINVAL;
786
787         uobj = uobj_get_write(UVERBS_OBJECT_MR, cmd.mr_handle, file);
788         if (IS_ERR(uobj))
789                 return PTR_ERR(uobj);
790
791         mr = uobj->object;
792
793         if (mr->dm) {
794                 ret = -EINVAL;
795                 goto put_uobjs;
796         }
797
798         if (cmd.flags & IB_MR_REREG_ACCESS) {
799                 ret = ib_check_mr_access(cmd.access_flags);
800                 if (ret)
801                         goto put_uobjs;
802         }
803
804         if (cmd.flags & IB_MR_REREG_PD) {
805                 pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd.pd_handle,
806                                        file);
807                 if (!pd) {
808                         ret = -EINVAL;
809                         goto put_uobjs;
810                 }
811         }
812
813         old_pd = mr->pd;
814         ret = mr->device->rereg_user_mr(mr, cmd.flags, cmd.start,
815                                         cmd.length, cmd.hca_va,
816                                         cmd.access_flags, pd, &udata);
817         if (!ret) {
818                 if (cmd.flags & IB_MR_REREG_PD) {
819                         atomic_inc(&pd->usecnt);
820                         mr->pd = pd;
821                         atomic_dec(&old_pd->usecnt);
822                 }
823         } else {
824                 goto put_uobj_pd;
825         }
826
827         memset(&resp, 0, sizeof(resp));
828         resp.lkey      = mr->lkey;
829         resp.rkey      = mr->rkey;
830
831         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof(resp)))
832                 ret = -EFAULT;
833         else
834                 ret = in_len;
835
836 put_uobj_pd:
837         if (cmd.flags & IB_MR_REREG_PD)
838                 uobj_put_obj_read(pd);
839
840 put_uobjs:
841         uobj_put_write(uobj);
842
843         return ret;
844 }
845
846 ssize_t ib_uverbs_dereg_mr(struct ib_uverbs_file *file,
847                            const char __user *buf, int in_len,
848                            int out_len)
849 {
850         struct ib_uverbs_dereg_mr cmd;
851
852         if (copy_from_user(&cmd, buf, sizeof cmd))
853                 return -EFAULT;
854
855         return uobj_perform_destroy(UVERBS_OBJECT_MR, cmd.mr_handle, file,
856                                     in_len);
857 }
858
859 ssize_t ib_uverbs_alloc_mw(struct ib_uverbs_file *file,
860                            const char __user *buf, int in_len,
861                            int out_len)
862 {
863         struct ib_uverbs_alloc_mw      cmd;
864         struct ib_uverbs_alloc_mw_resp resp;
865         struct ib_uobject             *uobj;
866         struct ib_pd                  *pd;
867         struct ib_mw                  *mw;
868         struct ib_udata                udata;
869         int                            ret;
870         struct ib_device *ib_dev;
871
872         if (out_len < sizeof(resp))
873                 return -ENOSPC;
874
875         if (copy_from_user(&cmd, buf, sizeof(cmd)))
876                 return -EFAULT;
877
878         uobj = uobj_alloc(UVERBS_OBJECT_MW, file, &ib_dev);
879         if (IS_ERR(uobj))
880                 return PTR_ERR(uobj);
881
882         pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd.pd_handle, file);
883         if (!pd) {
884                 ret = -EINVAL;
885                 goto err_free;
886         }
887
888         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
889                    u64_to_user_ptr(cmd.response) + sizeof(resp),
890                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
891                    out_len - sizeof(resp));
892
893         mw = pd->device->alloc_mw(pd, cmd.mw_type, &udata);
894         if (IS_ERR(mw)) {
895                 ret = PTR_ERR(mw);
896                 goto err_put;
897         }
898
899         mw->device  = pd->device;
900         mw->pd      = pd;
901         mw->uobject = uobj;
902         atomic_inc(&pd->usecnt);
903
904         uobj->object = mw;
905
906         memset(&resp, 0, sizeof(resp));
907         resp.rkey      = mw->rkey;
908         resp.mw_handle = uobj->id;
909
910         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof(resp))) {
911                 ret = -EFAULT;
912                 goto err_copy;
913         }
914
915         uobj_put_obj_read(pd);
916         return uobj_alloc_commit(uobj, in_len);
917
918 err_copy:
919         uverbs_dealloc_mw(mw);
920 err_put:
921         uobj_put_obj_read(pd);
922 err_free:
923         uobj_alloc_abort(uobj);
924         return ret;
925 }
926
927 ssize_t ib_uverbs_dealloc_mw(struct ib_uverbs_file *file,
928                              const char __user *buf, int in_len,
929                              int out_len)
930 {
931         struct ib_uverbs_dealloc_mw cmd;
932
933         if (copy_from_user(&cmd, buf, sizeof(cmd)))
934                 return -EFAULT;
935
936         return uobj_perform_destroy(UVERBS_OBJECT_MW, cmd.mw_handle, file,
937                                     in_len);
938 }
939
940 ssize_t ib_uverbs_create_comp_channel(struct ib_uverbs_file *file,
941                                       const char __user *buf, int in_len,
942                                       int out_len)
943 {
944         struct ib_uverbs_create_comp_channel       cmd;
945         struct ib_uverbs_create_comp_channel_resp  resp;
946         struct ib_uobject                         *uobj;
947         struct ib_uverbs_completion_event_file    *ev_file;
948         struct ib_device *ib_dev;
949
950         if (out_len < sizeof resp)
951                 return -ENOSPC;
952
953         if (copy_from_user(&cmd, buf, sizeof cmd))
954                 return -EFAULT;
955
956         uobj = uobj_alloc(UVERBS_OBJECT_COMP_CHANNEL, file, &ib_dev);
957         if (IS_ERR(uobj))
958                 return PTR_ERR(uobj);
959
960         resp.fd = uobj->id;
961
962         ev_file = container_of(uobj, struct ib_uverbs_completion_event_file,
963                                uobj);
964         ib_uverbs_init_event_queue(&ev_file->ev_queue);
965
966         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
967                 uobj_alloc_abort(uobj);
968                 return -EFAULT;
969         }
970
971         return uobj_alloc_commit(uobj, in_len);
972 }
973
974 static struct ib_ucq_object *create_cq(struct ib_uverbs_file *file,
975                                        struct ib_udata *ucore,
976                                        struct ib_udata *uhw,
977                                        struct ib_uverbs_ex_create_cq *cmd,
978                                        size_t cmd_sz,
979                                        int (*cb)(struct ib_uverbs_file *file,
980                                                  struct ib_ucq_object *obj,
981                                                  struct ib_uverbs_ex_create_cq_resp *resp,
982                                                  struct ib_udata *udata,
983                                                  void *context),
984                                        void *context)
985 {
986         struct ib_ucq_object           *obj;
987         struct ib_uverbs_completion_event_file    *ev_file = NULL;
988         struct ib_cq                   *cq;
989         int                             ret;
990         struct ib_uverbs_ex_create_cq_resp resp;
991         struct ib_cq_init_attr attr = {};
992         struct ib_device *ib_dev;
993
994         if (cmd->comp_vector >= file->device->num_comp_vectors)
995                 return ERR_PTR(-EINVAL);
996
997         obj = (struct ib_ucq_object *)uobj_alloc(UVERBS_OBJECT_CQ, file,
998                                                  &ib_dev);
999         if (IS_ERR(obj))
1000                 return obj;
1001
1002         if (!ib_dev->create_cq) {
1003                 ret = -EOPNOTSUPP;
1004                 goto err;
1005         }
1006
1007         if (cmd->comp_channel >= 0) {
1008                 ev_file = ib_uverbs_lookup_comp_file(cmd->comp_channel, file);
1009                 if (IS_ERR(ev_file)) {
1010                         ret = PTR_ERR(ev_file);
1011                         goto err;
1012                 }
1013         }
1014
1015         obj->uobject.user_handle = cmd->user_handle;
1016         obj->comp_events_reported  = 0;
1017         obj->async_events_reported = 0;
1018         INIT_LIST_HEAD(&obj->comp_list);
1019         INIT_LIST_HEAD(&obj->async_list);
1020
1021         attr.cqe = cmd->cqe;
1022         attr.comp_vector = cmd->comp_vector;
1023
1024         if (cmd_sz > offsetof(typeof(*cmd), flags) + sizeof(cmd->flags))
1025                 attr.flags = cmd->flags;
1026
1027         cq = ib_dev->create_cq(ib_dev, &attr, obj->uobject.context, uhw);
1028         if (IS_ERR(cq)) {
1029                 ret = PTR_ERR(cq);
1030                 goto err_file;
1031         }
1032
1033         cq->device        = ib_dev;
1034         cq->uobject       = &obj->uobject;
1035         cq->comp_handler  = ib_uverbs_comp_handler;
1036         cq->event_handler = ib_uverbs_cq_event_handler;
1037         cq->cq_context    = ev_file ? &ev_file->ev_queue : NULL;
1038         atomic_set(&cq->usecnt, 0);
1039
1040         obj->uobject.object = cq;
1041         memset(&resp, 0, sizeof resp);
1042         resp.base.cq_handle = obj->uobject.id;
1043         resp.base.cqe       = cq->cqe;
1044
1045         resp.response_length = offsetof(typeof(resp), response_length) +
1046                 sizeof(resp.response_length);
1047
1048         cq->res.type = RDMA_RESTRACK_CQ;
1049         rdma_restrack_add(&cq->res);
1050
1051         ret = cb(file, obj, &resp, ucore, context);
1052         if (ret)
1053                 goto err_cb;
1054
1055         ret = uobj_alloc_commit(&obj->uobject, 0);
1056         if (ret)
1057                 return ERR_PTR(ret);
1058         return obj;
1059
1060 err_cb:
1061         ib_destroy_cq(cq);
1062
1063 err_file:
1064         if (ev_file)
1065                 ib_uverbs_release_ucq(file, ev_file, obj);
1066
1067 err:
1068         uobj_alloc_abort(&obj->uobject);
1069
1070         return ERR_PTR(ret);
1071 }
1072
1073 static int ib_uverbs_create_cq_cb(struct ib_uverbs_file *file,
1074                                   struct ib_ucq_object *obj,
1075                                   struct ib_uverbs_ex_create_cq_resp *resp,
1076                                   struct ib_udata *ucore, void *context)
1077 {
1078         if (ib_copy_to_udata(ucore, &resp->base, sizeof(resp->base)))
1079                 return -EFAULT;
1080
1081         return 0;
1082 }
1083
1084 ssize_t ib_uverbs_create_cq(struct ib_uverbs_file *file,
1085                             const char __user *buf, int in_len,
1086                             int out_len)
1087 {
1088         struct ib_uverbs_create_cq      cmd;
1089         struct ib_uverbs_ex_create_cq   cmd_ex;
1090         struct ib_uverbs_create_cq_resp resp;
1091         struct ib_udata                 ucore;
1092         struct ib_udata                 uhw;
1093         struct ib_ucq_object           *obj;
1094
1095         if (out_len < sizeof(resp))
1096                 return -ENOSPC;
1097
1098         if (copy_from_user(&cmd, buf, sizeof(cmd)))
1099                 return -EFAULT;
1100
1101         ib_uverbs_init_udata(&ucore, buf, u64_to_user_ptr(cmd.response),
1102                              sizeof(cmd), sizeof(resp));
1103
1104         ib_uverbs_init_udata(&uhw, buf + sizeof(cmd),
1105                    u64_to_user_ptr(cmd.response) + sizeof(resp),
1106                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
1107                    out_len - sizeof(resp));
1108
1109         memset(&cmd_ex, 0, sizeof(cmd_ex));
1110         cmd_ex.user_handle = cmd.user_handle;
1111         cmd_ex.cqe = cmd.cqe;
1112         cmd_ex.comp_vector = cmd.comp_vector;
1113         cmd_ex.comp_channel = cmd.comp_channel;
1114
1115         obj = create_cq(file, &ucore, &uhw, &cmd_ex,
1116                         offsetof(typeof(cmd_ex), comp_channel) +
1117                         sizeof(cmd.comp_channel), ib_uverbs_create_cq_cb,
1118                         NULL);
1119
1120         if (IS_ERR(obj))
1121                 return PTR_ERR(obj);
1122
1123         return in_len;
1124 }
1125
1126 static int ib_uverbs_ex_create_cq_cb(struct ib_uverbs_file *file,
1127                                      struct ib_ucq_object *obj,
1128                                      struct ib_uverbs_ex_create_cq_resp *resp,
1129                                      struct ib_udata *ucore, void *context)
1130 {
1131         if (ib_copy_to_udata(ucore, resp, resp->response_length))
1132                 return -EFAULT;
1133
1134         return 0;
1135 }
1136
1137 int ib_uverbs_ex_create_cq(struct ib_uverbs_file *file,
1138                            struct ib_udata *ucore,
1139                            struct ib_udata *uhw)
1140 {
1141         struct ib_uverbs_ex_create_cq_resp resp;
1142         struct ib_uverbs_ex_create_cq  cmd;
1143         struct ib_ucq_object           *obj;
1144         int err;
1145
1146         if (ucore->inlen < sizeof(cmd))
1147                 return -EINVAL;
1148
1149         err = ib_copy_from_udata(&cmd, ucore, sizeof(cmd));
1150         if (err)
1151                 return err;
1152
1153         if (cmd.comp_mask)
1154                 return -EINVAL;
1155
1156         if (cmd.reserved)
1157                 return -EINVAL;
1158
1159         if (ucore->outlen < (offsetof(typeof(resp), response_length) +
1160                              sizeof(resp.response_length)))
1161                 return -ENOSPC;
1162
1163         obj = create_cq(file, ucore, uhw, &cmd,
1164                         min(ucore->inlen, sizeof(cmd)),
1165                         ib_uverbs_ex_create_cq_cb, NULL);
1166
1167         return PTR_ERR_OR_ZERO(obj);
1168 }
1169
1170 ssize_t ib_uverbs_resize_cq(struct ib_uverbs_file *file,
1171                             const char __user *buf, int in_len,
1172                             int out_len)
1173 {
1174         struct ib_uverbs_resize_cq      cmd;
1175         struct ib_uverbs_resize_cq_resp resp = {};
1176         struct ib_udata                 udata;
1177         struct ib_cq                    *cq;
1178         int                             ret = -EINVAL;
1179
1180         if (copy_from_user(&cmd, buf, sizeof cmd))
1181                 return -EFAULT;
1182
1183         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
1184                    u64_to_user_ptr(cmd.response) + sizeof(resp),
1185                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
1186                    out_len - sizeof(resp));
1187
1188         cq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ, cmd.cq_handle, file);
1189         if (!cq)
1190                 return -EINVAL;
1191
1192         ret = cq->device->resize_cq(cq, cmd.cqe, &udata);
1193         if (ret)
1194                 goto out;
1195
1196         resp.cqe = cq->cqe;
1197
1198         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp.cqe))
1199                 ret = -EFAULT;
1200
1201 out:
1202         uobj_put_obj_read(cq);
1203
1204         return ret ? ret : in_len;
1205 }
1206
1207 static int copy_wc_to_user(struct ib_device *ib_dev, void __user *dest,
1208                            struct ib_wc *wc)
1209 {
1210         struct ib_uverbs_wc tmp;
1211
1212         tmp.wr_id               = wc->wr_id;
1213         tmp.status              = wc->status;
1214         tmp.opcode              = wc->opcode;
1215         tmp.vendor_err          = wc->vendor_err;
1216         tmp.byte_len            = wc->byte_len;
1217         tmp.ex.imm_data         = wc->ex.imm_data;
1218         tmp.qp_num              = wc->qp->qp_num;
1219         tmp.src_qp              = wc->src_qp;
1220         tmp.wc_flags            = wc->wc_flags;
1221         tmp.pkey_index          = wc->pkey_index;
1222         if (rdma_cap_opa_ah(ib_dev, wc->port_num))
1223                 tmp.slid        = OPA_TO_IB_UCAST_LID(wc->slid);
1224         else
1225                 tmp.slid        = ib_lid_cpu16(wc->slid);
1226         tmp.sl                  = wc->sl;
1227         tmp.dlid_path_bits      = wc->dlid_path_bits;
1228         tmp.port_num            = wc->port_num;
1229         tmp.reserved            = 0;
1230
1231         if (copy_to_user(dest, &tmp, sizeof tmp))
1232                 return -EFAULT;
1233
1234         return 0;
1235 }
1236
1237 ssize_t ib_uverbs_poll_cq(struct ib_uverbs_file *file,
1238                           const char __user *buf, int in_len,
1239                           int out_len)
1240 {
1241         struct ib_uverbs_poll_cq       cmd;
1242         struct ib_uverbs_poll_cq_resp  resp;
1243         u8 __user                     *header_ptr;
1244         u8 __user                     *data_ptr;
1245         struct ib_cq                  *cq;
1246         struct ib_wc                   wc;
1247         int                            ret;
1248
1249         if (copy_from_user(&cmd, buf, sizeof cmd))
1250                 return -EFAULT;
1251
1252         cq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ, cmd.cq_handle, file);
1253         if (!cq)
1254                 return -EINVAL;
1255
1256         /* we copy a struct ib_uverbs_poll_cq_resp to user space */
1257         header_ptr = u64_to_user_ptr(cmd.response);
1258         data_ptr = header_ptr + sizeof resp;
1259
1260         memset(&resp, 0, sizeof resp);
1261         while (resp.count < cmd.ne) {
1262                 ret = ib_poll_cq(cq, 1, &wc);
1263                 if (ret < 0)
1264                         goto out_put;
1265                 if (!ret)
1266                         break;
1267
1268                 ret = copy_wc_to_user(cq->device, data_ptr, &wc);
1269                 if (ret)
1270                         goto out_put;
1271
1272                 data_ptr += sizeof(struct ib_uverbs_wc);
1273                 ++resp.count;
1274         }
1275
1276         if (copy_to_user(header_ptr, &resp, sizeof resp)) {
1277                 ret = -EFAULT;
1278                 goto out_put;
1279         }
1280
1281         ret = in_len;
1282
1283 out_put:
1284         uobj_put_obj_read(cq);
1285         return ret;
1286 }
1287
1288 ssize_t ib_uverbs_req_notify_cq(struct ib_uverbs_file *file,
1289                                 const char __user *buf, int in_len,
1290                                 int out_len)
1291 {
1292         struct ib_uverbs_req_notify_cq cmd;
1293         struct ib_cq                  *cq;
1294
1295         if (copy_from_user(&cmd, buf, sizeof cmd))
1296                 return -EFAULT;
1297
1298         cq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ, cmd.cq_handle, file);
1299         if (!cq)
1300                 return -EINVAL;
1301
1302         ib_req_notify_cq(cq, cmd.solicited_only ?
1303                          IB_CQ_SOLICITED : IB_CQ_NEXT_COMP);
1304
1305         uobj_put_obj_read(cq);
1306
1307         return in_len;
1308 }
1309
1310 ssize_t ib_uverbs_destroy_cq(struct ib_uverbs_file *file,
1311                              const char __user *buf, int in_len,
1312                              int out_len)
1313 {
1314         struct ib_uverbs_destroy_cq      cmd;
1315         struct ib_uverbs_destroy_cq_resp resp;
1316         struct ib_uobject               *uobj;
1317         struct ib_ucq_object            *obj;
1318
1319         if (copy_from_user(&cmd, buf, sizeof cmd))
1320                 return -EFAULT;
1321
1322         uobj = uobj_get_destroy(UVERBS_OBJECT_CQ, cmd.cq_handle, file);
1323         if (IS_ERR(uobj))
1324                 return PTR_ERR(uobj);
1325
1326         obj = container_of(uobj, struct ib_ucq_object, uobject);
1327         memset(&resp, 0, sizeof(resp));
1328         resp.comp_events_reported  = obj->comp_events_reported;
1329         resp.async_events_reported = obj->async_events_reported;
1330
1331         uobj_put_destroy(uobj);
1332
1333         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
1334                 return -EFAULT;
1335
1336         return in_len;
1337 }
1338
1339 static int create_qp(struct ib_uverbs_file *file,
1340                      struct ib_udata *ucore,
1341                      struct ib_udata *uhw,
1342                      struct ib_uverbs_ex_create_qp *cmd,
1343                      size_t cmd_sz,
1344                      int (*cb)(struct ib_uverbs_file *file,
1345                                struct ib_uverbs_ex_create_qp_resp *resp,
1346                                struct ib_udata *udata),
1347                      void *context)
1348 {
1349         struct ib_uqp_object            *obj;
1350         struct ib_device                *device;
1351         struct ib_pd                    *pd = NULL;
1352         struct ib_xrcd                  *xrcd = NULL;
1353         struct ib_uobject               *xrcd_uobj = ERR_PTR(-ENOENT);
1354         struct ib_cq                    *scq = NULL, *rcq = NULL;
1355         struct ib_srq                   *srq = NULL;
1356         struct ib_qp                    *qp;
1357         char                            *buf;
1358         struct ib_qp_init_attr          attr = {};
1359         struct ib_uverbs_ex_create_qp_resp resp;
1360         int                             ret;
1361         struct ib_rwq_ind_table *ind_tbl = NULL;
1362         bool has_sq = true;
1363         struct ib_device *ib_dev;
1364
1365         if (cmd->qp_type == IB_QPT_RAW_PACKET && !capable(CAP_NET_RAW))
1366                 return -EPERM;
1367
1368         obj = (struct ib_uqp_object *)uobj_alloc(UVERBS_OBJECT_QP, file,
1369                                                  &ib_dev);
1370         if (IS_ERR(obj))
1371                 return PTR_ERR(obj);
1372         obj->uxrcd = NULL;
1373         obj->uevent.uobject.user_handle = cmd->user_handle;
1374         mutex_init(&obj->mcast_lock);
1375
1376         if (cmd_sz >= offsetof(typeof(*cmd), rwq_ind_tbl_handle) +
1377                       sizeof(cmd->rwq_ind_tbl_handle) &&
1378                       (cmd->comp_mask & IB_UVERBS_CREATE_QP_MASK_IND_TABLE)) {
1379                 ind_tbl = uobj_get_obj_read(rwq_ind_table,
1380                                             UVERBS_OBJECT_RWQ_IND_TBL,
1381                                             cmd->rwq_ind_tbl_handle, file);
1382                 if (!ind_tbl) {
1383                         ret = -EINVAL;
1384                         goto err_put;
1385                 }
1386
1387                 attr.rwq_ind_tbl = ind_tbl;
1388         }
1389
1390         if (cmd_sz > sizeof(*cmd) &&
1391             !ib_is_udata_cleared(ucore, sizeof(*cmd),
1392                                  cmd_sz - sizeof(*cmd))) {
1393                 ret = -EOPNOTSUPP;
1394                 goto err_put;
1395         }
1396
1397         if (ind_tbl && (cmd->max_recv_wr || cmd->max_recv_sge || cmd->is_srq)) {
1398                 ret = -EINVAL;
1399                 goto err_put;
1400         }
1401
1402         if (ind_tbl && !cmd->max_send_wr)
1403                 has_sq = false;
1404
1405         if (cmd->qp_type == IB_QPT_XRC_TGT) {
1406                 xrcd_uobj = uobj_get_read(UVERBS_OBJECT_XRCD, cmd->pd_handle,
1407                                           file);
1408
1409                 if (IS_ERR(xrcd_uobj)) {
1410                         ret = -EINVAL;
1411                         goto err_put;
1412                 }
1413
1414                 xrcd = (struct ib_xrcd *)xrcd_uobj->object;
1415                 if (!xrcd) {
1416                         ret = -EINVAL;
1417                         goto err_put;
1418                 }
1419                 device = xrcd->device;
1420         } else {
1421                 if (cmd->qp_type == IB_QPT_XRC_INI) {
1422                         cmd->max_recv_wr = 0;
1423                         cmd->max_recv_sge = 0;
1424                 } else {
1425                         if (cmd->is_srq) {
1426                                 srq = uobj_get_obj_read(srq, UVERBS_OBJECT_SRQ,
1427                                                         cmd->srq_handle, file);
1428                                 if (!srq || srq->srq_type == IB_SRQT_XRC) {
1429                                         ret = -EINVAL;
1430                                         goto err_put;
1431                                 }
1432                         }
1433
1434                         if (!ind_tbl) {
1435                                 if (cmd->recv_cq_handle != cmd->send_cq_handle) {
1436                                         rcq = uobj_get_obj_read(
1437                                                 cq, UVERBS_OBJECT_CQ,
1438                                                 cmd->recv_cq_handle, file);
1439                                         if (!rcq) {
1440                                                 ret = -EINVAL;
1441                                                 goto err_put;
1442                                         }
1443                                 }
1444                         }
1445                 }
1446
1447                 if (has_sq)
1448                         scq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ,
1449                                                 cmd->send_cq_handle, file);
1450                 if (!ind_tbl)
1451                         rcq = rcq ?: scq;
1452                 pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd->pd_handle,
1453                                        file);
1454                 if (!pd || (!scq && has_sq)) {
1455                         ret = -EINVAL;
1456                         goto err_put;
1457                 }
1458
1459                 device = pd->device;
1460         }
1461
1462         attr.event_handler = ib_uverbs_qp_event_handler;
1463         attr.qp_context    = file;
1464         attr.send_cq       = scq;
1465         attr.recv_cq       = rcq;
1466         attr.srq           = srq;
1467         attr.xrcd          = xrcd;
1468         attr.sq_sig_type   = cmd->sq_sig_all ? IB_SIGNAL_ALL_WR :
1469                                               IB_SIGNAL_REQ_WR;
1470         attr.qp_type       = cmd->qp_type;
1471         attr.create_flags  = 0;
1472
1473         attr.cap.max_send_wr     = cmd->max_send_wr;
1474         attr.cap.max_recv_wr     = cmd->max_recv_wr;
1475         attr.cap.max_send_sge    = cmd->max_send_sge;
1476         attr.cap.max_recv_sge    = cmd->max_recv_sge;
1477         attr.cap.max_inline_data = cmd->max_inline_data;
1478
1479         obj->uevent.events_reported     = 0;
1480         INIT_LIST_HEAD(&obj->uevent.event_list);
1481         INIT_LIST_HEAD(&obj->mcast_list);
1482
1483         if (cmd_sz >= offsetof(typeof(*cmd), create_flags) +
1484                       sizeof(cmd->create_flags))
1485                 attr.create_flags = cmd->create_flags;
1486
1487         if (attr.create_flags & ~(IB_QP_CREATE_BLOCK_MULTICAST_LOOPBACK |
1488                                 IB_QP_CREATE_CROSS_CHANNEL |
1489                                 IB_QP_CREATE_MANAGED_SEND |
1490                                 IB_QP_CREATE_MANAGED_RECV |
1491                                 IB_QP_CREATE_SCATTER_FCS |
1492                                 IB_QP_CREATE_CVLAN_STRIPPING |
1493                                 IB_QP_CREATE_SOURCE_QPN |
1494                                 IB_QP_CREATE_PCI_WRITE_END_PADDING)) {
1495                 ret = -EINVAL;
1496                 goto err_put;
1497         }
1498
1499         if (attr.create_flags & IB_QP_CREATE_SOURCE_QPN) {
1500                 if (!capable(CAP_NET_RAW)) {
1501                         ret = -EPERM;
1502                         goto err_put;
1503                 }
1504
1505                 attr.source_qpn = cmd->source_qpn;
1506         }
1507
1508         buf = (void *)cmd + sizeof(*cmd);
1509         if (cmd_sz > sizeof(*cmd))
1510                 if (!(buf[0] == 0 && !memcmp(buf, buf + 1,
1511                                              cmd_sz - sizeof(*cmd) - 1))) {
1512                         ret = -EINVAL;
1513                         goto err_put;
1514                 }
1515
1516         if (cmd->qp_type == IB_QPT_XRC_TGT)
1517                 qp = ib_create_qp(pd, &attr);
1518         else
1519                 qp = _ib_create_qp(device, pd, &attr, uhw,
1520                                    &obj->uevent.uobject);
1521
1522         if (IS_ERR(qp)) {
1523                 ret = PTR_ERR(qp);
1524                 goto err_put;
1525         }
1526
1527         if (cmd->qp_type != IB_QPT_XRC_TGT) {
1528                 ret = ib_create_qp_security(qp, device);
1529                 if (ret)
1530                         goto err_cb;
1531
1532                 qp->real_qp       = qp;
1533                 qp->pd            = pd;
1534                 qp->send_cq       = attr.send_cq;
1535                 qp->recv_cq       = attr.recv_cq;
1536                 qp->srq           = attr.srq;
1537                 qp->rwq_ind_tbl   = ind_tbl;
1538                 qp->event_handler = attr.event_handler;
1539                 qp->qp_context    = attr.qp_context;
1540                 qp->qp_type       = attr.qp_type;
1541                 atomic_set(&qp->usecnt, 0);
1542                 atomic_inc(&pd->usecnt);
1543                 qp->port = 0;
1544                 if (attr.send_cq)
1545                         atomic_inc(&attr.send_cq->usecnt);
1546                 if (attr.recv_cq)
1547                         atomic_inc(&attr.recv_cq->usecnt);
1548                 if (attr.srq)
1549                         atomic_inc(&attr.srq->usecnt);
1550                 if (ind_tbl)
1551                         atomic_inc(&ind_tbl->usecnt);
1552         } else {
1553                 /* It is done in _ib_create_qp for other QP types */
1554                 qp->uobject = &obj->uevent.uobject;
1555         }
1556
1557         obj->uevent.uobject.object = qp;
1558
1559         memset(&resp, 0, sizeof resp);
1560         resp.base.qpn             = qp->qp_num;
1561         resp.base.qp_handle       = obj->uevent.uobject.id;
1562         resp.base.max_recv_sge    = attr.cap.max_recv_sge;
1563         resp.base.max_send_sge    = attr.cap.max_send_sge;
1564         resp.base.max_recv_wr     = attr.cap.max_recv_wr;
1565         resp.base.max_send_wr     = attr.cap.max_send_wr;
1566         resp.base.max_inline_data = attr.cap.max_inline_data;
1567
1568         resp.response_length = offsetof(typeof(resp), response_length) +
1569                                sizeof(resp.response_length);
1570
1571         ret = cb(file, &resp, ucore);
1572         if (ret)
1573                 goto err_cb;
1574
1575         if (xrcd) {
1576                 obj->uxrcd = container_of(xrcd_uobj, struct ib_uxrcd_object,
1577                                           uobject);
1578                 atomic_inc(&obj->uxrcd->refcnt);
1579                 uobj_put_read(xrcd_uobj);
1580         }
1581
1582         if (pd)
1583                 uobj_put_obj_read(pd);
1584         if (scq)
1585                 uobj_put_obj_read(scq);
1586         if (rcq && rcq != scq)
1587                 uobj_put_obj_read(rcq);
1588         if (srq)
1589                 uobj_put_obj_read(srq);
1590         if (ind_tbl)
1591                 uobj_put_obj_read(ind_tbl);
1592
1593         return uobj_alloc_commit(&obj->uevent.uobject, 0);
1594 err_cb:
1595         ib_destroy_qp(qp);
1596
1597 err_put:
1598         if (!IS_ERR(xrcd_uobj))
1599                 uobj_put_read(xrcd_uobj);
1600         if (pd)
1601                 uobj_put_obj_read(pd);
1602         if (scq)
1603                 uobj_put_obj_read(scq);
1604         if (rcq && rcq != scq)
1605                 uobj_put_obj_read(rcq);
1606         if (srq)
1607                 uobj_put_obj_read(srq);
1608         if (ind_tbl)
1609                 uobj_put_obj_read(ind_tbl);
1610
1611         uobj_alloc_abort(&obj->uevent.uobject);
1612         return ret;
1613 }
1614
1615 static int ib_uverbs_create_qp_cb(struct ib_uverbs_file *file,
1616                                   struct ib_uverbs_ex_create_qp_resp *resp,
1617                                   struct ib_udata *ucore)
1618 {
1619         if (ib_copy_to_udata(ucore, &resp->base, sizeof(resp->base)))
1620                 return -EFAULT;
1621
1622         return 0;
1623 }
1624
1625 ssize_t ib_uverbs_create_qp(struct ib_uverbs_file *file,
1626                             const char __user *buf, int in_len,
1627                             int out_len)
1628 {
1629         struct ib_uverbs_create_qp      cmd;
1630         struct ib_uverbs_ex_create_qp   cmd_ex;
1631         struct ib_udata                 ucore;
1632         struct ib_udata                 uhw;
1633         ssize_t resp_size = sizeof(struct ib_uverbs_create_qp_resp);
1634         int                             err;
1635
1636         if (out_len < resp_size)
1637                 return -ENOSPC;
1638
1639         if (copy_from_user(&cmd, buf, sizeof(cmd)))
1640                 return -EFAULT;
1641
1642         ib_uverbs_init_udata(&ucore, buf, u64_to_user_ptr(cmd.response),
1643                    sizeof(cmd), resp_size);
1644         ib_uverbs_init_udata(&uhw, buf + sizeof(cmd),
1645                    u64_to_user_ptr(cmd.response) + resp_size,
1646                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
1647                    out_len - resp_size);
1648
1649         memset(&cmd_ex, 0, sizeof(cmd_ex));
1650         cmd_ex.user_handle = cmd.user_handle;
1651         cmd_ex.pd_handle = cmd.pd_handle;
1652         cmd_ex.send_cq_handle = cmd.send_cq_handle;
1653         cmd_ex.recv_cq_handle = cmd.recv_cq_handle;
1654         cmd_ex.srq_handle = cmd.srq_handle;
1655         cmd_ex.max_send_wr = cmd.max_send_wr;
1656         cmd_ex.max_recv_wr = cmd.max_recv_wr;
1657         cmd_ex.max_send_sge = cmd.max_send_sge;
1658         cmd_ex.max_recv_sge = cmd.max_recv_sge;
1659         cmd_ex.max_inline_data = cmd.max_inline_data;
1660         cmd_ex.sq_sig_all = cmd.sq_sig_all;
1661         cmd_ex.qp_type = cmd.qp_type;
1662         cmd_ex.is_srq = cmd.is_srq;
1663
1664         err = create_qp(file, &ucore, &uhw, &cmd_ex,
1665                         offsetof(typeof(cmd_ex), is_srq) +
1666                         sizeof(cmd.is_srq), ib_uverbs_create_qp_cb,
1667                         NULL);
1668
1669         if (err)
1670                 return err;
1671
1672         return in_len;
1673 }
1674
1675 static int ib_uverbs_ex_create_qp_cb(struct ib_uverbs_file *file,
1676                                      struct ib_uverbs_ex_create_qp_resp *resp,
1677                                      struct ib_udata *ucore)
1678 {
1679         if (ib_copy_to_udata(ucore, resp, resp->response_length))
1680                 return -EFAULT;
1681
1682         return 0;
1683 }
1684
1685 int ib_uverbs_ex_create_qp(struct ib_uverbs_file *file,
1686                            struct ib_udata *ucore,
1687                            struct ib_udata *uhw)
1688 {
1689         struct ib_uverbs_ex_create_qp_resp resp;
1690         struct ib_uverbs_ex_create_qp cmd = {0};
1691         int err;
1692
1693         if (ucore->inlen < (offsetof(typeof(cmd), comp_mask) +
1694                             sizeof(cmd.comp_mask)))
1695                 return -EINVAL;
1696
1697         err = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
1698         if (err)
1699                 return err;
1700
1701         if (cmd.comp_mask & ~IB_UVERBS_CREATE_QP_SUP_COMP_MASK)
1702                 return -EINVAL;
1703
1704         if (cmd.reserved)
1705                 return -EINVAL;
1706
1707         if (ucore->outlen < (offsetof(typeof(resp), response_length) +
1708                              sizeof(resp.response_length)))
1709                 return -ENOSPC;
1710
1711         err = create_qp(file, ucore, uhw, &cmd,
1712                         min(ucore->inlen, sizeof(cmd)),
1713                         ib_uverbs_ex_create_qp_cb, NULL);
1714
1715         if (err)
1716                 return err;
1717
1718         return 0;
1719 }
1720
1721 ssize_t ib_uverbs_open_qp(struct ib_uverbs_file *file,
1722                           const char __user *buf, int in_len, int out_len)
1723 {
1724         struct ib_uverbs_open_qp        cmd;
1725         struct ib_uverbs_create_qp_resp resp;
1726         struct ib_udata                 udata;
1727         struct ib_uqp_object           *obj;
1728         struct ib_xrcd                 *xrcd;
1729         struct ib_uobject              *uninitialized_var(xrcd_uobj);
1730         struct ib_qp                   *qp;
1731         struct ib_qp_open_attr          attr;
1732         int ret;
1733         struct ib_device *ib_dev;
1734
1735         if (out_len < sizeof resp)
1736                 return -ENOSPC;
1737
1738         if (copy_from_user(&cmd, buf, sizeof cmd))
1739                 return -EFAULT;
1740
1741         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
1742                    u64_to_user_ptr(cmd.response) + sizeof(resp),
1743                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
1744                    out_len - sizeof(resp));
1745
1746         obj = (struct ib_uqp_object *)uobj_alloc(UVERBS_OBJECT_QP, file,
1747                                                  &ib_dev);
1748         if (IS_ERR(obj))
1749                 return PTR_ERR(obj);
1750
1751         xrcd_uobj = uobj_get_read(UVERBS_OBJECT_XRCD, cmd.pd_handle, file);
1752         if (IS_ERR(xrcd_uobj)) {
1753                 ret = -EINVAL;
1754                 goto err_put;
1755         }
1756
1757         xrcd = (struct ib_xrcd *)xrcd_uobj->object;
1758         if (!xrcd) {
1759                 ret = -EINVAL;
1760                 goto err_xrcd;
1761         }
1762
1763         attr.event_handler = ib_uverbs_qp_event_handler;
1764         attr.qp_context    = file;
1765         attr.qp_num        = cmd.qpn;
1766         attr.qp_type       = cmd.qp_type;
1767
1768         obj->uevent.events_reported = 0;
1769         INIT_LIST_HEAD(&obj->uevent.event_list);
1770         INIT_LIST_HEAD(&obj->mcast_list);
1771
1772         qp = ib_open_qp(xrcd, &attr);
1773         if (IS_ERR(qp)) {
1774                 ret = PTR_ERR(qp);
1775                 goto err_xrcd;
1776         }
1777
1778         obj->uevent.uobject.object = qp;
1779         obj->uevent.uobject.user_handle = cmd.user_handle;
1780
1781         memset(&resp, 0, sizeof resp);
1782         resp.qpn       = qp->qp_num;
1783         resp.qp_handle = obj->uevent.uobject.id;
1784
1785         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
1786                 ret = -EFAULT;
1787                 goto err_destroy;
1788         }
1789
1790         obj->uxrcd = container_of(xrcd_uobj, struct ib_uxrcd_object, uobject);
1791         atomic_inc(&obj->uxrcd->refcnt);
1792         qp->uobject = &obj->uevent.uobject;
1793         uobj_put_read(xrcd_uobj);
1794
1795         return uobj_alloc_commit(&obj->uevent.uobject, in_len);
1796
1797 err_destroy:
1798         ib_destroy_qp(qp);
1799 err_xrcd:
1800         uobj_put_read(xrcd_uobj);
1801 err_put:
1802         uobj_alloc_abort(&obj->uevent.uobject);
1803         return ret;
1804 }
1805
1806 static void copy_ah_attr_to_uverbs(struct ib_uverbs_qp_dest *uverb_attr,
1807                                    struct rdma_ah_attr *rdma_attr)
1808 {
1809         const struct ib_global_route   *grh;
1810
1811         uverb_attr->dlid              = rdma_ah_get_dlid(rdma_attr);
1812         uverb_attr->sl                = rdma_ah_get_sl(rdma_attr);
1813         uverb_attr->src_path_bits     = rdma_ah_get_path_bits(rdma_attr);
1814         uverb_attr->static_rate       = rdma_ah_get_static_rate(rdma_attr);
1815         uverb_attr->is_global         = !!(rdma_ah_get_ah_flags(rdma_attr) &
1816                                          IB_AH_GRH);
1817         if (uverb_attr->is_global) {
1818                 grh = rdma_ah_read_grh(rdma_attr);
1819                 memcpy(uverb_attr->dgid, grh->dgid.raw, 16);
1820                 uverb_attr->flow_label        = grh->flow_label;
1821                 uverb_attr->sgid_index        = grh->sgid_index;
1822                 uverb_attr->hop_limit         = grh->hop_limit;
1823                 uverb_attr->traffic_class     = grh->traffic_class;
1824         }
1825         uverb_attr->port_num          = rdma_ah_get_port_num(rdma_attr);
1826 }
1827
1828 ssize_t ib_uverbs_query_qp(struct ib_uverbs_file *file,
1829                            const char __user *buf, int in_len,
1830                            int out_len)
1831 {
1832         struct ib_uverbs_query_qp      cmd;
1833         struct ib_uverbs_query_qp_resp resp;
1834         struct ib_qp                   *qp;
1835         struct ib_qp_attr              *attr;
1836         struct ib_qp_init_attr         *init_attr;
1837         int                            ret;
1838
1839         if (copy_from_user(&cmd, buf, sizeof cmd))
1840                 return -EFAULT;
1841
1842         attr      = kmalloc(sizeof *attr, GFP_KERNEL);
1843         init_attr = kmalloc(sizeof *init_attr, GFP_KERNEL);
1844         if (!attr || !init_attr) {
1845                 ret = -ENOMEM;
1846                 goto out;
1847         }
1848
1849         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd.qp_handle, file);
1850         if (!qp) {
1851                 ret = -EINVAL;
1852                 goto out;
1853         }
1854
1855         ret = ib_query_qp(qp, attr, cmd.attr_mask, init_attr);
1856
1857         uobj_put_obj_read(qp);
1858
1859         if (ret)
1860                 goto out;
1861
1862         memset(&resp, 0, sizeof resp);
1863
1864         resp.qp_state               = attr->qp_state;
1865         resp.cur_qp_state           = attr->cur_qp_state;
1866         resp.path_mtu               = attr->path_mtu;
1867         resp.path_mig_state         = attr->path_mig_state;
1868         resp.qkey                   = attr->qkey;
1869         resp.rq_psn                 = attr->rq_psn;
1870         resp.sq_psn                 = attr->sq_psn;
1871         resp.dest_qp_num            = attr->dest_qp_num;
1872         resp.qp_access_flags        = attr->qp_access_flags;
1873         resp.pkey_index             = attr->pkey_index;
1874         resp.alt_pkey_index         = attr->alt_pkey_index;
1875         resp.sq_draining            = attr->sq_draining;
1876         resp.max_rd_atomic          = attr->max_rd_atomic;
1877         resp.max_dest_rd_atomic     = attr->max_dest_rd_atomic;
1878         resp.min_rnr_timer          = attr->min_rnr_timer;
1879         resp.port_num               = attr->port_num;
1880         resp.timeout                = attr->timeout;
1881         resp.retry_cnt              = attr->retry_cnt;
1882         resp.rnr_retry              = attr->rnr_retry;
1883         resp.alt_port_num           = attr->alt_port_num;
1884         resp.alt_timeout            = attr->alt_timeout;
1885
1886         copy_ah_attr_to_uverbs(&resp.dest, &attr->ah_attr);
1887         copy_ah_attr_to_uverbs(&resp.alt_dest, &attr->alt_ah_attr);
1888
1889         resp.max_send_wr            = init_attr->cap.max_send_wr;
1890         resp.max_recv_wr            = init_attr->cap.max_recv_wr;
1891         resp.max_send_sge           = init_attr->cap.max_send_sge;
1892         resp.max_recv_sge           = init_attr->cap.max_recv_sge;
1893         resp.max_inline_data        = init_attr->cap.max_inline_data;
1894         resp.sq_sig_all             = init_attr->sq_sig_type == IB_SIGNAL_ALL_WR;
1895
1896         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
1897                 ret = -EFAULT;
1898
1899 out:
1900         kfree(attr);
1901         kfree(init_attr);
1902
1903         return ret ? ret : in_len;
1904 }
1905
1906 /* Remove ignored fields set in the attribute mask */
1907 static int modify_qp_mask(enum ib_qp_type qp_type, int mask)
1908 {
1909         switch (qp_type) {
1910         case IB_QPT_XRC_INI:
1911                 return mask & ~(IB_QP_MAX_DEST_RD_ATOMIC | IB_QP_MIN_RNR_TIMER);
1912         case IB_QPT_XRC_TGT:
1913                 return mask & ~(IB_QP_MAX_QP_RD_ATOMIC | IB_QP_RETRY_CNT |
1914                                 IB_QP_RNR_RETRY);
1915         default:
1916                 return mask;
1917         }
1918 }
1919
1920 static void copy_ah_attr_from_uverbs(struct ib_device *dev,
1921                                      struct rdma_ah_attr *rdma_attr,
1922                                      struct ib_uverbs_qp_dest *uverb_attr)
1923 {
1924         rdma_attr->type = rdma_ah_find_type(dev, uverb_attr->port_num);
1925         if (uverb_attr->is_global) {
1926                 rdma_ah_set_grh(rdma_attr, NULL,
1927                                 uverb_attr->flow_label,
1928                                 uverb_attr->sgid_index,
1929                                 uverb_attr->hop_limit,
1930                                 uverb_attr->traffic_class);
1931                 rdma_ah_set_dgid_raw(rdma_attr, uverb_attr->dgid);
1932         } else {
1933                 rdma_ah_set_ah_flags(rdma_attr, 0);
1934         }
1935         rdma_ah_set_dlid(rdma_attr, uverb_attr->dlid);
1936         rdma_ah_set_sl(rdma_attr, uverb_attr->sl);
1937         rdma_ah_set_path_bits(rdma_attr, uverb_attr->src_path_bits);
1938         rdma_ah_set_static_rate(rdma_attr, uverb_attr->static_rate);
1939         rdma_ah_set_port_num(rdma_attr, uverb_attr->port_num);
1940         rdma_ah_set_make_grd(rdma_attr, false);
1941 }
1942
1943 static int modify_qp(struct ib_uverbs_file *file,
1944                      struct ib_uverbs_ex_modify_qp *cmd, struct ib_udata *udata)
1945 {
1946         struct ib_qp_attr *attr;
1947         struct ib_qp *qp;
1948         int ret;
1949
1950         attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1951         if (!attr)
1952                 return -ENOMEM;
1953
1954         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd->base.qp_handle, file);
1955         if (!qp) {
1956                 ret = -EINVAL;
1957                 goto out;
1958         }
1959
1960         if ((cmd->base.attr_mask & IB_QP_PORT) &&
1961             !rdma_is_port_valid(qp->device, cmd->base.port_num)) {
1962                 ret = -EINVAL;
1963                 goto release_qp;
1964         }
1965
1966         if ((cmd->base.attr_mask & IB_QP_AV) &&
1967             !rdma_is_port_valid(qp->device, cmd->base.dest.port_num)) {
1968                 ret = -EINVAL;
1969                 goto release_qp;
1970         }
1971
1972         if ((cmd->base.attr_mask & IB_QP_ALT_PATH) &&
1973             (!rdma_is_port_valid(qp->device, cmd->base.alt_port_num) ||
1974             !rdma_is_port_valid(qp->device, cmd->base.alt_dest.port_num))) {
1975                 ret = -EINVAL;
1976                 goto release_qp;
1977         }
1978
1979         if ((cmd->base.attr_mask & IB_QP_CUR_STATE &&
1980             cmd->base.cur_qp_state > IB_QPS_ERR) ||
1981             cmd->base.qp_state > IB_QPS_ERR) {
1982                 ret = -EINVAL;
1983                 goto release_qp;
1984         }
1985
1986         attr->qp_state            = cmd->base.qp_state;
1987         attr->cur_qp_state        = cmd->base.cur_qp_state;
1988         attr->path_mtu            = cmd->base.path_mtu;
1989         attr->path_mig_state      = cmd->base.path_mig_state;
1990         attr->qkey                = cmd->base.qkey;
1991         attr->rq_psn              = cmd->base.rq_psn;
1992         attr->sq_psn              = cmd->base.sq_psn;
1993         attr->dest_qp_num         = cmd->base.dest_qp_num;
1994         attr->qp_access_flags     = cmd->base.qp_access_flags;
1995         attr->pkey_index          = cmd->base.pkey_index;
1996         attr->alt_pkey_index      = cmd->base.alt_pkey_index;
1997         attr->en_sqd_async_notify = cmd->base.en_sqd_async_notify;
1998         attr->max_rd_atomic       = cmd->base.max_rd_atomic;
1999         attr->max_dest_rd_atomic  = cmd->base.max_dest_rd_atomic;
2000         attr->min_rnr_timer       = cmd->base.min_rnr_timer;
2001         attr->port_num            = cmd->base.port_num;
2002         attr->timeout             = cmd->base.timeout;
2003         attr->retry_cnt           = cmd->base.retry_cnt;
2004         attr->rnr_retry           = cmd->base.rnr_retry;
2005         attr->alt_port_num        = cmd->base.alt_port_num;
2006         attr->alt_timeout         = cmd->base.alt_timeout;
2007         attr->rate_limit          = cmd->rate_limit;
2008
2009         if (cmd->base.attr_mask & IB_QP_AV)
2010                 copy_ah_attr_from_uverbs(qp->device, &attr->ah_attr,
2011                                          &cmd->base.dest);
2012
2013         if (cmd->base.attr_mask & IB_QP_ALT_PATH)
2014                 copy_ah_attr_from_uverbs(qp->device, &attr->alt_ah_attr,
2015                                          &cmd->base.alt_dest);
2016
2017         ret = ib_modify_qp_with_udata(qp, attr,
2018                                       modify_qp_mask(qp->qp_type,
2019                                                      cmd->base.attr_mask),
2020                                       udata);
2021
2022 release_qp:
2023         uobj_put_obj_read(qp);
2024 out:
2025         kfree(attr);
2026
2027         return ret;
2028 }
2029
2030 ssize_t ib_uverbs_modify_qp(struct ib_uverbs_file *file,
2031                             const char __user *buf, int in_len,
2032                             int out_len)
2033 {
2034         struct ib_uverbs_ex_modify_qp cmd = {};
2035         struct ib_udata udata;
2036         int ret;
2037
2038         if (copy_from_user(&cmd.base, buf, sizeof(cmd.base)))
2039                 return -EFAULT;
2040
2041         if (cmd.base.attr_mask &
2042             ~((IB_USER_LEGACY_LAST_QP_ATTR_MASK << 1) - 1))
2043                 return -EOPNOTSUPP;
2044
2045         ib_uverbs_init_udata(&udata, buf + sizeof(cmd.base), NULL,
2046                    in_len - sizeof(cmd.base) - sizeof(struct ib_uverbs_cmd_hdr),
2047                    out_len);
2048
2049         ret = modify_qp(file, &cmd, &udata);
2050         if (ret)
2051                 return ret;
2052
2053         return in_len;
2054 }
2055
2056 int ib_uverbs_ex_modify_qp(struct ib_uverbs_file *file,
2057                            struct ib_udata *ucore,
2058                            struct ib_udata *uhw)
2059 {
2060         struct ib_uverbs_ex_modify_qp cmd = {};
2061         int ret;
2062
2063         /*
2064          * Last bit is reserved for extending the attr_mask by
2065          * using another field.
2066          */
2067         BUILD_BUG_ON(IB_USER_LAST_QP_ATTR_MASK == (1 << 31));
2068
2069         if (ucore->inlen < sizeof(cmd.base))
2070                 return -EINVAL;
2071
2072         ret = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
2073         if (ret)
2074                 return ret;
2075
2076         if (cmd.base.attr_mask &
2077             ~((IB_USER_LAST_QP_ATTR_MASK << 1) - 1))
2078                 return -EOPNOTSUPP;
2079
2080         if (ucore->inlen > sizeof(cmd)) {
2081                 if (!ib_is_udata_cleared(ucore, sizeof(cmd),
2082                                          ucore->inlen - sizeof(cmd)))
2083                         return -EOPNOTSUPP;
2084         }
2085
2086         ret = modify_qp(file, &cmd, uhw);
2087
2088         return ret;
2089 }
2090
2091 ssize_t ib_uverbs_destroy_qp(struct ib_uverbs_file *file,
2092                              const char __user *buf, int in_len,
2093                              int out_len)
2094 {
2095         struct ib_uverbs_destroy_qp      cmd;
2096         struct ib_uverbs_destroy_qp_resp resp;
2097         struct ib_uobject               *uobj;
2098         struct ib_uqp_object            *obj;
2099
2100         if (copy_from_user(&cmd, buf, sizeof cmd))
2101                 return -EFAULT;
2102
2103         uobj = uobj_get_destroy(UVERBS_OBJECT_QP, cmd.qp_handle, file);
2104         if (IS_ERR(uobj))
2105                 return PTR_ERR(uobj);
2106
2107         obj = container_of(uobj, struct ib_uqp_object, uevent.uobject);
2108         memset(&resp, 0, sizeof(resp));
2109         resp.events_reported = obj->uevent.events_reported;
2110
2111         uobj_put_destroy(uobj);
2112
2113         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
2114                 return -EFAULT;
2115
2116         return in_len;
2117 }
2118
2119 static void *alloc_wr(size_t wr_size, __u32 num_sge)
2120 {
2121         if (num_sge >= (U32_MAX - ALIGN(wr_size, sizeof (struct ib_sge))) /
2122                        sizeof (struct ib_sge))
2123                 return NULL;
2124
2125         return kmalloc(ALIGN(wr_size, sizeof (struct ib_sge)) +
2126                          num_sge * sizeof (struct ib_sge), GFP_KERNEL);
2127 }
2128
2129 ssize_t ib_uverbs_post_send(struct ib_uverbs_file *file,
2130                             const char __user *buf, int in_len,
2131                             int out_len)
2132 {
2133         struct ib_uverbs_post_send      cmd;
2134         struct ib_uverbs_post_send_resp resp;
2135         struct ib_uverbs_send_wr       *user_wr;
2136         struct ib_send_wr              *wr = NULL, *last, *next;
2137         const struct ib_send_wr        *bad_wr;
2138         struct ib_qp                   *qp;
2139         int                             i, sg_ind;
2140         int                             is_ud;
2141         ssize_t                         ret = -EINVAL;
2142         size_t                          next_size;
2143
2144         if (copy_from_user(&cmd, buf, sizeof cmd))
2145                 return -EFAULT;
2146
2147         if (in_len < sizeof cmd + cmd.wqe_size * cmd.wr_count +
2148             cmd.sge_count * sizeof (struct ib_uverbs_sge))
2149                 return -EINVAL;
2150
2151         if (cmd.wqe_size < sizeof (struct ib_uverbs_send_wr))
2152                 return -EINVAL;
2153
2154         user_wr = kmalloc(cmd.wqe_size, GFP_KERNEL);
2155         if (!user_wr)
2156                 return -ENOMEM;
2157
2158         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd.qp_handle, file);
2159         if (!qp)
2160                 goto out;
2161
2162         is_ud = qp->qp_type == IB_QPT_UD;
2163         sg_ind = 0;
2164         last = NULL;
2165         for (i = 0; i < cmd.wr_count; ++i) {
2166                 if (copy_from_user(user_wr,
2167                                    buf + sizeof cmd + i * cmd.wqe_size,
2168                                    cmd.wqe_size)) {
2169                         ret = -EFAULT;
2170                         goto out_put;
2171                 }
2172
2173                 if (user_wr->num_sge + sg_ind > cmd.sge_count) {
2174                         ret = -EINVAL;
2175                         goto out_put;
2176                 }
2177
2178                 if (is_ud) {
2179                         struct ib_ud_wr *ud;
2180
2181                         if (user_wr->opcode != IB_WR_SEND &&
2182                             user_wr->opcode != IB_WR_SEND_WITH_IMM) {
2183                                 ret = -EINVAL;
2184                                 goto out_put;
2185                         }
2186
2187                         next_size = sizeof(*ud);
2188                         ud = alloc_wr(next_size, user_wr->num_sge);
2189                         if (!ud) {
2190                                 ret = -ENOMEM;
2191                                 goto out_put;
2192                         }
2193
2194                         ud->ah = uobj_get_obj_read(ah, UVERBS_OBJECT_AH,
2195                                                    user_wr->wr.ud.ah, file);
2196                         if (!ud->ah) {
2197                                 kfree(ud);
2198                                 ret = -EINVAL;
2199                                 goto out_put;
2200                         }
2201                         ud->remote_qpn = user_wr->wr.ud.remote_qpn;
2202                         ud->remote_qkey = user_wr->wr.ud.remote_qkey;
2203
2204                         next = &ud->wr;
2205                 } else if (user_wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM ||
2206                            user_wr->opcode == IB_WR_RDMA_WRITE ||
2207                            user_wr->opcode == IB_WR_RDMA_READ) {
2208                         struct ib_rdma_wr *rdma;
2209
2210                         next_size = sizeof(*rdma);
2211                         rdma = alloc_wr(next_size, user_wr->num_sge);
2212                         if (!rdma) {
2213                                 ret = -ENOMEM;
2214                                 goto out_put;
2215                         }
2216
2217                         rdma->remote_addr = user_wr->wr.rdma.remote_addr;
2218                         rdma->rkey = user_wr->wr.rdma.rkey;
2219
2220                         next = &rdma->wr;
2221                 } else if (user_wr->opcode == IB_WR_ATOMIC_CMP_AND_SWP ||
2222                            user_wr->opcode == IB_WR_ATOMIC_FETCH_AND_ADD) {
2223                         struct ib_atomic_wr *atomic;
2224
2225                         next_size = sizeof(*atomic);
2226                         atomic = alloc_wr(next_size, user_wr->num_sge);
2227                         if (!atomic) {
2228                                 ret = -ENOMEM;
2229                                 goto out_put;
2230                         }
2231
2232                         atomic->remote_addr = user_wr->wr.atomic.remote_addr;
2233                         atomic->compare_add = user_wr->wr.atomic.compare_add;
2234                         atomic->swap = user_wr->wr.atomic.swap;
2235                         atomic->rkey = user_wr->wr.atomic.rkey;
2236
2237                         next = &atomic->wr;
2238                 } else if (user_wr->opcode == IB_WR_SEND ||
2239                            user_wr->opcode == IB_WR_SEND_WITH_IMM ||
2240                            user_wr->opcode == IB_WR_SEND_WITH_INV) {
2241                         next_size = sizeof(*next);
2242                         next = alloc_wr(next_size, user_wr->num_sge);
2243                         if (!next) {
2244                                 ret = -ENOMEM;
2245                                 goto out_put;
2246                         }
2247                 } else {
2248                         ret = -EINVAL;
2249                         goto out_put;
2250                 }
2251
2252                 if (user_wr->opcode == IB_WR_SEND_WITH_IMM ||
2253                     user_wr->opcode == IB_WR_RDMA_WRITE_WITH_IMM) {
2254                         next->ex.imm_data =
2255                                         (__be32 __force) user_wr->ex.imm_data;
2256                 } else if (user_wr->opcode == IB_WR_SEND_WITH_INV) {
2257                         next->ex.invalidate_rkey = user_wr->ex.invalidate_rkey;
2258                 }
2259
2260                 if (!last)
2261                         wr = next;
2262                 else
2263                         last->next = next;
2264                 last = next;
2265
2266                 next->next       = NULL;
2267                 next->wr_id      = user_wr->wr_id;
2268                 next->num_sge    = user_wr->num_sge;
2269                 next->opcode     = user_wr->opcode;
2270                 next->send_flags = user_wr->send_flags;
2271
2272                 if (next->num_sge) {
2273                         next->sg_list = (void *) next +
2274                                 ALIGN(next_size, sizeof(struct ib_sge));
2275                         if (copy_from_user(next->sg_list,
2276                                            buf + sizeof cmd +
2277                                            cmd.wr_count * cmd.wqe_size +
2278                                            sg_ind * sizeof (struct ib_sge),
2279                                            next->num_sge * sizeof (struct ib_sge))) {
2280                                 ret = -EFAULT;
2281                                 goto out_put;
2282                         }
2283                         sg_ind += next->num_sge;
2284                 } else
2285                         next->sg_list = NULL;
2286         }
2287
2288         resp.bad_wr = 0;
2289         ret = qp->device->post_send(qp->real_qp, wr, &bad_wr);
2290         if (ret)
2291                 for (next = wr; next; next = next->next) {
2292                         ++resp.bad_wr;
2293                         if (next == bad_wr)
2294                                 break;
2295                 }
2296
2297         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
2298                 ret = -EFAULT;
2299
2300 out_put:
2301         uobj_put_obj_read(qp);
2302
2303         while (wr) {
2304                 if (is_ud && ud_wr(wr)->ah)
2305                         uobj_put_obj_read(ud_wr(wr)->ah);
2306                 next = wr->next;
2307                 kfree(wr);
2308                 wr = next;
2309         }
2310
2311 out:
2312         kfree(user_wr);
2313
2314         return ret ? ret : in_len;
2315 }
2316
2317 static struct ib_recv_wr *ib_uverbs_unmarshall_recv(const char __user *buf,
2318                                                     int in_len,
2319                                                     u32 wr_count,
2320                                                     u32 sge_count,
2321                                                     u32 wqe_size)
2322 {
2323         struct ib_uverbs_recv_wr *user_wr;
2324         struct ib_recv_wr        *wr = NULL, *last, *next;
2325         int                       sg_ind;
2326         int                       i;
2327         int                       ret;
2328
2329         if (in_len < wqe_size * wr_count +
2330             sge_count * sizeof (struct ib_uverbs_sge))
2331                 return ERR_PTR(-EINVAL);
2332
2333         if (wqe_size < sizeof (struct ib_uverbs_recv_wr))
2334                 return ERR_PTR(-EINVAL);
2335
2336         user_wr = kmalloc(wqe_size, GFP_KERNEL);
2337         if (!user_wr)
2338                 return ERR_PTR(-ENOMEM);
2339
2340         sg_ind = 0;
2341         last = NULL;
2342         for (i = 0; i < wr_count; ++i) {
2343                 if (copy_from_user(user_wr, buf + i * wqe_size,
2344                                    wqe_size)) {
2345                         ret = -EFAULT;
2346                         goto err;
2347                 }
2348
2349                 if (user_wr->num_sge + sg_ind > sge_count) {
2350                         ret = -EINVAL;
2351                         goto err;
2352                 }
2353
2354                 if (user_wr->num_sge >=
2355                     (U32_MAX - ALIGN(sizeof *next, sizeof (struct ib_sge))) /
2356                     sizeof (struct ib_sge)) {
2357                         ret = -EINVAL;
2358                         goto err;
2359                 }
2360
2361                 next = kmalloc(ALIGN(sizeof *next, sizeof (struct ib_sge)) +
2362                                user_wr->num_sge * sizeof (struct ib_sge),
2363                                GFP_KERNEL);
2364                 if (!next) {
2365                         ret = -ENOMEM;
2366                         goto err;
2367                 }
2368
2369                 if (!last)
2370                         wr = next;
2371                 else
2372                         last->next = next;
2373                 last = next;
2374
2375                 next->next       = NULL;
2376                 next->wr_id      = user_wr->wr_id;
2377                 next->num_sge    = user_wr->num_sge;
2378
2379                 if (next->num_sge) {
2380                         next->sg_list = (void *) next +
2381                                 ALIGN(sizeof *next, sizeof (struct ib_sge));
2382                         if (copy_from_user(next->sg_list,
2383                                            buf + wr_count * wqe_size +
2384                                            sg_ind * sizeof (struct ib_sge),
2385                                            next->num_sge * sizeof (struct ib_sge))) {
2386                                 ret = -EFAULT;
2387                                 goto err;
2388                         }
2389                         sg_ind += next->num_sge;
2390                 } else
2391                         next->sg_list = NULL;
2392         }
2393
2394         kfree(user_wr);
2395         return wr;
2396
2397 err:
2398         kfree(user_wr);
2399
2400         while (wr) {
2401                 next = wr->next;
2402                 kfree(wr);
2403                 wr = next;
2404         }
2405
2406         return ERR_PTR(ret);
2407 }
2408
2409 ssize_t ib_uverbs_post_recv(struct ib_uverbs_file *file,
2410                             const char __user *buf, int in_len,
2411                             int out_len)
2412 {
2413         struct ib_uverbs_post_recv      cmd;
2414         struct ib_uverbs_post_recv_resp resp;
2415         struct ib_recv_wr              *wr, *next;
2416         const struct ib_recv_wr        *bad_wr;
2417         struct ib_qp                   *qp;
2418         ssize_t                         ret = -EINVAL;
2419
2420         if (copy_from_user(&cmd, buf, sizeof cmd))
2421                 return -EFAULT;
2422
2423         wr = ib_uverbs_unmarshall_recv(buf + sizeof cmd,
2424                                        in_len - sizeof cmd, cmd.wr_count,
2425                                        cmd.sge_count, cmd.wqe_size);
2426         if (IS_ERR(wr))
2427                 return PTR_ERR(wr);
2428
2429         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd.qp_handle, file);
2430         if (!qp)
2431                 goto out;
2432
2433         resp.bad_wr = 0;
2434         ret = qp->device->post_recv(qp->real_qp, wr, &bad_wr);
2435
2436         uobj_put_obj_read(qp);
2437         if (ret) {
2438                 for (next = wr; next; next = next->next) {
2439                         ++resp.bad_wr;
2440                         if (next == bad_wr)
2441                                 break;
2442                 }
2443         }
2444
2445         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
2446                 ret = -EFAULT;
2447
2448 out:
2449         while (wr) {
2450                 next = wr->next;
2451                 kfree(wr);
2452                 wr = next;
2453         }
2454
2455         return ret ? ret : in_len;
2456 }
2457
2458 ssize_t ib_uverbs_post_srq_recv(struct ib_uverbs_file *file,
2459                                 const char __user *buf, int in_len,
2460                                 int out_len)
2461 {
2462         struct ib_uverbs_post_srq_recv      cmd;
2463         struct ib_uverbs_post_srq_recv_resp resp;
2464         struct ib_recv_wr                  *wr, *next;
2465         const struct ib_recv_wr            *bad_wr;
2466         struct ib_srq                      *srq;
2467         ssize_t                             ret = -EINVAL;
2468
2469         if (copy_from_user(&cmd, buf, sizeof cmd))
2470                 return -EFAULT;
2471
2472         wr = ib_uverbs_unmarshall_recv(buf + sizeof cmd,
2473                                        in_len - sizeof cmd, cmd.wr_count,
2474                                        cmd.sge_count, cmd.wqe_size);
2475         if (IS_ERR(wr))
2476                 return PTR_ERR(wr);
2477
2478         srq = uobj_get_obj_read(srq, UVERBS_OBJECT_SRQ, cmd.srq_handle, file);
2479         if (!srq)
2480                 goto out;
2481
2482         resp.bad_wr = 0;
2483         ret = srq->device->post_srq_recv ?
2484                 srq->device->post_srq_recv(srq, wr, &bad_wr) : -EOPNOTSUPP;
2485
2486         uobj_put_obj_read(srq);
2487
2488         if (ret)
2489                 for (next = wr; next; next = next->next) {
2490                         ++resp.bad_wr;
2491                         if (next == bad_wr)
2492                                 break;
2493                 }
2494
2495         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
2496                 ret = -EFAULT;
2497
2498 out:
2499         while (wr) {
2500                 next = wr->next;
2501                 kfree(wr);
2502                 wr = next;
2503         }
2504
2505         return ret ? ret : in_len;
2506 }
2507
2508 ssize_t ib_uverbs_create_ah(struct ib_uverbs_file *file,
2509                             const char __user *buf, int in_len,
2510                             int out_len)
2511 {
2512         struct ib_uverbs_create_ah       cmd;
2513         struct ib_uverbs_create_ah_resp  resp;
2514         struct ib_uobject               *uobj;
2515         struct ib_pd                    *pd;
2516         struct ib_ah                    *ah;
2517         struct rdma_ah_attr             attr = {};
2518         int ret;
2519         struct ib_udata                   udata;
2520         struct ib_device *ib_dev;
2521
2522         if (out_len < sizeof resp)
2523                 return -ENOSPC;
2524
2525         if (copy_from_user(&cmd, buf, sizeof cmd))
2526                 return -EFAULT;
2527
2528         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
2529                    u64_to_user_ptr(cmd.response) + sizeof(resp),
2530                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
2531                    out_len - sizeof(resp));
2532
2533         uobj = uobj_alloc(UVERBS_OBJECT_AH, file, &ib_dev);
2534         if (IS_ERR(uobj))
2535                 return PTR_ERR(uobj);
2536
2537         if (!rdma_is_port_valid(ib_dev, cmd.attr.port_num)) {
2538                 ret = -EINVAL;
2539                 goto err;
2540         }
2541
2542         pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd.pd_handle, file);
2543         if (!pd) {
2544                 ret = -EINVAL;
2545                 goto err;
2546         }
2547
2548         attr.type = rdma_ah_find_type(ib_dev, cmd.attr.port_num);
2549         rdma_ah_set_make_grd(&attr, false);
2550         rdma_ah_set_dlid(&attr, cmd.attr.dlid);
2551         rdma_ah_set_sl(&attr, cmd.attr.sl);
2552         rdma_ah_set_path_bits(&attr, cmd.attr.src_path_bits);
2553         rdma_ah_set_static_rate(&attr, cmd.attr.static_rate);
2554         rdma_ah_set_port_num(&attr, cmd.attr.port_num);
2555
2556         if (cmd.attr.is_global) {
2557                 rdma_ah_set_grh(&attr, NULL, cmd.attr.grh.flow_label,
2558                                 cmd.attr.grh.sgid_index,
2559                                 cmd.attr.grh.hop_limit,
2560                                 cmd.attr.grh.traffic_class);
2561                 rdma_ah_set_dgid_raw(&attr, cmd.attr.grh.dgid);
2562         } else {
2563                 rdma_ah_set_ah_flags(&attr, 0);
2564         }
2565
2566         ah = rdma_create_user_ah(pd, &attr, &udata);
2567         if (IS_ERR(ah)) {
2568                 ret = PTR_ERR(ah);
2569                 goto err_put;
2570         }
2571
2572         ah->uobject  = uobj;
2573         uobj->user_handle = cmd.user_handle;
2574         uobj->object = ah;
2575
2576         resp.ah_handle = uobj->id;
2577
2578         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp)) {
2579                 ret = -EFAULT;
2580                 goto err_copy;
2581         }
2582
2583         uobj_put_obj_read(pd);
2584         return uobj_alloc_commit(uobj, in_len);
2585
2586 err_copy:
2587         rdma_destroy_ah(ah);
2588
2589 err_put:
2590         uobj_put_obj_read(pd);
2591
2592 err:
2593         uobj_alloc_abort(uobj);
2594         return ret;
2595 }
2596
2597 ssize_t ib_uverbs_destroy_ah(struct ib_uverbs_file *file,
2598                              const char __user *buf, int in_len, int out_len)
2599 {
2600         struct ib_uverbs_destroy_ah cmd;
2601
2602         if (copy_from_user(&cmd, buf, sizeof cmd))
2603                 return -EFAULT;
2604
2605         return uobj_perform_destroy(UVERBS_OBJECT_AH, cmd.ah_handle, file,
2606                                     in_len);
2607 }
2608
2609 ssize_t ib_uverbs_attach_mcast(struct ib_uverbs_file *file,
2610                                const char __user *buf, int in_len,
2611                                int out_len)
2612 {
2613         struct ib_uverbs_attach_mcast cmd;
2614         struct ib_qp                 *qp;
2615         struct ib_uqp_object         *obj;
2616         struct ib_uverbs_mcast_entry *mcast;
2617         int                           ret;
2618
2619         if (copy_from_user(&cmd, buf, sizeof cmd))
2620                 return -EFAULT;
2621
2622         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd.qp_handle, file);
2623         if (!qp)
2624                 return -EINVAL;
2625
2626         obj = container_of(qp->uobject, struct ib_uqp_object, uevent.uobject);
2627
2628         mutex_lock(&obj->mcast_lock);
2629         list_for_each_entry(mcast, &obj->mcast_list, list)
2630                 if (cmd.mlid == mcast->lid &&
2631                     !memcmp(cmd.gid, mcast->gid.raw, sizeof mcast->gid.raw)) {
2632                         ret = 0;
2633                         goto out_put;
2634                 }
2635
2636         mcast = kmalloc(sizeof *mcast, GFP_KERNEL);
2637         if (!mcast) {
2638                 ret = -ENOMEM;
2639                 goto out_put;
2640         }
2641
2642         mcast->lid = cmd.mlid;
2643         memcpy(mcast->gid.raw, cmd.gid, sizeof mcast->gid.raw);
2644
2645         ret = ib_attach_mcast(qp, &mcast->gid, cmd.mlid);
2646         if (!ret)
2647                 list_add_tail(&mcast->list, &obj->mcast_list);
2648         else
2649                 kfree(mcast);
2650
2651 out_put:
2652         mutex_unlock(&obj->mcast_lock);
2653         uobj_put_obj_read(qp);
2654
2655         return ret ? ret : in_len;
2656 }
2657
2658 ssize_t ib_uverbs_detach_mcast(struct ib_uverbs_file *file,
2659                                const char __user *buf, int in_len,
2660                                int out_len)
2661 {
2662         struct ib_uverbs_detach_mcast cmd;
2663         struct ib_uqp_object         *obj;
2664         struct ib_qp                 *qp;
2665         struct ib_uverbs_mcast_entry *mcast;
2666         int                           ret = -EINVAL;
2667         bool                          found = false;
2668
2669         if (copy_from_user(&cmd, buf, sizeof cmd))
2670                 return -EFAULT;
2671
2672         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd.qp_handle, file);
2673         if (!qp)
2674                 return -EINVAL;
2675
2676         obj = container_of(qp->uobject, struct ib_uqp_object, uevent.uobject);
2677         mutex_lock(&obj->mcast_lock);
2678
2679         list_for_each_entry(mcast, &obj->mcast_list, list)
2680                 if (cmd.mlid == mcast->lid &&
2681                     !memcmp(cmd.gid, mcast->gid.raw, sizeof mcast->gid.raw)) {
2682                         list_del(&mcast->list);
2683                         kfree(mcast);
2684                         found = true;
2685                         break;
2686                 }
2687
2688         if (!found) {
2689                 ret = -EINVAL;
2690                 goto out_put;
2691         }
2692
2693         ret = ib_detach_mcast(qp, (union ib_gid *)cmd.gid, cmd.mlid);
2694
2695 out_put:
2696         mutex_unlock(&obj->mcast_lock);
2697         uobj_put_obj_read(qp);
2698         return ret ? ret : in_len;
2699 }
2700
2701 struct ib_uflow_resources {
2702         size_t                  max;
2703         size_t                  num;
2704         size_t                  collection_num;
2705         size_t                  counters_num;
2706         struct ib_counters      **counters;
2707         struct ib_flow_action   **collection;
2708 };
2709
2710 static struct ib_uflow_resources *flow_resources_alloc(size_t num_specs)
2711 {
2712         struct ib_uflow_resources *resources;
2713
2714         resources = kzalloc(sizeof(*resources), GFP_KERNEL);
2715
2716         if (!resources)
2717                 return NULL;
2718
2719         if (!num_specs)
2720                 goto out;
2721
2722         resources->counters =
2723                 kcalloc(num_specs, sizeof(*resources->counters), GFP_KERNEL);
2724         resources->collection =
2725                 kcalloc(num_specs, sizeof(*resources->collection), GFP_KERNEL);
2726
2727         if (!resources->counters || !resources->collection)
2728                 goto err;
2729
2730 out:
2731         resources->max = num_specs;
2732         return resources;
2733
2734 err:
2735         kfree(resources->counters);
2736         kfree(resources);
2737
2738         return NULL;
2739 }
2740
2741 void ib_uverbs_flow_resources_free(struct ib_uflow_resources *uflow_res)
2742 {
2743         unsigned int i;
2744
2745         if (!uflow_res)
2746                 return;
2747
2748         for (i = 0; i < uflow_res->collection_num; i++)
2749                 atomic_dec(&uflow_res->collection[i]->usecnt);
2750
2751         for (i = 0; i < uflow_res->counters_num; i++)
2752                 atomic_dec(&uflow_res->counters[i]->usecnt);
2753
2754         kfree(uflow_res->collection);
2755         kfree(uflow_res->counters);
2756         kfree(uflow_res);
2757 }
2758
2759 static void flow_resources_add(struct ib_uflow_resources *uflow_res,
2760                                enum ib_flow_spec_type type,
2761                                void *ibobj)
2762 {
2763         WARN_ON(uflow_res->num >= uflow_res->max);
2764
2765         switch (type) {
2766         case IB_FLOW_SPEC_ACTION_HANDLE:
2767                 atomic_inc(&((struct ib_flow_action *)ibobj)->usecnt);
2768                 uflow_res->collection[uflow_res->collection_num++] =
2769                         (struct ib_flow_action *)ibobj;
2770                 break;
2771         case IB_FLOW_SPEC_ACTION_COUNT:
2772                 atomic_inc(&((struct ib_counters *)ibobj)->usecnt);
2773                 uflow_res->counters[uflow_res->counters_num++] =
2774                         (struct ib_counters *)ibobj;
2775                 break;
2776         default:
2777                 WARN_ON(1);
2778         }
2779
2780         uflow_res->num++;
2781 }
2782
2783 static int kern_spec_to_ib_spec_action(struct ib_uverbs_file *ufile,
2784                                        struct ib_uverbs_flow_spec *kern_spec,
2785                                        union ib_flow_spec *ib_spec,
2786                                        struct ib_uflow_resources *uflow_res)
2787 {
2788         ib_spec->type = kern_spec->type;
2789         switch (ib_spec->type) {
2790         case IB_FLOW_SPEC_ACTION_TAG:
2791                 if (kern_spec->flow_tag.size !=
2792                     sizeof(struct ib_uverbs_flow_spec_action_tag))
2793                         return -EINVAL;
2794
2795                 ib_spec->flow_tag.size = sizeof(struct ib_flow_spec_action_tag);
2796                 ib_spec->flow_tag.tag_id = kern_spec->flow_tag.tag_id;
2797                 break;
2798         case IB_FLOW_SPEC_ACTION_DROP:
2799                 if (kern_spec->drop.size !=
2800                     sizeof(struct ib_uverbs_flow_spec_action_drop))
2801                         return -EINVAL;
2802
2803                 ib_spec->drop.size = sizeof(struct ib_flow_spec_action_drop);
2804                 break;
2805         case IB_FLOW_SPEC_ACTION_HANDLE:
2806                 if (kern_spec->action.size !=
2807                     sizeof(struct ib_uverbs_flow_spec_action_handle))
2808                         return -EOPNOTSUPP;
2809                 ib_spec->action.act = uobj_get_obj_read(flow_action,
2810                                                         UVERBS_OBJECT_FLOW_ACTION,
2811                                                         kern_spec->action.handle,
2812                                                         ufile);
2813                 if (!ib_spec->action.act)
2814                         return -EINVAL;
2815                 ib_spec->action.size =
2816                         sizeof(struct ib_flow_spec_action_handle);
2817                 flow_resources_add(uflow_res,
2818                                    IB_FLOW_SPEC_ACTION_HANDLE,
2819                                    ib_spec->action.act);
2820                 uobj_put_obj_read(ib_spec->action.act);
2821                 break;
2822         case IB_FLOW_SPEC_ACTION_COUNT:
2823                 if (kern_spec->flow_count.size !=
2824                         sizeof(struct ib_uverbs_flow_spec_action_count))
2825                         return -EINVAL;
2826                 ib_spec->flow_count.counters =
2827                         uobj_get_obj_read(counters,
2828                                           UVERBS_OBJECT_COUNTERS,
2829                                           kern_spec->flow_count.handle,
2830                                           ufile);
2831                 if (!ib_spec->flow_count.counters)
2832                         return -EINVAL;
2833                 ib_spec->flow_count.size =
2834                                 sizeof(struct ib_flow_spec_action_count);
2835                 flow_resources_add(uflow_res,
2836                                    IB_FLOW_SPEC_ACTION_COUNT,
2837                                    ib_spec->flow_count.counters);
2838                 uobj_put_obj_read(ib_spec->flow_count.counters);
2839                 break;
2840         default:
2841                 return -EINVAL;
2842         }
2843         return 0;
2844 }
2845
2846 static size_t kern_spec_filter_sz(const struct ib_uverbs_flow_spec_hdr *spec)
2847 {
2848         /* Returns user space filter size, includes padding */
2849         return (spec->size - sizeof(struct ib_uverbs_flow_spec_hdr)) / 2;
2850 }
2851
2852 static ssize_t spec_filter_size(const void *kern_spec_filter, u16 kern_filter_size,
2853                                 u16 ib_real_filter_sz)
2854 {
2855         /*
2856          * User space filter structures must be 64 bit aligned, otherwise this
2857          * may pass, but we won't handle additional new attributes.
2858          */
2859
2860         if (kern_filter_size > ib_real_filter_sz) {
2861                 if (memchr_inv(kern_spec_filter +
2862                                ib_real_filter_sz, 0,
2863                                kern_filter_size - ib_real_filter_sz))
2864                         return -EINVAL;
2865                 return ib_real_filter_sz;
2866         }
2867         return kern_filter_size;
2868 }
2869
2870 int ib_uverbs_kern_spec_to_ib_spec_filter(enum ib_flow_spec_type type,
2871                                           const void *kern_spec_mask,
2872                                           const void *kern_spec_val,
2873                                           size_t kern_filter_sz,
2874                                           union ib_flow_spec *ib_spec)
2875 {
2876         ssize_t actual_filter_sz;
2877         ssize_t ib_filter_sz;
2878
2879         /* User flow spec size must be aligned to 4 bytes */
2880         if (kern_filter_sz != ALIGN(kern_filter_sz, 4))
2881                 return -EINVAL;
2882
2883         ib_spec->type = type;
2884
2885         if (ib_spec->type == (IB_FLOW_SPEC_INNER | IB_FLOW_SPEC_VXLAN_TUNNEL))
2886                 return -EINVAL;
2887
2888         switch (ib_spec->type & ~IB_FLOW_SPEC_INNER) {
2889         case IB_FLOW_SPEC_ETH:
2890                 ib_filter_sz = offsetof(struct ib_flow_eth_filter, real_sz);
2891                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2892                                                     kern_filter_sz,
2893                                                     ib_filter_sz);
2894                 if (actual_filter_sz <= 0)
2895                         return -EINVAL;
2896                 ib_spec->size = sizeof(struct ib_flow_spec_eth);
2897                 memcpy(&ib_spec->eth.val, kern_spec_val, actual_filter_sz);
2898                 memcpy(&ib_spec->eth.mask, kern_spec_mask, actual_filter_sz);
2899                 break;
2900         case IB_FLOW_SPEC_IPV4:
2901                 ib_filter_sz = offsetof(struct ib_flow_ipv4_filter, real_sz);
2902                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2903                                                     kern_filter_sz,
2904                                                     ib_filter_sz);
2905                 if (actual_filter_sz <= 0)
2906                         return -EINVAL;
2907                 ib_spec->size = sizeof(struct ib_flow_spec_ipv4);
2908                 memcpy(&ib_spec->ipv4.val, kern_spec_val, actual_filter_sz);
2909                 memcpy(&ib_spec->ipv4.mask, kern_spec_mask, actual_filter_sz);
2910                 break;
2911         case IB_FLOW_SPEC_IPV6:
2912                 ib_filter_sz = offsetof(struct ib_flow_ipv6_filter, real_sz);
2913                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2914                                                     kern_filter_sz,
2915                                                     ib_filter_sz);
2916                 if (actual_filter_sz <= 0)
2917                         return -EINVAL;
2918                 ib_spec->size = sizeof(struct ib_flow_spec_ipv6);
2919                 memcpy(&ib_spec->ipv6.val, kern_spec_val, actual_filter_sz);
2920                 memcpy(&ib_spec->ipv6.mask, kern_spec_mask, actual_filter_sz);
2921
2922                 if ((ntohl(ib_spec->ipv6.mask.flow_label)) >= BIT(20) ||
2923                     (ntohl(ib_spec->ipv6.val.flow_label)) >= BIT(20))
2924                         return -EINVAL;
2925                 break;
2926         case IB_FLOW_SPEC_TCP:
2927         case IB_FLOW_SPEC_UDP:
2928                 ib_filter_sz = offsetof(struct ib_flow_tcp_udp_filter, real_sz);
2929                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2930                                                     kern_filter_sz,
2931                                                     ib_filter_sz);
2932                 if (actual_filter_sz <= 0)
2933                         return -EINVAL;
2934                 ib_spec->size = sizeof(struct ib_flow_spec_tcp_udp);
2935                 memcpy(&ib_spec->tcp_udp.val, kern_spec_val, actual_filter_sz);
2936                 memcpy(&ib_spec->tcp_udp.mask, kern_spec_mask, actual_filter_sz);
2937                 break;
2938         case IB_FLOW_SPEC_VXLAN_TUNNEL:
2939                 ib_filter_sz = offsetof(struct ib_flow_tunnel_filter, real_sz);
2940                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2941                                                     kern_filter_sz,
2942                                                     ib_filter_sz);
2943                 if (actual_filter_sz <= 0)
2944                         return -EINVAL;
2945                 ib_spec->tunnel.size = sizeof(struct ib_flow_spec_tunnel);
2946                 memcpy(&ib_spec->tunnel.val, kern_spec_val, actual_filter_sz);
2947                 memcpy(&ib_spec->tunnel.mask, kern_spec_mask, actual_filter_sz);
2948
2949                 if ((ntohl(ib_spec->tunnel.mask.tunnel_id)) >= BIT(24) ||
2950                     (ntohl(ib_spec->tunnel.val.tunnel_id)) >= BIT(24))
2951                         return -EINVAL;
2952                 break;
2953         case IB_FLOW_SPEC_ESP:
2954                 ib_filter_sz = offsetof(struct ib_flow_esp_filter, real_sz);
2955                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2956                                                     kern_filter_sz,
2957                                                     ib_filter_sz);
2958                 if (actual_filter_sz <= 0)
2959                         return -EINVAL;
2960                 ib_spec->esp.size = sizeof(struct ib_flow_spec_esp);
2961                 memcpy(&ib_spec->esp.val, kern_spec_val, actual_filter_sz);
2962                 memcpy(&ib_spec->esp.mask, kern_spec_mask, actual_filter_sz);
2963                 break;
2964         case IB_FLOW_SPEC_GRE:
2965                 ib_filter_sz = offsetof(struct ib_flow_gre_filter, real_sz);
2966                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2967                                                     kern_filter_sz,
2968                                                     ib_filter_sz);
2969                 if (actual_filter_sz <= 0)
2970                         return -EINVAL;
2971                 ib_spec->gre.size = sizeof(struct ib_flow_spec_gre);
2972                 memcpy(&ib_spec->gre.val, kern_spec_val, actual_filter_sz);
2973                 memcpy(&ib_spec->gre.mask, kern_spec_mask, actual_filter_sz);
2974                 break;
2975         case IB_FLOW_SPEC_MPLS:
2976                 ib_filter_sz = offsetof(struct ib_flow_mpls_filter, real_sz);
2977                 actual_filter_sz = spec_filter_size(kern_spec_mask,
2978                                                     kern_filter_sz,
2979                                                     ib_filter_sz);
2980                 if (actual_filter_sz <= 0)
2981                         return -EINVAL;
2982                 ib_spec->mpls.size = sizeof(struct ib_flow_spec_mpls);
2983                 memcpy(&ib_spec->mpls.val, kern_spec_val, actual_filter_sz);
2984                 memcpy(&ib_spec->mpls.mask, kern_spec_mask, actual_filter_sz);
2985                 break;
2986         default:
2987                 return -EINVAL;
2988         }
2989         return 0;
2990 }
2991
2992 static int kern_spec_to_ib_spec_filter(struct ib_uverbs_flow_spec *kern_spec,
2993                                        union ib_flow_spec *ib_spec)
2994 {
2995         ssize_t kern_filter_sz;
2996         void *kern_spec_mask;
2997         void *kern_spec_val;
2998
2999         kern_filter_sz = kern_spec_filter_sz(&kern_spec->hdr);
3000
3001         kern_spec_val = (void *)kern_spec +
3002                 sizeof(struct ib_uverbs_flow_spec_hdr);
3003         kern_spec_mask = kern_spec_val + kern_filter_sz;
3004
3005         return ib_uverbs_kern_spec_to_ib_spec_filter(kern_spec->type,
3006                                                      kern_spec_mask,
3007                                                      kern_spec_val,
3008                                                      kern_filter_sz, ib_spec);
3009 }
3010
3011 static int kern_spec_to_ib_spec(struct ib_uverbs_file *ufile,
3012                                 struct ib_uverbs_flow_spec *kern_spec,
3013                                 union ib_flow_spec *ib_spec,
3014                                 struct ib_uflow_resources *uflow_res)
3015 {
3016         if (kern_spec->reserved)
3017                 return -EINVAL;
3018
3019         if (kern_spec->type >= IB_FLOW_SPEC_ACTION_TAG)
3020                 return kern_spec_to_ib_spec_action(ufile, kern_spec, ib_spec,
3021                                                    uflow_res);
3022         else
3023                 return kern_spec_to_ib_spec_filter(kern_spec, ib_spec);
3024 }
3025
3026 int ib_uverbs_ex_create_wq(struct ib_uverbs_file *file,
3027                            struct ib_udata *ucore,
3028                            struct ib_udata *uhw)
3029 {
3030         struct ib_uverbs_ex_create_wq     cmd = {};
3031         struct ib_uverbs_ex_create_wq_resp resp = {};
3032         struct ib_uwq_object           *obj;
3033         int err = 0;
3034         struct ib_cq *cq;
3035         struct ib_pd *pd;
3036         struct ib_wq *wq;
3037         struct ib_wq_init_attr wq_init_attr = {};
3038         size_t required_cmd_sz;
3039         size_t required_resp_len;
3040         struct ib_device *ib_dev;
3041
3042         required_cmd_sz = offsetof(typeof(cmd), max_sge) + sizeof(cmd.max_sge);
3043         required_resp_len = offsetof(typeof(resp), wqn) + sizeof(resp.wqn);
3044
3045         if (ucore->inlen < required_cmd_sz)
3046                 return -EINVAL;
3047
3048         if (ucore->outlen < required_resp_len)
3049                 return -ENOSPC;
3050
3051         if (ucore->inlen > sizeof(cmd) &&
3052             !ib_is_udata_cleared(ucore, sizeof(cmd),
3053                                  ucore->inlen - sizeof(cmd)))
3054                 return -EOPNOTSUPP;
3055
3056         err = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
3057         if (err)
3058                 return err;
3059
3060         if (cmd.comp_mask)
3061                 return -EOPNOTSUPP;
3062
3063         obj = (struct ib_uwq_object *)uobj_alloc(UVERBS_OBJECT_WQ, file,
3064                                                  &ib_dev);
3065         if (IS_ERR(obj))
3066                 return PTR_ERR(obj);
3067
3068         pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd.pd_handle, file);
3069         if (!pd) {
3070                 err = -EINVAL;
3071                 goto err_uobj;
3072         }
3073
3074         cq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ, cmd.cq_handle, file);
3075         if (!cq) {
3076                 err = -EINVAL;
3077                 goto err_put_pd;
3078         }
3079
3080         wq_init_attr.cq = cq;
3081         wq_init_attr.max_sge = cmd.max_sge;
3082         wq_init_attr.max_wr = cmd.max_wr;
3083         wq_init_attr.wq_context = file;
3084         wq_init_attr.wq_type = cmd.wq_type;
3085         wq_init_attr.event_handler = ib_uverbs_wq_event_handler;
3086         if (ucore->inlen >= (offsetof(typeof(cmd), create_flags) +
3087                              sizeof(cmd.create_flags)))
3088                 wq_init_attr.create_flags = cmd.create_flags;
3089         obj->uevent.events_reported = 0;
3090         INIT_LIST_HEAD(&obj->uevent.event_list);
3091
3092         if (!pd->device->create_wq) {
3093                 err = -EOPNOTSUPP;
3094                 goto err_put_cq;
3095         }
3096         wq = pd->device->create_wq(pd, &wq_init_attr, uhw);
3097         if (IS_ERR(wq)) {
3098                 err = PTR_ERR(wq);
3099                 goto err_put_cq;
3100         }
3101
3102         wq->uobject = &obj->uevent.uobject;
3103         obj->uevent.uobject.object = wq;
3104         wq->wq_type = wq_init_attr.wq_type;
3105         wq->cq = cq;
3106         wq->pd = pd;
3107         wq->device = pd->device;
3108         wq->wq_context = wq_init_attr.wq_context;
3109         atomic_set(&wq->usecnt, 0);
3110         atomic_inc(&pd->usecnt);
3111         atomic_inc(&cq->usecnt);
3112         wq->uobject = &obj->uevent.uobject;
3113         obj->uevent.uobject.object = wq;
3114
3115         memset(&resp, 0, sizeof(resp));
3116         resp.wq_handle = obj->uevent.uobject.id;
3117         resp.max_sge = wq_init_attr.max_sge;
3118         resp.max_wr = wq_init_attr.max_wr;
3119         resp.wqn = wq->wq_num;
3120         resp.response_length = required_resp_len;
3121         err = ib_copy_to_udata(ucore,
3122                                &resp, resp.response_length);
3123         if (err)
3124                 goto err_copy;
3125
3126         uobj_put_obj_read(pd);
3127         uobj_put_obj_read(cq);
3128         return uobj_alloc_commit(&obj->uevent.uobject, 0);
3129
3130 err_copy:
3131         ib_destroy_wq(wq);
3132 err_put_cq:
3133         uobj_put_obj_read(cq);
3134 err_put_pd:
3135         uobj_put_obj_read(pd);
3136 err_uobj:
3137         uobj_alloc_abort(&obj->uevent.uobject);
3138
3139         return err;
3140 }
3141
3142 int ib_uverbs_ex_destroy_wq(struct ib_uverbs_file *file,
3143                             struct ib_udata *ucore,
3144                             struct ib_udata *uhw)
3145 {
3146         struct ib_uverbs_ex_destroy_wq  cmd = {};
3147         struct ib_uverbs_ex_destroy_wq_resp     resp = {};
3148         struct ib_uobject               *uobj;
3149         struct ib_uwq_object            *obj;
3150         size_t required_cmd_sz;
3151         size_t required_resp_len;
3152         int                             ret;
3153
3154         required_cmd_sz = offsetof(typeof(cmd), wq_handle) + sizeof(cmd.wq_handle);
3155         required_resp_len = offsetof(typeof(resp), reserved) + sizeof(resp.reserved);
3156
3157         if (ucore->inlen < required_cmd_sz)
3158                 return -EINVAL;
3159
3160         if (ucore->outlen < required_resp_len)
3161                 return -ENOSPC;
3162
3163         if (ucore->inlen > sizeof(cmd) &&
3164             !ib_is_udata_cleared(ucore, sizeof(cmd),
3165                                  ucore->inlen - sizeof(cmd)))
3166                 return -EOPNOTSUPP;
3167
3168         ret = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
3169         if (ret)
3170                 return ret;
3171
3172         if (cmd.comp_mask)
3173                 return -EOPNOTSUPP;
3174
3175         resp.response_length = required_resp_len;
3176         uobj = uobj_get_destroy(UVERBS_OBJECT_WQ, cmd.wq_handle, file);
3177         if (IS_ERR(uobj))
3178                 return PTR_ERR(uobj);
3179
3180         obj = container_of(uobj, struct ib_uwq_object, uevent.uobject);
3181         resp.events_reported = obj->uevent.events_reported;
3182
3183         uobj_put_destroy(uobj);
3184
3185         return ib_copy_to_udata(ucore, &resp, resp.response_length);
3186 }
3187
3188 int ib_uverbs_ex_modify_wq(struct ib_uverbs_file *file,
3189                            struct ib_udata *ucore,
3190                            struct ib_udata *uhw)
3191 {
3192         struct ib_uverbs_ex_modify_wq cmd = {};
3193         struct ib_wq *wq;
3194         struct ib_wq_attr wq_attr = {};
3195         size_t required_cmd_sz;
3196         int ret;
3197
3198         required_cmd_sz = offsetof(typeof(cmd), curr_wq_state) + sizeof(cmd.curr_wq_state);
3199         if (ucore->inlen < required_cmd_sz)
3200                 return -EINVAL;
3201
3202         if (ucore->inlen > sizeof(cmd) &&
3203             !ib_is_udata_cleared(ucore, sizeof(cmd),
3204                                  ucore->inlen - sizeof(cmd)))
3205                 return -EOPNOTSUPP;
3206
3207         ret = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
3208         if (ret)
3209                 return ret;
3210
3211         if (!cmd.attr_mask)
3212                 return -EINVAL;
3213
3214         if (cmd.attr_mask > (IB_WQ_STATE | IB_WQ_CUR_STATE | IB_WQ_FLAGS))
3215                 return -EINVAL;
3216
3217         wq = uobj_get_obj_read(wq, UVERBS_OBJECT_WQ, cmd.wq_handle, file);
3218         if (!wq)
3219                 return -EINVAL;
3220
3221         wq_attr.curr_wq_state = cmd.curr_wq_state;
3222         wq_attr.wq_state = cmd.wq_state;
3223         if (cmd.attr_mask & IB_WQ_FLAGS) {
3224                 wq_attr.flags = cmd.flags;
3225                 wq_attr.flags_mask = cmd.flags_mask;
3226         }
3227         if (!wq->device->modify_wq) {
3228                 ret = -EOPNOTSUPP;
3229                 goto out;
3230         }
3231         ret = wq->device->modify_wq(wq, &wq_attr, cmd.attr_mask, uhw);
3232 out:
3233         uobj_put_obj_read(wq);
3234         return ret;
3235 }
3236
3237 int ib_uverbs_ex_create_rwq_ind_table(struct ib_uverbs_file *file,
3238                                       struct ib_udata *ucore,
3239                                       struct ib_udata *uhw)
3240 {
3241         struct ib_uverbs_ex_create_rwq_ind_table          cmd = {};
3242         struct ib_uverbs_ex_create_rwq_ind_table_resp  resp = {};
3243         struct ib_uobject                 *uobj;
3244         int err = 0;
3245         struct ib_rwq_ind_table_init_attr init_attr = {};
3246         struct ib_rwq_ind_table *rwq_ind_tbl;
3247         struct ib_wq    **wqs = NULL;
3248         u32 *wqs_handles = NULL;
3249         struct ib_wq    *wq = NULL;
3250         int i, j, num_read_wqs;
3251         u32 num_wq_handles;
3252         u32 expected_in_size;
3253         size_t required_cmd_sz_header;
3254         size_t required_resp_len;
3255         struct ib_device *ib_dev;
3256
3257         required_cmd_sz_header = offsetof(typeof(cmd), log_ind_tbl_size) + sizeof(cmd.log_ind_tbl_size);
3258         required_resp_len = offsetof(typeof(resp), ind_tbl_num) + sizeof(resp.ind_tbl_num);
3259
3260         if (ucore->inlen < required_cmd_sz_header)
3261                 return -EINVAL;
3262
3263         if (ucore->outlen < required_resp_len)
3264                 return -ENOSPC;
3265
3266         err = ib_copy_from_udata(&cmd, ucore, required_cmd_sz_header);
3267         if (err)
3268                 return err;
3269
3270         ucore->inbuf += required_cmd_sz_header;
3271         ucore->inlen -= required_cmd_sz_header;
3272
3273         if (cmd.comp_mask)
3274                 return -EOPNOTSUPP;
3275
3276         if (cmd.log_ind_tbl_size > IB_USER_VERBS_MAX_LOG_IND_TBL_SIZE)
3277                 return -EINVAL;
3278
3279         num_wq_handles = 1 << cmd.log_ind_tbl_size;
3280         expected_in_size = num_wq_handles * sizeof(__u32);
3281         if (num_wq_handles == 1)
3282                 /* input size for wq handles is u64 aligned */
3283                 expected_in_size += sizeof(__u32);
3284
3285         if (ucore->inlen < expected_in_size)
3286                 return -EINVAL;
3287
3288         if (ucore->inlen > expected_in_size &&
3289             !ib_is_udata_cleared(ucore, expected_in_size,
3290                                  ucore->inlen - expected_in_size))
3291                 return -EOPNOTSUPP;
3292
3293         wqs_handles = kcalloc(num_wq_handles, sizeof(*wqs_handles),
3294                               GFP_KERNEL);
3295         if (!wqs_handles)
3296                 return -ENOMEM;
3297
3298         err = ib_copy_from_udata(wqs_handles, ucore,
3299                                  num_wq_handles * sizeof(__u32));
3300         if (err)
3301                 goto err_free;
3302
3303         wqs = kcalloc(num_wq_handles, sizeof(*wqs), GFP_KERNEL);
3304         if (!wqs) {
3305                 err = -ENOMEM;
3306                 goto  err_free;
3307         }
3308
3309         for (num_read_wqs = 0; num_read_wqs < num_wq_handles;
3310                         num_read_wqs++) {
3311                 wq = uobj_get_obj_read(wq, UVERBS_OBJECT_WQ,
3312                                        wqs_handles[num_read_wqs], file);
3313                 if (!wq) {
3314                         err = -EINVAL;
3315                         goto put_wqs;
3316                 }
3317
3318                 wqs[num_read_wqs] = wq;
3319         }
3320
3321         uobj = uobj_alloc(UVERBS_OBJECT_RWQ_IND_TBL, file, &ib_dev);
3322         if (IS_ERR(uobj)) {
3323                 err = PTR_ERR(uobj);
3324                 goto put_wqs;
3325         }
3326
3327         init_attr.log_ind_tbl_size = cmd.log_ind_tbl_size;
3328         init_attr.ind_tbl = wqs;
3329
3330         if (!ib_dev->create_rwq_ind_table) {
3331                 err = -EOPNOTSUPP;
3332                 goto err_uobj;
3333         }
3334         rwq_ind_tbl = ib_dev->create_rwq_ind_table(ib_dev, &init_attr, uhw);
3335
3336         if (IS_ERR(rwq_ind_tbl)) {
3337                 err = PTR_ERR(rwq_ind_tbl);
3338                 goto err_uobj;
3339         }
3340
3341         rwq_ind_tbl->ind_tbl = wqs;
3342         rwq_ind_tbl->log_ind_tbl_size = init_attr.log_ind_tbl_size;
3343         rwq_ind_tbl->uobject = uobj;
3344         uobj->object = rwq_ind_tbl;
3345         rwq_ind_tbl->device = ib_dev;
3346         atomic_set(&rwq_ind_tbl->usecnt, 0);
3347
3348         for (i = 0; i < num_wq_handles; i++)
3349                 atomic_inc(&wqs[i]->usecnt);
3350
3351         resp.ind_tbl_handle = uobj->id;
3352         resp.ind_tbl_num = rwq_ind_tbl->ind_tbl_num;
3353         resp.response_length = required_resp_len;
3354
3355         err = ib_copy_to_udata(ucore,
3356                                &resp, resp.response_length);
3357         if (err)
3358                 goto err_copy;
3359
3360         kfree(wqs_handles);
3361
3362         for (j = 0; j < num_read_wqs; j++)
3363                 uobj_put_obj_read(wqs[j]);
3364
3365         return uobj_alloc_commit(uobj, 0);
3366
3367 err_copy:
3368         ib_destroy_rwq_ind_table(rwq_ind_tbl);
3369 err_uobj:
3370         uobj_alloc_abort(uobj);
3371 put_wqs:
3372         for (j = 0; j < num_read_wqs; j++)
3373                 uobj_put_obj_read(wqs[j]);
3374 err_free:
3375         kfree(wqs_handles);
3376         kfree(wqs);
3377         return err;
3378 }
3379
3380 int ib_uverbs_ex_destroy_rwq_ind_table(struct ib_uverbs_file *file,
3381                                        struct ib_udata *ucore,
3382                                        struct ib_udata *uhw)
3383 {
3384         struct ib_uverbs_ex_destroy_rwq_ind_table       cmd = {};
3385         int                     ret;
3386         size_t required_cmd_sz;
3387
3388         required_cmd_sz = offsetof(typeof(cmd), ind_tbl_handle) + sizeof(cmd.ind_tbl_handle);
3389
3390         if (ucore->inlen < required_cmd_sz)
3391                 return -EINVAL;
3392
3393         if (ucore->inlen > sizeof(cmd) &&
3394             !ib_is_udata_cleared(ucore, sizeof(cmd),
3395                                  ucore->inlen - sizeof(cmd)))
3396                 return -EOPNOTSUPP;
3397
3398         ret = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
3399         if (ret)
3400                 return ret;
3401
3402         if (cmd.comp_mask)
3403                 return -EOPNOTSUPP;
3404
3405         return uobj_perform_destroy(UVERBS_OBJECT_RWQ_IND_TBL,
3406                                     cmd.ind_tbl_handle, file, 0);
3407 }
3408
3409 int ib_uverbs_ex_create_flow(struct ib_uverbs_file *file,
3410                              struct ib_udata *ucore,
3411                              struct ib_udata *uhw)
3412 {
3413         struct ib_uverbs_create_flow      cmd;
3414         struct ib_uverbs_create_flow_resp resp;
3415         struct ib_uobject                 *uobj;
3416         struct ib_uflow_object            *uflow;
3417         struct ib_flow                    *flow_id;
3418         struct ib_uverbs_flow_attr        *kern_flow_attr;
3419         struct ib_flow_attr               *flow_attr;
3420         struct ib_qp                      *qp;
3421         struct ib_uflow_resources         *uflow_res;
3422         int err = 0;
3423         void *kern_spec;
3424         void *ib_spec;
3425         int i;
3426         struct ib_device *ib_dev;
3427
3428         if (ucore->inlen < sizeof(cmd))
3429                 return -EINVAL;
3430
3431         if (ucore->outlen < sizeof(resp))
3432                 return -ENOSPC;
3433
3434         err = ib_copy_from_udata(&cmd, ucore, sizeof(cmd));
3435         if (err)
3436                 return err;
3437
3438         ucore->inbuf += sizeof(cmd);
3439         ucore->inlen -= sizeof(cmd);
3440
3441         if (cmd.comp_mask)
3442                 return -EINVAL;
3443
3444         if (!capable(CAP_NET_RAW))
3445                 return -EPERM;
3446
3447         if (cmd.flow_attr.flags >= IB_FLOW_ATTR_FLAGS_RESERVED)
3448                 return -EINVAL;
3449
3450         if ((cmd.flow_attr.flags & IB_FLOW_ATTR_FLAGS_DONT_TRAP) &&
3451             ((cmd.flow_attr.type == IB_FLOW_ATTR_ALL_DEFAULT) ||
3452              (cmd.flow_attr.type == IB_FLOW_ATTR_MC_DEFAULT)))
3453                 return -EINVAL;
3454
3455         if (cmd.flow_attr.num_of_specs > IB_FLOW_SPEC_SUPPORT_LAYERS)
3456                 return -EINVAL;
3457
3458         if (cmd.flow_attr.size > ucore->inlen ||
3459             cmd.flow_attr.size >
3460             (cmd.flow_attr.num_of_specs * sizeof(struct ib_uverbs_flow_spec)))
3461                 return -EINVAL;
3462
3463         if (cmd.flow_attr.reserved[0] ||
3464             cmd.flow_attr.reserved[1])
3465                 return -EINVAL;
3466
3467         if (cmd.flow_attr.num_of_specs) {
3468                 kern_flow_attr = kmalloc(sizeof(*kern_flow_attr) + cmd.flow_attr.size,
3469                                          GFP_KERNEL);
3470                 if (!kern_flow_attr)
3471                         return -ENOMEM;
3472
3473                 memcpy(kern_flow_attr, &cmd.flow_attr, sizeof(*kern_flow_attr));
3474                 err = ib_copy_from_udata(kern_flow_attr + 1, ucore,
3475                                          cmd.flow_attr.size);
3476                 if (err)
3477                         goto err_free_attr;
3478         } else {
3479                 kern_flow_attr = &cmd.flow_attr;
3480         }
3481
3482         uobj = uobj_alloc(UVERBS_OBJECT_FLOW, file, &ib_dev);
3483         if (IS_ERR(uobj)) {
3484                 err = PTR_ERR(uobj);
3485                 goto err_free_attr;
3486         }
3487
3488         qp = uobj_get_obj_read(qp, UVERBS_OBJECT_QP, cmd.qp_handle, file);
3489         if (!qp) {
3490                 err = -EINVAL;
3491                 goto err_uobj;
3492         }
3493
3494         if (!qp->device->create_flow) {
3495                 err = -EOPNOTSUPP;
3496                 goto err_put;
3497         }
3498
3499         flow_attr = kzalloc(struct_size(flow_attr, flows,
3500                                 cmd.flow_attr.num_of_specs), GFP_KERNEL);
3501         if (!flow_attr) {
3502                 err = -ENOMEM;
3503                 goto err_put;
3504         }
3505         uflow_res = flow_resources_alloc(cmd.flow_attr.num_of_specs);
3506         if (!uflow_res) {
3507                 err = -ENOMEM;
3508                 goto err_free_flow_attr;
3509         }
3510
3511         flow_attr->type = kern_flow_attr->type;
3512         flow_attr->priority = kern_flow_attr->priority;
3513         flow_attr->num_of_specs = kern_flow_attr->num_of_specs;
3514         flow_attr->port = kern_flow_attr->port;
3515         flow_attr->flags = kern_flow_attr->flags;
3516         flow_attr->size = sizeof(*flow_attr);
3517
3518         kern_spec = kern_flow_attr + 1;
3519         ib_spec = flow_attr + 1;
3520         for (i = 0; i < flow_attr->num_of_specs &&
3521              cmd.flow_attr.size > offsetof(struct ib_uverbs_flow_spec, reserved) &&
3522              cmd.flow_attr.size >=
3523              ((struct ib_uverbs_flow_spec *)kern_spec)->size; i++) {
3524                 err = kern_spec_to_ib_spec(file, kern_spec, ib_spec, uflow_res);
3525                 if (err)
3526                         goto err_free;
3527
3528                 flow_attr->size +=
3529                         ((union ib_flow_spec *) ib_spec)->size;
3530                 cmd.flow_attr.size -= ((struct ib_uverbs_flow_spec *)kern_spec)->size;
3531                 kern_spec += ((struct ib_uverbs_flow_spec *) kern_spec)->size;
3532                 ib_spec += ((union ib_flow_spec *) ib_spec)->size;
3533         }
3534         if (cmd.flow_attr.size || (i != flow_attr->num_of_specs)) {
3535                 pr_warn("create flow failed, flow %d: %d bytes left from uverb cmd\n",
3536                         i, cmd.flow_attr.size);
3537                 err = -EINVAL;
3538                 goto err_free;
3539         }
3540
3541         flow_id = qp->device->create_flow(qp, flow_attr,
3542                                           IB_FLOW_DOMAIN_USER, uhw);
3543
3544         if (IS_ERR(flow_id)) {
3545                 err = PTR_ERR(flow_id);
3546                 goto err_free;
3547         }
3548         atomic_inc(&qp->usecnt);
3549         flow_id->qp = qp;
3550         flow_id->device = qp->device;
3551         flow_id->uobject = uobj;
3552         uobj->object = flow_id;
3553         uflow = container_of(uobj, typeof(*uflow), uobject);
3554         uflow->resources = uflow_res;
3555
3556         memset(&resp, 0, sizeof(resp));
3557         resp.flow_handle = uobj->id;
3558
3559         err = ib_copy_to_udata(ucore,
3560                                &resp, sizeof(resp));
3561         if (err)
3562                 goto err_copy;
3563
3564         uobj_put_obj_read(qp);
3565         kfree(flow_attr);
3566         if (cmd.flow_attr.num_of_specs)
3567                 kfree(kern_flow_attr);
3568         return uobj_alloc_commit(uobj, 0);
3569 err_copy:
3570         if (!qp->device->destroy_flow(flow_id))
3571                 atomic_dec(&qp->usecnt);
3572 err_free:
3573         ib_uverbs_flow_resources_free(uflow_res);
3574 err_free_flow_attr:
3575         kfree(flow_attr);
3576 err_put:
3577         uobj_put_obj_read(qp);
3578 err_uobj:
3579         uobj_alloc_abort(uobj);
3580 err_free_attr:
3581         if (cmd.flow_attr.num_of_specs)
3582                 kfree(kern_flow_attr);
3583         return err;
3584 }
3585
3586 int ib_uverbs_ex_destroy_flow(struct ib_uverbs_file *file,
3587                               struct ib_udata *ucore,
3588                               struct ib_udata *uhw)
3589 {
3590         struct ib_uverbs_destroy_flow   cmd;
3591         int                             ret;
3592
3593         if (ucore->inlen < sizeof(cmd))
3594                 return -EINVAL;
3595
3596         ret = ib_copy_from_udata(&cmd, ucore, sizeof(cmd));
3597         if (ret)
3598                 return ret;
3599
3600         if (cmd.comp_mask)
3601                 return -EINVAL;
3602
3603         return uobj_perform_destroy(UVERBS_OBJECT_FLOW, cmd.flow_handle, file,
3604                                     0);
3605 }
3606
3607 static int __uverbs_create_xsrq(struct ib_uverbs_file *file,
3608                                 struct ib_uverbs_create_xsrq *cmd,
3609                                 struct ib_udata *udata)
3610 {
3611         struct ib_uverbs_create_srq_resp resp;
3612         struct ib_usrq_object           *obj;
3613         struct ib_pd                    *pd;
3614         struct ib_srq                   *srq;
3615         struct ib_uobject               *uninitialized_var(xrcd_uobj);
3616         struct ib_srq_init_attr          attr;
3617         int ret;
3618         struct ib_device *ib_dev;
3619
3620         obj = (struct ib_usrq_object *)uobj_alloc(UVERBS_OBJECT_SRQ, file,
3621                                                   &ib_dev);
3622         if (IS_ERR(obj))
3623                 return PTR_ERR(obj);
3624
3625         if (cmd->srq_type == IB_SRQT_TM)
3626                 attr.ext.tag_matching.max_num_tags = cmd->max_num_tags;
3627
3628         if (cmd->srq_type == IB_SRQT_XRC) {
3629                 xrcd_uobj = uobj_get_read(UVERBS_OBJECT_XRCD, cmd->xrcd_handle,
3630                                           file);
3631                 if (IS_ERR(xrcd_uobj)) {
3632                         ret = -EINVAL;
3633                         goto err;
3634                 }
3635
3636                 attr.ext.xrc.xrcd = (struct ib_xrcd *)xrcd_uobj->object;
3637                 if (!attr.ext.xrc.xrcd) {
3638                         ret = -EINVAL;
3639                         goto err_put_xrcd;
3640                 }
3641
3642                 obj->uxrcd = container_of(xrcd_uobj, struct ib_uxrcd_object, uobject);
3643                 atomic_inc(&obj->uxrcd->refcnt);
3644         }
3645
3646         if (ib_srq_has_cq(cmd->srq_type)) {
3647                 attr.ext.cq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ,
3648                                                 cmd->cq_handle, file);
3649                 if (!attr.ext.cq) {
3650                         ret = -EINVAL;
3651                         goto err_put_xrcd;
3652                 }
3653         }
3654
3655         pd = uobj_get_obj_read(pd, UVERBS_OBJECT_PD, cmd->pd_handle, file);
3656         if (!pd) {
3657                 ret = -EINVAL;
3658                 goto err_put_cq;
3659         }
3660
3661         attr.event_handler  = ib_uverbs_srq_event_handler;
3662         attr.srq_context    = file;
3663         attr.srq_type       = cmd->srq_type;
3664         attr.attr.max_wr    = cmd->max_wr;
3665         attr.attr.max_sge   = cmd->max_sge;
3666         attr.attr.srq_limit = cmd->srq_limit;
3667
3668         obj->uevent.events_reported = 0;
3669         INIT_LIST_HEAD(&obj->uevent.event_list);
3670
3671         srq = pd->device->create_srq(pd, &attr, udata);
3672         if (IS_ERR(srq)) {
3673                 ret = PTR_ERR(srq);
3674                 goto err_put;
3675         }
3676
3677         srq->device        = pd->device;
3678         srq->pd            = pd;
3679         srq->srq_type      = cmd->srq_type;
3680         srq->uobject       = &obj->uevent.uobject;
3681         srq->event_handler = attr.event_handler;
3682         srq->srq_context   = attr.srq_context;
3683
3684         if (ib_srq_has_cq(cmd->srq_type)) {
3685                 srq->ext.cq       = attr.ext.cq;
3686                 atomic_inc(&attr.ext.cq->usecnt);
3687         }
3688
3689         if (cmd->srq_type == IB_SRQT_XRC) {
3690                 srq->ext.xrc.xrcd = attr.ext.xrc.xrcd;
3691                 atomic_inc(&attr.ext.xrc.xrcd->usecnt);
3692         }
3693
3694         atomic_inc(&pd->usecnt);
3695         atomic_set(&srq->usecnt, 0);
3696
3697         obj->uevent.uobject.object = srq;
3698         obj->uevent.uobject.user_handle = cmd->user_handle;
3699
3700         memset(&resp, 0, sizeof resp);
3701         resp.srq_handle = obj->uevent.uobject.id;
3702         resp.max_wr     = attr.attr.max_wr;
3703         resp.max_sge    = attr.attr.max_sge;
3704         if (cmd->srq_type == IB_SRQT_XRC)
3705                 resp.srqn = srq->ext.xrc.srq_num;
3706
3707         if (copy_to_user(u64_to_user_ptr(cmd->response),
3708                          &resp, sizeof resp)) {
3709                 ret = -EFAULT;
3710                 goto err_copy;
3711         }
3712
3713         if (cmd->srq_type == IB_SRQT_XRC)
3714                 uobj_put_read(xrcd_uobj);
3715
3716         if (ib_srq_has_cq(cmd->srq_type))
3717                 uobj_put_obj_read(attr.ext.cq);
3718
3719         uobj_put_obj_read(pd);
3720         return uobj_alloc_commit(&obj->uevent.uobject, 0);
3721
3722 err_copy:
3723         ib_destroy_srq(srq);
3724
3725 err_put:
3726         uobj_put_obj_read(pd);
3727
3728 err_put_cq:
3729         if (ib_srq_has_cq(cmd->srq_type))
3730                 uobj_put_obj_read(attr.ext.cq);
3731
3732 err_put_xrcd:
3733         if (cmd->srq_type == IB_SRQT_XRC) {
3734                 atomic_dec(&obj->uxrcd->refcnt);
3735                 uobj_put_read(xrcd_uobj);
3736         }
3737
3738 err:
3739         uobj_alloc_abort(&obj->uevent.uobject);
3740         return ret;
3741 }
3742
3743 ssize_t ib_uverbs_create_srq(struct ib_uverbs_file *file,
3744                              const char __user *buf, int in_len,
3745                              int out_len)
3746 {
3747         struct ib_uverbs_create_srq      cmd;
3748         struct ib_uverbs_create_xsrq     xcmd;
3749         struct ib_uverbs_create_srq_resp resp;
3750         struct ib_udata                  udata;
3751         int ret;
3752
3753         if (out_len < sizeof resp)
3754                 return -ENOSPC;
3755
3756         if (copy_from_user(&cmd, buf, sizeof cmd))
3757                 return -EFAULT;
3758
3759         memset(&xcmd, 0, sizeof(xcmd));
3760         xcmd.response    = cmd.response;
3761         xcmd.user_handle = cmd.user_handle;
3762         xcmd.srq_type    = IB_SRQT_BASIC;
3763         xcmd.pd_handle   = cmd.pd_handle;
3764         xcmd.max_wr      = cmd.max_wr;
3765         xcmd.max_sge     = cmd.max_sge;
3766         xcmd.srq_limit   = cmd.srq_limit;
3767
3768         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
3769                    u64_to_user_ptr(cmd.response) + sizeof(resp),
3770                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
3771                    out_len - sizeof(resp));
3772
3773         ret = __uverbs_create_xsrq(file, &xcmd, &udata);
3774         if (ret)
3775                 return ret;
3776
3777         return in_len;
3778 }
3779
3780 ssize_t ib_uverbs_create_xsrq(struct ib_uverbs_file *file,
3781                               const char __user *buf, int in_len, int out_len)
3782 {
3783         struct ib_uverbs_create_xsrq     cmd;
3784         struct ib_uverbs_create_srq_resp resp;
3785         struct ib_udata                  udata;
3786         int ret;
3787
3788         if (out_len < sizeof resp)
3789                 return -ENOSPC;
3790
3791         if (copy_from_user(&cmd, buf, sizeof cmd))
3792                 return -EFAULT;
3793
3794         ib_uverbs_init_udata(&udata, buf + sizeof(cmd),
3795                    u64_to_user_ptr(cmd.response) + sizeof(resp),
3796                    in_len - sizeof(cmd) - sizeof(struct ib_uverbs_cmd_hdr),
3797                    out_len - sizeof(resp));
3798
3799         ret = __uverbs_create_xsrq(file, &cmd, &udata);
3800         if (ret)
3801                 return ret;
3802
3803         return in_len;
3804 }
3805
3806 ssize_t ib_uverbs_modify_srq(struct ib_uverbs_file *file,
3807                              const char __user *buf, int in_len,
3808                              int out_len)
3809 {
3810         struct ib_uverbs_modify_srq cmd;
3811         struct ib_udata             udata;
3812         struct ib_srq              *srq;
3813         struct ib_srq_attr          attr;
3814         int                         ret;
3815
3816         if (copy_from_user(&cmd, buf, sizeof cmd))
3817                 return -EFAULT;
3818
3819         ib_uverbs_init_udata(&udata, buf + sizeof cmd, NULL, in_len - sizeof cmd,
3820                    out_len);
3821
3822         srq = uobj_get_obj_read(srq, UVERBS_OBJECT_SRQ, cmd.srq_handle, file);
3823         if (!srq)
3824                 return -EINVAL;
3825
3826         attr.max_wr    = cmd.max_wr;
3827         attr.srq_limit = cmd.srq_limit;
3828
3829         ret = srq->device->modify_srq(srq, &attr, cmd.attr_mask, &udata);
3830
3831         uobj_put_obj_read(srq);
3832
3833         return ret ? ret : in_len;
3834 }
3835
3836 ssize_t ib_uverbs_query_srq(struct ib_uverbs_file *file,
3837                             const char __user *buf,
3838                             int in_len, int out_len)
3839 {
3840         struct ib_uverbs_query_srq      cmd;
3841         struct ib_uverbs_query_srq_resp resp;
3842         struct ib_srq_attr              attr;
3843         struct ib_srq                   *srq;
3844         int                             ret;
3845
3846         if (out_len < sizeof resp)
3847                 return -ENOSPC;
3848
3849         if (copy_from_user(&cmd, buf, sizeof cmd))
3850                 return -EFAULT;
3851
3852         srq = uobj_get_obj_read(srq, UVERBS_OBJECT_SRQ, cmd.srq_handle, file);
3853         if (!srq)
3854                 return -EINVAL;
3855
3856         ret = ib_query_srq(srq, &attr);
3857
3858         uobj_put_obj_read(srq);
3859
3860         if (ret)
3861                 return ret;
3862
3863         memset(&resp, 0, sizeof resp);
3864
3865         resp.max_wr    = attr.max_wr;
3866         resp.max_sge   = attr.max_sge;
3867         resp.srq_limit = attr.srq_limit;
3868
3869         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof resp))
3870                 return -EFAULT;
3871
3872         return in_len;
3873 }
3874
3875 ssize_t ib_uverbs_destroy_srq(struct ib_uverbs_file *file,
3876                               const char __user *buf, int in_len,
3877                               int out_len)
3878 {
3879         struct ib_uverbs_destroy_srq      cmd;
3880         struct ib_uverbs_destroy_srq_resp resp;
3881         struct ib_uobject                *uobj;
3882         struct ib_uevent_object          *obj;
3883
3884         if (copy_from_user(&cmd, buf, sizeof cmd))
3885                 return -EFAULT;
3886
3887         uobj = uobj_get_destroy(UVERBS_OBJECT_SRQ, cmd.srq_handle, file);
3888         if (IS_ERR(uobj))
3889                 return PTR_ERR(uobj);
3890
3891         obj = container_of(uobj, struct ib_uevent_object, uobject);
3892         memset(&resp, 0, sizeof(resp));
3893         resp.events_reported = obj->events_reported;
3894
3895         uobj_put_destroy(uobj);
3896
3897         if (copy_to_user(u64_to_user_ptr(cmd.response), &resp, sizeof(resp)))
3898                 return -EFAULT;
3899
3900         return in_len;
3901 }
3902
3903 int ib_uverbs_ex_query_device(struct ib_uverbs_file *file,
3904                               struct ib_udata *ucore,
3905                               struct ib_udata *uhw)
3906 {
3907         struct ib_uverbs_ex_query_device_resp resp = { {0} };
3908         struct ib_uverbs_ex_query_device  cmd;
3909         struct ib_device_attr attr = {0};
3910         struct ib_ucontext *ucontext;
3911         struct ib_device *ib_dev;
3912         int err;
3913
3914         ucontext = ib_uverbs_get_ucontext(file);
3915         if (IS_ERR(ucontext))
3916                 return PTR_ERR(ucontext);
3917         ib_dev = ucontext->device;
3918
3919         if (!ib_dev->query_device)
3920                 return -EOPNOTSUPP;
3921
3922         if (ucore->inlen < sizeof(cmd))
3923                 return -EINVAL;
3924
3925         err = ib_copy_from_udata(&cmd, ucore, sizeof(cmd));
3926         if (err)
3927                 return err;
3928
3929         if (cmd.comp_mask)
3930                 return -EINVAL;
3931
3932         if (cmd.reserved)
3933                 return -EINVAL;
3934
3935         resp.response_length = offsetof(typeof(resp), odp_caps);
3936
3937         if (ucore->outlen < resp.response_length)
3938                 return -ENOSPC;
3939
3940         err = ib_dev->query_device(ib_dev, &attr, uhw);
3941         if (err)
3942                 return err;
3943
3944         copy_query_dev_fields(ucontext, &resp.base, &attr);
3945
3946         if (ucore->outlen < resp.response_length + sizeof(resp.odp_caps))
3947                 goto end;
3948
3949 #ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
3950         resp.odp_caps.general_caps = attr.odp_caps.general_caps;
3951         resp.odp_caps.per_transport_caps.rc_odp_caps =
3952                 attr.odp_caps.per_transport_caps.rc_odp_caps;
3953         resp.odp_caps.per_transport_caps.uc_odp_caps =
3954                 attr.odp_caps.per_transport_caps.uc_odp_caps;
3955         resp.odp_caps.per_transport_caps.ud_odp_caps =
3956                 attr.odp_caps.per_transport_caps.ud_odp_caps;
3957 #endif
3958         resp.response_length += sizeof(resp.odp_caps);
3959
3960         if (ucore->outlen < resp.response_length + sizeof(resp.timestamp_mask))
3961                 goto end;
3962
3963         resp.timestamp_mask = attr.timestamp_mask;
3964         resp.response_length += sizeof(resp.timestamp_mask);
3965
3966         if (ucore->outlen < resp.response_length + sizeof(resp.hca_core_clock))
3967                 goto end;
3968
3969         resp.hca_core_clock = attr.hca_core_clock;
3970         resp.response_length += sizeof(resp.hca_core_clock);
3971
3972         if (ucore->outlen < resp.response_length + sizeof(resp.device_cap_flags_ex))
3973                 goto end;
3974
3975         resp.device_cap_flags_ex = attr.device_cap_flags;
3976         resp.response_length += sizeof(resp.device_cap_flags_ex);
3977
3978         if (ucore->outlen < resp.response_length + sizeof(resp.rss_caps))
3979                 goto end;
3980
3981         resp.rss_caps.supported_qpts = attr.rss_caps.supported_qpts;
3982         resp.rss_caps.max_rwq_indirection_tables =
3983                 attr.rss_caps.max_rwq_indirection_tables;
3984         resp.rss_caps.max_rwq_indirection_table_size =
3985                 attr.rss_caps.max_rwq_indirection_table_size;
3986
3987         resp.response_length += sizeof(resp.rss_caps);
3988
3989         if (ucore->outlen < resp.response_length + sizeof(resp.max_wq_type_rq))
3990                 goto end;
3991
3992         resp.max_wq_type_rq = attr.max_wq_type_rq;
3993         resp.response_length += sizeof(resp.max_wq_type_rq);
3994
3995         if (ucore->outlen < resp.response_length + sizeof(resp.raw_packet_caps))
3996                 goto end;
3997
3998         resp.raw_packet_caps = attr.raw_packet_caps;
3999         resp.response_length += sizeof(resp.raw_packet_caps);
4000
4001         if (ucore->outlen < resp.response_length + sizeof(resp.tm_caps))
4002                 goto end;
4003
4004         resp.tm_caps.max_rndv_hdr_size  = attr.tm_caps.max_rndv_hdr_size;
4005         resp.tm_caps.max_num_tags       = attr.tm_caps.max_num_tags;
4006         resp.tm_caps.max_ops            = attr.tm_caps.max_ops;
4007         resp.tm_caps.max_sge            = attr.tm_caps.max_sge;
4008         resp.tm_caps.flags              = attr.tm_caps.flags;
4009         resp.response_length += sizeof(resp.tm_caps);
4010
4011         if (ucore->outlen < resp.response_length + sizeof(resp.cq_moderation_caps))
4012                 goto end;
4013
4014         resp.cq_moderation_caps.max_cq_moderation_count  =
4015                 attr.cq_caps.max_cq_moderation_count;
4016         resp.cq_moderation_caps.max_cq_moderation_period =
4017                 attr.cq_caps.max_cq_moderation_period;
4018         resp.response_length += sizeof(resp.cq_moderation_caps);
4019
4020         if (ucore->outlen < resp.response_length + sizeof(resp.max_dm_size))
4021                 goto end;
4022
4023         resp.max_dm_size = attr.max_dm_size;
4024         resp.response_length += sizeof(resp.max_dm_size);
4025 end:
4026         err = ib_copy_to_udata(ucore, &resp, resp.response_length);
4027         return err;
4028 }
4029
4030 int ib_uverbs_ex_modify_cq(struct ib_uverbs_file *file,
4031                            struct ib_udata *ucore,
4032                            struct ib_udata *uhw)
4033 {
4034         struct ib_uverbs_ex_modify_cq cmd = {};
4035         struct ib_cq *cq;
4036         size_t required_cmd_sz;
4037         int ret;
4038
4039         required_cmd_sz = offsetof(typeof(cmd), reserved) +
4040                                 sizeof(cmd.reserved);
4041         if (ucore->inlen < required_cmd_sz)
4042                 return -EINVAL;
4043
4044         /* sanity checks */
4045         if (ucore->inlen > sizeof(cmd) &&
4046             !ib_is_udata_cleared(ucore, sizeof(cmd),
4047                                  ucore->inlen - sizeof(cmd)))
4048                 return -EOPNOTSUPP;
4049
4050         ret = ib_copy_from_udata(&cmd, ucore, min(sizeof(cmd), ucore->inlen));
4051         if (ret)
4052                 return ret;
4053
4054         if (!cmd.attr_mask || cmd.reserved)
4055                 return -EINVAL;
4056
4057         if (cmd.attr_mask > IB_CQ_MODERATE)
4058                 return -EOPNOTSUPP;
4059
4060         cq = uobj_get_obj_read(cq, UVERBS_OBJECT_CQ, cmd.cq_handle, file);
4061         if (!cq)
4062                 return -EINVAL;
4063
4064         ret = rdma_set_cq_moderation(cq, cmd.attr.cq_count, cmd.attr.cq_period);
4065
4066         uobj_put_obj_read(cq);
4067
4068         return ret;
4069 }