xref: /linux/drivers/dma-buf/dma-buf.c (revision 4a57e0913e8c7fff407e97909f4ae48caa84d612)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Framework for buffer objects that can be shared across devices/subsystems.
4  *
5  * Copyright(C) 2011 Linaro Limited. All rights reserved.
6  * Author: Sumit Semwal <sumit.semwal@ti.com>
7  *
8  * Many thanks to linaro-mm-sig list, and specially
9  * Arnd Bergmann <arnd@arndb.de>, Rob Clark <rob@ti.com> and
10  * Daniel Vetter <daniel@ffwll.ch> for their support in creation and
11  * refining of this idea.
12  */
13 
14 #include <linux/fs.h>
15 #include <linux/slab.h>
16 #include <linux/dma-buf.h>
17 #include <linux/dma-fence.h>
18 #include <linux/dma-fence-unwrap.h>
19 #include <linux/anon_inodes.h>
20 #include <linux/export.h>
21 #include <linux/debugfs.h>
22 #include <linux/list.h>
23 #include <linux/module.h>
24 #include <linux/mutex.h>
25 #include <linux/seq_file.h>
26 #include <linux/sync_file.h>
27 #include <linux/poll.h>
28 #include <linux/dma-resv.h>
29 #include <linux/mm.h>
30 #include <linux/mount.h>
31 #include <linux/pseudo_fs.h>
32 
33 #include <uapi/linux/dma-buf.h>
34 #include <uapi/linux/magic.h>
35 
36 #define CREATE_TRACE_POINTS
37 #include <trace/events/dma_buf.h>
38 
39 /*
40  * dmabuf->name must be accessed with holding dmabuf->name_lock.
41  * we need to take the lock around the tracepoint call itself where
42  * it is called in the code.
43  *
44  * Note: FUNC##_enabled() is a static branch that will only
45  *       be set when the trace event is enabled.
46  */
47 #define DMA_BUF_TRACE(FUNC, ...)					\
48 	do {								\
49 		/* Always expose lock if lockdep is enabled */		\
50 		if (IS_ENABLED(CONFIG_LOCKDEP) || FUNC##_enabled()) {	\
51 			guard(spinlock)(&dmabuf->name_lock);		\
52 			FUNC(__VA_ARGS__);				\
53 		}							\
54 	} while (0)
55 
56 /* Wrapper to hide the sg_table page link from the importer */
57 struct dma_buf_sg_table_wrapper {
58 	struct sg_table *original;
59 	struct sg_table wrapper;
60 };
61 
62 static inline int is_dma_buf_file(struct file *);
63 
64 static DEFINE_MUTEX(dmabuf_list_mutex);
65 static LIST_HEAD(dmabuf_list);
66 
67 static void __dma_buf_list_add(struct dma_buf *dmabuf)
68 {
69 	mutex_lock(&dmabuf_list_mutex);
70 	list_add(&dmabuf->list_node, &dmabuf_list);
71 	mutex_unlock(&dmabuf_list_mutex);
72 }
73 
74 static void __dma_buf_list_del(struct dma_buf *dmabuf)
75 {
76 	if (!dmabuf)
77 		return;
78 
79 	mutex_lock(&dmabuf_list_mutex);
80 	list_del(&dmabuf->list_node);
81 	mutex_unlock(&dmabuf_list_mutex);
82 }
83 
84 /**
85  * dma_buf_iter_begin - begin iteration through global list of all DMA buffers
86  *
87  * Returns the first buffer in the global list of DMA-bufs that's not in the
88  * process of being destroyed. Increments that buffer's reference count to
89  * prevent buffer destruction. Callers must release the reference, either by
90  * continuing iteration with dma_buf_iter_next(), or with dma_buf_put().
91  *
92  * Return:
93  * * First buffer from global list, with refcount elevated
94  * * NULL if no active buffers are present
95  */
96 struct dma_buf *dma_buf_iter_begin(void)
97 {
98 	struct dma_buf *ret = NULL, *dmabuf;
99 
100 	/*
101 	 * The list mutex does not protect a dmabuf's refcount, so it can be
102 	 * zeroed while we are iterating. We cannot call get_dma_buf() since the
103 	 * caller may not already own a reference to the buffer.
104 	 */
105 	mutex_lock(&dmabuf_list_mutex);
106 	list_for_each_entry(dmabuf, &dmabuf_list, list_node) {
107 		if (file_ref_get(&dmabuf->file->f_ref)) {
108 			ret = dmabuf;
109 			break;
110 		}
111 	}
112 	mutex_unlock(&dmabuf_list_mutex);
113 	return ret;
114 }
115 
116 /**
117  * dma_buf_iter_next - continue iteration through global list of all DMA buffers
118  * @dmabuf:	[in]	pointer to dma_buf
119  *
120  * Decrements the reference count on the provided buffer. Returns the next
121  * buffer from the remainder of the global list of DMA-bufs with its reference
122  * count incremented. Callers must release the reference, either by continuing
123  * iteration with dma_buf_iter_next(), or with dma_buf_put().
124  *
125  * Return:
126  * * Next buffer from global list, with refcount elevated
127  * * NULL if no additional active buffers are present
128  */
129 struct dma_buf *dma_buf_iter_next(struct dma_buf *dmabuf)
130 {
131 	struct dma_buf *ret = NULL;
132 
133 	/*
134 	 * The list mutex does not protect a dmabuf's refcount, so it can be
135 	 * zeroed while we are iterating. We cannot call get_dma_buf() since the
136 	 * caller may not already own a reference to the buffer.
137 	 */
138 	mutex_lock(&dmabuf_list_mutex);
139 	dma_buf_put(dmabuf);
140 	list_for_each_entry_continue(dmabuf, &dmabuf_list, list_node) {
141 		if (file_ref_get(&dmabuf->file->f_ref)) {
142 			ret = dmabuf;
143 			break;
144 		}
145 	}
146 	mutex_unlock(&dmabuf_list_mutex);
147 	return ret;
148 }
149 
150 static char *dmabuffs_dname(struct dentry *dentry, char *buffer, int buflen)
151 {
152 	struct dma_buf *dmabuf;
153 	char name[DMA_BUF_NAME_LEN];
154 	ssize_t ret = 0;
155 
156 	dmabuf = dentry->d_fsdata;
157 	spin_lock(&dmabuf->name_lock);
158 	if (dmabuf->name)
159 		ret = strscpy(name, dmabuf->name, sizeof(name));
160 	spin_unlock(&dmabuf->name_lock);
161 
162 	return dynamic_dname(buffer, buflen, "/%s:%s",
163 			     dentry->d_name.name, ret > 0 ? name : "");
164 }
165 
166 static void dma_buf_release(struct dentry *dentry)
167 {
168 	struct dma_buf *dmabuf;
169 
170 	dmabuf = dentry->d_fsdata;
171 	if (unlikely(!dmabuf))
172 		return;
173 
174 	BUG_ON(dmabuf->vmapping_counter);
175 
176 	/*
177 	 * If you hit this BUG() it could mean:
178 	 * * There's a file reference imbalance in dma_buf_poll / dma_buf_poll_cb or somewhere else
179 	 * * dmabuf->cb_in/out.active are non-0 despite no pending fence callback
180 	 */
181 	BUG_ON(dmabuf->cb_in.active || dmabuf->cb_out.active);
182 
183 	dmabuf->ops->release(dmabuf);
184 
185 	if (dmabuf->resv == (struct dma_resv *)&dmabuf[1])
186 		dma_resv_fini(dmabuf->resv);
187 
188 	WARN_ON(!list_empty(&dmabuf->attachments));
189 	module_put(dmabuf->owner);
190 	kfree(dmabuf->name);
191 	kfree(dmabuf);
192 }
193 
194 static int dma_buf_file_release(struct inode *inode, struct file *file)
195 {
196 	if (!is_dma_buf_file(file))
197 		return -EINVAL;
198 
199 	__dma_buf_list_del(file->private_data);
200 
201 	return 0;
202 }
203 
204 static const struct dentry_operations dma_buf_dentry_ops = {
205 	.d_dname = dmabuffs_dname,
206 	.d_release = dma_buf_release,
207 };
208 
209 static struct vfsmount *dma_buf_mnt;
210 
211 static int dma_buf_fs_init_context(struct fs_context *fc)
212 {
213 	struct pseudo_fs_context *ctx;
214 
215 	ctx = init_pseudo(fc, DMA_BUF_MAGIC);
216 	if (!ctx)
217 		return -ENOMEM;
218 	ctx->dops = &dma_buf_dentry_ops;
219 	return 0;
220 }
221 
222 static struct file_system_type dma_buf_fs_type = {
223 	.name = "dmabuf",
224 	.init_fs_context = dma_buf_fs_init_context,
225 	.kill_sb = kill_anon_super,
226 };
227 
228 static int dma_buf_mmap_internal(struct file *file, struct vm_area_struct *vma)
229 {
230 	struct dma_buf *dmabuf;
231 
232 	if (!is_dma_buf_file(file))
233 		return -EINVAL;
234 
235 	dmabuf = file->private_data;
236 
237 	/* check if buffer supports mmap */
238 	if (!dmabuf->ops->mmap)
239 		return -EINVAL;
240 
241 	/* check for overflowing the buffer's size */
242 	if (vma->vm_pgoff + vma_pages(vma) >
243 	    dmabuf->size >> PAGE_SHIFT)
244 		return -EINVAL;
245 
246 	DMA_BUF_TRACE(trace_dma_buf_mmap_internal, dmabuf);
247 
248 	return dmabuf->ops->mmap(dmabuf, vma);
249 }
250 
251 static loff_t dma_buf_llseek(struct file *file, loff_t offset, int whence)
252 {
253 	struct dma_buf *dmabuf;
254 	loff_t base;
255 
256 	if (!is_dma_buf_file(file))
257 		return -EBADF;
258 
259 	dmabuf = file->private_data;
260 
261 	/* only support discovering the end of the buffer,
262 	 * but also allow SEEK_SET to maintain the idiomatic
263 	 * SEEK_END(0), SEEK_CUR(0) pattern.
264 	 */
265 	if (whence == SEEK_END)
266 		base = dmabuf->size;
267 	else if (whence == SEEK_SET)
268 		base = 0;
269 	else
270 		return -EINVAL;
271 
272 	if (offset != 0)
273 		return -EINVAL;
274 
275 	return base + offset;
276 }
277 
278 /**
279  * DOC: implicit fence polling
280  *
281  * To support cross-device and cross-driver synchronization of buffer access
282  * implicit fences (represented internally in the kernel with &struct dma_fence)
283  * can be attached to a &dma_buf. The glue for that and a few related things are
284  * provided in the &dma_resv structure.
285  *
286  * Userspace can query the state of these implicitly tracked fences using poll()
287  * and related system calls:
288  *
289  * - Checking for EPOLLIN, i.e. read access, can be use to query the state of the
290  *   most recent write or exclusive fence.
291  *
292  * - Checking for EPOLLOUT, i.e. write access, can be used to query the state of
293  *   all attached fences, shared and exclusive ones.
294  *
295  * Note that this only signals the completion of the respective fences, i.e. the
296  * DMA transfers are complete. Cache flushing and any other necessary
297  * preparations before CPU access can begin still need to happen.
298  *
299  * As an alternative to poll(), the set of fences on DMA buffer can be
300  * exported as a &sync_file using &dma_buf_sync_file_export.
301  */
302 
303 static void dma_buf_poll_cb(struct dma_fence *fence, struct dma_fence_cb *cb)
304 {
305 	struct dma_buf_poll_cb_t *dcb = (struct dma_buf_poll_cb_t *)cb;
306 	struct dma_buf *dmabuf = container_of(dcb->poll, struct dma_buf, poll);
307 	unsigned long flags;
308 
309 	spin_lock_irqsave(&dcb->poll->lock, flags);
310 	wake_up_locked_poll(dcb->poll, dcb->active);
311 	dcb->active = 0;
312 	spin_unlock_irqrestore(&dcb->poll->lock, flags);
313 	dma_fence_put(fence);
314 	/* Paired with get_file in dma_buf_poll */
315 	fput(dmabuf->file);
316 }
317 
318 static bool dma_buf_poll_add_cb(struct dma_resv *resv, bool write,
319 				struct dma_buf_poll_cb_t *dcb)
320 {
321 	struct dma_resv_iter cursor;
322 	struct dma_fence *fence;
323 	int r;
324 
325 	dma_resv_for_each_fence(&cursor, resv, dma_resv_usage_rw(write),
326 				fence) {
327 		dma_fence_get(fence);
328 		r = dma_fence_add_callback(fence, &dcb->cb, dma_buf_poll_cb);
329 		if (!r)
330 			return true;
331 		dma_fence_put(fence);
332 	}
333 
334 	return false;
335 }
336 
337 static __poll_t dma_buf_poll(struct file *file, poll_table *poll)
338 {
339 	struct dma_buf *dmabuf;
340 	struct dma_resv *resv;
341 	__poll_t events;
342 
343 	dmabuf = file->private_data;
344 	if (!dmabuf || !dmabuf->resv)
345 		return EPOLLERR;
346 
347 	resv = dmabuf->resv;
348 
349 	poll_wait(file, &dmabuf->poll, poll);
350 
351 	events = poll_requested_events(poll) & (EPOLLIN | EPOLLOUT);
352 	if (!events)
353 		return 0;
354 
355 	dma_resv_lock(resv, NULL);
356 
357 	if (events & EPOLLOUT) {
358 		struct dma_buf_poll_cb_t *dcb = &dmabuf->cb_out;
359 
360 		/* Check that callback isn't busy */
361 		spin_lock_irq(&dmabuf->poll.lock);
362 		if (dcb->active)
363 			events &= ~EPOLLOUT;
364 		else
365 			dcb->active = EPOLLOUT;
366 		spin_unlock_irq(&dmabuf->poll.lock);
367 
368 		if (events & EPOLLOUT) {
369 			/* Paired with fput in dma_buf_poll_cb */
370 			get_file(dmabuf->file);
371 
372 			if (!dma_buf_poll_add_cb(resv, true, dcb))
373 				/* No callback queued, wake up any other waiters */
374 				dma_buf_poll_cb(NULL, &dcb->cb);
375 			else
376 				events &= ~EPOLLOUT;
377 		}
378 	}
379 
380 	if (events & EPOLLIN) {
381 		struct dma_buf_poll_cb_t *dcb = &dmabuf->cb_in;
382 
383 		/* Check that callback isn't busy */
384 		spin_lock_irq(&dmabuf->poll.lock);
385 		if (dcb->active)
386 			events &= ~EPOLLIN;
387 		else
388 			dcb->active = EPOLLIN;
389 		spin_unlock_irq(&dmabuf->poll.lock);
390 
391 		if (events & EPOLLIN) {
392 			/* Paired with fput in dma_buf_poll_cb */
393 			get_file(dmabuf->file);
394 
395 			if (!dma_buf_poll_add_cb(resv, false, dcb))
396 				/* No callback queued, wake up any other waiters */
397 				dma_buf_poll_cb(NULL, &dcb->cb);
398 			else
399 				events &= ~EPOLLIN;
400 		}
401 	}
402 
403 	dma_resv_unlock(resv);
404 	return events;
405 }
406 
407 /**
408  * dma_buf_set_name - Set a name to a specific dma_buf to track the usage.
409  * It could support changing the name of the dma-buf if the same
410  * piece of memory is used for multiple purpose between different devices.
411  *
412  * @dmabuf: [in]     dmabuf buffer that will be renamed.
413  * @buf:    [in]     A piece of userspace memory that contains the name of
414  *                   the dma-buf.
415  *
416  * Returns 0 on success. If the dma-buf buffer is already attached to
417  * devices, return -EBUSY.
418  *
419  */
420 static long dma_buf_set_name(struct dma_buf *dmabuf, const char __user *buf)
421 {
422 	char *name = strndup_user(buf, DMA_BUF_NAME_LEN);
423 
424 	if (IS_ERR(name))
425 		return PTR_ERR(name);
426 
427 	spin_lock(&dmabuf->name_lock);
428 	kfree(dmabuf->name);
429 	dmabuf->name = name;
430 	spin_unlock(&dmabuf->name_lock);
431 
432 	return 0;
433 }
434 
435 #if IS_ENABLED(CONFIG_SYNC_FILE)
436 static long dma_buf_export_sync_file(struct dma_buf *dmabuf,
437 				     void __user *user_data)
438 {
439 	struct dma_buf_export_sync_file arg;
440 	enum dma_resv_usage usage;
441 	struct dma_fence *fence = NULL;
442 	struct sync_file *sync_file;
443 	int fd, ret;
444 
445 	if (copy_from_user(&arg, user_data, sizeof(arg)))
446 		return -EFAULT;
447 
448 	if (arg.flags & ~DMA_BUF_SYNC_RW)
449 		return -EINVAL;
450 
451 	if ((arg.flags & DMA_BUF_SYNC_RW) == 0)
452 		return -EINVAL;
453 
454 	fd = get_unused_fd_flags(O_CLOEXEC);
455 	if (fd < 0)
456 		return fd;
457 
458 	usage = dma_resv_usage_rw(arg.flags & DMA_BUF_SYNC_WRITE);
459 	ret = dma_resv_get_singleton(dmabuf->resv, usage, &fence);
460 	if (ret)
461 		goto err_put_fd;
462 
463 	if (!fence)
464 		fence = dma_fence_get_stub();
465 
466 	sync_file = sync_file_create(fence);
467 
468 	dma_fence_put(fence);
469 
470 	if (!sync_file) {
471 		ret = -ENOMEM;
472 		goto err_put_fd;
473 	}
474 
475 	arg.fd = fd;
476 	if (copy_to_user(user_data, &arg, sizeof(arg))) {
477 		ret = -EFAULT;
478 		goto err_put_file;
479 	}
480 
481 	fd_install(fd, sync_file->file);
482 
483 	return 0;
484 
485 err_put_file:
486 	fput(sync_file->file);
487 err_put_fd:
488 	put_unused_fd(fd);
489 	return ret;
490 }
491 
492 static long dma_buf_import_sync_file(struct dma_buf *dmabuf,
493 				     const void __user *user_data)
494 {
495 	struct dma_buf_import_sync_file arg;
496 	struct dma_fence *fence, *f;
497 	enum dma_resv_usage usage;
498 	struct dma_fence_unwrap iter;
499 	unsigned int num_fences;
500 	int ret = 0;
501 
502 	if (copy_from_user(&arg, user_data, sizeof(arg)))
503 		return -EFAULT;
504 
505 	if (arg.flags & ~DMA_BUF_SYNC_RW)
506 		return -EINVAL;
507 
508 	if ((arg.flags & DMA_BUF_SYNC_RW) == 0)
509 		return -EINVAL;
510 
511 	fence = sync_file_get_fence(arg.fd);
512 	if (!fence)
513 		return -EINVAL;
514 
515 	usage = (arg.flags & DMA_BUF_SYNC_WRITE) ? DMA_RESV_USAGE_WRITE :
516 						   DMA_RESV_USAGE_READ;
517 
518 	num_fences = 0;
519 	dma_fence_unwrap_for_each(f, &iter, fence)
520 		++num_fences;
521 
522 	if (num_fences > 0) {
523 		dma_resv_lock(dmabuf->resv, NULL);
524 
525 		ret = dma_resv_reserve_fences(dmabuf->resv, num_fences);
526 		if (!ret) {
527 			dma_fence_unwrap_for_each(f, &iter, fence)
528 				dma_resv_add_fence(dmabuf->resv, f, usage);
529 		}
530 
531 		dma_resv_unlock(dmabuf->resv);
532 	}
533 
534 	dma_fence_put(fence);
535 
536 	return ret;
537 }
538 #endif
539 
540 static long dma_buf_ioctl(struct file *file,
541 			  unsigned int cmd, unsigned long arg)
542 {
543 	struct dma_buf *dmabuf;
544 	struct dma_buf_sync sync;
545 	enum dma_data_direction direction;
546 	int ret;
547 
548 	dmabuf = file->private_data;
549 
550 	switch (cmd) {
551 	case DMA_BUF_IOCTL_SYNC:
552 		if (copy_from_user(&sync, (void __user *) arg, sizeof(sync)))
553 			return -EFAULT;
554 
555 		if (sync.flags & ~DMA_BUF_SYNC_VALID_FLAGS_MASK)
556 			return -EINVAL;
557 
558 		switch (sync.flags & DMA_BUF_SYNC_RW) {
559 		case DMA_BUF_SYNC_READ:
560 			direction = DMA_FROM_DEVICE;
561 			break;
562 		case DMA_BUF_SYNC_WRITE:
563 			direction = DMA_TO_DEVICE;
564 			break;
565 		case DMA_BUF_SYNC_RW:
566 			direction = DMA_BIDIRECTIONAL;
567 			break;
568 		default:
569 			return -EINVAL;
570 		}
571 
572 		if (sync.flags & DMA_BUF_SYNC_END)
573 			ret = dma_buf_end_cpu_access(dmabuf, direction);
574 		else
575 			ret = dma_buf_begin_cpu_access(dmabuf, direction);
576 
577 		return ret;
578 
579 	case DMA_BUF_SET_NAME_A:
580 	case DMA_BUF_SET_NAME_B:
581 		return dma_buf_set_name(dmabuf, (const char __user *)arg);
582 
583 #if IS_ENABLED(CONFIG_SYNC_FILE)
584 	case DMA_BUF_IOCTL_EXPORT_SYNC_FILE:
585 		return dma_buf_export_sync_file(dmabuf, (void __user *)arg);
586 	case DMA_BUF_IOCTL_IMPORT_SYNC_FILE:
587 		return dma_buf_import_sync_file(dmabuf, (const void __user *)arg);
588 #endif
589 
590 	default:
591 		return -ENOTTY;
592 	}
593 }
594 
595 static void dma_buf_show_fdinfo(struct seq_file *m, struct file *file)
596 {
597 	struct dma_buf *dmabuf = file->private_data;
598 
599 	seq_printf(m, "size:\t%zu\n", dmabuf->size);
600 	/* Don't count the temporary reference taken inside procfs seq_show */
601 	seq_printf(m, "count:\t%ld\n", file_count(dmabuf->file) - 1);
602 	seq_printf(m, "exp_name:\t%s\n", dmabuf->exp_name);
603 	spin_lock(&dmabuf->name_lock);
604 	if (dmabuf->name)
605 		seq_printf(m, "name:\t%s\n", dmabuf->name);
606 	spin_unlock(&dmabuf->name_lock);
607 }
608 
609 static const struct file_operations dma_buf_fops = {
610 	.release	= dma_buf_file_release,
611 	.mmap		= dma_buf_mmap_internal,
612 	.llseek		= dma_buf_llseek,
613 	.poll		= dma_buf_poll,
614 	.unlocked_ioctl	= dma_buf_ioctl,
615 	.compat_ioctl	= compat_ptr_ioctl,
616 	.show_fdinfo	= dma_buf_show_fdinfo,
617 };
618 
619 /*
620  * is_dma_buf_file - Check if struct file* is associated with dma_buf
621  */
622 static inline int is_dma_buf_file(struct file *file)
623 {
624 	return file->f_op == &dma_buf_fops;
625 }
626 
627 static struct file *dma_buf_getfile(size_t size, int flags)
628 {
629 	static atomic64_t dmabuf_inode = ATOMIC64_INIT(0);
630 	struct inode *inode = alloc_anon_inode(dma_buf_mnt->mnt_sb);
631 	struct file *file;
632 
633 	if (IS_ERR(inode))
634 		return ERR_CAST(inode);
635 
636 	inode->i_size = size;
637 	inode_set_bytes(inode, size);
638 
639 	/*
640 	 * The ->i_ino acquired from get_next_ino() is not unique thus
641 	 * not suitable for using it as dentry name by dmabuf stats.
642 	 * Override ->i_ino with the unique and dmabuffs specific
643 	 * value.
644 	 */
645 	inode->i_ino = atomic64_inc_return(&dmabuf_inode);
646 	flags &= O_ACCMODE | O_NONBLOCK;
647 	file = alloc_file_pseudo(inode, dma_buf_mnt, "dmabuf",
648 				 flags, &dma_buf_fops);
649 	if (IS_ERR(file))
650 		goto err_alloc_file;
651 
652 	return file;
653 
654 err_alloc_file:
655 	iput(inode);
656 	return file;
657 }
658 
659 /**
660  * DOC: dma buf device access
661  *
662  * For device DMA access to a shared DMA buffer the usual sequence of operations
663  * is fairly simple:
664  *
665  * 1. The exporter defines his exporter instance using
666  *    DEFINE_DMA_BUF_EXPORT_INFO() and calls dma_buf_export() to wrap a private
667  *    buffer object into a &dma_buf. It then exports that &dma_buf to userspace
668  *    as a file descriptor by calling dma_buf_fd().
669  *
670  * 2. Userspace passes this file-descriptors to all drivers it wants this buffer
671  *    to share with: First the file descriptor is converted to a &dma_buf using
672  *    dma_buf_get(). Then the buffer is attached to the device using
673  *    dma_buf_attach().
674  *
675  *    Up to this stage the exporter is still free to migrate or reallocate the
676  *    backing storage.
677  *
678  * 3. Once the buffer is attached to all devices userspace can initiate DMA
679  *    access to the shared buffer. In the kernel this is done by calling
680  *    dma_buf_map_attachment() and dma_buf_unmap_attachment().
681  *
682  * 4. Once a driver is done with a shared buffer it needs to call
683  *    dma_buf_detach() (after cleaning up any mappings) and then release the
684  *    reference acquired with dma_buf_get() by calling dma_buf_put().
685  *
686  * For the detailed semantics exporters are expected to implement see
687  * &dma_buf_ops.
688  */
689 
690 /**
691  * dma_buf_export - Creates a new dma_buf, and associates an anon file
692  * with this buffer, so it can be exported.
693  * Also connect the allocator specific data and ops to the buffer.
694  * Additionally, provide a name string for exporter; useful in debugging.
695  *
696  * @exp_info:	[in]	holds all the export related information provided
697  *			by the exporter. see &struct dma_buf_export_info
698  *			for further details.
699  *
700  * Returns, on success, a newly created struct dma_buf object, which wraps the
701  * supplied private data and operations for struct dma_buf_ops. On either
702  * missing ops, or error in allocating struct dma_buf, will return negative
703  * error.
704  *
705  * For most cases the easiest way to create @exp_info is through the
706  * %DEFINE_DMA_BUF_EXPORT_INFO macro.
707  */
708 struct dma_buf *dma_buf_export(const struct dma_buf_export_info *exp_info)
709 {
710 	struct dma_buf *dmabuf;
711 	struct dma_resv *resv = exp_info->resv;
712 	struct file *file;
713 	size_t alloc_size = sizeof(struct dma_buf);
714 	int ret;
715 
716 	if (WARN_ON(!exp_info->priv || !exp_info->ops
717 		    || !exp_info->ops->map_dma_buf
718 		    || !exp_info->ops->unmap_dma_buf
719 		    || !exp_info->ops->release))
720 		return ERR_PTR(-EINVAL);
721 
722 	if (WARN_ON(!exp_info->ops->pin != !exp_info->ops->unpin))
723 		return ERR_PTR(-EINVAL);
724 
725 	if (!try_module_get(exp_info->owner))
726 		return ERR_PTR(-ENOENT);
727 
728 	file = dma_buf_getfile(exp_info->size, exp_info->flags);
729 	if (IS_ERR(file)) {
730 		ret = PTR_ERR(file);
731 		goto err_module;
732 	}
733 
734 	if (!exp_info->resv)
735 		alloc_size += sizeof(struct dma_resv);
736 	else
737 		/* prevent &dma_buf[1] == dma_buf->resv */
738 		alloc_size += 1;
739 	dmabuf = kzalloc(alloc_size, GFP_KERNEL);
740 	if (!dmabuf) {
741 		ret = -ENOMEM;
742 		goto err_file;
743 	}
744 
745 	dmabuf->priv = exp_info->priv;
746 	dmabuf->ops = exp_info->ops;
747 	dmabuf->size = exp_info->size;
748 	dmabuf->exp_name = exp_info->exp_name;
749 	dmabuf->owner = exp_info->owner;
750 	spin_lock_init(&dmabuf->name_lock);
751 	init_waitqueue_head(&dmabuf->poll);
752 	dmabuf->cb_in.poll = dmabuf->cb_out.poll = &dmabuf->poll;
753 	dmabuf->cb_in.active = dmabuf->cb_out.active = 0;
754 	INIT_LIST_HEAD(&dmabuf->attachments);
755 
756 	if (!resv) {
757 		dmabuf->resv = (struct dma_resv *)&dmabuf[1];
758 		dma_resv_init(dmabuf->resv);
759 	} else {
760 		dmabuf->resv = resv;
761 	}
762 
763 	file->private_data = dmabuf;
764 	file->f_path.dentry->d_fsdata = dmabuf;
765 	dmabuf->file = file;
766 
767 	__dma_buf_list_add(dmabuf);
768 
769 	DMA_BUF_TRACE(trace_dma_buf_export, dmabuf);
770 
771 	return dmabuf;
772 
773 err_file:
774 	fput(file);
775 err_module:
776 	module_put(exp_info->owner);
777 	return ERR_PTR(ret);
778 }
779 EXPORT_SYMBOL_NS_GPL(dma_buf_export, "DMA_BUF");
780 
781 /**
782  * dma_buf_fd - returns a file descriptor for the given struct dma_buf
783  * @dmabuf:	[in]	pointer to dma_buf for which fd is required.
784  * @flags:      [in]    flags to give to fd
785  *
786  * On success, returns an associated 'fd'. Else, returns error.
787  */
788 int dma_buf_fd(struct dma_buf *dmabuf, int flags)
789 {
790 	int fd;
791 
792 	if (!dmabuf || !dmabuf->file)
793 		return -EINVAL;
794 
795 	fd = FD_ADD(flags, dmabuf->file);
796 	DMA_BUF_TRACE(trace_dma_buf_fd, dmabuf, fd);
797 
798 	return fd;
799 }
800 EXPORT_SYMBOL_NS_GPL(dma_buf_fd, "DMA_BUF");
801 
802 /**
803  * dma_buf_get - returns the struct dma_buf related to an fd
804  * @fd:	[in]	fd associated with the struct dma_buf to be returned
805  *
806  * On success, returns the struct dma_buf associated with an fd; uses
807  * file's refcounting done by fget to increase refcount. returns ERR_PTR
808  * otherwise.
809  */
810 struct dma_buf *dma_buf_get(int fd)
811 {
812 	struct file *file;
813 	struct dma_buf *dmabuf;
814 
815 	file = fget(fd);
816 
817 	if (!file)
818 		return ERR_PTR(-EBADF);
819 
820 	if (!is_dma_buf_file(file)) {
821 		fput(file);
822 		return ERR_PTR(-EINVAL);
823 	}
824 
825 	dmabuf = file->private_data;
826 
827 	DMA_BUF_TRACE(trace_dma_buf_get, dmabuf, fd);
828 
829 	return dmabuf;
830 }
831 EXPORT_SYMBOL_NS_GPL(dma_buf_get, "DMA_BUF");
832 
833 /**
834  * dma_buf_put - decreases refcount of the buffer
835  * @dmabuf:	[in]	buffer to reduce refcount of
836  *
837  * Uses file's refcounting done implicitly by fput().
838  *
839  * If, as a result of this call, the refcount becomes 0, the 'release' file
840  * operation related to this fd is called. It calls &dma_buf_ops.release vfunc
841  * in turn, and frees the memory allocated for dmabuf when exported.
842  */
843 void dma_buf_put(struct dma_buf *dmabuf)
844 {
845 	if (WARN_ON(!dmabuf || !dmabuf->file))
846 		return;
847 
848 	fput(dmabuf->file);
849 
850 	DMA_BUF_TRACE(trace_dma_buf_put, dmabuf);
851 }
852 EXPORT_SYMBOL_NS_GPL(dma_buf_put, "DMA_BUF");
853 
854 static int dma_buf_wrap_sg_table(struct sg_table **sg_table)
855 {
856 	struct scatterlist *to_sg, *from_sg;
857 	struct sg_table *from = *sg_table;
858 	struct dma_buf_sg_table_wrapper *to;
859 	int i, ret;
860 
861 	if (!IS_ENABLED(CONFIG_DMABUF_DEBUG))
862 		return 0;
863 
864 	/*
865 	 * To catch abuse of the underlying struct page by importers copy the
866 	 * sg_table without copying the page_link and give only the copy back to
867 	 * the importer.
868 	 */
869 	to = kzalloc_obj(*to);
870 	if (!to)
871 		return -ENOMEM;
872 
873 	ret = sg_alloc_table(&to->wrapper, from->nents, GFP_KERNEL);
874 	if (ret)
875 		goto free_to;
876 
877 	to_sg = to->wrapper.sgl;
878 	for_each_sgtable_dma_sg(from, from_sg, i) {
879 		to_sg->offset = 0;
880 		to_sg->length = 0;
881 		sg_assign_page(to_sg, NULL);
882 		sg_dma_address(to_sg) = sg_dma_address(from_sg);
883 		sg_dma_len(to_sg) = sg_dma_len(from_sg);
884 		to_sg = sg_next(to_sg);
885 	}
886 
887 	to->original = from;
888 	*sg_table = &to->wrapper;
889 	return 0;
890 
891 free_to:
892 	kfree(to);
893 	return ret;
894 }
895 
896 static void dma_buf_unwrap_sg_table(struct sg_table **sg_table)
897 {
898 	struct dma_buf_sg_table_wrapper *copy;
899 
900 	if (!IS_ENABLED(CONFIG_DMABUF_DEBUG))
901 		return;
902 
903 	copy = container_of(*sg_table, typeof(*copy), wrapper);
904 	*sg_table = copy->original;
905 	sg_free_table(&copy->wrapper);
906 	kfree(copy);
907 }
908 
909 static inline bool
910 dma_buf_attachment_is_dynamic(struct dma_buf_attachment *attach)
911 {
912 	return !!attach->importer_ops;
913 }
914 
915 static bool
916 dma_buf_pin_on_map(struct dma_buf_attachment *attach)
917 {
918 	return attach->dmabuf->ops->pin &&
919 	       !dma_buf_attachment_is_dynamic(attach);
920 }
921 
922 /**
923  * DOC: locking convention
924  *
925  * In order to avoid deadlock situations between dma-buf exports and importers,
926  * all dma-buf API users must follow the common dma-buf locking convention.
927  *
928  * Convention for importers
929  *
930  * 1. Importers must hold the dma-buf reservation lock when calling these
931  *    functions:
932  *
933  *     - dma_buf_pin()
934  *     - dma_buf_unpin()
935  *     - dma_buf_map_attachment()
936  *     - dma_buf_unmap_attachment()
937  *     - dma_buf_vmap()
938  *     - dma_buf_vunmap()
939  *
940  * 2. Importers must not hold the dma-buf reservation lock when calling these
941  *    functions:
942  *
943  *     - dma_buf_attach()
944  *     - dma_buf_dynamic_attach()
945  *     - dma_buf_detach()
946  *     - dma_buf_export()
947  *     - dma_buf_fd()
948  *     - dma_buf_get()
949  *     - dma_buf_put()
950  *     - dma_buf_mmap()
951  *     - dma_buf_begin_cpu_access()
952  *     - dma_buf_end_cpu_access()
953  *     - dma_buf_map_attachment_unlocked()
954  *     - dma_buf_unmap_attachment_unlocked()
955  *     - dma_buf_vmap_unlocked()
956  *     - dma_buf_vunmap_unlocked()
957  *
958  * Convention for exporters
959  *
960  * 1. These &dma_buf_ops callbacks are invoked with unlocked dma-buf
961  *    reservation and exporter can take the lock:
962  *
963  *     - &dma_buf_ops.attach()
964  *     - &dma_buf_ops.detach()
965  *     - &dma_buf_ops.release()
966  *     - &dma_buf_ops.begin_cpu_access()
967  *     - &dma_buf_ops.end_cpu_access()
968  *     - &dma_buf_ops.mmap()
969  *
970  * 2. These &dma_buf_ops callbacks are invoked with locked dma-buf
971  *    reservation and exporter can't take the lock:
972  *
973  *     - &dma_buf_ops.pin()
974  *     - &dma_buf_ops.unpin()
975  *     - &dma_buf_ops.map_dma_buf()
976  *     - &dma_buf_ops.unmap_dma_buf()
977  *     - &dma_buf_ops.vmap()
978  *     - &dma_buf_ops.vunmap()
979  *
980  * 3. Exporters must hold the dma-buf reservation lock when calling these
981  *    functions:
982  *
983  *     - dma_buf_invalidate_mappings()
984  */
985 
986 /**
987  * dma_buf_dynamic_attach - Add the device to dma_buf's attachments list
988  * @dmabuf:		[in]	buffer to attach device to.
989  * @dev:		[in]	device to be attached.
990  * @importer_ops:	[in]	importer operations for the attachment
991  * @importer_priv:	[in]	importer private pointer for the attachment
992  *
993  * Returns struct dma_buf_attachment pointer for this attachment. Attachments
994  * must be cleaned up by calling dma_buf_detach().
995  *
996  * Optionally this calls &dma_buf_ops.attach to allow device-specific attach
997  * functionality.
998  *
999  * Returns:
1000  *
1001  * A pointer to newly created &dma_buf_attachment on success, or a negative
1002  * error code wrapped into a pointer on failure.
1003  *
1004  * Note that this can fail if the backing storage of @dmabuf is in a place not
1005  * accessible to @dev, and cannot be moved to a more suitable place. This is
1006  * indicated with the error code -EBUSY.
1007  */
1008 struct dma_buf_attachment *
1009 dma_buf_dynamic_attach(struct dma_buf *dmabuf, struct device *dev,
1010 		       const struct dma_buf_attach_ops *importer_ops,
1011 		       void *importer_priv)
1012 {
1013 	struct dma_buf_attachment *attach;
1014 	int ret;
1015 
1016 	if (WARN_ON(!dmabuf || !dev))
1017 		return ERR_PTR(-EINVAL);
1018 
1019 	attach = kzalloc_obj(*attach);
1020 	if (!attach)
1021 		return ERR_PTR(-ENOMEM);
1022 
1023 	attach->dev = dev;
1024 	attach->dmabuf = dmabuf;
1025 	if (importer_ops)
1026 		attach->peer2peer = importer_ops->allow_peer2peer;
1027 	attach->importer_ops = importer_ops;
1028 	attach->importer_priv = importer_priv;
1029 
1030 	if (dmabuf->ops->attach) {
1031 		ret = dmabuf->ops->attach(dmabuf, attach);
1032 		if (ret)
1033 			goto err_attach;
1034 	}
1035 	dma_resv_lock(dmabuf->resv, NULL);
1036 	list_add(&attach->node, &dmabuf->attachments);
1037 	dma_resv_unlock(dmabuf->resv);
1038 
1039 	DMA_BUF_TRACE(trace_dma_buf_dynamic_attach, dmabuf, attach,
1040 		dma_buf_attachment_is_dynamic(attach), dev);
1041 
1042 	return attach;
1043 
1044 err_attach:
1045 	kfree(attach);
1046 	return ERR_PTR(ret);
1047 }
1048 EXPORT_SYMBOL_NS_GPL(dma_buf_dynamic_attach, "DMA_BUF");
1049 
1050 /**
1051  * dma_buf_attach - Wrapper for dma_buf_dynamic_attach
1052  * @dmabuf:	[in]	buffer to attach device to.
1053  * @dev:	[in]	device to be attached.
1054  *
1055  * Wrapper to call dma_buf_dynamic_attach() for drivers which still use a static
1056  * mapping.
1057  */
1058 struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
1059 					  struct device *dev)
1060 {
1061 	return dma_buf_dynamic_attach(dmabuf, dev, NULL, NULL);
1062 }
1063 EXPORT_SYMBOL_NS_GPL(dma_buf_attach, "DMA_BUF");
1064 
1065 /**
1066  * dma_buf_detach - Remove the given attachment from dmabuf's attachments list
1067  * @dmabuf:	[in]	buffer to detach from.
1068  * @attach:	[in]	attachment to be detached; is free'd after this call.
1069  *
1070  * Clean up a device attachment obtained by calling dma_buf_attach().
1071  *
1072  * Optionally this calls &dma_buf_ops.detach for device-specific detach.
1073  */
1074 void dma_buf_detach(struct dma_buf *dmabuf, struct dma_buf_attachment *attach)
1075 {
1076 	if (WARN_ON(!dmabuf || !attach || dmabuf != attach->dmabuf))
1077 		return;
1078 
1079 	dma_resv_lock(dmabuf->resv, NULL);
1080 	list_del(&attach->node);
1081 	dma_resv_unlock(dmabuf->resv);
1082 
1083 	if (dmabuf->ops->detach)
1084 		dmabuf->ops->detach(dmabuf, attach);
1085 
1086 	DMA_BUF_TRACE(trace_dma_buf_detach, dmabuf, attach,
1087 		dma_buf_attachment_is_dynamic(attach), attach->dev);
1088 
1089 	kfree(attach);
1090 }
1091 EXPORT_SYMBOL_NS_GPL(dma_buf_detach, "DMA_BUF");
1092 
1093 /**
1094  * dma_buf_pin - Lock down the DMA-buf
1095  * @attach:	[in]	attachment which should be pinned
1096  *
1097  * Only dynamic importers (who set up @attach with dma_buf_dynamic_attach()) may
1098  * call this, and only for limited use cases like scanout and not for temporary
1099  * pin operations. It is not permitted to allow userspace to pin arbitrary
1100  * amounts of buffers through this interface.
1101  *
1102  * Buffers must be unpinned by calling dma_buf_unpin().
1103  *
1104  * Returns:
1105  * 0 on success, negative error code on failure.
1106  */
1107 int dma_buf_pin(struct dma_buf_attachment *attach)
1108 {
1109 	struct dma_buf *dmabuf = attach->dmabuf;
1110 	int ret = 0;
1111 
1112 	WARN_ON(!attach->importer_ops);
1113 
1114 	dma_resv_assert_held(dmabuf->resv);
1115 
1116 	if (dmabuf->ops->pin)
1117 		ret = dmabuf->ops->pin(attach);
1118 
1119 	return ret;
1120 }
1121 EXPORT_SYMBOL_NS_GPL(dma_buf_pin, "DMA_BUF");
1122 
1123 /**
1124  * dma_buf_unpin - Unpin a DMA-buf
1125  * @attach:	[in]	attachment which should be unpinned
1126  *
1127  * This unpins a buffer pinned by dma_buf_pin() and allows the exporter to move
1128  * any mapping of @attach again and inform the importer through
1129  * &dma_buf_attach_ops.invalidate_mappings.
1130  */
1131 void dma_buf_unpin(struct dma_buf_attachment *attach)
1132 {
1133 	struct dma_buf *dmabuf = attach->dmabuf;
1134 
1135 	WARN_ON(!attach->importer_ops);
1136 
1137 	dma_resv_assert_held(dmabuf->resv);
1138 
1139 	if (dmabuf->ops->unpin)
1140 		dmabuf->ops->unpin(attach);
1141 }
1142 EXPORT_SYMBOL_NS_GPL(dma_buf_unpin, "DMA_BUF");
1143 
1144 /**
1145  * dma_buf_map_attachment - Returns the scatterlist table of the attachment;
1146  * mapped into _device_ address space. Is a wrapper for map_dma_buf() of the
1147  * dma_buf_ops.
1148  * @attach:	[in]	attachment whose scatterlist is to be returned
1149  * @direction:	[in]	direction of DMA transfer
1150  *
1151  * Returns sg_table containing the scatterlist to be returned; returns ERR_PTR
1152  * on error. May return -EINTR if it is interrupted by a signal.
1153  *
1154  * On success, the DMA addresses and lengths in the returned scatterlist are
1155  * PAGE_SIZE aligned.
1156  *
1157  * A mapping must be unmapped by using dma_buf_unmap_attachment(). Note that
1158  * the underlying backing storage is pinned for as long as a mapping exists,
1159  * therefore users/importers should not hold onto a mapping for undue amounts of
1160  * time.
1161  *
1162  * Important: Dynamic importers must wait for the exclusive fence of the struct
1163  * dma_resv attached to the DMA-BUF first.
1164  */
1165 struct sg_table *dma_buf_map_attachment(struct dma_buf_attachment *attach,
1166 					enum dma_data_direction direction)
1167 {
1168 	struct sg_table *sg_table;
1169 	signed long ret;
1170 
1171 	might_sleep();
1172 
1173 	if (WARN_ON(!attach || !attach->dmabuf))
1174 		return ERR_PTR(-EINVAL);
1175 
1176 	dma_resv_assert_held(attach->dmabuf->resv);
1177 
1178 	if (dma_buf_pin_on_map(attach)) {
1179 		ret = attach->dmabuf->ops->pin(attach);
1180 		/*
1181 		 * Catch exporters making buffers inaccessible even when
1182 		 * attachments preventing that exist.
1183 		 */
1184 		WARN_ON_ONCE(ret == -EBUSY);
1185 		if (ret)
1186 			return ERR_PTR(ret);
1187 	}
1188 
1189 	sg_table = attach->dmabuf->ops->map_dma_buf(attach, direction);
1190 	if (!sg_table)
1191 		sg_table = ERR_PTR(-ENOMEM);
1192 	if (IS_ERR(sg_table))
1193 		goto error_unpin;
1194 
1195 	/*
1196 	 * Importers with static attachments don't wait for fences.
1197 	 */
1198 	if (!dma_buf_attachment_is_dynamic(attach)) {
1199 		ret = dma_resv_wait_timeout(attach->dmabuf->resv,
1200 					    DMA_RESV_USAGE_KERNEL, true,
1201 					    MAX_SCHEDULE_TIMEOUT);
1202 		if (ret < 0)
1203 			goto error_unmap;
1204 	}
1205 	ret = dma_buf_wrap_sg_table(&sg_table);
1206 	if (ret)
1207 		goto error_unmap;
1208 
1209 	if (IS_ENABLED(CONFIG_DMA_API_DEBUG)) {
1210 		struct scatterlist *sg;
1211 		u64 addr;
1212 		int len;
1213 		int i;
1214 
1215 		for_each_sgtable_dma_sg(sg_table, sg, i) {
1216 			addr = sg_dma_address(sg);
1217 			len = sg_dma_len(sg);
1218 			if (!PAGE_ALIGNED(addr) || !PAGE_ALIGNED(len)) {
1219 				pr_debug("%s: addr %llx or len %x is not page aligned!\n",
1220 					 __func__, addr, len);
1221 				break;
1222 			}
1223 		}
1224 	}
1225 	return sg_table;
1226 
1227 error_unmap:
1228 	attach->dmabuf->ops->unmap_dma_buf(attach, sg_table, direction);
1229 	sg_table = ERR_PTR(ret);
1230 
1231 error_unpin:
1232 	if (dma_buf_pin_on_map(attach))
1233 		attach->dmabuf->ops->unpin(attach);
1234 
1235 	return sg_table;
1236 }
1237 EXPORT_SYMBOL_NS_GPL(dma_buf_map_attachment, "DMA_BUF");
1238 
1239 /**
1240  * dma_buf_map_attachment_unlocked - Returns the scatterlist table of the attachment;
1241  * mapped into _device_ address space. Is a wrapper for map_dma_buf() of the
1242  * dma_buf_ops.
1243  * @attach:	[in]	attachment whose scatterlist is to be returned
1244  * @direction:	[in]	direction of DMA transfer
1245  *
1246  * Unlocked variant of dma_buf_map_attachment().
1247  */
1248 struct sg_table *
1249 dma_buf_map_attachment_unlocked(struct dma_buf_attachment *attach,
1250 				enum dma_data_direction direction)
1251 {
1252 	struct sg_table *sg_table;
1253 
1254 	might_sleep();
1255 
1256 	if (WARN_ON(!attach || !attach->dmabuf))
1257 		return ERR_PTR(-EINVAL);
1258 
1259 	dma_resv_lock(attach->dmabuf->resv, NULL);
1260 	sg_table = dma_buf_map_attachment(attach, direction);
1261 	dma_resv_unlock(attach->dmabuf->resv);
1262 
1263 	return sg_table;
1264 }
1265 EXPORT_SYMBOL_NS_GPL(dma_buf_map_attachment_unlocked, "DMA_BUF");
1266 
1267 /**
1268  * dma_buf_unmap_attachment - unmaps and decreases usecount of the buffer;might
1269  * deallocate the scatterlist associated. Is a wrapper for unmap_dma_buf() of
1270  * dma_buf_ops.
1271  * @attach:	[in]	attachment to unmap buffer from
1272  * @sg_table:	[in]	scatterlist info of the buffer to unmap
1273  * @direction:  [in]    direction of DMA transfer
1274  *
1275  * This unmaps a DMA mapping for @attached obtained by dma_buf_map_attachment().
1276  */
1277 void dma_buf_unmap_attachment(struct dma_buf_attachment *attach,
1278 				struct sg_table *sg_table,
1279 				enum dma_data_direction direction)
1280 {
1281 	might_sleep();
1282 
1283 	if (WARN_ON(!attach || !attach->dmabuf || !sg_table))
1284 		return;
1285 
1286 	dma_resv_assert_held(attach->dmabuf->resv);
1287 
1288 	dma_buf_unwrap_sg_table(&sg_table);
1289 	attach->dmabuf->ops->unmap_dma_buf(attach, sg_table, direction);
1290 
1291 	if (dma_buf_pin_on_map(attach))
1292 		attach->dmabuf->ops->unpin(attach);
1293 }
1294 EXPORT_SYMBOL_NS_GPL(dma_buf_unmap_attachment, "DMA_BUF");
1295 
1296 /**
1297  * dma_buf_unmap_attachment_unlocked - unmaps and decreases usecount of the buffer;might
1298  * deallocate the scatterlist associated. Is a wrapper for unmap_dma_buf() of
1299  * dma_buf_ops.
1300  * @attach:	[in]	attachment to unmap buffer from
1301  * @sg_table:	[in]	scatterlist info of the buffer to unmap
1302  * @direction:	[in]	direction of DMA transfer
1303  *
1304  * Unlocked variant of dma_buf_unmap_attachment().
1305  */
1306 void dma_buf_unmap_attachment_unlocked(struct dma_buf_attachment *attach,
1307 				       struct sg_table *sg_table,
1308 				       enum dma_data_direction direction)
1309 {
1310 	might_sleep();
1311 
1312 	if (WARN_ON(!attach || !attach->dmabuf || !sg_table))
1313 		return;
1314 
1315 	dma_resv_lock(attach->dmabuf->resv, NULL);
1316 	dma_buf_unmap_attachment(attach, sg_table, direction);
1317 	dma_resv_unlock(attach->dmabuf->resv);
1318 }
1319 EXPORT_SYMBOL_NS_GPL(dma_buf_unmap_attachment_unlocked, "DMA_BUF");
1320 
1321 /**
1322  * dma_buf_attach_revocable - check if a DMA-buf importer implements
1323  * revoke semantics.
1324  * @attach: the DMA-buf attachment to check
1325  *
1326  * Returns true if the DMA-buf importer can support the revoke sequence
1327  * explained in dma_buf_invalidate_mappings() within bounded time. Meaning the
1328  * importer implements invalidate_mappings() and ensures that unmap is called as
1329  * a result.
1330  */
1331 bool dma_buf_attach_revocable(struct dma_buf_attachment *attach)
1332 {
1333 	return attach->importer_ops &&
1334 	       attach->importer_ops->invalidate_mappings;
1335 }
1336 EXPORT_SYMBOL_NS_GPL(dma_buf_attach_revocable, "DMA_BUF");
1337 
1338 /**
1339  * dma_buf_invalidate_mappings - notify attachments that DMA-buf is moving
1340  *
1341  * @dmabuf:	[in]	buffer which is moving
1342  *
1343  * Informs all attachments that they need to destroy and recreate all their
1344  * mappings. If the attachment is dynamic then the dynamic importer is expected
1345  * to invalidate any caches it has of the mapping result and perform a new
1346  * mapping request before allowing HW to do any further DMA.
1347  *
1348  * If the attachment is pinned then this informs the pinned importer that the
1349  * underlying mapping is no longer available. Pinned importers may take this is
1350  * as a permanent revocation and never establish new mappings so exporters
1351  * should not trigger it lightly.
1352  *
1353  * Upon return importers may continue to access the DMA-buf memory. The caller
1354  * must do two additional waits to ensure that the memory is no longer being
1355  * accessed:
1356  *  1) Until dma_resv_wait_timeout() retires fences the importer is allowed to
1357  *     fully access the memory.
1358  *  2) Until the importer calls unmap it is allowed to speculatively
1359  *     read-and-discard the memory. It must not write to the memory.
1360  *
1361  * A caller wishing to use dma_buf_invalidate_mappings() to fully stop access to
1362  * the DMA-buf must wait for both. Dynamic callers can often use just the first.
1363  *
1364  * All importers providing a invalidate_mappings() op must ensure that unmap is
1365  * called within bounded time after the op.
1366  *
1367  * Pinned importers that do not support a invalidate_mappings() op will
1368  * eventually perform unmap when they are done with the buffer, which may be an
1369  * ubounded time from calling this function. dma_buf_attach_revocable() can be
1370  * used to prevent such importers from attaching.
1371  *
1372  * Importers are free to request a new mapping in parallel as this function
1373  * returns.
1374  */
1375 void dma_buf_invalidate_mappings(struct dma_buf *dmabuf)
1376 {
1377 	struct dma_buf_attachment *attach;
1378 
1379 	dma_resv_assert_held(dmabuf->resv);
1380 
1381 	list_for_each_entry(attach, &dmabuf->attachments, node)
1382 		if (attach->importer_ops &&
1383 		    attach->importer_ops->invalidate_mappings)
1384 			attach->importer_ops->invalidate_mappings(attach);
1385 }
1386 EXPORT_SYMBOL_NS_GPL(dma_buf_invalidate_mappings, "DMA_BUF");
1387 
1388 /**
1389  * DOC: cpu access
1390  *
1391  * There are multiple reasons for supporting CPU access to a dma buffer object:
1392  *
1393  * - Fallback operations in the kernel, for example when a device is connected
1394  *   over USB and the kernel needs to shuffle the data around first before
1395  *   sending it away. Cache coherency is handled by bracketing any transactions
1396  *   with calls to dma_buf_begin_cpu_access() and dma_buf_end_cpu_access()
1397  *   access.
1398  *
1399  *   Since for most kernel internal dma-buf accesses need the entire buffer, a
1400  *   vmap interface is introduced. Note that on very old 32-bit architectures
1401  *   vmalloc space might be limited and result in vmap calls failing.
1402  *
1403  *   Interfaces:
1404  *
1405  *   .. code-block:: c
1406  *
1407  *     void *dma_buf_vmap(struct dma_buf *dmabuf, struct iosys_map *map)
1408  *     void dma_buf_vunmap(struct dma_buf *dmabuf, struct iosys_map *map)
1409  *
1410  *   The vmap call can fail if there is no vmap support in the exporter, or if
1411  *   it runs out of vmalloc space. Note that the dma-buf layer keeps a reference
1412  *   count for all vmap access and calls down into the exporter's vmap function
1413  *   only when no vmapping exists, and only unmaps it once. Protection against
1414  *   concurrent vmap/vunmap calls is provided by taking the &dma_buf.lock mutex.
1415  *
1416  * - For full compatibility on the importer side with existing userspace
1417  *   interfaces, which might already support mmap'ing buffers. This is needed in
1418  *   many processing pipelines (e.g. feeding a software rendered image into a
1419  *   hardware pipeline, thumbnail creation, snapshots, ...). Also, Android's ION
1420  *   framework already supported this and for DMA buffer file descriptors to
1421  *   replace ION buffers mmap support was needed.
1422  *
1423  *   There is no special interfaces, userspace simply calls mmap on the dma-buf
1424  *   fd. But like for CPU access there's a need to bracket the actual access,
1425  *   which is handled by the ioctl (DMA_BUF_IOCTL_SYNC). Note that
1426  *   DMA_BUF_IOCTL_SYNC can fail with -EAGAIN or -EINTR, in which case it must
1427  *   be restarted.
1428  *
1429  *   Some systems might need some sort of cache coherency management e.g. when
1430  *   CPU and GPU domains are being accessed through dma-buf at the same time.
1431  *   To circumvent this problem there are begin/end coherency markers, that
1432  *   forward directly to existing dma-buf device drivers vfunc hooks. Userspace
1433  *   can make use of those markers through the DMA_BUF_IOCTL_SYNC ioctl. The
1434  *   sequence would be used like following:
1435  *
1436  *     - mmap dma-buf fd
1437  *     - for each drawing/upload cycle in CPU 1. SYNC_START ioctl, 2. read/write
1438  *       to mmap area 3. SYNC_END ioctl. This can be repeated as often as you
1439  *       want (with the new data being consumed by say the GPU or the scanout
1440  *       device)
1441  *     - munmap once you don't need the buffer any more
1442  *
1443  *    For correctness and optimal performance, it is always required to use
1444  *    SYNC_START and SYNC_END before and after, respectively, when accessing the
1445  *    mapped address. Userspace cannot rely on coherent access, even when there
1446  *    are systems where it just works without calling these ioctls.
1447  *
1448  * - And as a CPU fallback in userspace processing pipelines.
1449  *
1450  *   Similar to the motivation for kernel cpu access it is again important that
1451  *   the userspace code of a given importing subsystem can use the same
1452  *   interfaces with a imported dma-buf buffer object as with a native buffer
1453  *   object. This is especially important for drm where the userspace part of
1454  *   contemporary OpenGL, X, and other drivers is huge, and reworking them to
1455  *   use a different way to mmap a buffer rather invasive.
1456  *
1457  *   The assumption in the current dma-buf interfaces is that redirecting the
1458  *   initial mmap is all that's needed. A survey of some of the existing
1459  *   subsystems shows that no driver seems to do any nefarious thing like
1460  *   syncing up with outstanding asynchronous processing on the device or
1461  *   allocating special resources at fault time. So hopefully this is good
1462  *   enough, since adding interfaces to intercept pagefaults and allow pte
1463  *   shootdowns would increase the complexity quite a bit.
1464  *
1465  *   Interface:
1466  *
1467  *   .. code-block:: c
1468  *
1469  *     int dma_buf_mmap(struct dma_buf *, struct vm_area_struct *, unsigned long);
1470  *
1471  *   If the importing subsystem simply provides a special-purpose mmap call to
1472  *   set up a mapping in userspace, calling do_mmap with &dma_buf.file will
1473  *   equally achieve that for a dma-buf object.
1474  */
1475 
1476 static int __dma_buf_begin_cpu_access(struct dma_buf *dmabuf,
1477 				      enum dma_data_direction direction)
1478 {
1479 	bool write = (direction == DMA_BIDIRECTIONAL ||
1480 		      direction == DMA_TO_DEVICE);
1481 	struct dma_resv *resv = dmabuf->resv;
1482 	long ret;
1483 
1484 	/* Wait on any implicit rendering fences */
1485 	ret = dma_resv_wait_timeout(resv, dma_resv_usage_rw(write),
1486 				    true, MAX_SCHEDULE_TIMEOUT);
1487 	if (ret < 0)
1488 		return ret;
1489 
1490 	return 0;
1491 }
1492 
1493 /**
1494  * dma_buf_begin_cpu_access - Must be called before accessing a dma_buf from the
1495  * cpu in the kernel context. Calls begin_cpu_access to allow exporter-specific
1496  * preparations. Coherency is only guaranteed in the specified range for the
1497  * specified access direction.
1498  * @dmabuf:	[in]	buffer to prepare cpu access for.
1499  * @direction:	[in]	direction of access.
1500  *
1501  * After the cpu access is complete the caller should call
1502  * dma_buf_end_cpu_access(). Only when cpu access is bracketed by both calls is
1503  * it guaranteed to be coherent with other DMA access.
1504  *
1505  * This function will also wait for any DMA transactions tracked through
1506  * implicit synchronization in &dma_buf.resv. For DMA transactions with explicit
1507  * synchronization this function will only ensure cache coherency, callers must
1508  * ensure synchronization with such DMA transactions on their own.
1509  *
1510  * Can return negative error values, returns 0 on success.
1511  */
1512 int dma_buf_begin_cpu_access(struct dma_buf *dmabuf,
1513 			     enum dma_data_direction direction)
1514 {
1515 	int ret = 0;
1516 
1517 	if (WARN_ON(!dmabuf))
1518 		return -EINVAL;
1519 
1520 	might_lock(&dmabuf->resv->lock.base);
1521 
1522 	if (dmabuf->ops->begin_cpu_access)
1523 		ret = dmabuf->ops->begin_cpu_access(dmabuf, direction);
1524 
1525 	/* Ensure that all fences are waited upon - but we first allow
1526 	 * the native handler the chance to do so more efficiently if it
1527 	 * chooses. A double invocation here will be reasonably cheap no-op.
1528 	 */
1529 	if (ret == 0)
1530 		ret = __dma_buf_begin_cpu_access(dmabuf, direction);
1531 
1532 	return ret;
1533 }
1534 EXPORT_SYMBOL_NS_GPL(dma_buf_begin_cpu_access, "DMA_BUF");
1535 
1536 /**
1537  * dma_buf_end_cpu_access - Must be called after accessing a dma_buf from the
1538  * cpu in the kernel context. Calls end_cpu_access to allow exporter-specific
1539  * actions. Coherency is only guaranteed in the specified range for the
1540  * specified access direction.
1541  * @dmabuf:	[in]	buffer to complete cpu access for.
1542  * @direction:	[in]	direction of access.
1543  *
1544  * This terminates CPU access started with dma_buf_begin_cpu_access().
1545  *
1546  * Can return negative error values, returns 0 on success.
1547  */
1548 int dma_buf_end_cpu_access(struct dma_buf *dmabuf,
1549 			   enum dma_data_direction direction)
1550 {
1551 	int ret = 0;
1552 
1553 	WARN_ON(!dmabuf);
1554 
1555 	might_lock(&dmabuf->resv->lock.base);
1556 
1557 	if (dmabuf->ops->end_cpu_access)
1558 		ret = dmabuf->ops->end_cpu_access(dmabuf, direction);
1559 
1560 	return ret;
1561 }
1562 EXPORT_SYMBOL_NS_GPL(dma_buf_end_cpu_access, "DMA_BUF");
1563 
1564 
1565 /**
1566  * dma_buf_mmap - Setup up a userspace mmap with the given vma
1567  * @dmabuf:	[in]	buffer that should back the vma
1568  * @vma:	[in]	vma for the mmap
1569  * @pgoff:	[in]	offset in pages where this mmap should start within the
1570  *			dma-buf buffer.
1571  *
1572  * This function adjusts the passed in vma so that it points at the file of the
1573  * dma_buf operation. It also adjusts the starting pgoff and does bounds
1574  * checking on the size of the vma. Then it calls the exporters mmap function to
1575  * set up the mapping.
1576  *
1577  * Can return negative error values, returns 0 on success.
1578  */
1579 int dma_buf_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma,
1580 		 unsigned long pgoff)
1581 {
1582 	if (WARN_ON(!dmabuf || !vma))
1583 		return -EINVAL;
1584 
1585 	/* check if buffer supports mmap */
1586 	if (!dmabuf->ops->mmap)
1587 		return -EINVAL;
1588 
1589 	/* check for offset overflow */
1590 	if (pgoff + vma_pages(vma) < pgoff)
1591 		return -EOVERFLOW;
1592 
1593 	/* check for overflowing the buffer's size */
1594 	if (pgoff + vma_pages(vma) >
1595 	    dmabuf->size >> PAGE_SHIFT)
1596 		return -EINVAL;
1597 
1598 	/* readjust the vma */
1599 	vma_set_file(vma, dmabuf->file);
1600 	vma->vm_pgoff = pgoff;
1601 
1602 	DMA_BUF_TRACE(trace_dma_buf_mmap, dmabuf);
1603 
1604 	return dmabuf->ops->mmap(dmabuf, vma);
1605 }
1606 EXPORT_SYMBOL_NS_GPL(dma_buf_mmap, "DMA_BUF");
1607 
1608 /**
1609  * dma_buf_vmap - Create virtual mapping for the buffer object into kernel
1610  * address space. Same restrictions as for vmap and friends apply.
1611  * @dmabuf:	[in]	buffer to vmap
1612  * @map:	[out]	returns the vmap pointer
1613  *
1614  * This call may fail due to lack of virtual mapping address space.
1615  * These calls are optional in drivers. The intended use for them
1616  * is for mapping objects linear in kernel space for high use objects.
1617  *
1618  * To ensure coherency users must call dma_buf_begin_cpu_access() and
1619  * dma_buf_end_cpu_access() around any cpu access performed through this
1620  * mapping.
1621  *
1622  * Returns 0 on success, or a negative errno code otherwise.
1623  */
1624 int dma_buf_vmap(struct dma_buf *dmabuf, struct iosys_map *map)
1625 {
1626 	struct iosys_map ptr;
1627 	int ret;
1628 
1629 	iosys_map_clear(map);
1630 
1631 	if (WARN_ON(!dmabuf))
1632 		return -EINVAL;
1633 
1634 	dma_resv_assert_held(dmabuf->resv);
1635 
1636 	if (!dmabuf->ops->vmap)
1637 		return -EINVAL;
1638 
1639 	if (dmabuf->vmapping_counter) {
1640 		dmabuf->vmapping_counter++;
1641 		BUG_ON(iosys_map_is_null(&dmabuf->vmap_ptr));
1642 		*map = dmabuf->vmap_ptr;
1643 		return 0;
1644 	}
1645 
1646 	BUG_ON(iosys_map_is_set(&dmabuf->vmap_ptr));
1647 
1648 	ret = dmabuf->ops->vmap(dmabuf, &ptr);
1649 	if (WARN_ON_ONCE(ret))
1650 		return ret;
1651 
1652 	dmabuf->vmap_ptr = ptr;
1653 	dmabuf->vmapping_counter = 1;
1654 
1655 	*map = dmabuf->vmap_ptr;
1656 
1657 	return 0;
1658 }
1659 EXPORT_SYMBOL_NS_GPL(dma_buf_vmap, "DMA_BUF");
1660 
1661 /**
1662  * dma_buf_vmap_unlocked - Create virtual mapping for the buffer object into kernel
1663  * address space. Same restrictions as for vmap and friends apply.
1664  * @dmabuf:	[in]	buffer to vmap
1665  * @map:	[out]	returns the vmap pointer
1666  *
1667  * Unlocked version of dma_buf_vmap()
1668  *
1669  * Returns 0 on success, or a negative errno code otherwise.
1670  */
1671 int dma_buf_vmap_unlocked(struct dma_buf *dmabuf, struct iosys_map *map)
1672 {
1673 	int ret;
1674 
1675 	iosys_map_clear(map);
1676 
1677 	if (WARN_ON(!dmabuf))
1678 		return -EINVAL;
1679 
1680 	dma_resv_lock(dmabuf->resv, NULL);
1681 	ret = dma_buf_vmap(dmabuf, map);
1682 	dma_resv_unlock(dmabuf->resv);
1683 
1684 	return ret;
1685 }
1686 EXPORT_SYMBOL_NS_GPL(dma_buf_vmap_unlocked, "DMA_BUF");
1687 
1688 /**
1689  * dma_buf_vunmap - Unmap a vmap obtained by dma_buf_vmap.
1690  * @dmabuf:	[in]	buffer to vunmap
1691  * @map:	[in]	vmap pointer to vunmap
1692  */
1693 void dma_buf_vunmap(struct dma_buf *dmabuf, struct iosys_map *map)
1694 {
1695 	if (WARN_ON(!dmabuf))
1696 		return;
1697 
1698 	dma_resv_assert_held(dmabuf->resv);
1699 
1700 	BUG_ON(iosys_map_is_null(&dmabuf->vmap_ptr));
1701 	BUG_ON(dmabuf->vmapping_counter == 0);
1702 	BUG_ON(!iosys_map_is_equal(&dmabuf->vmap_ptr, map));
1703 
1704 	if (--dmabuf->vmapping_counter == 0) {
1705 		if (dmabuf->ops->vunmap)
1706 			dmabuf->ops->vunmap(dmabuf, map);
1707 		iosys_map_clear(&dmabuf->vmap_ptr);
1708 	}
1709 }
1710 EXPORT_SYMBOL_NS_GPL(dma_buf_vunmap, "DMA_BUF");
1711 
1712 /**
1713  * dma_buf_vunmap_unlocked - Unmap a vmap obtained by dma_buf_vmap.
1714  * @dmabuf:	[in]	buffer to vunmap
1715  * @map:	[in]	vmap pointer to vunmap
1716  */
1717 void dma_buf_vunmap_unlocked(struct dma_buf *dmabuf, struct iosys_map *map)
1718 {
1719 	if (WARN_ON(!dmabuf))
1720 		return;
1721 
1722 	dma_resv_lock(dmabuf->resv, NULL);
1723 	dma_buf_vunmap(dmabuf, map);
1724 	dma_resv_unlock(dmabuf->resv);
1725 }
1726 EXPORT_SYMBOL_NS_GPL(dma_buf_vunmap_unlocked, "DMA_BUF");
1727 
1728 #ifdef CONFIG_DEBUG_FS
1729 static int dma_buf_debug_show(struct seq_file *s, void *unused)
1730 {
1731 	struct dma_buf *buf_obj;
1732 	struct dma_buf_attachment *attach_obj;
1733 	int count = 0, attach_count;
1734 	size_t size = 0;
1735 	int ret;
1736 
1737 	ret = mutex_lock_interruptible(&dmabuf_list_mutex);
1738 
1739 	if (ret)
1740 		return ret;
1741 
1742 	seq_puts(s, "\nDma-buf Objects:\n");
1743 	seq_printf(s, "%-8s\t%-8s\t%-8s\t%-8s\texp_name\t%-8s\tname\n",
1744 		   "size", "flags", "mode", "count", "ino");
1745 
1746 	list_for_each_entry(buf_obj, &dmabuf_list, list_node) {
1747 
1748 		ret = dma_resv_lock_interruptible(buf_obj->resv, NULL);
1749 		if (ret)
1750 			goto error_unlock;
1751 
1752 
1753 		spin_lock(&buf_obj->name_lock);
1754 		seq_printf(s, "%08zu\t%08x\t%08x\t%08ld\t%s\t%08llu\t%s\n",
1755 				buf_obj->size,
1756 				buf_obj->file->f_flags, buf_obj->file->f_mode,
1757 				file_count(buf_obj->file),
1758 				buf_obj->exp_name,
1759 				file_inode(buf_obj->file)->i_ino,
1760 				buf_obj->name ?: "<none>");
1761 		spin_unlock(&buf_obj->name_lock);
1762 
1763 		dma_resv_describe(buf_obj->resv, s);
1764 
1765 		seq_puts(s, "\tAttached Devices:\n");
1766 		attach_count = 0;
1767 
1768 		list_for_each_entry(attach_obj, &buf_obj->attachments, node) {
1769 			seq_printf(s, "\t%s\n", dev_name(attach_obj->dev));
1770 			attach_count++;
1771 		}
1772 		dma_resv_unlock(buf_obj->resv);
1773 
1774 		seq_printf(s, "Total %d devices attached\n\n",
1775 				attach_count);
1776 
1777 		count++;
1778 		size += buf_obj->size;
1779 	}
1780 
1781 	seq_printf(s, "\nTotal %d objects, %zu bytes\n", count, size);
1782 
1783 	mutex_unlock(&dmabuf_list_mutex);
1784 	return 0;
1785 
1786 error_unlock:
1787 	mutex_unlock(&dmabuf_list_mutex);
1788 	return ret;
1789 }
1790 
1791 DEFINE_SHOW_ATTRIBUTE(dma_buf_debug);
1792 
1793 static struct dentry *dma_buf_debugfs_dir;
1794 
1795 static int dma_buf_init_debugfs(void)
1796 {
1797 	struct dentry *d;
1798 	int err = 0;
1799 
1800 	d = debugfs_create_dir("dma_buf", NULL);
1801 	if (IS_ERR(d))
1802 		return PTR_ERR(d);
1803 
1804 	dma_buf_debugfs_dir = d;
1805 
1806 	d = debugfs_create_file("bufinfo", 0444, dma_buf_debugfs_dir,
1807 				NULL, &dma_buf_debug_fops);
1808 	if (IS_ERR(d)) {
1809 		pr_debug("dma_buf: debugfs: failed to create node bufinfo\n");
1810 		debugfs_remove_recursive(dma_buf_debugfs_dir);
1811 		dma_buf_debugfs_dir = NULL;
1812 		err = PTR_ERR(d);
1813 	}
1814 
1815 	return err;
1816 }
1817 
1818 static void dma_buf_uninit_debugfs(void)
1819 {
1820 	debugfs_remove_recursive(dma_buf_debugfs_dir);
1821 }
1822 #else
1823 static inline int dma_buf_init_debugfs(void)
1824 {
1825 	return 0;
1826 }
1827 static inline void dma_buf_uninit_debugfs(void)
1828 {
1829 }
1830 #endif
1831 
1832 static int __init dma_buf_init(void)
1833 {
1834 	dma_buf_mnt = kern_mount(&dma_buf_fs_type);
1835 	if (IS_ERR(dma_buf_mnt))
1836 		return PTR_ERR(dma_buf_mnt);
1837 
1838 	dma_buf_init_debugfs();
1839 	return 0;
1840 }
1841 subsys_initcall(dma_buf_init);
1842 
1843 static void __exit dma_buf_deinit(void)
1844 {
1845 	dma_buf_uninit_debugfs();
1846 	kern_unmount(dma_buf_mnt);
1847 }
1848 __exitcall(dma_buf_deinit);
1849