blob: c835f6216922ed06b1ba0aba5d7abeeb4ccdea65 [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;
155 }
156
157 return 0;
158}
159
160static struct fence **get_fences(struct sync_file *sync_file, int *num_fences)
161{
162 if (fence_is_array(sync_file->fence)) {
163 struct fence_array *array = to_fence_array(sync_file->fence);
164
165 *num_fences = array->num_fences;
166 return array->fences;
167 }
168
169 *num_fences = 1;
170 return &sync_file->fence;
171}
172
173static void add_fence(struct fence **fences, int *i, struct fence *fence)
174{
175 fences[*i] = fence;
176
177 if (!fence_is_signaled(fence)) {
Gustavo Padovand4cab382016-04-28 10:46:54 -0300178 fence_get(fence);
179 (*i)++;
180 }
181}
182
183/**
184 * sync_file_merge() - merge two sync_files
185 * @name: name of new fence
186 * @a: sync_file a
187 * @b: sync_file b
188 *
189 * Creates a new sync_file which contains copies of all the fences in both
190 * @a and @b. @a and @b remain valid, independent sync_file. Returns the
191 * new merged sync_file or NULL in case of error.
192 */
193static struct sync_file *sync_file_merge(const char *name, struct sync_file *a,
194 struct sync_file *b)
195{
Gustavo Padovand4cab382016-04-28 10:46:54 -0300196 struct sync_file *sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300197 struct fence **fences, **nfences, **a_fences, **b_fences;
198 int i, i_a, i_b, num_fences, a_num_fences, b_num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300199
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300200 sync_file = sync_file_alloc();
Gustavo Padovand4cab382016-04-28 10:46:54 -0300201 if (!sync_file)
202 return NULL;
203
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300204 a_fences = get_fences(a, &a_num_fences);
205 b_fences = get_fences(b, &b_num_fences);
206 if (a_num_fences > INT_MAX - b_num_fences)
207 return NULL;
208
209 num_fences = a_num_fences + b_num_fences;
210
211 fences = kcalloc(num_fences, sizeof(*fences), GFP_KERNEL);
212 if (!fences)
213 goto err;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300214
215 /*
216 * Assume sync_file a and b are both ordered and have no
217 * duplicates with the same context.
218 *
219 * If a sync_file can only be created with sync_file_merge
220 * and sync_file_create, this is a reasonable assumption.
221 */
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300222 for (i = i_a = i_b = 0; i_a < a_num_fences && i_b < b_num_fences; ) {
223 struct fence *pt_a = a_fences[i_a];
224 struct fence *pt_b = b_fences[i_b];
Gustavo Padovand4cab382016-04-28 10:46:54 -0300225
226 if (pt_a->context < pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300227 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300228
229 i_a++;
230 } else if (pt_a->context > pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300231 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300232
233 i_b++;
234 } else {
235 if (pt_a->seqno - pt_b->seqno <= INT_MAX)
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300236 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300237 else
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300238 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300239
240 i_a++;
241 i_b++;
242 }
243 }
244
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300245 for (; i_a < a_num_fences; i_a++)
246 add_fence(fences, &i, a_fences[i_a]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300247
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300248 for (; i_b < b_num_fences; i_b++)
249 add_fence(fences, &i, b_fences[i_b]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300250
Rafael Antognolli7cec5402016-09-15 12:14:25 -0700251 if (i == 0)
252 fences[i++] = fence_get(a_fences[0]);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300253
254 if (num_fences > i) {
255 nfences = krealloc(fences, i * sizeof(*fences),
256 GFP_KERNEL);
257 if (!nfences)
258 goto err;
259
260 fences = nfences;
261 }
262
263 if (sync_file_set_fence(sync_file, fences, i) < 0) {
264 kfree(fences);
265 goto err;
266 }
267
Gustavo Padovand4cab382016-04-28 10:46:54 -0300268 strlcpy(sync_file->name, name, sizeof(sync_file->name));
269 return sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300270
271err:
272 fput(sync_file->file);
273 return NULL;
274
Gustavo Padovand4cab382016-04-28 10:46:54 -0300275}
276
277static void sync_file_free(struct kref *kref)
278{
279 struct sync_file *sync_file = container_of(kref, struct sync_file,
280 kref);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300281
Gustavo Padovane2416552016-08-05 10:39:38 -0300282 if (test_bit(POLL_ENABLED, &sync_file->fence->flags))
283 fence_remove_callback(sync_file->fence, &sync_file->cb);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300284 fence_put(sync_file->fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300285 kfree(sync_file);
286}
287
288static int sync_file_release(struct inode *inode, struct file *file)
289{
290 struct sync_file *sync_file = file->private_data;
291
292 kref_put(&sync_file->kref, sync_file_free);
293 return 0;
294}
295
296static unsigned int sync_file_poll(struct file *file, poll_table *wait)
297{
298 struct sync_file *sync_file = file->private_data;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300299
300 poll_wait(file, &sync_file->wq, wait);
301
Gustavo Padovan733c30d2016-11-18 17:26:43 +0900302 if (!test_and_set_bit(POLL_ENABLED, &sync_file->fence->flags)) {
Gustavo Padovane2416552016-08-05 10:39:38 -0300303 if (fence_add_callback(sync_file->fence, &sync_file->cb,
Gustavo Padovan733c30d2016-11-18 17:26:43 +0900304 fence_check_cb_func) < 0)
Gustavo Padovane2416552016-08-05 10:39:38 -0300305 wake_up_all(&sync_file->wq);
306 }
Gustavo Padovand4cab382016-04-28 10:46:54 -0300307
Gustavo Padovane2416552016-08-05 10:39:38 -0300308 return fence_is_signaled(sync_file->fence) ? POLLIN : 0;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300309}
310
311static long sync_file_ioctl_merge(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300312 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300313{
314 int fd = get_unused_fd_flags(O_CLOEXEC);
315 int err;
316 struct sync_file *fence2, *fence3;
317 struct sync_merge_data data;
318
319 if (fd < 0)
320 return fd;
321
322 if (copy_from_user(&data, (void __user *)arg, sizeof(data))) {
323 err = -EFAULT;
324 goto err_put_fd;
325 }
326
327 if (data.flags || data.pad) {
328 err = -EINVAL;
329 goto err_put_fd;
330 }
331
332 fence2 = sync_file_fdget(data.fd2);
333 if (!fence2) {
334 err = -ENOENT;
335 goto err_put_fd;
336 }
337
338 data.name[sizeof(data.name) - 1] = '\0';
339 fence3 = sync_file_merge(data.name, sync_file, fence2);
340 if (!fence3) {
341 err = -ENOMEM;
342 goto err_put_fence2;
343 }
344
345 data.fence = fd;
346 if (copy_to_user((void __user *)arg, &data, sizeof(data))) {
347 err = -EFAULT;
348 goto err_put_fence3;
349 }
350
351 fd_install(fd, fence3->file);
352 fput(fence2->file);
353 return 0;
354
355err_put_fence3:
356 fput(fence3->file);
357
358err_put_fence2:
359 fput(fence2->file);
360
361err_put_fd:
362 put_unused_fd(fd);
363 return err;
364}
365
366static void sync_fill_fence_info(struct fence *fence,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300367 struct sync_fence_info *info)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300368{
369 strlcpy(info->obj_name, fence->ops->get_timeline_name(fence),
370 sizeof(info->obj_name));
371 strlcpy(info->driver_name, fence->ops->get_driver_name(fence),
372 sizeof(info->driver_name));
Chris Wilsond3b029a2017-01-04 14:12:21 +0000373
374 info->status = fence_get_status(fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300375 info->timestamp_ns = ktime_to_ns(fence->timestamp);
376}
377
378static long sync_file_ioctl_fence_info(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300379 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300380{
381 struct sync_file_info info;
382 struct sync_fence_info *fence_info = NULL;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300383 struct fence **fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300384 __u32 size;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300385 int num_fences, ret, i;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300386
387 if (copy_from_user(&info, (void __user *)arg, sizeof(info)))
388 return -EFAULT;
389
390 if (info.flags || info.pad)
391 return -EINVAL;
392
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300393 fences = get_fences(sync_file, &num_fences);
394
Gustavo Padovand4cab382016-04-28 10:46:54 -0300395 /*
396 * Passing num_fences = 0 means that userspace doesn't want to
397 * retrieve any sync_fence_info. If num_fences = 0 we skip filling
398 * sync_fence_info and return the actual number of fences on
399 * info->num_fences.
400 */
401 if (!info.num_fences)
402 goto no_fences;
403
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300404 if (info.num_fences < num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300405 return -EINVAL;
406
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300407 size = num_fences * sizeof(*fence_info);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300408 fence_info = kzalloc(size, GFP_KERNEL);
409 if (!fence_info)
410 return -ENOMEM;
411
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300412 for (i = 0; i < num_fences; i++)
413 sync_fill_fence_info(fences[i], &fence_info[i]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300414
415 if (copy_to_user(u64_to_user_ptr(info.sync_fence_info), fence_info,
416 size)) {
417 ret = -EFAULT;
418 goto out;
419 }
420
421no_fences:
422 strlcpy(info.name, sync_file->name, sizeof(info.name));
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300423 info.status = fence_is_signaled(sync_file->fence);
424 info.num_fences = num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300425
426 if (copy_to_user((void __user *)arg, &info, sizeof(info)))
427 ret = -EFAULT;
428 else
429 ret = 0;
430
431out:
432 kfree(fence_info);
433
434 return ret;
435}
436
437static long sync_file_ioctl(struct file *file, unsigned int cmd,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300438 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300439{
440 struct sync_file *sync_file = file->private_data;
441
442 switch (cmd) {
443 case SYNC_IOC_MERGE:
444 return sync_file_ioctl_merge(sync_file, arg);
445
446 case SYNC_IOC_FILE_INFO:
447 return sync_file_ioctl_fence_info(sync_file, arg);
448
449 default:
450 return -ENOTTY;
451 }
452}
453
454static const struct file_operations sync_file_fops = {
455 .release = sync_file_release,
456 .poll = sync_file_poll,
457 .unlocked_ioctl = sync_file_ioctl,
458 .compat_ioctl = sync_file_ioctl,
459};
460