blob: 96ab6161903a28679be4124813825035a3918592 [file] [log] [blame]
Chris Wilson5cc9ed42014-05-16 14:22:37 +01001/*
2 * Copyright © 2012-2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
Maarten Lankhorstb588c922015-05-13 09:56:00 +020025#include <drm/drmP.h>
26#include <drm/i915_drm.h>
Chris Wilson5cc9ed42014-05-16 14:22:37 +010027#include "i915_drv.h"
28#include "i915_trace.h"
29#include "intel_drv.h"
30#include <linux/mmu_context.h>
31#include <linux/mmu_notifier.h>
32#include <linux/mempolicy.h>
33#include <linux/swap.h>
34
Chris Wilsonad46cb52014-08-07 14:20:40 +010035struct i915_mm_struct {
36 struct mm_struct *mm;
Chris Wilsonf470b192016-04-05 15:00:01 +010037 struct drm_i915_private *i915;
Chris Wilsonad46cb52014-08-07 14:20:40 +010038 struct i915_mmu_notifier *mn;
39 struct hlist_node node;
40 struct kref kref;
41 struct work_struct work;
42};
43
Chris Wilson5cc9ed42014-05-16 14:22:37 +010044#if defined(CONFIG_MMU_NOTIFIER)
45#include <linux/interval_tree.h>
46
47struct i915_mmu_notifier {
48 spinlock_t lock;
49 struct hlist_node node;
50 struct mmu_notifier mn;
51 struct rb_root objects;
Chris Wilson393afc22016-04-05 14:59:59 +010052 struct workqueue_struct *wq;
Chris Wilson5cc9ed42014-05-16 14:22:37 +010053};
54
55struct i915_mmu_object {
Chris Wilsonad46cb52014-08-07 14:20:40 +010056 struct i915_mmu_notifier *mn;
Chris Wilson768e1592016-01-21 17:32:43 +000057 struct drm_i915_gem_object *obj;
Chris Wilson5cc9ed42014-05-16 14:22:37 +010058 struct interval_tree_node it;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010059 struct list_head link;
Chris Wilson380996a2015-10-01 12:34:47 +010060 struct work_struct work;
Chris Wilson768e1592016-01-21 17:32:43 +000061 bool attached;
Chris Wilson5cc9ed42014-05-16 14:22:37 +010062};
63
Chris Wilson393afc22016-04-05 14:59:59 +010064static void wait_rendering(struct drm_i915_gem_object *obj)
65{
Chris Wilson8a3b3d52016-08-05 10:14:08 +010066 unsigned long active = __I915_BO_ACTIVE(obj);
67 int idx;
Chris Wilson393afc22016-04-05 14:59:59 +010068
Chris Wilson8a3b3d52016-08-05 10:14:08 +010069 for_each_active(active, idx)
70 i915_gem_active_wait_unlocked(&obj->last_read[idx],
71 false, NULL, NULL);
Chris Wilson393afc22016-04-05 14:59:59 +010072}
73
Chris Wilson768e1592016-01-21 17:32:43 +000074static void cancel_userptr(struct work_struct *work)
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010075{
Chris Wilson380996a2015-10-01 12:34:47 +010076 struct i915_mmu_object *mo = container_of(work, typeof(*mo), work);
77 struct drm_i915_gem_object *obj = mo->obj;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010078 struct drm_device *dev = obj->base.dev;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010079
Chris Wilson8a3b3d52016-08-05 10:14:08 +010080 wait_rendering(obj);
81
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010082 mutex_lock(&dev->struct_mutex);
83 /* Cancel any active worker and force us to re-evaluate gup */
84 obj->userptr.work = NULL;
85
86 if (obj->pages != NULL) {
87 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010088 bool was_interruptible;
89
90 was_interruptible = dev_priv->mm.interruptible;
91 dev_priv->mm.interruptible = false;
92
Chris Wilsonaa653a62016-08-04 07:52:27 +010093 WARN_ON(i915_gem_object_unbind(obj));
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010094 WARN_ON(i915_gem_object_put_pages(obj));
95
96 dev_priv->mm.interruptible = was_interruptible;
97 }
98
Chris Wilsonf8c417c2016-07-20 13:31:53 +010099 i915_gem_object_put(obj);
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100100 mutex_unlock(&dev->struct_mutex);
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100101}
102
Chris Wilson768e1592016-01-21 17:32:43 +0000103static void add_object(struct i915_mmu_object *mo)
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100104{
Chris Wilson768e1592016-01-21 17:32:43 +0000105 if (mo->attached)
106 return;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100107
Chris Wilson768e1592016-01-21 17:32:43 +0000108 interval_tree_insert(&mo->it, &mo->mn->objects);
109 mo->attached = true;
110}
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100111
Chris Wilson768e1592016-01-21 17:32:43 +0000112static void del_object(struct i915_mmu_object *mo)
113{
114 if (!mo->attached)
115 return;
116
117 interval_tree_remove(&mo->it, &mo->mn->objects);
118 mo->attached = false;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100119}
120
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100121static void i915_gem_userptr_mn_invalidate_range_start(struct mmu_notifier *_mn,
122 struct mm_struct *mm,
123 unsigned long start,
124 unsigned long end)
125{
Chris Wilson380996a2015-10-01 12:34:47 +0100126 struct i915_mmu_notifier *mn =
127 container_of(_mn, struct i915_mmu_notifier, mn);
128 struct i915_mmu_object *mo;
Chris Wilson768e1592016-01-21 17:32:43 +0000129 struct interval_tree_node *it;
130 LIST_HEAD(cancelled);
131
132 if (RB_EMPTY_ROOT(&mn->objects))
133 return;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100134
Chris Wilson380996a2015-10-01 12:34:47 +0100135 /* interval ranges are inclusive, but invalidate range is exclusive */
136 end--;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100137
Chris Wilson380996a2015-10-01 12:34:47 +0100138 spin_lock(&mn->lock);
Chris Wilson768e1592016-01-21 17:32:43 +0000139 it = interval_tree_iter_first(&mn->objects, start, end);
140 while (it) {
141 /* The mmu_object is released late when destroying the
142 * GEM object so it is entirely possible to gain a
143 * reference on an object in the process of being freed
144 * since our serialisation is via the spinlock and not
145 * the struct_mutex - and consequently use it after it
146 * is freed and then double free it. To prevent that
147 * use-after-free we only acquire a reference on the
148 * object if it is not in the process of being destroyed.
149 */
150 mo = container_of(it, struct i915_mmu_object, it);
151 if (kref_get_unless_zero(&mo->obj->base.refcount))
Chris Wilson393afc22016-04-05 14:59:59 +0100152 queue_work(mn->wq, &mo->work);
Michał Winiarski460822b2015-02-03 15:48:17 +0100153
Chris Wilson768e1592016-01-21 17:32:43 +0000154 list_add(&mo->link, &cancelled);
155 it = interval_tree_iter_next(it, start, end);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100156 }
Chris Wilson768e1592016-01-21 17:32:43 +0000157 list_for_each_entry(mo, &cancelled, link)
158 del_object(mo);
Chris Wilson380996a2015-10-01 12:34:47 +0100159 spin_unlock(&mn->lock);
Chris Wilson393afc22016-04-05 14:59:59 +0100160
161 flush_workqueue(mn->wq);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100162}
163
164static const struct mmu_notifier_ops i915_gem_userptr_notifier = {
165 .invalidate_range_start = i915_gem_userptr_mn_invalidate_range_start,
166};
167
168static struct i915_mmu_notifier *
Chris Wilsonad46cb52014-08-07 14:20:40 +0100169i915_mmu_notifier_create(struct mm_struct *mm)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100170{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100171 struct i915_mmu_notifier *mn;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100172 int ret;
173
Chris Wilsonad46cb52014-08-07 14:20:40 +0100174 mn = kmalloc(sizeof(*mn), GFP_KERNEL);
175 if (mn == NULL)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100176 return ERR_PTR(-ENOMEM);
177
Chris Wilsonad46cb52014-08-07 14:20:40 +0100178 spin_lock_init(&mn->lock);
179 mn->mn.ops = &i915_gem_userptr_notifier;
180 mn->objects = RB_ROOT;
Chris Wilson393afc22016-04-05 14:59:59 +0100181 mn->wq = alloc_workqueue("i915-userptr-release", WQ_UNBOUND, 0);
182 if (mn->wq == NULL) {
183 kfree(mn);
184 return ERR_PTR(-ENOMEM);
185 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100186
Chris Wilsonad46cb52014-08-07 14:20:40 +0100187 /* Protected by mmap_sem (write-lock) */
188 ret = __mmu_notifier_register(&mn->mn, mm);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100189 if (ret) {
Chris Wilson393afc22016-04-05 14:59:59 +0100190 destroy_workqueue(mn->wq);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100191 kfree(mn);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100192 return ERR_PTR(ret);
193 }
194
Chris Wilsonad46cb52014-08-07 14:20:40 +0100195 return mn;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100196}
197
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100198static void
199i915_gem_userptr_release__mmu_notifier(struct drm_i915_gem_object *obj)
200{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100201 struct i915_mmu_object *mo;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100202
Chris Wilsonad46cb52014-08-07 14:20:40 +0100203 mo = obj->userptr.mmu_object;
204 if (mo == NULL)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100205 return;
206
Chris Wilson768e1592016-01-21 17:32:43 +0000207 spin_lock(&mo->mn->lock);
208 del_object(mo);
209 spin_unlock(&mo->mn->lock);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100210 kfree(mo);
211
212 obj->userptr.mmu_object = NULL;
213}
214
215static struct i915_mmu_notifier *
216i915_mmu_notifier_find(struct i915_mm_struct *mm)
217{
Chris Wilsone9681362014-09-26 10:31:02 +0100218 struct i915_mmu_notifier *mn = mm->mn;
219
220 mn = mm->mn;
221 if (mn)
222 return mn;
223
224 down_write(&mm->mm->mmap_sem);
Chris Wilsonf470b192016-04-05 15:00:01 +0100225 mutex_lock(&mm->i915->mm_lock);
Chris Wilsone9681362014-09-26 10:31:02 +0100226 if ((mn = mm->mn) == NULL) {
227 mn = i915_mmu_notifier_create(mm->mm);
228 if (!IS_ERR(mn))
229 mm->mn = mn;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100230 }
Chris Wilsonf470b192016-04-05 15:00:01 +0100231 mutex_unlock(&mm->i915->mm_lock);
Chris Wilsone9681362014-09-26 10:31:02 +0100232 up_write(&mm->mm->mmap_sem);
233
234 return mn;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100235}
236
237static int
238i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj,
239 unsigned flags)
240{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100241 struct i915_mmu_notifier *mn;
242 struct i915_mmu_object *mo;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100243
244 if (flags & I915_USERPTR_UNSYNCHRONIZED)
245 return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
246
Chris Wilsonad46cb52014-08-07 14:20:40 +0100247 if (WARN_ON(obj->userptr.mm == NULL))
248 return -EINVAL;
249
250 mn = i915_mmu_notifier_find(obj->userptr.mm);
251 if (IS_ERR(mn))
252 return PTR_ERR(mn);
253
254 mo = kzalloc(sizeof(*mo), GFP_KERNEL);
255 if (mo == NULL)
256 return -ENOMEM;
257
258 mo->mn = mn;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100259 mo->obj = obj;
Chris Wilson768e1592016-01-21 17:32:43 +0000260 mo->it.start = obj->userptr.ptr;
261 mo->it.last = obj->userptr.ptr + obj->base.size - 1;
262 INIT_WORK(&mo->work, cancel_userptr);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100263
Chris Wilsonad46cb52014-08-07 14:20:40 +0100264 obj->userptr.mmu_object = mo;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100265 return 0;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100266}
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100267
Chris Wilsonad46cb52014-08-07 14:20:40 +0100268static void
269i915_mmu_notifier_free(struct i915_mmu_notifier *mn,
270 struct mm_struct *mm)
271{
272 if (mn == NULL)
273 return;
274
275 mmu_notifier_unregister(&mn->mn, mm);
Chris Wilson393afc22016-04-05 14:59:59 +0100276 destroy_workqueue(mn->wq);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100277 kfree(mn);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100278}
279
280#else
281
282static void
283i915_gem_userptr_release__mmu_notifier(struct drm_i915_gem_object *obj)
284{
285}
286
287static int
288i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj,
289 unsigned flags)
290{
291 if ((flags & I915_USERPTR_UNSYNCHRONIZED) == 0)
292 return -ENODEV;
293
294 if (!capable(CAP_SYS_ADMIN))
295 return -EPERM;
296
297 return 0;
298}
Chris Wilsonad46cb52014-08-07 14:20:40 +0100299
300static void
301i915_mmu_notifier_free(struct i915_mmu_notifier *mn,
302 struct mm_struct *mm)
303{
304}
305
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100306#endif
307
Chris Wilsonad46cb52014-08-07 14:20:40 +0100308static struct i915_mm_struct *
309__i915_mm_struct_find(struct drm_i915_private *dev_priv, struct mm_struct *real)
310{
311 struct i915_mm_struct *mm;
312
313 /* Protected by dev_priv->mm_lock */
314 hash_for_each_possible(dev_priv->mm_structs, mm, node, (unsigned long)real)
315 if (mm->mm == real)
316 return mm;
317
318 return NULL;
319}
320
321static int
322i915_gem_userptr_init__mm_struct(struct drm_i915_gem_object *obj)
323{
324 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
325 struct i915_mm_struct *mm;
326 int ret = 0;
327
328 /* During release of the GEM object we hold the struct_mutex. This
329 * precludes us from calling mmput() at that time as that may be
330 * the last reference and so call exit_mmap(). exit_mmap() will
331 * attempt to reap the vma, and if we were holding a GTT mmap
332 * would then call drm_gem_vm_close() and attempt to reacquire
333 * the struct mutex. So in order to avoid that recursion, we have
334 * to defer releasing the mm reference until after we drop the
335 * struct_mutex, i.e. we need to schedule a worker to do the clean
336 * up.
337 */
338 mutex_lock(&dev_priv->mm_lock);
339 mm = __i915_mm_struct_find(dev_priv, current->mm);
340 if (mm == NULL) {
341 mm = kmalloc(sizeof(*mm), GFP_KERNEL);
342 if (mm == NULL) {
343 ret = -ENOMEM;
344 goto out;
345 }
346
347 kref_init(&mm->kref);
Chris Wilsonf470b192016-04-05 15:00:01 +0100348 mm->i915 = to_i915(obj->base.dev);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100349
350 mm->mm = current->mm;
351 atomic_inc(&current->mm->mm_count);
352
353 mm->mn = NULL;
354
355 /* Protected by dev_priv->mm_lock */
356 hash_add(dev_priv->mm_structs,
357 &mm->node, (unsigned long)mm->mm);
358 } else
359 kref_get(&mm->kref);
360
361 obj->userptr.mm = mm;
362out:
363 mutex_unlock(&dev_priv->mm_lock);
364 return ret;
365}
366
367static void
368__i915_mm_struct_free__worker(struct work_struct *work)
369{
370 struct i915_mm_struct *mm = container_of(work, typeof(*mm), work);
371 i915_mmu_notifier_free(mm->mn, mm->mm);
372 mmdrop(mm->mm);
373 kfree(mm);
374}
375
376static void
377__i915_mm_struct_free(struct kref *kref)
378{
379 struct i915_mm_struct *mm = container_of(kref, typeof(*mm), kref);
380
381 /* Protected by dev_priv->mm_lock */
382 hash_del(&mm->node);
Chris Wilsonf470b192016-04-05 15:00:01 +0100383 mutex_unlock(&mm->i915->mm_lock);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100384
385 INIT_WORK(&mm->work, __i915_mm_struct_free__worker);
386 schedule_work(&mm->work);
387}
388
389static void
390i915_gem_userptr_release__mm_struct(struct drm_i915_gem_object *obj)
391{
392 if (obj->userptr.mm == NULL)
393 return;
394
395 kref_put_mutex(&obj->userptr.mm->kref,
396 __i915_mm_struct_free,
397 &to_i915(obj->base.dev)->mm_lock);
398 obj->userptr.mm = NULL;
399}
400
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100401struct get_pages_work {
402 struct work_struct work;
403 struct drm_i915_gem_object *obj;
404 struct task_struct *task;
405};
406
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100407#if IS_ENABLED(CONFIG_SWIOTLB)
408#define swiotlb_active() swiotlb_nr_tbl()
409#else
410#define swiotlb_active() 0
411#endif
412
413static int
414st_set_pages(struct sg_table **st, struct page **pvec, int num_pages)
415{
416 struct scatterlist *sg;
417 int ret, n;
418
419 *st = kmalloc(sizeof(**st), GFP_KERNEL);
420 if (*st == NULL)
421 return -ENOMEM;
422
423 if (swiotlb_active()) {
424 ret = sg_alloc_table(*st, num_pages, GFP_KERNEL);
425 if (ret)
426 goto err;
427
428 for_each_sg((*st)->sgl, sg, num_pages, n)
429 sg_set_page(sg, pvec[n], PAGE_SIZE, 0);
430 } else {
431 ret = sg_alloc_table_from_pages(*st, pvec, num_pages,
432 0, num_pages << PAGE_SHIFT,
433 GFP_KERNEL);
434 if (ret)
435 goto err;
436 }
437
438 return 0;
439
440err:
441 kfree(*st);
442 *st = NULL;
443 return ret;
444}
445
Imre Deake2273302015-07-09 12:59:05 +0300446static int
447__i915_gem_userptr_set_pages(struct drm_i915_gem_object *obj,
448 struct page **pvec, int num_pages)
449{
450 int ret;
451
452 ret = st_set_pages(&obj->pages, pvec, num_pages);
453 if (ret)
454 return ret;
455
456 ret = i915_gem_gtt_prepare_object(obj);
457 if (ret) {
458 sg_free_table(obj->pages);
459 kfree(obj->pages);
460 obj->pages = NULL;
461 }
462
463 return ret;
464}
465
Chris Wilson380996a2015-10-01 12:34:47 +0100466static int
Chris Wilsone4b946b2015-10-01 12:34:46 +0100467__i915_gem_userptr_set_active(struct drm_i915_gem_object *obj,
468 bool value)
469{
Chris Wilson380996a2015-10-01 12:34:47 +0100470 int ret = 0;
471
Chris Wilsone4b946b2015-10-01 12:34:46 +0100472 /* During mm_invalidate_range we need to cancel any userptr that
473 * overlaps the range being invalidated. Doing so requires the
474 * struct_mutex, and that risks recursion. In order to cause
475 * recursion, the user must alias the userptr address space with
476 * a GTT mmapping (possible with a MAP_FIXED) - then when we have
477 * to invalidate that mmaping, mm_invalidate_range is called with
478 * the userptr address *and* the struct_mutex held. To prevent that
479 * we set a flag under the i915_mmu_notifier spinlock to indicate
480 * whether this object is valid.
481 */
482#if defined(CONFIG_MMU_NOTIFIER)
483 if (obj->userptr.mmu_object == NULL)
Chris Wilson380996a2015-10-01 12:34:47 +0100484 return 0;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100485
486 spin_lock(&obj->userptr.mmu_object->mn->lock);
Chris Wilson380996a2015-10-01 12:34:47 +0100487 /* In order to serialise get_pages with an outstanding
488 * cancel_userptr, we must drop the struct_mutex and try again.
489 */
Chris Wilson768e1592016-01-21 17:32:43 +0000490 if (!value)
491 del_object(obj->userptr.mmu_object);
492 else if (!work_pending(&obj->userptr.mmu_object->work))
493 add_object(obj->userptr.mmu_object);
Chris Wilson380996a2015-10-01 12:34:47 +0100494 else
495 ret = -EAGAIN;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100496 spin_unlock(&obj->userptr.mmu_object->mn->lock);
497#endif
Chris Wilson380996a2015-10-01 12:34:47 +0100498
499 return ret;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100500}
501
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100502static void
503__i915_gem_userptr_get_pages_worker(struct work_struct *_work)
504{
505 struct get_pages_work *work = container_of(_work, typeof(*work), work);
506 struct drm_i915_gem_object *obj = work->obj;
507 struct drm_device *dev = obj->base.dev;
Chris Wilson68d6c842015-10-01 12:34:45 +0100508 const int npages = obj->base.size >> PAGE_SHIFT;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100509 struct page **pvec;
510 int pinned, ret;
511
512 ret = -ENOMEM;
513 pinned = 0;
514
Chris Wilsonf2a85e12016-04-08 12:11:13 +0100515 pvec = drm_malloc_gfp(npages, sizeof(struct page *), GFP_TEMPORARY);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100516 if (pvec != NULL) {
Chris Wilsonad46cb52014-08-07 14:20:40 +0100517 struct mm_struct *mm = obj->userptr.mm->mm;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100518
Chris Wilson40313f02016-04-05 15:00:00 +0100519 ret = -EFAULT;
520 if (atomic_inc_not_zero(&mm->mm_users)) {
521 down_read(&mm->mmap_sem);
522 while (pinned < npages) {
523 ret = get_user_pages_remote
524 (work->task, mm,
525 obj->userptr.ptr + pinned * PAGE_SIZE,
526 npages - pinned,
527 !obj->userptr.read_only, 0,
528 pvec + pinned, NULL);
529 if (ret < 0)
530 break;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100531
Chris Wilson40313f02016-04-05 15:00:00 +0100532 pinned += ret;
533 }
534 up_read(&mm->mmap_sem);
535 mmput(mm);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100536 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100537 }
538
539 mutex_lock(&dev->struct_mutex);
Chris Wilson68d6c842015-10-01 12:34:45 +0100540 if (obj->userptr.work == &work->work) {
541 if (pinned == npages) {
542 ret = __i915_gem_userptr_set_pages(obj, pvec, npages);
543 if (ret == 0) {
544 list_add_tail(&obj->global_list,
545 &to_i915(dev)->mm.unbound_list);
546 obj->get_page.sg = obj->pages->sgl;
547 obj->get_page.last = 0;
548 pinned = 0;
549 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100550 }
Chris Wilson68d6c842015-10-01 12:34:45 +0100551 obj->userptr.work = ERR_PTR(ret);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100552 if (ret)
553 __i915_gem_userptr_set_active(obj, false);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100554 }
555
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100556 obj->userptr.workers--;
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100557 i915_gem_object_put(obj);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100558 mutex_unlock(&dev->struct_mutex);
559
560 release_pages(pvec, pinned, 0);
561 drm_free_large(pvec);
562
563 put_task_struct(work->task);
564 kfree(work);
565}
566
567static int
Chris Wilsone4b946b2015-10-01 12:34:46 +0100568__i915_gem_userptr_get_pages_schedule(struct drm_i915_gem_object *obj,
569 bool *active)
570{
571 struct get_pages_work *work;
572
573 /* Spawn a worker so that we can acquire the
574 * user pages without holding our mutex. Access
575 * to the user pages requires mmap_sem, and we have
576 * a strict lock ordering of mmap_sem, struct_mutex -
577 * we already hold struct_mutex here and so cannot
578 * call gup without encountering a lock inversion.
579 *
580 * Userspace will keep on repeating the operation
581 * (thanks to EAGAIN) until either we hit the fast
582 * path or the worker completes. If the worker is
583 * cancelled or superseded, the task is still run
584 * but the results ignored. (This leads to
585 * complications that we may have a stray object
586 * refcount that we need to be wary of when
587 * checking for existing objects during creation.)
588 * If the worker encounters an error, it reports
589 * that error back to this function through
590 * obj->userptr.work = ERR_PTR.
591 */
592 if (obj->userptr.workers >= I915_GEM_USERPTR_MAX_WORKERS)
593 return -EAGAIN;
594
595 work = kmalloc(sizeof(*work), GFP_KERNEL);
596 if (work == NULL)
597 return -ENOMEM;
598
599 obj->userptr.work = &work->work;
600 obj->userptr.workers++;
601
Chris Wilson25dc5562016-07-20 13:31:52 +0100602 work->obj = i915_gem_object_get(obj);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100603
604 work->task = current;
605 get_task_struct(work->task);
606
607 INIT_WORK(&work->work, __i915_gem_userptr_get_pages_worker);
608 schedule_work(&work->work);
609
610 *active = true;
611 return -EAGAIN;
612}
613
614static int
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100615i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj)
616{
617 const int num_pages = obj->base.size >> PAGE_SHIFT;
618 struct page **pvec;
619 int pinned, ret;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100620 bool active;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100621
622 /* If userspace should engineer that these pages are replaced in
623 * the vma between us binding this page into the GTT and completion
624 * of rendering... Their loss. If they change the mapping of their
625 * pages they need to create a new bo to point to the new vma.
626 *
627 * However, that still leaves open the possibility of the vma
628 * being copied upon fork. Which falls under the same userspace
629 * synchronisation issue as a regular bo, except that this time
630 * the process may not be expecting that a particular piece of
631 * memory is tied to the GPU.
632 *
633 * Fortunately, we can hook into the mmu_notifier in order to
634 * discard the page references prior to anything nasty happening
635 * to the vma (discard or cloning) which should prevent the more
636 * egregious cases from causing harm.
637 */
Chris Wilsone4b946b2015-10-01 12:34:46 +0100638 if (IS_ERR(obj->userptr.work)) {
639 /* active flag will have been dropped already by the worker */
640 ret = PTR_ERR(obj->userptr.work);
641 obj->userptr.work = NULL;
642 return ret;
643 }
644 if (obj->userptr.work)
645 /* active flag should still be held for the pending work */
646 return -EAGAIN;
647
648 /* Let the mmu-notifier know that we have begun and need cancellation */
Chris Wilson380996a2015-10-01 12:34:47 +0100649 ret = __i915_gem_userptr_set_active(obj, true);
650 if (ret)
651 return ret;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100652
653 pvec = NULL;
654 pinned = 0;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100655 if (obj->userptr.mm->mm == current->mm) {
Chris Wilsonf2a85e12016-04-08 12:11:13 +0100656 pvec = drm_malloc_gfp(num_pages, sizeof(struct page *),
657 GFP_TEMPORARY);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100658 if (pvec == NULL) {
Chris Wilsonf2a85e12016-04-08 12:11:13 +0100659 __i915_gem_userptr_set_active(obj, false);
660 return -ENOMEM;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100661 }
662
663 pinned = __get_user_pages_fast(obj->userptr.ptr, num_pages,
664 !obj->userptr.read_only, pvec);
665 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100666
Chris Wilsone4b946b2015-10-01 12:34:46 +0100667 active = false;
668 if (pinned < 0)
669 ret = pinned, pinned = 0;
670 else if (pinned < num_pages)
671 ret = __i915_gem_userptr_get_pages_schedule(obj, &active);
672 else
Imre Deake2273302015-07-09 12:59:05 +0300673 ret = __i915_gem_userptr_set_pages(obj, pvec, num_pages);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100674 if (ret) {
675 __i915_gem_userptr_set_active(obj, active);
676 release_pages(pvec, pinned, 0);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100677 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100678 drm_free_large(pvec);
679 return ret;
680}
681
682static void
683i915_gem_userptr_put_pages(struct drm_i915_gem_object *obj)
684{
Dave Gordon85d12252016-05-20 11:54:06 +0100685 struct sgt_iter sgt_iter;
686 struct page *page;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100687
688 BUG_ON(obj->userptr.work != NULL);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100689 __i915_gem_userptr_set_active(obj, false);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100690
691 if (obj->madv != I915_MADV_WILLNEED)
692 obj->dirty = 0;
693
Imre Deake2273302015-07-09 12:59:05 +0300694 i915_gem_gtt_finish_object(obj);
695
Dave Gordon85d12252016-05-20 11:54:06 +0100696 for_each_sgt_page(page, sgt_iter, obj->pages) {
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100697 if (obj->dirty)
698 set_page_dirty(page);
699
700 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300701 put_page(page);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100702 }
703 obj->dirty = 0;
704
705 sg_free_table(obj->pages);
706 kfree(obj->pages);
707}
708
709static void
710i915_gem_userptr_release(struct drm_i915_gem_object *obj)
711{
712 i915_gem_userptr_release__mmu_notifier(obj);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100713 i915_gem_userptr_release__mm_struct(obj);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100714}
715
716static int
717i915_gem_userptr_dmabuf_export(struct drm_i915_gem_object *obj)
718{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100719 if (obj->userptr.mmu_object)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100720 return 0;
721
722 return i915_gem_userptr_init__mmu_notifier(obj, 0);
723}
724
725static const struct drm_i915_gem_object_ops i915_gem_userptr_ops = {
Chris Wilsonde472662016-01-22 18:32:31 +0000726 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE,
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100727 .get_pages = i915_gem_userptr_get_pages,
728 .put_pages = i915_gem_userptr_put_pages,
Chris Wilsonde472662016-01-22 18:32:31 +0000729 .dmabuf_export = i915_gem_userptr_dmabuf_export,
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100730 .release = i915_gem_userptr_release,
731};
732
733/**
734 * Creates a new mm object that wraps some normal memory from the process
735 * context - user memory.
736 *
737 * We impose several restrictions upon the memory being mapped
738 * into the GPU.
739 * 1. It must be page aligned (both start/end addresses, i.e ptr and size).
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100740 * 2. It must be normal system memory, not a pointer into another map of IO
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100741 * space (e.g. it must not be a GTT mmapping of another object).
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100742 * 3. We only allow a bo as large as we could in theory map into the GTT,
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100743 * that is we limit the size to the total size of the GTT.
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100744 * 4. The bo is marked as being snoopable. The backing pages are left
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100745 * accessible directly by the CPU, but reads and writes by the GPU may
746 * incur the cost of a snoop (unless you have an LLC architecture).
747 *
748 * Synchronisation between multiple users and the GPU is left to userspace
749 * through the normal set-domain-ioctl. The kernel will enforce that the
750 * GPU relinquishes the VMA before it is returned back to the system
751 * i.e. upon free(), munmap() or process termination. However, the userspace
752 * malloc() library may not immediately relinquish the VMA after free() and
753 * instead reuse it whilst the GPU is still reading and writing to the VMA.
754 * Caveat emptor.
755 *
756 * Also note, that the object created here is not currently a "first class"
757 * object, in that several ioctls are banned. These are the CPU access
758 * ioctls: mmap(), pwrite and pread. In practice, you are expected to use
Chris Wilsoncc917ab2015-10-13 14:22:26 +0100759 * direct access via your pointer rather than use those ioctls. Another
760 * restriction is that we do not allow userptr surfaces to be pinned to the
761 * hardware and so we reject any attempt to create a framebuffer out of a
762 * userptr.
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100763 *
764 * If you think this is a good interface to use to pass GPU memory between
765 * drivers, please use dma-buf instead. In fact, wherever possible use
766 * dma-buf instead.
767 */
768int
769i915_gem_userptr_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
770{
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100771 struct drm_i915_gem_userptr *args = data;
772 struct drm_i915_gem_object *obj;
773 int ret;
774 u32 handle;
775
Tvrtko Ursulinca377802016-03-02 12:10:31 +0000776 if (!HAS_LLC(dev) && !HAS_SNOOP(dev)) {
777 /* We cannot support coherent userptr objects on hw without
778 * LLC and broken snooping.
779 */
780 return -ENODEV;
781 }
782
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100783 if (args->flags & ~(I915_USERPTR_READ_ONLY |
784 I915_USERPTR_UNSYNCHRONIZED))
785 return -EINVAL;
786
787 if (offset_in_page(args->user_ptr | args->user_size))
788 return -EINVAL;
789
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100790 if (!access_ok(args->flags & I915_USERPTR_READ_ONLY ? VERIFY_READ : VERIFY_WRITE,
791 (char __user *)(unsigned long)args->user_ptr, args->user_size))
792 return -EFAULT;
793
794 if (args->flags & I915_USERPTR_READ_ONLY) {
795 /* On almost all of the current hw, we cannot tell the GPU that a
796 * page is readonly, so this is just a placeholder in the uAPI.
797 */
798 return -ENODEV;
799 }
800
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100801 obj = i915_gem_object_alloc(dev);
802 if (obj == NULL)
803 return -ENOMEM;
804
805 drm_gem_private_object_init(dev, &obj->base, args->user_size);
806 i915_gem_object_init(obj, &i915_gem_userptr_ops);
807 obj->cache_level = I915_CACHE_LLC;
808 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
809 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
810
811 obj->userptr.ptr = args->user_ptr;
812 obj->userptr.read_only = !!(args->flags & I915_USERPTR_READ_ONLY);
813
814 /* And keep a pointer to the current->mm for resolving the user pages
815 * at binding. This means that we need to hook into the mmu_notifier
816 * in order to detect if the mmu is destroyed.
817 */
Chris Wilsonad46cb52014-08-07 14:20:40 +0100818 ret = i915_gem_userptr_init__mm_struct(obj);
819 if (ret == 0)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100820 ret = i915_gem_userptr_init__mmu_notifier(obj, args->flags);
821 if (ret == 0)
822 ret = drm_gem_handle_create(file, &obj->base, &handle);
823
824 /* drop reference from allocate - handle holds it now */
Chris Wilson34911fd2016-07-20 13:31:54 +0100825 i915_gem_object_put_unlocked(obj);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100826 if (ret)
827 return ret;
828
829 args->handle = handle;
830 return 0;
831}
832
Chris Wilson72778cb2016-05-19 16:17:16 +0100833void i915_gem_init_userptr(struct drm_i915_private *dev_priv)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100834{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100835 mutex_init(&dev_priv->mm_lock);
836 hash_init(dev_priv->mm_structs);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100837}