1 /*
2  * Copyright (c) 2005-2006 Intel Corporation.  All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *	copyright notice, this list of conditions and the following
16  *	disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *	copyright notice, this list of conditions and the following
20  *	disclaimer in the documentation and/or other materials
21  *	provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32 
33 #include <linux/completion.h>
34 #include <linux/file.h>
35 #include <linux/mutex.h>
36 #include <linux/poll.h>
37 #include <linux/idr.h>
38 #include <linux/in.h>
39 #include <linux/in6.h>
40 #include <linux/miscdevice.h>
41 
42 #include <sys/filio.h>
43 
44 #include <rdma/rdma_user_cm.h>
45 #include <rdma/ib_marshall.h>
46 #include <rdma/rdma_cm.h>
47 #include <rdma/rdma_cm_ib.h>
48 
49 MODULE_AUTHOR("Sean Hefty");
50 MODULE_DESCRIPTION("RDMA Userspace Connection Manager Access");
51 MODULE_LICENSE("Dual BSD/GPL");
52 
53 enum {
54 	UCMA_MAX_BACKLOG	= 1024
55 };
56 
57 struct ucma_file {
58 	struct mutex		mut;
59 	struct file		*filp;
60 	struct list_head	ctx_list;
61 	struct list_head	event_list;
62 	wait_queue_head_t	poll_wait;
63 };
64 
65 struct ucma_context {
66 	int			id;
67 	struct completion	comp;
68 	atomic_t		ref;
69 	int			events_reported;
70 	int			backlog;
71 
72 	struct ucma_file	*file;
73 	struct rdma_cm_id	*cm_id;
74 	u64			uid;
75 
76 	struct list_head	list;
77 	struct list_head	mc_list;
78 };
79 
80 struct ucma_multicast {
81 	struct ucma_context	*ctx;
82 	int			id;
83 	int			events_reported;
84 
85 	u64			uid;
86 	struct list_head	list;
87 	struct sockaddr_storage	addr;
88 };
89 
90 struct ucma_event {
91 	struct ucma_context	*ctx;
92 	struct ucma_multicast	*mc;
93 	struct list_head	list;
94 	struct rdma_cm_id	*cm_id;
95 	struct rdma_ucm_event_resp resp;
96 };
97 
98 static DEFINE_MUTEX(mut);
99 static DEFINE_IDR(ctx_idr);
100 static DEFINE_IDR(multicast_idr);
101 
_ucma_find_context(int id,struct ucma_file * file)102 static inline struct ucma_context *_ucma_find_context(int id,
103 						      struct ucma_file *file)
104 {
105 	struct ucma_context *ctx;
106 
107 	ctx = idr_find(&ctx_idr, id);
108 	if (!ctx)
109 		ctx = ERR_PTR(-ENOENT);
110 	else if (ctx->file != file)
111 		ctx = ERR_PTR(-EINVAL);
112 	return ctx;
113 }
114 
ucma_get_ctx(struct ucma_file * file,int id)115 static struct ucma_context *ucma_get_ctx(struct ucma_file *file, int id)
116 {
117 	struct ucma_context *ctx;
118 
119 	mutex_lock(&mut);
120 	ctx = _ucma_find_context(id, file);
121 	if (!IS_ERR(ctx))
122 		atomic_inc(&ctx->ref);
123 	mutex_unlock(&mut);
124 	return ctx;
125 }
126 
ucma_put_ctx(struct ucma_context * ctx)127 static void ucma_put_ctx(struct ucma_context *ctx)
128 {
129 	if (atomic_dec_and_test(&ctx->ref))
130 		complete(&ctx->comp);
131 }
132 
ucma_alloc_ctx(struct ucma_file * file)133 static struct ucma_context *ucma_alloc_ctx(struct ucma_file *file)
134 {
135 	struct ucma_context *ctx;
136 	int ret;
137 
138 	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
139 	if (!ctx)
140 		return NULL;
141 
142 	atomic_set(&ctx->ref, 1);
143 	init_completion(&ctx->comp);
144 	INIT_LIST_HEAD(&ctx->mc_list);
145 	ctx->file = file;
146 
147 	do {
148 		ret = idr_pre_get(&ctx_idr, GFP_KERNEL);
149 		if (!ret)
150 			goto error;
151 
152 		mutex_lock(&mut);
153 		ret = idr_get_new(&ctx_idr, ctx, &ctx->id);
154 		mutex_unlock(&mut);
155 	} while (ret == -EAGAIN);
156 
157 	if (ret)
158 		goto error;
159 
160 	list_add_tail(&ctx->list, &file->ctx_list);
161 	return ctx;
162 
163 error:
164 	kfree(ctx);
165 	return NULL;
166 }
167 
ucma_alloc_multicast(struct ucma_context * ctx)168 static struct ucma_multicast* ucma_alloc_multicast(struct ucma_context *ctx)
169 {
170 	struct ucma_multicast *mc;
171 	int ret;
172 
173 	mc = kzalloc(sizeof(*mc), GFP_KERNEL);
174 	if (!mc)
175 		return NULL;
176 
177 	do {
178 		ret = idr_pre_get(&multicast_idr, GFP_KERNEL);
179 		if (!ret)
180 			goto error;
181 
182 		mutex_lock(&mut);
183 		ret = idr_get_new(&multicast_idr, mc, &mc->id);
184 		mutex_unlock(&mut);
185 	} while (ret == -EAGAIN);
186 
187 	if (ret)
188 		goto error;
189 
190 	mc->ctx = ctx;
191 	list_add_tail(&mc->list, &ctx->mc_list);
192 	return mc;
193 
194 error:
195 	kfree(mc);
196 	return NULL;
197 }
198 
ucma_copy_conn_event(struct rdma_ucm_conn_param * dst,struct rdma_conn_param * src)199 static void ucma_copy_conn_event(struct rdma_ucm_conn_param *dst,
200 				 struct rdma_conn_param *src)
201 {
202 	if (src->private_data_len)
203 		memcpy(dst->private_data, src->private_data,
204 		       src->private_data_len);
205 	dst->private_data_len = src->private_data_len;
206 	dst->responder_resources =src->responder_resources;
207 	dst->initiator_depth = src->initiator_depth;
208 	dst->flow_control = src->flow_control;
209 	dst->retry_count = src->retry_count;
210 	dst->rnr_retry_count = src->rnr_retry_count;
211 	dst->srq = src->srq;
212 	dst->qp_num = src->qp_num;
213 }
214 
ucma_copy_ud_event(struct rdma_ucm_ud_param * dst,struct rdma_ud_param * src)215 static void ucma_copy_ud_event(struct rdma_ucm_ud_param *dst,
216 			       struct rdma_ud_param *src)
217 {
218 	if (src->private_data_len)
219 		memcpy(dst->private_data, src->private_data,
220 		       src->private_data_len);
221 	dst->private_data_len = src->private_data_len;
222 	ib_copy_ah_attr_to_user(&dst->ah_attr, &src->ah_attr);
223 	dst->qp_num = src->qp_num;
224 	dst->qkey = src->qkey;
225 }
226 
ucma_set_event_context(struct ucma_context * ctx,struct rdma_cm_event * event,struct ucma_event * uevent)227 static void ucma_set_event_context(struct ucma_context *ctx,
228 				   struct rdma_cm_event *event,
229 				   struct ucma_event *uevent)
230 {
231 	uevent->ctx = ctx;
232 	switch (event->event) {
233 	case RDMA_CM_EVENT_MULTICAST_JOIN:
234 	case RDMA_CM_EVENT_MULTICAST_ERROR:
235 		uevent->mc = (struct ucma_multicast *)
236 			     event->param.ud.private_data;
237 		uevent->resp.uid = uevent->mc->uid;
238 		uevent->resp.id = uevent->mc->id;
239 		break;
240 	default:
241 		uevent->resp.uid = ctx->uid;
242 		uevent->resp.id = ctx->id;
243 		break;
244 	}
245 }
246 
ucma_event_handler(struct rdma_cm_id * cm_id,struct rdma_cm_event * event)247 static int ucma_event_handler(struct rdma_cm_id *cm_id,
248 			      struct rdma_cm_event *event)
249 {
250 	struct ucma_event *uevent;
251 	struct ucma_context *ctx = cm_id->context;
252 	int ret = 0;
253 
254 	uevent = kzalloc(sizeof(*uevent), GFP_KERNEL);
255 	if (!uevent)
256 		return event->event == RDMA_CM_EVENT_CONNECT_REQUEST;
257 
258 	uevent->cm_id = cm_id;
259 	ucma_set_event_context(ctx, event, uevent);
260 	uevent->resp.event = event->event;
261 	uevent->resp.status = event->status;
262 	if (cm_id->ps == RDMA_PS_UDP || cm_id->ps == RDMA_PS_IPOIB)
263 		ucma_copy_ud_event(&uevent->resp.param.ud, &event->param.ud);
264 	else
265 		ucma_copy_conn_event(&uevent->resp.param.conn,
266 				     &event->param.conn);
267 
268 	mutex_lock(&ctx->file->mut);
269 	if (event->event == RDMA_CM_EVENT_CONNECT_REQUEST) {
270 		if (!ctx->backlog) {
271 			ret = -ENOMEM;
272 			kfree(uevent);
273 			goto out;
274 		}
275 		ctx->backlog--;
276 	} else if (!ctx->uid) {
277 		/*
278 		 * We ignore events for new connections until userspace has set
279 		 * their context.  This can only happen if an error occurs on a
280 		 * new connection before the user accepts it.  This is okay,
281 		 * since the accept will just fail later.
282 		 */
283 		kfree(uevent);
284 		goto out;
285 	}
286 
287 	list_add_tail(&uevent->list, &ctx->file->event_list);
288 	wake_up_interruptible(&ctx->file->poll_wait);
289 	if (ctx->file->filp)
290 		selwakeup(&ctx->file->filp->f_selinfo);
291 out:
292 	mutex_unlock(&ctx->file->mut);
293 	return ret;
294 }
295 
ucma_get_event(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)296 static ssize_t ucma_get_event(struct ucma_file *file, const char __user *inbuf,
297 			      int in_len, int out_len)
298 {
299 	struct ucma_context *ctx;
300 	struct rdma_ucm_get_event cmd;
301 	struct ucma_event *uevent;
302 	int ret = 0;
303 	DEFINE_WAIT(wait);
304 
305 	if (out_len < sizeof uevent->resp)
306 		return -ENOSPC;
307 
308 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
309 		return -EFAULT;
310 
311 	mutex_lock(&file->mut);
312 	while (list_empty(&file->event_list)) {
313 		mutex_unlock(&file->mut);
314 
315 		if (file->filp->f_flags & O_NONBLOCK)
316 			return -EAGAIN;
317 
318 		if (wait_event_interruptible(file->poll_wait,
319 					     !list_empty(&file->event_list)))
320 			return -ERESTARTSYS;
321 
322 		mutex_lock(&file->mut);
323 	}
324 
325 	uevent = list_entry(file->event_list.next, struct ucma_event, list);
326 
327 	if (uevent->resp.event == RDMA_CM_EVENT_CONNECT_REQUEST) {
328 		ctx = ucma_alloc_ctx(file);
329 		if (!ctx) {
330 			ret = -ENOMEM;
331 			goto done;
332 		}
333 		uevent->ctx->backlog++;
334 		ctx->cm_id = uevent->cm_id;
335 		ctx->cm_id->context = ctx;
336 		uevent->resp.id = ctx->id;
337 	}
338 
339 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
340 			 &uevent->resp, sizeof uevent->resp)) {
341 		ret = -EFAULT;
342 		goto done;
343 	}
344 
345 	list_del(&uevent->list);
346 	uevent->ctx->events_reported++;
347 	if (uevent->mc)
348 		uevent->mc->events_reported++;
349 	kfree(uevent);
350 done:
351 	mutex_unlock(&file->mut);
352 	return ret;
353 }
354 
ucma_create_id(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)355 static ssize_t ucma_create_id(struct ucma_file *file,
356 				const char __user *inbuf,
357 				int in_len, int out_len)
358 {
359 	struct rdma_ucm_create_id cmd;
360 	struct rdma_ucm_create_id_resp resp;
361 	struct ucma_context *ctx;
362 	int ret;
363 
364 	if (out_len < sizeof(resp))
365 		return -ENOSPC;
366 
367 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
368 		return -EFAULT;
369 
370 	mutex_lock(&file->mut);
371 	ctx = ucma_alloc_ctx(file);
372 	mutex_unlock(&file->mut);
373 	if (!ctx)
374 		return -ENOMEM;
375 
376 	ctx->uid = cmd.uid;
377 	ctx->cm_id = rdma_create_id(ucma_event_handler, ctx, cmd.ps);
378 	if (IS_ERR(ctx->cm_id)) {
379 		ret = PTR_ERR(ctx->cm_id);
380 		goto err1;
381 	}
382 
383 	resp.id = ctx->id;
384 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
385 			 &resp, sizeof(resp))) {
386 		ret = -EFAULT;
387 		goto err2;
388 	}
389 	return 0;
390 
391 err2:
392 	rdma_destroy_id(ctx->cm_id);
393 err1:
394 	mutex_lock(&mut);
395 	idr_remove(&ctx_idr, ctx->id);
396 	mutex_unlock(&mut);
397 	kfree(ctx);
398 	return ret;
399 }
400 
ucma_cleanup_multicast(struct ucma_context * ctx)401 static void ucma_cleanup_multicast(struct ucma_context *ctx)
402 {
403 	struct ucma_multicast *mc, *tmp;
404 
405 	mutex_lock(&mut);
406 	list_for_each_entry_safe(mc, tmp, &ctx->mc_list, list) {
407 		list_del(&mc->list);
408 		idr_remove(&multicast_idr, mc->id);
409 		kfree(mc);
410 	}
411 	mutex_unlock(&mut);
412 }
413 
ucma_cleanup_events(struct ucma_context * ctx)414 static void ucma_cleanup_events(struct ucma_context *ctx)
415 {
416 	struct ucma_event *uevent, *tmp;
417 
418 	list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list) {
419 		if (uevent->ctx != ctx)
420 			continue;
421 
422 		list_del(&uevent->list);
423 
424 		/* clear incoming connections. */
425 		if (uevent->resp.event == RDMA_CM_EVENT_CONNECT_REQUEST)
426 			rdma_destroy_id(uevent->cm_id);
427 
428 		kfree(uevent);
429 	}
430 }
431 
ucma_cleanup_mc_events(struct ucma_multicast * mc)432 static void ucma_cleanup_mc_events(struct ucma_multicast *mc)
433 {
434 	struct ucma_event *uevent, *tmp;
435 
436 	list_for_each_entry_safe(uevent, tmp, &mc->ctx->file->event_list, list) {
437 		if (uevent->mc != mc)
438 			continue;
439 
440 		list_del(&uevent->list);
441 		kfree(uevent);
442 	}
443 }
444 
ucma_free_ctx(struct ucma_context * ctx)445 static int ucma_free_ctx(struct ucma_context *ctx)
446 {
447 	int events_reported;
448 
449 	/* No new events will be generated after destroying the id. */
450 	rdma_destroy_id(ctx->cm_id);
451 
452 	ucma_cleanup_multicast(ctx);
453 
454 	/* Cleanup events not yet reported to the user. */
455 	mutex_lock(&ctx->file->mut);
456 	ucma_cleanup_events(ctx);
457 	list_del(&ctx->list);
458 	mutex_unlock(&ctx->file->mut);
459 
460 	events_reported = ctx->events_reported;
461 	kfree(ctx);
462 	return events_reported;
463 }
464 
ucma_destroy_id(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)465 static ssize_t ucma_destroy_id(struct ucma_file *file, const char __user *inbuf,
466 			       int in_len, int out_len)
467 {
468 	struct rdma_ucm_destroy_id cmd;
469 	struct rdma_ucm_destroy_id_resp resp;
470 	struct ucma_context *ctx;
471 	int ret = 0;
472 
473 	if (out_len < sizeof(resp))
474 		return -ENOSPC;
475 
476 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
477 		return -EFAULT;
478 
479 	mutex_lock(&mut);
480 	ctx = _ucma_find_context(cmd.id, file);
481 	if (!IS_ERR(ctx))
482 		idr_remove(&ctx_idr, ctx->id);
483 	mutex_unlock(&mut);
484 
485 	if (IS_ERR(ctx))
486 		return PTR_ERR(ctx);
487 
488 	ucma_put_ctx(ctx);
489 	wait_for_completion(&ctx->comp);
490 	resp.events_reported = ucma_free_ctx(ctx);
491 
492 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
493 			 &resp, sizeof(resp)))
494 		ret = -EFAULT;
495 
496 	return ret;
497 }
498 
ucma_bind_addr(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)499 static ssize_t ucma_bind_addr(struct ucma_file *file, const char __user *inbuf,
500 			      int in_len, int out_len)
501 {
502 	struct rdma_ucm_bind_addr cmd;
503 	struct ucma_context *ctx;
504 	int ret;
505 
506 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
507 		return -EFAULT;
508 
509 	ctx = ucma_get_ctx(file, cmd.id);
510 	if (IS_ERR(ctx))
511 		return PTR_ERR(ctx);
512 
513 	ret = rdma_bind_addr(ctx->cm_id, (struct sockaddr *) &cmd.addr);
514 	ucma_put_ctx(ctx);
515 	return ret;
516 }
517 
ucma_resolve_addr(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)518 static ssize_t ucma_resolve_addr(struct ucma_file *file,
519 				 const char __user *inbuf,
520 				 int in_len, int out_len)
521 {
522 	struct rdma_ucm_resolve_addr cmd;
523 	struct ucma_context *ctx;
524 	int ret;
525 
526 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
527 		return -EFAULT;
528 
529 	ctx = ucma_get_ctx(file, cmd.id);
530 	if (IS_ERR(ctx))
531 		return PTR_ERR(ctx);
532 
533 	ret = rdma_resolve_addr(ctx->cm_id, (struct sockaddr *) &cmd.src_addr,
534 				(struct sockaddr *) &cmd.dst_addr,
535 				cmd.timeout_ms);
536 	ucma_put_ctx(ctx);
537 	return ret;
538 }
539 
ucma_resolve_route(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)540 static ssize_t ucma_resolve_route(struct ucma_file *file,
541 				  const char __user *inbuf,
542 				  int in_len, int out_len)
543 {
544 	struct rdma_ucm_resolve_route cmd;
545 	struct ucma_context *ctx;
546 	int ret;
547 
548 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
549 		return -EFAULT;
550 
551 	ctx = ucma_get_ctx(file, cmd.id);
552 	if (IS_ERR(ctx))
553 		return PTR_ERR(ctx);
554 
555 	ret = rdma_resolve_route(ctx->cm_id, cmd.timeout_ms);
556 	ucma_put_ctx(ctx);
557 	return ret;
558 }
559 
ucma_copy_ib_route(struct rdma_ucm_query_route_resp * resp,struct rdma_route * route)560 static void ucma_copy_ib_route(struct rdma_ucm_query_route_resp *resp,
561 			       struct rdma_route *route)
562 {
563 	struct rdma_dev_addr *dev_addr;
564 
565 	resp->num_paths = route->num_paths;
566 	switch (route->num_paths) {
567 	case 0:
568 		dev_addr = &route->addr.dev_addr;
569 		rdma_addr_get_dgid(dev_addr,
570 				   (union ib_gid *) &resp->ib_route[0].dgid);
571 		rdma_addr_get_sgid(dev_addr,
572 				   (union ib_gid *) &resp->ib_route[0].sgid);
573 		resp->ib_route[0].pkey = cpu_to_be16(ib_addr_get_pkey(dev_addr));
574 		break;
575 	case 2:
576 		ib_copy_path_rec_to_user(&resp->ib_route[1],
577 					 &route->path_rec[1]);
578 		/* fall through */
579 	case 1:
580 		ib_copy_path_rec_to_user(&resp->ib_route[0],
581 					 &route->path_rec[0]);
582 		break;
583 	default:
584 		break;
585 	}
586 }
587 
ucma_copy_iboe_route(struct rdma_ucm_query_route_resp * resp,struct rdma_route * route)588 static void ucma_copy_iboe_route(struct rdma_ucm_query_route_resp *resp,
589 				 struct rdma_route *route)
590 {
591 	struct rdma_dev_addr *dev_addr;
592 	struct net_device *dev;
593 	u16 vid = 0;
594 
595 	resp->num_paths = route->num_paths;
596 	switch (route->num_paths) {
597 	case 0:
598 		dev_addr = &route->addr.dev_addr;
599 		dev = dev_get_by_index(&init_net, dev_addr->bound_dev_if);
600 			if (dev) {
601 				vid = rdma_vlan_dev_vlan_id(dev);
602 				dev_put(dev);
603 			}
604 
605 		iboe_mac_vlan_to_ll((union ib_gid *) &resp->ib_route[0].dgid,
606 				    dev_addr->dst_dev_addr, vid);
607 		iboe_addr_get_sgid(dev_addr,
608 				   (union ib_gid *) &resp->ib_route[0].sgid);
609 		resp->ib_route[0].pkey = cpu_to_be16(0xffff);
610 		break;
611 	case 2:
612 		ib_copy_path_rec_to_user(&resp->ib_route[1],
613 					 &route->path_rec[1]);
614 		/* fall through */
615 	case 1:
616 		ib_copy_path_rec_to_user(&resp->ib_route[0],
617 					 &route->path_rec[0]);
618 		break;
619 	default:
620 		break;
621 	}
622 }
623 
ucma_query_route(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)624 static ssize_t ucma_query_route(struct ucma_file *file,
625 				const char __user *inbuf,
626 				int in_len, int out_len)
627 {
628 	struct rdma_ucm_query_route cmd;
629 	struct rdma_ucm_query_route_resp resp;
630 	struct ucma_context *ctx;
631 	struct sockaddr *addr;
632 	int ret = 0;
633 
634 	if (out_len < sizeof(resp))
635 		return -ENOSPC;
636 
637 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
638 		return -EFAULT;
639 
640 	ctx = ucma_get_ctx(file, cmd.id);
641 	if (IS_ERR(ctx))
642 		return PTR_ERR(ctx);
643 
644 	memset(&resp, 0, sizeof resp);
645 	addr = (struct sockaddr *) &ctx->cm_id->route.addr.src_addr;
646 	memcpy(&resp.src_addr, addr, addr->sa_family == AF_INET ?
647 				     sizeof(struct sockaddr_in) :
648 				     sizeof(struct sockaddr_in6));
649 	addr = (struct sockaddr *) &ctx->cm_id->route.addr.dst_addr;
650 	memcpy(&resp.dst_addr, addr, addr->sa_family == AF_INET ?
651 				     sizeof(struct sockaddr_in) :
652 				     sizeof(struct sockaddr_in6));
653 	if (!ctx->cm_id->device)
654 		goto out;
655 
656 	resp.node_guid = (__force __u64) ctx->cm_id->device->node_guid;
657 	resp.port_num = ctx->cm_id->port_num;
658 	if (rdma_node_get_transport(ctx->cm_id->device->node_type) == RDMA_TRANSPORT_IB) {
659 		switch (rdma_port_get_link_layer(ctx->cm_id->device, ctx->cm_id->port_num)) {
660 		case IB_LINK_LAYER_INFINIBAND:
661 			ucma_copy_ib_route(&resp, &ctx->cm_id->route);
662 			break;
663 		case IB_LINK_LAYER_ETHERNET:
664 			ucma_copy_iboe_route(&resp, &ctx->cm_id->route);
665 			break;
666 		default:
667 			break;
668 		}
669 	}
670 
671 out:
672 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
673 			 &resp, sizeof(resp)))
674 		ret = -EFAULT;
675 
676 	ucma_put_ctx(ctx);
677 	return ret;
678 }
679 
ucma_copy_conn_param(struct rdma_conn_param * dst,struct rdma_ucm_conn_param * src)680 static void ucma_copy_conn_param(struct rdma_conn_param *dst,
681 				 struct rdma_ucm_conn_param *src)
682 {
683 	dst->private_data = src->private_data;
684 	dst->private_data_len = src->private_data_len;
685 	dst->responder_resources =src->responder_resources;
686 	dst->initiator_depth = src->initiator_depth;
687 	dst->flow_control = src->flow_control;
688 	dst->retry_count = src->retry_count;
689 	dst->rnr_retry_count = src->rnr_retry_count;
690 	dst->srq = src->srq;
691 	dst->qp_num = src->qp_num;
692 }
693 
ucma_connect(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)694 static ssize_t ucma_connect(struct ucma_file *file, const char __user *inbuf,
695 			    int in_len, int out_len)
696 {
697 	struct rdma_ucm_connect cmd;
698 	struct rdma_conn_param conn_param;
699 	struct ucma_context *ctx;
700 	int ret;
701 
702 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
703 		return -EFAULT;
704 
705 	if (!cmd.conn_param.valid)
706 		return -EINVAL;
707 
708 	ctx = ucma_get_ctx(file, cmd.id);
709 	if (IS_ERR(ctx))
710 		return PTR_ERR(ctx);
711 
712 	ucma_copy_conn_param(&conn_param, &cmd.conn_param);
713 	ret = rdma_connect(ctx->cm_id, &conn_param);
714 	ucma_put_ctx(ctx);
715 	return ret;
716 }
717 
ucma_listen(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)718 static ssize_t ucma_listen(struct ucma_file *file, const char __user *inbuf,
719 			   int in_len, int out_len)
720 {
721 	struct rdma_ucm_listen cmd;
722 	struct ucma_context *ctx;
723 	int ret;
724 
725 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
726 		return -EFAULT;
727 
728 	ctx = ucma_get_ctx(file, cmd.id);
729 	if (IS_ERR(ctx))
730 		return PTR_ERR(ctx);
731 
732 	ctx->backlog = cmd.backlog > 0 && cmd.backlog < UCMA_MAX_BACKLOG ?
733 		       cmd.backlog : UCMA_MAX_BACKLOG;
734 	ret = rdma_listen(ctx->cm_id, ctx->backlog);
735 	ucma_put_ctx(ctx);
736 	return ret;
737 }
738 
ucma_accept(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)739 static ssize_t ucma_accept(struct ucma_file *file, const char __user *inbuf,
740 			   int in_len, int out_len)
741 {
742 	struct rdma_ucm_accept cmd;
743 	struct rdma_conn_param conn_param;
744 	struct ucma_context *ctx;
745 	int ret;
746 
747 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
748 		return -EFAULT;
749 
750 	ctx = ucma_get_ctx(file, cmd.id);
751 	if (IS_ERR(ctx))
752 		return PTR_ERR(ctx);
753 
754 	if (cmd.conn_param.valid) {
755 		ctx->uid = cmd.uid;
756 		ucma_copy_conn_param(&conn_param, &cmd.conn_param);
757 		ret = rdma_accept(ctx->cm_id, &conn_param);
758 	} else
759 		ret = rdma_accept(ctx->cm_id, NULL);
760 
761 	ucma_put_ctx(ctx);
762 	return ret;
763 }
764 
ucma_reject(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)765 static ssize_t ucma_reject(struct ucma_file *file, const char __user *inbuf,
766 			   int in_len, int out_len)
767 {
768 	struct rdma_ucm_reject cmd;
769 	struct ucma_context *ctx;
770 	int ret;
771 
772 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
773 		return -EFAULT;
774 
775 	ctx = ucma_get_ctx(file, cmd.id);
776 	if (IS_ERR(ctx))
777 		return PTR_ERR(ctx);
778 
779 	ret = rdma_reject(ctx->cm_id, cmd.private_data, cmd.private_data_len);
780 	ucma_put_ctx(ctx);
781 	return ret;
782 }
783 
ucma_disconnect(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)784 static ssize_t ucma_disconnect(struct ucma_file *file, const char __user *inbuf,
785 			       int in_len, int out_len)
786 {
787 	struct rdma_ucm_disconnect cmd;
788 	struct ucma_context *ctx;
789 	int ret;
790 
791 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
792 		return -EFAULT;
793 
794 	ctx = ucma_get_ctx(file, cmd.id);
795 	if (IS_ERR(ctx))
796 		return PTR_ERR(ctx);
797 
798 	ret = rdma_disconnect(ctx->cm_id);
799 	ucma_put_ctx(ctx);
800 	return ret;
801 }
802 
ucma_init_qp_attr(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)803 static ssize_t ucma_init_qp_attr(struct ucma_file *file,
804 				 const char __user *inbuf,
805 				 int in_len, int out_len)
806 {
807 	struct rdma_ucm_init_qp_attr cmd;
808 	struct ib_uverbs_qp_attr resp;
809 	struct ucma_context *ctx;
810 	struct ib_qp_attr qp_attr;
811 	int ret;
812 
813 	if (out_len < sizeof(resp))
814 		return -ENOSPC;
815 
816 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
817 		return -EFAULT;
818 
819 	ctx = ucma_get_ctx(file, cmd.id);
820 	if (IS_ERR(ctx))
821 		return PTR_ERR(ctx);
822 
823 	resp.qp_attr_mask = 0;
824 	memset(&qp_attr, 0, sizeof qp_attr);
825 	qp_attr.qp_state = cmd.qp_state;
826 	ret = rdma_init_qp_attr(ctx->cm_id, &qp_attr, &resp.qp_attr_mask);
827 	if (ret)
828 		goto out;
829 
830 	ib_copy_qp_attr_to_user(&resp, &qp_attr);
831 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
832 			 &resp, sizeof(resp)))
833 		ret = -EFAULT;
834 
835 out:
836 	ucma_put_ctx(ctx);
837 	return ret;
838 }
839 
ucma_set_option_id(struct ucma_context * ctx,int optname,void * optval,size_t optlen)840 static int ucma_set_option_id(struct ucma_context *ctx, int optname,
841 			      void *optval, size_t optlen)
842 {
843 	int ret = 0;
844 
845 	switch (optname) {
846 	case RDMA_OPTION_ID_TOS:
847 		if (optlen != sizeof(u8)) {
848 			ret = -EINVAL;
849 			break;
850 		}
851 		rdma_set_service_type(ctx->cm_id, *((u8 *) optval));
852 		break;
853 	default:
854 		ret = -ENOSYS;
855 	}
856 
857 	return ret;
858 }
859 
ucma_set_ib_path(struct ucma_context * ctx,struct ib_path_rec_data * path_data,size_t optlen)860 static int ucma_set_ib_path(struct ucma_context *ctx,
861 			    struct ib_path_rec_data *path_data, size_t optlen)
862 {
863 	struct ib_sa_path_rec sa_path;
864 	struct rdma_cm_event event;
865 	int ret;
866 
867 	if (optlen % sizeof(*path_data))
868 		return -EINVAL;
869 
870 	for (; optlen; optlen -= sizeof(*path_data), path_data++) {
871 		if (path_data->flags == (IB_PATH_GMP | IB_PATH_PRIMARY |
872 					 IB_PATH_BIDIRECTIONAL))
873 			break;
874 	}
875 
876 	if (!optlen)
877 		return -EINVAL;
878 
879 	ib_sa_unpack_path(path_data->path_rec, &sa_path);
880 	ret = rdma_set_ib_paths(ctx->cm_id, &sa_path, 1);
881 	if (ret)
882 		return ret;
883 
884 	memset(&event, 0, sizeof event);
885 	event.event = RDMA_CM_EVENT_ROUTE_RESOLVED;
886 	return ucma_event_handler(ctx->cm_id, &event);
887 }
888 
ucma_set_option_ib(struct ucma_context * ctx,int optname,void * optval,size_t optlen)889 static int ucma_set_option_ib(struct ucma_context *ctx, int optname,
890 			      void *optval, size_t optlen)
891 {
892 	int ret;
893 
894 	switch (optname) {
895 	case RDMA_OPTION_IB_PATH:
896 		ret = ucma_set_ib_path(ctx, optval, optlen);
897 		break;
898 	default:
899 		ret = -ENOSYS;
900 	}
901 
902 	return ret;
903 }
904 
ucma_set_option_level(struct ucma_context * ctx,int level,int optname,void * optval,size_t optlen)905 static int ucma_set_option_level(struct ucma_context *ctx, int level,
906 				 int optname, void *optval, size_t optlen)
907 {
908 	int ret;
909 
910 	switch (level) {
911 	case RDMA_OPTION_ID:
912 		ret = ucma_set_option_id(ctx, optname, optval, optlen);
913 		break;
914 	case RDMA_OPTION_IB:
915 		ret = ucma_set_option_ib(ctx, optname, optval, optlen);
916 		break;
917 	default:
918 		ret = -ENOSYS;
919 	}
920 
921 	return ret;
922 }
923 
ucma_set_option(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)924 static ssize_t ucma_set_option(struct ucma_file *file, const char __user *inbuf,
925 			       int in_len, int out_len)
926 {
927 	struct rdma_ucm_set_option cmd;
928 	struct ucma_context *ctx;
929 	void *optval;
930 	int ret;
931 
932 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
933 		return -EFAULT;
934 
935 	ctx = ucma_get_ctx(file, cmd.id);
936 	if (IS_ERR(ctx))
937 		return PTR_ERR(ctx);
938 
939 	optval = kmalloc(cmd.optlen, GFP_KERNEL);
940 	if (!optval) {
941 		ret = -ENOMEM;
942 		goto out1;
943 	}
944 
945 	if (copy_from_user(optval, (void __user *) (unsigned long) cmd.optval,
946 			   cmd.optlen)) {
947 		ret = -EFAULT;
948 		goto out2;
949 	}
950 
951 	ret = ucma_set_option_level(ctx, cmd.level, cmd.optname, optval,
952 				    cmd.optlen);
953 out2:
954 	kfree(optval);
955 out1:
956 	ucma_put_ctx(ctx);
957 	return ret;
958 }
959 
ucma_notify(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)960 static ssize_t ucma_notify(struct ucma_file *file, const char __user *inbuf,
961 			   int in_len, int out_len)
962 {
963 	struct rdma_ucm_notify cmd;
964 	struct ucma_context *ctx;
965 	int ret;
966 
967 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
968 		return -EFAULT;
969 
970 	ctx = ucma_get_ctx(file, cmd.id);
971 	if (IS_ERR(ctx))
972 		return PTR_ERR(ctx);
973 
974 	ret = rdma_notify(ctx->cm_id, (enum ib_event_type) cmd.event);
975 	ucma_put_ctx(ctx);
976 	return ret;
977 }
978 
ucma_join_multicast(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)979 static ssize_t ucma_join_multicast(struct ucma_file *file,
980 				   const char __user *inbuf,
981 				   int in_len, int out_len)
982 {
983 	struct rdma_ucm_join_mcast cmd;
984 	struct rdma_ucm_create_id_resp resp;
985 	struct ucma_context *ctx;
986 	struct ucma_multicast *mc;
987 	int ret;
988 
989 	if (out_len < sizeof(resp))
990 		return -ENOSPC;
991 
992 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
993 		return -EFAULT;
994 
995 	ctx = ucma_get_ctx(file, cmd.id);
996 	if (IS_ERR(ctx))
997 		return PTR_ERR(ctx);
998 
999 	mutex_lock(&file->mut);
1000 	mc = ucma_alloc_multicast(ctx);
1001 	if (!mc) {
1002 		ret = -ENOMEM;
1003 		goto err1;
1004 	}
1005 
1006 	mc->uid = cmd.uid;
1007 	memcpy(&mc->addr, &cmd.addr, sizeof cmd.addr);
1008 	ret = rdma_join_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr, mc);
1009 	if (ret)
1010 		goto err2;
1011 
1012 	resp.id = mc->id;
1013 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
1014 			 &resp, sizeof(resp))) {
1015 		ret = -EFAULT;
1016 		goto err3;
1017 	}
1018 
1019 	mutex_unlock(&file->mut);
1020 	ucma_put_ctx(ctx);
1021 	return 0;
1022 
1023 err3:
1024 	rdma_leave_multicast(ctx->cm_id, (struct sockaddr *) &mc->addr);
1025 	ucma_cleanup_mc_events(mc);
1026 err2:
1027 	mutex_lock(&mut);
1028 	idr_remove(&multicast_idr, mc->id);
1029 	mutex_unlock(&mut);
1030 	list_del(&mc->list);
1031 	kfree(mc);
1032 err1:
1033 	mutex_unlock(&file->mut);
1034 	ucma_put_ctx(ctx);
1035 	return ret;
1036 }
1037 
ucma_leave_multicast(struct ucma_file * file,const char __user * inbuf,int in_len,int out_len)1038 static ssize_t ucma_leave_multicast(struct ucma_file *file,
1039 				    const char __user *inbuf,
1040 				    int in_len, int out_len)
1041 {
1042 	struct rdma_ucm_destroy_id cmd;
1043 	struct rdma_ucm_destroy_id_resp resp;
1044 	struct ucma_multicast *mc;
1045 	int ret = 0;
1046 
1047 	if (out_len < sizeof(resp))
1048 		return -ENOSPC;
1049 
1050 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1051 		return -EFAULT;
1052 
1053 	mutex_lock(&mut);
1054 	mc = idr_find(&multicast_idr, cmd.id);
1055 	if (!mc)
1056 		mc = ERR_PTR(-ENOENT);
1057 	else if (mc->ctx->file != file)
1058 		mc = ERR_PTR(-EINVAL);
1059 	else {
1060 		idr_remove(&multicast_idr, mc->id);
1061 		atomic_inc(&mc->ctx->ref);
1062 	}
1063 	mutex_unlock(&mut);
1064 
1065 	if (IS_ERR(mc)) {
1066 		ret = PTR_ERR(mc);
1067 		goto out;
1068 	}
1069 
1070 	rdma_leave_multicast(mc->ctx->cm_id, (struct sockaddr *) &mc->addr);
1071 	mutex_lock(&mc->ctx->file->mut);
1072 	ucma_cleanup_mc_events(mc);
1073 	list_del(&mc->list);
1074 	mutex_unlock(&mc->ctx->file->mut);
1075 
1076 	ucma_put_ctx(mc->ctx);
1077 	resp.events_reported = mc->events_reported;
1078 	kfree(mc);
1079 
1080 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
1081 			 &resp, sizeof(resp)))
1082 		ret = -EFAULT;
1083 out:
1084 	return ret;
1085 }
1086 
ucma_lock_files(struct ucma_file * file1,struct ucma_file * file2)1087 static void ucma_lock_files(struct ucma_file *file1, struct ucma_file *file2)
1088 {
1089 	/* Acquire mutex's based on pointer comparison to prevent deadlock. */
1090 	if (file1 < file2) {
1091 		mutex_lock(&file1->mut);
1092 		mutex_lock(&file2->mut);
1093 	} else {
1094 		mutex_lock(&file2->mut);
1095 		mutex_lock(&file1->mut);
1096 	}
1097 }
1098 
ucma_unlock_files(struct ucma_file * file1,struct ucma_file * file2)1099 static void ucma_unlock_files(struct ucma_file *file1, struct ucma_file *file2)
1100 {
1101 	if (file1 < file2) {
1102 		mutex_unlock(&file2->mut);
1103 		mutex_unlock(&file1->mut);
1104 	} else {
1105 		mutex_unlock(&file1->mut);
1106 		mutex_unlock(&file2->mut);
1107 	}
1108 }
1109 
ucma_move_events(struct ucma_context * ctx,struct ucma_file * file)1110 static void ucma_move_events(struct ucma_context *ctx, struct ucma_file *file)
1111 {
1112 	struct ucma_event *uevent, *tmp;
1113 
1114 	list_for_each_entry_safe(uevent, tmp, &ctx->file->event_list, list)
1115 		if (uevent->ctx == ctx)
1116 			list_move_tail(&uevent->list, &file->event_list);
1117 }
1118 
ucma_migrate_id(struct ucma_file * new_file,const char __user * inbuf,int in_len,int out_len)1119 static ssize_t ucma_migrate_id(struct ucma_file *new_file,
1120 			       const char __user *inbuf,
1121 			       int in_len, int out_len)
1122 {
1123 	struct rdma_ucm_migrate_id cmd;
1124 	struct rdma_ucm_migrate_resp resp;
1125 	struct ucma_context *ctx;
1126 	struct file *filp;
1127 	struct ucma_file *cur_file;
1128 	int ret = 0;
1129 
1130 	if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
1131 		return -EFAULT;
1132 
1133 	/* Get current fd to protect against it being closed */
1134 	filp = fget(cmd.fd);
1135 	if (!filp)
1136 		return -ENOENT;
1137 
1138 	/* Validate current fd and prevent destruction of id. */
1139 	ctx = ucma_get_ctx(filp->private_data, cmd.id);
1140 	if (IS_ERR(ctx)) {
1141 		ret = PTR_ERR(ctx);
1142 		goto file_put;
1143 	}
1144 
1145 	cur_file = ctx->file;
1146 	if (cur_file == new_file) {
1147 		resp.events_reported = ctx->events_reported;
1148 		goto response;
1149 	}
1150 
1151 	/*
1152 	 * Migrate events between fd's, maintaining order, and avoiding new
1153 	 * events being added before existing events.
1154 	 */
1155 	ucma_lock_files(cur_file, new_file);
1156 	mutex_lock(&mut);
1157 
1158 	list_move_tail(&ctx->list, &new_file->ctx_list);
1159 	ucma_move_events(ctx, new_file);
1160 	ctx->file = new_file;
1161 	resp.events_reported = ctx->events_reported;
1162 
1163 	mutex_unlock(&mut);
1164 	ucma_unlock_files(cur_file, new_file);
1165 
1166 response:
1167 	if (copy_to_user((void __user *)(unsigned long)cmd.response,
1168 			 &resp, sizeof(resp)))
1169 		ret = -EFAULT;
1170 
1171 	ucma_put_ctx(ctx);
1172 file_put:
1173 	fput(filp);
1174 	return ret;
1175 }
1176 
1177 static ssize_t (*ucma_cmd_table[])(struct ucma_file *file,
1178 				   const char __user *inbuf,
1179 				   int in_len, int out_len) = {
1180 	[RDMA_USER_CM_CMD_CREATE_ID]	= ucma_create_id,
1181 	[RDMA_USER_CM_CMD_DESTROY_ID]	= ucma_destroy_id,
1182 	[RDMA_USER_CM_CMD_BIND_ADDR]	= ucma_bind_addr,
1183 	[RDMA_USER_CM_CMD_RESOLVE_ADDR]	= ucma_resolve_addr,
1184 	[RDMA_USER_CM_CMD_RESOLVE_ROUTE]= ucma_resolve_route,
1185 	[RDMA_USER_CM_CMD_QUERY_ROUTE]	= ucma_query_route,
1186 	[RDMA_USER_CM_CMD_CONNECT]	= ucma_connect,
1187 	[RDMA_USER_CM_CMD_LISTEN]	= ucma_listen,
1188 	[RDMA_USER_CM_CMD_ACCEPT]	= ucma_accept,
1189 	[RDMA_USER_CM_CMD_REJECT]	= ucma_reject,
1190 	[RDMA_USER_CM_CMD_DISCONNECT]	= ucma_disconnect,
1191 	[RDMA_USER_CM_CMD_INIT_QP_ATTR]	= ucma_init_qp_attr,
1192 	[RDMA_USER_CM_CMD_GET_EVENT]	= ucma_get_event,
1193 	[RDMA_USER_CM_CMD_GET_OPTION]	= NULL,
1194 	[RDMA_USER_CM_CMD_SET_OPTION]	= ucma_set_option,
1195 	[RDMA_USER_CM_CMD_NOTIFY]	= ucma_notify,
1196 	[RDMA_USER_CM_CMD_JOIN_MCAST]	= ucma_join_multicast,
1197 	[RDMA_USER_CM_CMD_LEAVE_MCAST]	= ucma_leave_multicast,
1198 	[RDMA_USER_CM_CMD_MIGRATE_ID]	= ucma_migrate_id
1199 };
1200 
ucma_write(struct file * filp,const char __user * buf,size_t len,loff_t * pos)1201 static ssize_t ucma_write(struct file *filp, const char __user *buf,
1202 			  size_t len, loff_t *pos)
1203 {
1204 	struct ucma_file *file = filp->private_data;
1205 	struct rdma_ucm_cmd_hdr hdr;
1206 	ssize_t ret;
1207 
1208 	if (len < sizeof(hdr))
1209 		return -EINVAL;
1210 
1211 	if (copy_from_user(&hdr, buf, sizeof(hdr)))
1212 		return -EFAULT;
1213 
1214 	if (hdr.cmd < 0 || hdr.cmd >= ARRAY_SIZE(ucma_cmd_table))
1215 		return -EINVAL;
1216 
1217 	if (hdr.in + sizeof(hdr) > len)
1218 		return -EINVAL;
1219 
1220 	if (!ucma_cmd_table[hdr.cmd])
1221 		return -ENOSYS;
1222 
1223 	ret = ucma_cmd_table[hdr.cmd](file, buf + sizeof(hdr), hdr.in, hdr.out);
1224 	if (!ret)
1225 		ret = len;
1226 
1227 	return ret;
1228 }
1229 
ucma_poll(struct file * filp,struct poll_table_struct * wait)1230 static unsigned int ucma_poll(struct file *filp, struct poll_table_struct *wait)
1231 {
1232 	struct ucma_file *file = filp->private_data;
1233 	unsigned int mask = 0;
1234 
1235 	poll_wait(filp, &file->poll_wait, wait);
1236 
1237 	if (!list_empty(&file->event_list))
1238 		mask = POLLIN | POLLRDNORM;
1239 
1240 	return mask;
1241 }
1242 
1243 /*
1244  * ucma_open() does not need the BKL:
1245  *
1246  *  - no global state is referred to;
1247  *  - there is no ioctl method to race against;
1248  *  - no further module initialization is required for open to work
1249  *    after the device is registered.
1250  */
ucma_open(struct inode * inode,struct file * filp)1251 static int ucma_open(struct inode *inode, struct file *filp)
1252 {
1253 	struct ucma_file *file;
1254 
1255 	file = kmalloc(sizeof *file, GFP_KERNEL);
1256 	if (!file)
1257 		return -ENOMEM;
1258 
1259 	INIT_LIST_HEAD(&file->event_list);
1260 	INIT_LIST_HEAD(&file->ctx_list);
1261 	init_waitqueue_head(&file->poll_wait);
1262 	mutex_init(&file->mut);
1263 
1264 	filp->private_data = file;
1265 	file->filp = filp;
1266 	return 0;
1267 }
1268 
ucma_close(struct inode * inode,struct file * filp)1269 static int ucma_close(struct inode *inode, struct file *filp)
1270 {
1271 	struct ucma_file *file = filp->private_data;
1272 	struct ucma_context *ctx, *tmp;
1273 
1274 	mutex_lock(&file->mut);
1275 	list_for_each_entry_safe(ctx, tmp, &file->ctx_list, list) {
1276 		mutex_unlock(&file->mut);
1277 
1278 		mutex_lock(&mut);
1279 		idr_remove(&ctx_idr, ctx->id);
1280 		mutex_unlock(&mut);
1281 
1282 		ucma_free_ctx(ctx);
1283 		mutex_lock(&file->mut);
1284 	}
1285 	mutex_unlock(&file->mut);
1286 	kfree(file);
1287 	return 0;
1288 }
1289 
1290 static long
ucma_ioctl(struct file * filp,unsigned int cmd,unsigned long arg)1291 ucma_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1292 {
1293 
1294 	switch (cmd) {
1295 	case FIONBIO:
1296 	case FIOASYNC:
1297 		return (0);
1298 	default:
1299 		return (-ENOTTY);
1300 	}
1301 }
1302 
1303 static const struct file_operations ucma_fops = {
1304 	.owner 	 = THIS_MODULE,
1305 	.open 	 = ucma_open,
1306 	.release = ucma_close,
1307 	.write	 = ucma_write,
1308 	.unlocked_ioctl = ucma_ioctl,
1309 	.poll    = ucma_poll,
1310 };
1311 
1312 static struct miscdevice ucma_misc = {
1313 	.minor	= MISC_DYNAMIC_MINOR,
1314 	.name	= "rdma_cm",
1315 	.fops	= &ucma_fops,
1316 };
1317 
show_abi_version(struct device * dev,struct device_attribute * attr,char * buf)1318 static ssize_t show_abi_version(struct device *dev,
1319 				struct device_attribute *attr,
1320 				char *buf)
1321 {
1322 	return sprintf(buf, "%d\n", RDMA_USER_CM_ABI_VERSION);
1323 }
1324 static DEVICE_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);
1325 
ucma_init(void)1326 static int __init ucma_init(void)
1327 {
1328 	int ret;
1329 
1330 	ret = misc_register(&ucma_misc);
1331 	if (ret)
1332 		return ret;
1333 
1334 	ret = device_create_file(ucma_misc.this_device, &dev_attr_abi_version);
1335 	if (ret) {
1336 		printk(KERN_ERR "rdma_ucm: couldn't create abi_version attr\n");
1337 		goto err;
1338 	}
1339 	return 0;
1340 err:
1341 	misc_deregister(&ucma_misc);
1342 	return ret;
1343 }
1344 
ucma_cleanup(void)1345 static void __exit ucma_cleanup(void)
1346 {
1347 	device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
1348 	misc_deregister(&ucma_misc);
1349 	idr_destroy(&ctx_idr);
1350 }
1351 
1352 module_init(ucma_init);
1353 module_exit(ucma_cleanup);
1354