blob: 69d8ef98d34c0dd446a2fe20bfa75a6384f5a4ff [file] [log] [blame]
Gustavo Padovand4cab382016-04-28 10:46:54 -03001/*
2 * drivers/dma-buf/sync_file.c
3 *
4 * Copyright (C) 2012 Google, Inc.
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/export.h>
18#include <linux/file.h>
19#include <linux/fs.h>
20#include <linux/kernel.h>
21#include <linux/poll.h>
22#include <linux/sched.h>
23#include <linux/slab.h>
24#include <linux/uaccess.h>
25#include <linux/anon_inodes.h>
Gustavo Padovan460bfc42016-04-28 10:46:57 -030026#include <linux/sync_file.h>
27#include <uapi/linux/sync_file.h>
Gustavo Padovand4cab382016-04-28 10:46:54 -030028
29static const struct file_operations sync_file_fops;
30
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030031static struct sync_file *sync_file_alloc(void)
Gustavo Padovand4cab382016-04-28 10:46:54 -030032{
33 struct sync_file *sync_file;
34
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030035 sync_file = kzalloc(sizeof(*sync_file), GFP_KERNEL);
Gustavo Padovand4cab382016-04-28 10:46:54 -030036 if (!sync_file)
37 return NULL;
38
39 sync_file->file = anon_inode_getfile("sync_file", &sync_file_fops,
40 sync_file, 0);
41 if (IS_ERR(sync_file->file))
42 goto err;
43
44 kref_init(&sync_file->kref);
45
46 init_waitqueue_head(&sync_file->wq);
47
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030048 INIT_LIST_HEAD(&sync_file->cb.node);
49
Gustavo Padovand4cab382016-04-28 10:46:54 -030050 return sync_file;
51
52err:
53 kfree(sync_file);
54 return NULL;
55}
56
Chris Wilsonf54d1862016-10-25 13:00:45 +010057static void fence_check_cb_func(struct dma_fence *f, struct dma_fence_cb *cb)
Gustavo Padovand4cab382016-04-28 10:46:54 -030058{
Gustavo Padovand4cab382016-04-28 10:46:54 -030059 struct sync_file *sync_file;
60
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030061 sync_file = container_of(cb, struct sync_file, cb);
Gustavo Padovand4cab382016-04-28 10:46:54 -030062
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030063 wake_up_all(&sync_file->wq);
Gustavo Padovand4cab382016-04-28 10:46:54 -030064}
65
66/**
Gustavo Padovanc240a712016-04-28 10:46:55 -030067 * sync_file_create() - creates a sync file
Gustavo Padovand4cab382016-04-28 10:46:54 -030068 * @fence: fence to add to the sync_fence
69 *
70 * Creates a sync_file containg @fence. Once this is called, the sync_file
Gustavo Padovanc240a712016-04-28 10:46:55 -030071 * takes ownership of @fence. The sync_file can be released with
72 * fput(sync_file->file). Returns the sync_file or NULL in case of error.
Gustavo Padovand4cab382016-04-28 10:46:54 -030073 */
Chris Wilsonf54d1862016-10-25 13:00:45 +010074struct sync_file *sync_file_create(struct dma_fence *fence)
Gustavo Padovand4cab382016-04-28 10:46:54 -030075{
76 struct sync_file *sync_file;
77
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030078 sync_file = sync_file_alloc();
Gustavo Padovand4cab382016-04-28 10:46:54 -030079 if (!sync_file)
80 return NULL;
81
Chris Wilsonf54d1862016-10-25 13:00:45 +010082 sync_file->fence = dma_fence_get(fence);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030083
Gustavo Padovan041916a2016-06-03 12:46:31 -030084 snprintf(sync_file->name, sizeof(sync_file->name), "%s-%s%llu-%d",
Gustavo Padovand4cab382016-04-28 10:46:54 -030085 fence->ops->get_driver_name(fence),
86 fence->ops->get_timeline_name(fence), fence->context,
87 fence->seqno);
88
Gustavo Padovand4cab382016-04-28 10:46:54 -030089 return sync_file;
90}
91EXPORT_SYMBOL(sync_file_create);
92
93/**
94 * sync_file_fdget() - get a sync_file from an fd
95 * @fd: fd referencing a fence
96 *
97 * Ensures @fd references a valid sync_file, increments the refcount of the
98 * backing file. Returns the sync_file or NULL in case of error.
99 */
100static struct sync_file *sync_file_fdget(int fd)
101{
102 struct file *file = fget(fd);
103
104 if (!file)
105 return NULL;
106
107 if (file->f_op != &sync_file_fops)
108 goto err;
109
110 return file->private_data;
111
112err:
113 fput(file);
114 return NULL;
115}
116
Gustavo Padovan972526a2016-08-05 10:39:36 -0300117/**
118 * sync_file_get_fence - get the fence related to the sync_file fd
119 * @fd: sync_file fd to get the fence from
120 *
121 * Ensures @fd references a valid sync_file and returns a fence that
122 * represents all fence in the sync_file. On error NULL is returned.
123 */
Chris Wilsonf54d1862016-10-25 13:00:45 +0100124struct dma_fence *sync_file_get_fence(int fd)
Gustavo Padovan972526a2016-08-05 10:39:36 -0300125{
126 struct sync_file *sync_file;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100127 struct dma_fence *fence;
Gustavo Padovan972526a2016-08-05 10:39:36 -0300128
129 sync_file = sync_file_fdget(fd);
130 if (!sync_file)
131 return NULL;
132
Chris Wilsonf54d1862016-10-25 13:00:45 +0100133 fence = dma_fence_get(sync_file->fence);
Gustavo Padovan972526a2016-08-05 10:39:36 -0300134 fput(sync_file->file);
135
136 return fence;
137}
138EXPORT_SYMBOL(sync_file_get_fence);
139
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300140static int sync_file_set_fence(struct sync_file *sync_file,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100141 struct dma_fence **fences, int num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300142{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100143 struct dma_fence_array *array;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300144
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300145 /*
146 * The reference for the fences in the new sync_file and held
147 * in add_fence() during the merge procedure, so for num_fences == 1
148 * we already own a new reference to the fence. For num_fence > 1
Chris Wilsonf54d1862016-10-25 13:00:45 +0100149 * we own the reference of the dma_fence_array creation.
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300150 */
151 if (num_fences == 1) {
152 sync_file->fence = fences[0];
Gustavo Padovanc654dd02016-09-21 10:20:19 +0300153 kfree(fences);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300154 } else {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100155 array = dma_fence_array_create(num_fences, fences,
156 dma_fence_context_alloc(1),
157 1, false);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300158 if (!array)
159 return -ENOMEM;
160
161 sync_file->fence = &array->base;
162 }
163
164 return 0;
165}
166
Chris Wilsonf54d1862016-10-25 13:00:45 +0100167static struct dma_fence **get_fences(struct sync_file *sync_file,
168 int *num_fences)
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300169{
Chris Wilsonf54d1862016-10-25 13:00:45 +0100170 if (dma_fence_is_array(sync_file->fence)) {
171 struct dma_fence_array *array = to_dma_fence_array(sync_file->fence);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300172
173 *num_fences = array->num_fences;
174 return array->fences;
175 }
176
177 *num_fences = 1;
178 return &sync_file->fence;
179}
180
Chris Wilsonf54d1862016-10-25 13:00:45 +0100181static void add_fence(struct dma_fence **fences,
182 int *i, struct dma_fence *fence)
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300183{
184 fences[*i] = fence;
185
Chris Wilsonf54d1862016-10-25 13:00:45 +0100186 if (!dma_fence_is_signaled(fence)) {
187 dma_fence_get(fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300188 (*i)++;
189 }
190}
191
192/**
193 * sync_file_merge() - merge two sync_files
194 * @name: name of new fence
195 * @a: sync_file a
196 * @b: sync_file b
197 *
198 * Creates a new sync_file which contains copies of all the fences in both
199 * @a and @b. @a and @b remain valid, independent sync_file. Returns the
200 * new merged sync_file or NULL in case of error.
201 */
202static struct sync_file *sync_file_merge(const char *name, struct sync_file *a,
203 struct sync_file *b)
204{
Gustavo Padovand4cab382016-04-28 10:46:54 -0300205 struct sync_file *sync_file;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100206 struct dma_fence **fences, **nfences, **a_fences, **b_fences;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300207 int i, i_a, i_b, num_fences, a_num_fences, b_num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300208
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300209 sync_file = sync_file_alloc();
Gustavo Padovand4cab382016-04-28 10:46:54 -0300210 if (!sync_file)
211 return NULL;
212
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300213 a_fences = get_fences(a, &a_num_fences);
214 b_fences = get_fences(b, &b_num_fences);
215 if (a_num_fences > INT_MAX - b_num_fences)
216 return NULL;
217
218 num_fences = a_num_fences + b_num_fences;
219
220 fences = kcalloc(num_fences, sizeof(*fences), GFP_KERNEL);
221 if (!fences)
222 goto err;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300223
224 /*
225 * Assume sync_file a and b are both ordered and have no
226 * duplicates with the same context.
227 *
228 * If a sync_file can only be created with sync_file_merge
229 * and sync_file_create, this is a reasonable assumption.
230 */
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300231 for (i = i_a = i_b = 0; i_a < a_num_fences && i_b < b_num_fences; ) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100232 struct dma_fence *pt_a = a_fences[i_a];
233 struct dma_fence *pt_b = b_fences[i_b];
Gustavo Padovand4cab382016-04-28 10:46:54 -0300234
235 if (pt_a->context < pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300236 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300237
238 i_a++;
239 } else if (pt_a->context > pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300240 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300241
242 i_b++;
243 } else {
244 if (pt_a->seqno - pt_b->seqno <= INT_MAX)
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300245 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300246 else
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300247 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300248
249 i_a++;
250 i_b++;
251 }
252 }
253
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300254 for (; i_a < a_num_fences; i_a++)
255 add_fence(fences, &i, a_fences[i_a]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300256
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300257 for (; i_b < b_num_fences; i_b++)
258 add_fence(fences, &i, b_fences[i_b]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300259
Rafael Antognolli7cec5402016-09-15 12:14:25 -0700260 if (i == 0)
Chris Wilsonf54d1862016-10-25 13:00:45 +0100261 fences[i++] = dma_fence_get(a_fences[0]);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300262
263 if (num_fences > i) {
264 nfences = krealloc(fences, i * sizeof(*fences),
265 GFP_KERNEL);
266 if (!nfences)
267 goto err;
268
269 fences = nfences;
270 }
271
272 if (sync_file_set_fence(sync_file, fences, i) < 0) {
273 kfree(fences);
274 goto err;
275 }
276
Gustavo Padovand4cab382016-04-28 10:46:54 -0300277 strlcpy(sync_file->name, name, sizeof(sync_file->name));
278 return sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300279
280err:
281 fput(sync_file->file);
282 return NULL;
283
Gustavo Padovand4cab382016-04-28 10:46:54 -0300284}
285
286static void sync_file_free(struct kref *kref)
287{
288 struct sync_file *sync_file = container_of(kref, struct sync_file,
289 kref);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300290
Gustavo Padovane2416552016-08-05 10:39:38 -0300291 if (test_bit(POLL_ENABLED, &sync_file->fence->flags))
Chris Wilsonf54d1862016-10-25 13:00:45 +0100292 dma_fence_remove_callback(sync_file->fence, &sync_file->cb);
293 dma_fence_put(sync_file->fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300294 kfree(sync_file);
295}
296
297static int sync_file_release(struct inode *inode, struct file *file)
298{
299 struct sync_file *sync_file = file->private_data;
300
301 kref_put(&sync_file->kref, sync_file_free);
302 return 0;
303}
304
305static unsigned int sync_file_poll(struct file *file, poll_table *wait)
306{
307 struct sync_file *sync_file = file->private_data;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300308
309 poll_wait(file, &sync_file->wq, wait);
310
Chris Wilsonecebca72016-08-29 19:16:13 +0100311 if (!poll_does_not_wait(wait) &&
312 !test_and_set_bit(POLL_ENABLED, &sync_file->fence->flags)) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100313 if (dma_fence_add_callback(sync_file->fence, &sync_file->cb,
314 fence_check_cb_func) < 0)
Gustavo Padovane2416552016-08-05 10:39:38 -0300315 wake_up_all(&sync_file->wq);
316 }
Gustavo Padovand4cab382016-04-28 10:46:54 -0300317
Chris Wilsonf54d1862016-10-25 13:00:45 +0100318 return dma_fence_is_signaled(sync_file->fence) ? POLLIN : 0;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300319}
320
321static long sync_file_ioctl_merge(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300322 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300323{
324 int fd = get_unused_fd_flags(O_CLOEXEC);
325 int err;
326 struct sync_file *fence2, *fence3;
327 struct sync_merge_data data;
328
329 if (fd < 0)
330 return fd;
331
332 if (copy_from_user(&data, (void __user *)arg, sizeof(data))) {
333 err = -EFAULT;
334 goto err_put_fd;
335 }
336
337 if (data.flags || data.pad) {
338 err = -EINVAL;
339 goto err_put_fd;
340 }
341
342 fence2 = sync_file_fdget(data.fd2);
343 if (!fence2) {
344 err = -ENOENT;
345 goto err_put_fd;
346 }
347
348 data.name[sizeof(data.name) - 1] = '\0';
349 fence3 = sync_file_merge(data.name, sync_file, fence2);
350 if (!fence3) {
351 err = -ENOMEM;
352 goto err_put_fence2;
353 }
354
355 data.fence = fd;
356 if (copy_to_user((void __user *)arg, &data, sizeof(data))) {
357 err = -EFAULT;
358 goto err_put_fence3;
359 }
360
361 fd_install(fd, fence3->file);
362 fput(fence2->file);
363 return 0;
364
365err_put_fence3:
366 fput(fence3->file);
367
368err_put_fence2:
369 fput(fence2->file);
370
371err_put_fd:
372 put_unused_fd(fd);
373 return err;
374}
375
Chris Wilsonf54d1862016-10-25 13:00:45 +0100376static void sync_fill_fence_info(struct dma_fence *fence,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300377 struct sync_fence_info *info)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300378{
379 strlcpy(info->obj_name, fence->ops->get_timeline_name(fence),
380 sizeof(info->obj_name));
381 strlcpy(info->driver_name, fence->ops->get_driver_name(fence),
382 sizeof(info->driver_name));
Chris Wilsonf54d1862016-10-25 13:00:45 +0100383 if (dma_fence_is_signaled(fence))
Gustavo Padovand4cab382016-04-28 10:46:54 -0300384 info->status = fence->status >= 0 ? 1 : fence->status;
385 else
386 info->status = 0;
387 info->timestamp_ns = ktime_to_ns(fence->timestamp);
388}
389
390static long sync_file_ioctl_fence_info(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300391 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300392{
393 struct sync_file_info info;
394 struct sync_fence_info *fence_info = NULL;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100395 struct dma_fence **fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300396 __u32 size;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300397 int num_fences, ret, i;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300398
399 if (copy_from_user(&info, (void __user *)arg, sizeof(info)))
400 return -EFAULT;
401
402 if (info.flags || info.pad)
403 return -EINVAL;
404
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300405 fences = get_fences(sync_file, &num_fences);
406
Gustavo Padovand4cab382016-04-28 10:46:54 -0300407 /*
408 * Passing num_fences = 0 means that userspace doesn't want to
409 * retrieve any sync_fence_info. If num_fences = 0 we skip filling
410 * sync_fence_info and return the actual number of fences on
411 * info->num_fences.
412 */
413 if (!info.num_fences)
414 goto no_fences;
415
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300416 if (info.num_fences < num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300417 return -EINVAL;
418
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300419 size = num_fences * sizeof(*fence_info);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300420 fence_info = kzalloc(size, GFP_KERNEL);
421 if (!fence_info)
422 return -ENOMEM;
423
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300424 for (i = 0; i < num_fences; i++)
425 sync_fill_fence_info(fences[i], &fence_info[i]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300426
427 if (copy_to_user(u64_to_user_ptr(info.sync_fence_info), fence_info,
428 size)) {
429 ret = -EFAULT;
430 goto out;
431 }
432
433no_fences:
434 strlcpy(info.name, sync_file->name, sizeof(info.name));
Chris Wilsonf54d1862016-10-25 13:00:45 +0100435 info.status = dma_fence_is_signaled(sync_file->fence);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300436 info.num_fences = num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300437
438 if (copy_to_user((void __user *)arg, &info, sizeof(info)))
439 ret = -EFAULT;
440 else
441 ret = 0;
442
443out:
444 kfree(fence_info);
445
446 return ret;
447}
448
449static long sync_file_ioctl(struct file *file, unsigned int cmd,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300450 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300451{
452 struct sync_file *sync_file = file->private_data;
453
454 switch (cmd) {
455 case SYNC_IOC_MERGE:
456 return sync_file_ioctl_merge(sync_file, arg);
457
458 case SYNC_IOC_FILE_INFO:
459 return sync_file_ioctl_fence_info(sync_file, arg);
460
461 default:
462 return -ENOTTY;
463 }
464}
465
466static const struct file_operations sync_file_fops = {
467 .release = sync_file_release,
468 .poll = sync_file_poll,
469 .unlocked_ioctl = sync_file_ioctl,
470 .compat_ioctl = sync_file_ioctl,
471};
472