blob: 426a75dba3bd080ea515fb5cf89f805f4bbdc94f [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
57static void fence_check_cb_func(struct fence *f, struct fence_cb *cb)
58{
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 *
Daniel Vetter4baaef82016-12-09 19:53:06 +010070 * Creates a sync_file containg @fence. This function acquires and additional
71 * reference of @fence for the newly-created &sync_file, if it succeeds. The
72 * sync_file can be released with fput(sync_file->file). Returns the
73 * sync_file or NULL in case of error.
Gustavo Padovand4cab382016-04-28 10:46:54 -030074 */
75struct sync_file *sync_file_create(struct fence *fence)
76{
77 struct sync_file *sync_file;
78
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030079 sync_file = sync_file_alloc();
Gustavo Padovand4cab382016-04-28 10:46:54 -030080 if (!sync_file)
81 return NULL;
82
Gustavo Padovan8fba9cd2016-10-19 15:48:32 -020083 sync_file->fence = fence_get(fence);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030084
Gustavo Padovan041916a2016-06-03 12:46:31 -030085 snprintf(sync_file->name, sizeof(sync_file->name), "%s-%s%llu-%d",
Gustavo Padovand4cab382016-04-28 10:46:54 -030086 fence->ops->get_driver_name(fence),
87 fence->ops->get_timeline_name(fence), fence->context,
88 fence->seqno);
89
Gustavo Padovand4cab382016-04-28 10:46:54 -030090 return sync_file;
91}
92EXPORT_SYMBOL(sync_file_create);
93
Gustavo Padovand4cab382016-04-28 10:46:54 -030094static struct sync_file *sync_file_fdget(int fd)
95{
96 struct file *file = fget(fd);
97
98 if (!file)
99 return NULL;
100
101 if (file->f_op != &sync_file_fops)
102 goto err;
103
104 return file->private_data;
105
106err:
107 fput(file);
108 return NULL;
109}
110
Gustavo Padovan972526a2016-08-05 10:39:36 -0300111/**
112 * sync_file_get_fence - get the fence related to the sync_file fd
113 * @fd: sync_file fd to get the fence from
114 *
115 * Ensures @fd references a valid sync_file and returns a fence that
116 * represents all fence in the sync_file. On error NULL is returned.
117 */
118struct fence *sync_file_get_fence(int fd)
119{
120 struct sync_file *sync_file;
121 struct fence *fence;
122
123 sync_file = sync_file_fdget(fd);
124 if (!sync_file)
125 return NULL;
126
127 fence = fence_get(sync_file->fence);
128 fput(sync_file->file);
129
130 return fence;
131}
132EXPORT_SYMBOL(sync_file_get_fence);
133
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300134static int sync_file_set_fence(struct sync_file *sync_file,
135 struct fence **fences, int num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300136{
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300137 struct fence_array *array;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300138
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300139 /*
140 * The reference for the fences in the new sync_file and held
141 * in add_fence() during the merge procedure, so for num_fences == 1
142 * we already own a new reference to the fence. For num_fence > 1
143 * we own the reference of the fence_array creation.
144 */
145 if (num_fences == 1) {
146 sync_file->fence = fences[0];
Gustavo Padovanc654dd02016-09-21 10:20:19 +0300147 kfree(fences);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300148 } else {
149 array = fence_array_create(num_fences, fences,
150 fence_context_alloc(1), 1, false);
151 if (!array)
152 return -ENOMEM;
153
154 sync_file->fence = &array->base;
Lynus Vazf5f72c62017-02-17 14:34:20 +0530155
156 /*
157 * Register for callbacks so that we know when each fence
158 * in the array is signaled
159 */
160 fence_enable_sw_signaling(sync_file->fence);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300161 }
162
163 return 0;
164}
165
166static struct fence **get_fences(struct sync_file *sync_file, int *num_fences)
167{
168 if (fence_is_array(sync_file->fence)) {
169 struct fence_array *array = to_fence_array(sync_file->fence);
170
171 *num_fences = array->num_fences;
172 return array->fences;
173 }
174
175 *num_fences = 1;
176 return &sync_file->fence;
177}
178
179static void add_fence(struct fence **fences, int *i, struct fence *fence)
180{
181 fences[*i] = fence;
182
183 if (!fence_is_signaled(fence)) {
Gustavo Padovand4cab382016-04-28 10:46:54 -0300184 fence_get(fence);
185 (*i)++;
186 }
187}
188
189/**
190 * sync_file_merge() - merge two sync_files
191 * @name: name of new fence
192 * @a: sync_file a
193 * @b: sync_file b
194 *
195 * Creates a new sync_file which contains copies of all the fences in both
196 * @a and @b. @a and @b remain valid, independent sync_file. Returns the
197 * new merged sync_file or NULL in case of error.
198 */
199static struct sync_file *sync_file_merge(const char *name, struct sync_file *a,
200 struct sync_file *b)
201{
Gustavo Padovand4cab382016-04-28 10:46:54 -0300202 struct sync_file *sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300203 struct fence **fences, **nfences, **a_fences, **b_fences;
204 int i, i_a, i_b, num_fences, a_num_fences, b_num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300205
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300206 sync_file = sync_file_alloc();
Gustavo Padovand4cab382016-04-28 10:46:54 -0300207 if (!sync_file)
208 return NULL;
209
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300210 a_fences = get_fences(a, &a_num_fences);
211 b_fences = get_fences(b, &b_num_fences);
212 if (a_num_fences > INT_MAX - b_num_fences)
Navid Emamdoostbdca5752019-11-22 16:09:55 -0600213 goto err;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300214
215 num_fences = a_num_fences + b_num_fences;
216
217 fences = kcalloc(num_fences, sizeof(*fences), GFP_KERNEL);
218 if (!fences)
219 goto err;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300220
221 /*
222 * Assume sync_file a and b are both ordered and have no
223 * duplicates with the same context.
224 *
225 * If a sync_file can only be created with sync_file_merge
226 * and sync_file_create, this is a reasonable assumption.
227 */
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300228 for (i = i_a = i_b = 0; i_a < a_num_fences && i_b < b_num_fences; ) {
229 struct fence *pt_a = a_fences[i_a];
230 struct fence *pt_b = b_fences[i_b];
Gustavo Padovand4cab382016-04-28 10:46:54 -0300231
232 if (pt_a->context < pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300233 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300234
235 i_a++;
236 } else if (pt_a->context > pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300237 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300238
239 i_b++;
240 } else {
241 if (pt_a->seqno - pt_b->seqno <= INT_MAX)
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300242 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300243 else
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300244 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300245
246 i_a++;
247 i_b++;
248 }
249 }
250
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300251 for (; i_a < a_num_fences; i_a++)
252 add_fence(fences, &i, a_fences[i_a]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300253
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300254 for (; i_b < b_num_fences; i_b++)
255 add_fence(fences, &i, b_fences[i_b]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300256
Rafael Antognolli7cec5402016-09-15 12:14:25 -0700257 if (i == 0)
258 fences[i++] = fence_get(a_fences[0]);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300259
260 if (num_fences > i) {
261 nfences = krealloc(fences, i * sizeof(*fences),
262 GFP_KERNEL);
263 if (!nfences)
264 goto err;
265
266 fences = nfences;
267 }
268
269 if (sync_file_set_fence(sync_file, fences, i) < 0) {
270 kfree(fences);
271 goto err;
272 }
273
Gustavo Padovand4cab382016-04-28 10:46:54 -0300274 strlcpy(sync_file->name, name, sizeof(sync_file->name));
275 return sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300276
277err:
278 fput(sync_file->file);
279 return NULL;
280
Gustavo Padovand4cab382016-04-28 10:46:54 -0300281}
282
283static void sync_file_free(struct kref *kref)
284{
285 struct sync_file *sync_file = container_of(kref, struct sync_file,
286 kref);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300287
Chris Wilsonad597752017-09-24 10:21:30 -0700288 if (test_bit(POLL_ENABLED, &sync_file->flags))
Gustavo Padovane2416552016-08-05 10:39:38 -0300289 fence_remove_callback(sync_file->fence, &sync_file->cb);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300290 fence_put(sync_file->fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300291 kfree(sync_file);
292}
293
294static int sync_file_release(struct inode *inode, struct file *file)
295{
296 struct sync_file *sync_file = file->private_data;
297
298 kref_put(&sync_file->kref, sync_file_free);
299 return 0;
300}
301
302static unsigned int sync_file_poll(struct file *file, poll_table *wait)
303{
304 struct sync_file *sync_file = file->private_data;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300305
306 poll_wait(file, &sync_file->wq, wait);
307
Chris Wilson74fa0af2017-07-28 22:29:51 +0100308 if (list_empty(&sync_file->cb.node) &&
309 !test_and_set_bit(POLL_ENABLED, &sync_file->flags)) {
Gustavo Padovane2416552016-08-05 10:39:38 -0300310 if (fence_add_callback(sync_file->fence, &sync_file->cb,
Gustavo Padovan733c30d2016-11-18 17:26:43 +0900311 fence_check_cb_func) < 0)
Gustavo Padovane2416552016-08-05 10:39:38 -0300312 wake_up_all(&sync_file->wq);
313 }
Gustavo Padovand4cab382016-04-28 10:46:54 -0300314
Gustavo Padovane2416552016-08-05 10:39:38 -0300315 return fence_is_signaled(sync_file->fence) ? POLLIN : 0;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300316}
317
318static long sync_file_ioctl_merge(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300319 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300320{
321 int fd = get_unused_fd_flags(O_CLOEXEC);
322 int err;
323 struct sync_file *fence2, *fence3;
324 struct sync_merge_data data;
325
326 if (fd < 0)
327 return fd;
328
329 if (copy_from_user(&data, (void __user *)arg, sizeof(data))) {
330 err = -EFAULT;
331 goto err_put_fd;
332 }
333
334 if (data.flags || data.pad) {
335 err = -EINVAL;
336 goto err_put_fd;
337 }
338
339 fence2 = sync_file_fdget(data.fd2);
340 if (!fence2) {
341 err = -ENOENT;
342 goto err_put_fd;
343 }
344
345 data.name[sizeof(data.name) - 1] = '\0';
346 fence3 = sync_file_merge(data.name, sync_file, fence2);
347 if (!fence3) {
348 err = -ENOMEM;
349 goto err_put_fence2;
350 }
351
352 data.fence = fd;
353 if (copy_to_user((void __user *)arg, &data, sizeof(data))) {
354 err = -EFAULT;
355 goto err_put_fence3;
356 }
357
358 fd_install(fd, fence3->file);
359 fput(fence2->file);
360 return 0;
361
362err_put_fence3:
363 fput(fence3->file);
364
365err_put_fence2:
366 fput(fence2->file);
367
368err_put_fd:
369 put_unused_fd(fd);
370 return err;
371}
372
373static void sync_fill_fence_info(struct fence *fence,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300374 struct sync_fence_info *info)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300375{
376 strlcpy(info->obj_name, fence->ops->get_timeline_name(fence),
377 sizeof(info->obj_name));
378 strlcpy(info->driver_name, fence->ops->get_driver_name(fence),
379 sizeof(info->driver_name));
Chris Wilsond3b029a2017-01-04 14:12:21 +0000380
381 info->status = fence_get_status(fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300382 info->timestamp_ns = ktime_to_ns(fence->timestamp);
383}
384
385static long sync_file_ioctl_fence_info(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300386 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300387{
388 struct sync_file_info info;
389 struct sync_fence_info *fence_info = NULL;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300390 struct fence **fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300391 __u32 size;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300392 int num_fences, ret, i;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300393
394 if (copy_from_user(&info, (void __user *)arg, sizeof(info)))
395 return -EFAULT;
396
397 if (info.flags || info.pad)
398 return -EINVAL;
399
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300400 fences = get_fences(sync_file, &num_fences);
401
Gustavo Padovand4cab382016-04-28 10:46:54 -0300402 /*
403 * Passing num_fences = 0 means that userspace doesn't want to
404 * retrieve any sync_fence_info. If num_fences = 0 we skip filling
405 * sync_fence_info and return the actual number of fences on
406 * info->num_fences.
407 */
408 if (!info.num_fences)
409 goto no_fences;
410
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300411 if (info.num_fences < num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300412 return -EINVAL;
413
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300414 size = num_fences * sizeof(*fence_info);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300415 fence_info = kzalloc(size, GFP_KERNEL);
416 if (!fence_info)
417 return -ENOMEM;
418
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300419 for (i = 0; i < num_fences; i++)
420 sync_fill_fence_info(fences[i], &fence_info[i]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300421
422 if (copy_to_user(u64_to_user_ptr(info.sync_fence_info), fence_info,
423 size)) {
424 ret = -EFAULT;
425 goto out;
426 }
427
428no_fences:
429 strlcpy(info.name, sync_file->name, sizeof(info.name));
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300430 info.status = fence_is_signaled(sync_file->fence);
431 info.num_fences = num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300432
433 if (copy_to_user((void __user *)arg, &info, sizeof(info)))
434 ret = -EFAULT;
435 else
436 ret = 0;
437
438out:
439 kfree(fence_info);
440
441 return ret;
442}
443
444static long sync_file_ioctl(struct file *file, unsigned int cmd,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300445 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300446{
447 struct sync_file *sync_file = file->private_data;
448
449 switch (cmd) {
450 case SYNC_IOC_MERGE:
451 return sync_file_ioctl_merge(sync_file, arg);
452
453 case SYNC_IOC_FILE_INFO:
454 return sync_file_ioctl_fence_info(sync_file, arg);
455
456 default:
457 return -ENOTTY;
458 }
459}
460
461static const struct file_operations sync_file_fops = {
462 .release = sync_file_release,
463 .poll = sync_file_poll,
464 .unlocked_ioctl = sync_file_ioctl,
465 .compat_ioctl = sync_file_ioctl,
466};
467