blob: 0fe7ec2657fd1cb817795607db029192b2673ae2 [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 *
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 */
74struct sync_file *sync_file_create(struct fence *fence)
75{
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
Gustavo Padovana02b9dc2016-08-05 10:39:35 -030082 sync_file->fence = fence;
83
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 */
124struct fence *sync_file_get_fence(int fd)
125{
126 struct sync_file *sync_file;
127 struct fence *fence;
128
129 sync_file = sync_file_fdget(fd);
130 if (!sync_file)
131 return NULL;
132
133 fence = fence_get(sync_file->fence);
134 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,
141 struct fence **fences, int num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300142{
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300143 struct 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
149 * we own the reference of the fence_array creation.
150 */
151 if (num_fences == 1) {
152 sync_file->fence = fences[0];
153 } else {
154 array = fence_array_create(num_fences, fences,
155 fence_context_alloc(1), 1, false);
156 if (!array)
157 return -ENOMEM;
158
159 sync_file->fence = &array->base;
160 }
161
162 return 0;
163}
164
165static struct fence **get_fences(struct sync_file *sync_file, int *num_fences)
166{
167 if (fence_is_array(sync_file->fence)) {
168 struct fence_array *array = to_fence_array(sync_file->fence);
169
170 *num_fences = array->num_fences;
171 return array->fences;
172 }
173
174 *num_fences = 1;
175 return &sync_file->fence;
176}
177
178static void add_fence(struct fence **fences, int *i, struct fence *fence)
179{
180 fences[*i] = fence;
181
182 if (!fence_is_signaled(fence)) {
Gustavo Padovand4cab382016-04-28 10:46:54 -0300183 fence_get(fence);
184 (*i)++;
185 }
186}
187
188/**
189 * sync_file_merge() - merge two sync_files
190 * @name: name of new fence
191 * @a: sync_file a
192 * @b: sync_file b
193 *
194 * Creates a new sync_file which contains copies of all the fences in both
195 * @a and @b. @a and @b remain valid, independent sync_file. Returns the
196 * new merged sync_file or NULL in case of error.
197 */
198static struct sync_file *sync_file_merge(const char *name, struct sync_file *a,
199 struct sync_file *b)
200{
Gustavo Padovand4cab382016-04-28 10:46:54 -0300201 struct sync_file *sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300202 struct fence **fences, **nfences, **a_fences, **b_fences;
203 int i, i_a, i_b, num_fences, a_num_fences, b_num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300204
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300205 sync_file = sync_file_alloc();
Gustavo Padovand4cab382016-04-28 10:46:54 -0300206 if (!sync_file)
207 return NULL;
208
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300209 a_fences = get_fences(a, &a_num_fences);
210 b_fences = get_fences(b, &b_num_fences);
211 if (a_num_fences > INT_MAX - b_num_fences)
212 return NULL;
213
214 num_fences = a_num_fences + b_num_fences;
215
216 fences = kcalloc(num_fences, sizeof(*fences), GFP_KERNEL);
217 if (!fences)
218 goto err;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300219
220 /*
221 * Assume sync_file a and b are both ordered and have no
222 * duplicates with the same context.
223 *
224 * If a sync_file can only be created with sync_file_merge
225 * and sync_file_create, this is a reasonable assumption.
226 */
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300227 for (i = i_a = i_b = 0; i_a < a_num_fences && i_b < b_num_fences; ) {
228 struct fence *pt_a = a_fences[i_a];
229 struct fence *pt_b = b_fences[i_b];
Gustavo Padovand4cab382016-04-28 10:46:54 -0300230
231 if (pt_a->context < pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300232 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300233
234 i_a++;
235 } else if (pt_a->context > pt_b->context) {
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300236 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300237
238 i_b++;
239 } else {
240 if (pt_a->seqno - pt_b->seqno <= INT_MAX)
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300241 add_fence(fences, &i, pt_a);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300242 else
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300243 add_fence(fences, &i, pt_b);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300244
245 i_a++;
246 i_b++;
247 }
248 }
249
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300250 for (; i_a < a_num_fences; i_a++)
251 add_fence(fences, &i, a_fences[i_a]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300252
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300253 for (; i_b < b_num_fences; i_b++)
254 add_fence(fences, &i, b_fences[i_b]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300255
Rafael Antognolli7cec5402016-09-15 12:14:25 -0700256 if (i == 0)
257 fences[i++] = fence_get(a_fences[0]);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300258
259 if (num_fences > i) {
260 nfences = krealloc(fences, i * sizeof(*fences),
261 GFP_KERNEL);
262 if (!nfences)
263 goto err;
264
265 fences = nfences;
266 }
267
268 if (sync_file_set_fence(sync_file, fences, i) < 0) {
269 kfree(fences);
270 goto err;
271 }
272
Gustavo Padovand4cab382016-04-28 10:46:54 -0300273 strlcpy(sync_file->name, name, sizeof(sync_file->name));
274 return sync_file;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300275
276err:
277 fput(sync_file->file);
278 return NULL;
279
Gustavo Padovand4cab382016-04-28 10:46:54 -0300280}
281
282static void sync_file_free(struct kref *kref)
283{
284 struct sync_file *sync_file = container_of(kref, struct sync_file,
285 kref);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300286
Gustavo Padovane2416552016-08-05 10:39:38 -0300287 if (test_bit(POLL_ENABLED, &sync_file->fence->flags))
288 fence_remove_callback(sync_file->fence, &sync_file->cb);
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300289 fence_put(sync_file->fence);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300290 kfree(sync_file);
291}
292
293static int sync_file_release(struct inode *inode, struct file *file)
294{
295 struct sync_file *sync_file = file->private_data;
296
297 kref_put(&sync_file->kref, sync_file_free);
298 return 0;
299}
300
301static unsigned int sync_file_poll(struct file *file, poll_table *wait)
302{
303 struct sync_file *sync_file = file->private_data;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300304
305 poll_wait(file, &sync_file->wq, wait);
306
Chris Wilsonecebca72016-08-29 19:16:13 +0100307 if (!poll_does_not_wait(wait) &&
308 !test_and_set_bit(POLL_ENABLED, &sync_file->fence->flags)) {
Gustavo Padovane2416552016-08-05 10:39:38 -0300309 if (fence_add_callback(sync_file->fence, &sync_file->cb,
310 fence_check_cb_func) < 0)
311 wake_up_all(&sync_file->wq);
312 }
Gustavo Padovand4cab382016-04-28 10:46:54 -0300313
Gustavo Padovane2416552016-08-05 10:39:38 -0300314 return fence_is_signaled(sync_file->fence) ? POLLIN : 0;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300315}
316
317static long sync_file_ioctl_merge(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300318 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300319{
320 int fd = get_unused_fd_flags(O_CLOEXEC);
321 int err;
322 struct sync_file *fence2, *fence3;
323 struct sync_merge_data data;
324
325 if (fd < 0)
326 return fd;
327
328 if (copy_from_user(&data, (void __user *)arg, sizeof(data))) {
329 err = -EFAULT;
330 goto err_put_fd;
331 }
332
333 if (data.flags || data.pad) {
334 err = -EINVAL;
335 goto err_put_fd;
336 }
337
338 fence2 = sync_file_fdget(data.fd2);
339 if (!fence2) {
340 err = -ENOENT;
341 goto err_put_fd;
342 }
343
344 data.name[sizeof(data.name) - 1] = '\0';
345 fence3 = sync_file_merge(data.name, sync_file, fence2);
346 if (!fence3) {
347 err = -ENOMEM;
348 goto err_put_fence2;
349 }
350
351 data.fence = fd;
352 if (copy_to_user((void __user *)arg, &data, sizeof(data))) {
353 err = -EFAULT;
354 goto err_put_fence3;
355 }
356
357 fd_install(fd, fence3->file);
358 fput(fence2->file);
359 return 0;
360
361err_put_fence3:
362 fput(fence3->file);
363
364err_put_fence2:
365 fput(fence2->file);
366
367err_put_fd:
368 put_unused_fd(fd);
369 return err;
370}
371
372static void sync_fill_fence_info(struct fence *fence,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300373 struct sync_fence_info *info)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300374{
375 strlcpy(info->obj_name, fence->ops->get_timeline_name(fence),
376 sizeof(info->obj_name));
377 strlcpy(info->driver_name, fence->ops->get_driver_name(fence),
378 sizeof(info->driver_name));
379 if (fence_is_signaled(fence))
380 info->status = fence->status >= 0 ? 1 : fence->status;
381 else
382 info->status = 0;
383 info->timestamp_ns = ktime_to_ns(fence->timestamp);
384}
385
386static long sync_file_ioctl_fence_info(struct sync_file *sync_file,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300387 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300388{
389 struct sync_file_info info;
390 struct sync_fence_info *fence_info = NULL;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300391 struct fence **fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300392 __u32 size;
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300393 int num_fences, ret, i;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300394
395 if (copy_from_user(&info, (void __user *)arg, sizeof(info)))
396 return -EFAULT;
397
398 if (info.flags || info.pad)
399 return -EINVAL;
400
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300401 fences = get_fences(sync_file, &num_fences);
402
Gustavo Padovand4cab382016-04-28 10:46:54 -0300403 /*
404 * Passing num_fences = 0 means that userspace doesn't want to
405 * retrieve any sync_fence_info. If num_fences = 0 we skip filling
406 * sync_fence_info and return the actual number of fences on
407 * info->num_fences.
408 */
409 if (!info.num_fences)
410 goto no_fences;
411
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300412 if (info.num_fences < num_fences)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300413 return -EINVAL;
414
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300415 size = num_fences * sizeof(*fence_info);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300416 fence_info = kzalloc(size, GFP_KERNEL);
417 if (!fence_info)
418 return -ENOMEM;
419
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300420 for (i = 0; i < num_fences; i++)
421 sync_fill_fence_info(fences[i], &fence_info[i]);
Gustavo Padovand4cab382016-04-28 10:46:54 -0300422
423 if (copy_to_user(u64_to_user_ptr(info.sync_fence_info), fence_info,
424 size)) {
425 ret = -EFAULT;
426 goto out;
427 }
428
429no_fences:
430 strlcpy(info.name, sync_file->name, sizeof(info.name));
Gustavo Padovana02b9dc2016-08-05 10:39:35 -0300431 info.status = fence_is_signaled(sync_file->fence);
432 info.num_fences = num_fences;
Gustavo Padovand4cab382016-04-28 10:46:54 -0300433
434 if (copy_to_user((void __user *)arg, &info, sizeof(info)))
435 ret = -EFAULT;
436 else
437 ret = 0;
438
439out:
440 kfree(fence_info);
441
442 return ret;
443}
444
445static long sync_file_ioctl(struct file *file, unsigned int cmd,
Gustavo Padovan92e06212016-04-28 10:46:56 -0300446 unsigned long arg)
Gustavo Padovand4cab382016-04-28 10:46:54 -0300447{
448 struct sync_file *sync_file = file->private_data;
449
450 switch (cmd) {
451 case SYNC_IOC_MERGE:
452 return sync_file_ioctl_merge(sync_file, arg);
453
454 case SYNC_IOC_FILE_INFO:
455 return sync_file_ioctl_fence_info(sync_file, arg);
456
457 default:
458 return -ENOTTY;
459 }
460}
461
462static const struct file_operations sync_file_fops = {
463 .release = sync_file_release,
464 .poll = sync_file_poll,
465 .unlocked_ioctl = sync_file_ioctl,
466 .compat_ioctl = sync_file_ioctl,
467};
468