1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#include <linux/fs.h>
26#include <linux/slab.h>
27#include <linux/dma-buf.h>
28#include <linux/anon_inodes.h>
29#include <linux/export.h>
30
31static inline int is_dma_buf_file(struct file *);
32
33static int dma_buf_release(struct inode *inode, struct file *file)
34{
35 struct dma_buf *dmabuf;
36
37 if (!is_dma_buf_file(file))
38 return -EINVAL;
39
40 dmabuf = file->private_data;
41
42 dmabuf->ops->release(dmabuf);
43 kfree(dmabuf);
44 return 0;
45}
46
47static int dma_buf_mmap_internal(struct file *file, struct vm_area_struct *vma)
48{
49 struct dma_buf *dmabuf;
50
51 if (!is_dma_buf_file(file))
52 return -EINVAL;
53
54 dmabuf = file->private_data;
55
56
57 if (vma->vm_pgoff + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) >
58 dmabuf->size >> PAGE_SHIFT)
59 return -EINVAL;
60
61 return dmabuf->ops->mmap(dmabuf, vma);
62}
63
64static const struct file_operations dma_buf_fops = {
65 .release = dma_buf_release,
66 .mmap = dma_buf_mmap_internal,
67};
68
69
70
71
72static inline int is_dma_buf_file(struct file *file)
73{
74 return file->f_op == &dma_buf_fops;
75}
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92struct dma_buf *dma_buf_export(void *priv, const struct dma_buf_ops *ops,
93 size_t size, int flags)
94{
95 struct dma_buf *dmabuf;
96 struct file *file;
97
98 if (WARN_ON(!priv || !ops
99 || !ops->map_dma_buf
100 || !ops->unmap_dma_buf
101 || !ops->release
102 || !ops->kmap_atomic
103 || !ops->kmap
104 || !ops->mmap)) {
105 return ERR_PTR(-EINVAL);
106 }
107
108 dmabuf = kzalloc(sizeof(struct dma_buf), GFP_KERNEL);
109 if (dmabuf == NULL)
110 return ERR_PTR(-ENOMEM);
111
112 dmabuf->priv = priv;
113 dmabuf->ops = ops;
114 dmabuf->size = size;
115
116 file = anon_inode_getfile("dmabuf", &dma_buf_fops, dmabuf, flags);
117
118 dmabuf->file = file;
119
120 mutex_init(&dmabuf->lock);
121 INIT_LIST_HEAD(&dmabuf->attachments);
122
123 return dmabuf;
124}
125EXPORT_SYMBOL_GPL(dma_buf_export);
126
127
128
129
130
131
132
133
134
135int dma_buf_fd(struct dma_buf *dmabuf, int flags)
136{
137 int error, fd;
138
139 if (!dmabuf || !dmabuf->file)
140 return -EINVAL;
141
142 error = get_unused_fd_flags(flags);
143 if (error < 0)
144 return error;
145 fd = error;
146
147 fd_install(fd, dmabuf->file);
148
149 return fd;
150}
151EXPORT_SYMBOL_GPL(dma_buf_fd);
152
153
154
155
156
157
158
159
160
161struct dma_buf *dma_buf_get(int fd)
162{
163 struct file *file;
164
165 file = fget(fd);
166
167 if (!file)
168 return ERR_PTR(-EBADF);
169
170 if (!is_dma_buf_file(file)) {
171 fput(file);
172 return ERR_PTR(-EINVAL);
173 }
174
175 return file->private_data;
176}
177EXPORT_SYMBOL_GPL(dma_buf_get);
178
179
180
181
182
183
184
185void dma_buf_put(struct dma_buf *dmabuf)
186{
187 if (WARN_ON(!dmabuf || !dmabuf->file))
188 return;
189
190 fput(dmabuf->file);
191}
192EXPORT_SYMBOL_GPL(dma_buf_put);
193
194
195
196
197
198
199
200
201
202
203
204struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
205 struct device *dev)
206{
207 struct dma_buf_attachment *attach;
208 int ret;
209
210 if (WARN_ON(!dmabuf || !dev))
211 return ERR_PTR(-EINVAL);
212
213 attach = kzalloc(sizeof(struct dma_buf_attachment), GFP_KERNEL);
214 if (attach == NULL)
215 return ERR_PTR(-ENOMEM);
216
217 attach->dev = dev;
218 attach->dmabuf = dmabuf;
219
220 mutex_lock(&dmabuf->lock);
221
222 if (dmabuf->ops->attach) {
223 ret = dmabuf->ops->attach(dmabuf, dev, attach);
224 if (ret)
225 goto err_attach;
226 }
227 list_add(&attach->node, &dmabuf->attachments);
228
229 mutex_unlock(&dmabuf->lock);
230 return attach;
231
232err_attach:
233 kfree(attach);
234 mutex_unlock(&dmabuf->lock);
235 return ERR_PTR(ret);
236}
237EXPORT_SYMBOL_GPL(dma_buf_attach);
238
239
240
241
242
243
244
245
246void dma_buf_detach(struct dma_buf *dmabuf, struct dma_buf_attachment *attach)
247{
248 if (WARN_ON(!dmabuf || !attach))
249 return;
250
251 mutex_lock(&dmabuf->lock);
252 list_del(&attach->node);
253 if (dmabuf->ops->detach)
254 dmabuf->ops->detach(dmabuf, attach);
255
256 mutex_unlock(&dmabuf->lock);
257 kfree(attach);
258}
259EXPORT_SYMBOL_GPL(dma_buf_detach);
260
261
262
263
264
265
266
267
268
269
270
271
272struct sg_table *dma_buf_map_attachment(struct dma_buf_attachment *attach,
273 enum dma_data_direction direction)
274{
275 struct sg_table *sg_table = ERR_PTR(-EINVAL);
276
277 might_sleep();
278
279 if (WARN_ON(!attach || !attach->dmabuf))
280 return ERR_PTR(-EINVAL);
281
282 sg_table = attach->dmabuf->ops->map_dma_buf(attach, direction);
283
284 return sg_table;
285}
286EXPORT_SYMBOL_GPL(dma_buf_map_attachment);
287
288
289
290
291
292
293
294
295
296
297void dma_buf_unmap_attachment(struct dma_buf_attachment *attach,
298 struct sg_table *sg_table,
299 enum dma_data_direction direction)
300{
301 if (WARN_ON(!attach || !attach->dmabuf || !sg_table))
302 return;
303
304 attach->dmabuf->ops->unmap_dma_buf(attach, sg_table,
305 direction);
306}
307EXPORT_SYMBOL_GPL(dma_buf_unmap_attachment);
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322int dma_buf_begin_cpu_access(struct dma_buf *dmabuf, size_t start, size_t len,
323 enum dma_data_direction direction)
324{
325 int ret = 0;
326
327 if (WARN_ON(!dmabuf))
328 return -EINVAL;
329
330 if (dmabuf->ops->begin_cpu_access)
331 ret = dmabuf->ops->begin_cpu_access(dmabuf, start, len, direction);
332
333 return ret;
334}
335EXPORT_SYMBOL_GPL(dma_buf_begin_cpu_access);
336
337
338
339
340
341
342
343
344
345
346
347
348
349void dma_buf_end_cpu_access(struct dma_buf *dmabuf, size_t start, size_t len,
350 enum dma_data_direction direction)
351{
352 WARN_ON(!dmabuf);
353
354 if (dmabuf->ops->end_cpu_access)
355 dmabuf->ops->end_cpu_access(dmabuf, start, len, direction);
356}
357EXPORT_SYMBOL_GPL(dma_buf_end_cpu_access);
358
359
360
361
362
363
364
365
366
367
368void *dma_buf_kmap_atomic(struct dma_buf *dmabuf, unsigned long page_num)
369{
370 WARN_ON(!dmabuf);
371
372 return dmabuf->ops->kmap_atomic(dmabuf, page_num);
373}
374EXPORT_SYMBOL_GPL(dma_buf_kmap_atomic);
375
376
377
378
379
380
381
382
383
384void dma_buf_kunmap_atomic(struct dma_buf *dmabuf, unsigned long page_num,
385 void *vaddr)
386{
387 WARN_ON(!dmabuf);
388
389 if (dmabuf->ops->kunmap_atomic)
390 dmabuf->ops->kunmap_atomic(dmabuf, page_num, vaddr);
391}
392EXPORT_SYMBOL_GPL(dma_buf_kunmap_atomic);
393
394
395
396
397
398
399
400
401
402
403void *dma_buf_kmap(struct dma_buf *dmabuf, unsigned long page_num)
404{
405 WARN_ON(!dmabuf);
406
407 return dmabuf->ops->kmap(dmabuf, page_num);
408}
409EXPORT_SYMBOL_GPL(dma_buf_kmap);
410
411
412
413
414
415
416
417
418
419void dma_buf_kunmap(struct dma_buf *dmabuf, unsigned long page_num,
420 void *vaddr)
421{
422 WARN_ON(!dmabuf);
423
424 if (dmabuf->ops->kunmap)
425 dmabuf->ops->kunmap(dmabuf, page_num, vaddr);
426}
427EXPORT_SYMBOL_GPL(dma_buf_kunmap);
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444int dma_buf_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma,
445 unsigned long pgoff)
446{
447 if (WARN_ON(!dmabuf || !vma))
448 return -EINVAL;
449
450
451 if (pgoff + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) < pgoff)
452 return -EOVERFLOW;
453
454
455 if (pgoff + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) >
456 dmabuf->size >> PAGE_SHIFT)
457 return -EINVAL;
458
459
460 if (vma->vm_file)
461 fput(vma->vm_file);
462
463 vma->vm_file = dmabuf->file;
464 get_file(vma->vm_file);
465
466 vma->vm_pgoff = pgoff;
467
468 return dmabuf->ops->mmap(dmabuf, vma);
469}
470EXPORT_SYMBOL_GPL(dma_buf_mmap);
471
472
473
474
475
476
477
478
479
480
481
482void *dma_buf_vmap(struct dma_buf *dmabuf)
483{
484 if (WARN_ON(!dmabuf))
485 return NULL;
486
487 if (dmabuf->ops->vmap)
488 return dmabuf->ops->vmap(dmabuf);
489 return NULL;
490}
491EXPORT_SYMBOL_GPL(dma_buf_vmap);
492
493
494
495
496
497
498void dma_buf_vunmap(struct dma_buf *dmabuf, void *vaddr)
499{
500 if (WARN_ON(!dmabuf))
501 return;
502
503 if (dmabuf->ops->vunmap)
504 dmabuf->ops->vunmap(dmabuf, vaddr);
505}
506EXPORT_SYMBOL_GPL(dma_buf_vunmap);
507