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