blob: 2ce078e8c763cead7361a97af2fb481a3a74aaa9 [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>
Ingo Molnar6e84f312017-02-08 18:51:29 +010034#include <linux/sched/mm.h>
Chris Wilson5cc9ed42014-05-16 14:22:37 +010035
Chris Wilsonad46cb52014-08-07 14:20:40 +010036struct i915_mm_struct {
37 struct mm_struct *mm;
Chris Wilsonf470b192016-04-05 15:00:01 +010038 struct drm_i915_private *i915;
Chris Wilsonad46cb52014-08-07 14:20:40 +010039 struct i915_mmu_notifier *mn;
40 struct hlist_node node;
41 struct kref kref;
42 struct work_struct work;
43};
44
Chris Wilson5cc9ed42014-05-16 14:22:37 +010045#if defined(CONFIG_MMU_NOTIFIER)
46#include <linux/interval_tree.h>
47
48struct i915_mmu_notifier {
49 spinlock_t lock;
50 struct hlist_node node;
51 struct mmu_notifier mn;
52 struct rb_root objects;
Chris Wilson393afc22016-04-05 14:59:59 +010053 struct workqueue_struct *wq;
Chris Wilson5cc9ed42014-05-16 14:22:37 +010054};
55
56struct i915_mmu_object {
Chris Wilsonad46cb52014-08-07 14:20:40 +010057 struct i915_mmu_notifier *mn;
Chris Wilson768e1592016-01-21 17:32:43 +000058 struct drm_i915_gem_object *obj;
Chris Wilson5cc9ed42014-05-16 14:22:37 +010059 struct interval_tree_node it;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010060 struct list_head link;
Chris Wilson380996a2015-10-01 12:34:47 +010061 struct work_struct work;
Chris Wilson768e1592016-01-21 17:32:43 +000062 bool attached;
Chris Wilson5cc9ed42014-05-16 14:22:37 +010063};
64
Chris Wilson768e1592016-01-21 17:32:43 +000065static void cancel_userptr(struct work_struct *work)
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010066{
Chris Wilson380996a2015-10-01 12:34:47 +010067 struct i915_mmu_object *mo = container_of(work, typeof(*mo), work);
68 struct drm_i915_gem_object *obj = mo->obj;
Chris Wilson15c344f2017-03-15 14:01:50 +000069 struct work_struct *active;
70
71 /* Cancel any active worker and force us to re-evaluate gup */
72 mutex_lock(&obj->mm.lock);
73 active = fetch_and_zero(&obj->userptr.work);
74 mutex_unlock(&obj->mm.lock);
75 if (active)
76 goto out;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010077
Chris Wilsone95433c2016-10-28 13:58:27 +010078 i915_gem_object_wait(obj, I915_WAIT_ALL, MAX_SCHEDULE_TIMEOUT, NULL);
Chris Wilson8a3b3d52016-08-05 10:14:08 +010079
Chris Wilson15c344f2017-03-15 14:01:50 +000080 mutex_lock(&obj->base.dev->struct_mutex);
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010081
Chris Wilson03ac84f2016-10-28 13:58:36 +010082 /* We are inside a kthread context and can't be interrupted */
83 if (i915_gem_object_unbind(obj) == 0)
Chris Wilson548625e2016-11-01 12:11:34 +000084 __i915_gem_object_put_pages(obj, I915_MM_NORMAL);
Chris Wilson03ac84f2016-10-28 13:58:36 +010085 WARN_ONCE(obj->mm.pages,
86 "Failed to release pages: bind_count=%d, pages_pin_count=%d, pin_display=%d\n",
87 obj->bind_count,
Chris Wilson1233e2d2016-10-28 13:58:37 +010088 atomic_read(&obj->mm.pages_pin_count),
Chris Wilson03ac84f2016-10-28 13:58:36 +010089 obj->pin_display);
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010090
Chris Wilson15c344f2017-03-15 14:01:50 +000091 mutex_unlock(&obj->base.dev->struct_mutex);
92
93out:
Chris Wilsonf8c417c2016-07-20 13:31:53 +010094 i915_gem_object_put(obj);
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010095}
96
Chris Wilson768e1592016-01-21 17:32:43 +000097static void add_object(struct i915_mmu_object *mo)
Chris Wilsonec8b0dd2014-07-21 13:21:23 +010098{
Chris Wilson768e1592016-01-21 17:32:43 +000099 if (mo->attached)
100 return;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100101
Chris Wilson768e1592016-01-21 17:32:43 +0000102 interval_tree_insert(&mo->it, &mo->mn->objects);
103 mo->attached = true;
104}
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100105
Chris Wilson768e1592016-01-21 17:32:43 +0000106static void del_object(struct i915_mmu_object *mo)
107{
108 if (!mo->attached)
109 return;
110
111 interval_tree_remove(&mo->it, &mo->mn->objects);
112 mo->attached = false;
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100113}
114
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100115static void i915_gem_userptr_mn_invalidate_range_start(struct mmu_notifier *_mn,
116 struct mm_struct *mm,
117 unsigned long start,
118 unsigned long end)
119{
Chris Wilson380996a2015-10-01 12:34:47 +0100120 struct i915_mmu_notifier *mn =
121 container_of(_mn, struct i915_mmu_notifier, mn);
122 struct i915_mmu_object *mo;
Chris Wilson768e1592016-01-21 17:32:43 +0000123 struct interval_tree_node *it;
124 LIST_HEAD(cancelled);
125
126 if (RB_EMPTY_ROOT(&mn->objects))
127 return;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100128
Chris Wilson380996a2015-10-01 12:34:47 +0100129 /* interval ranges are inclusive, but invalidate range is exclusive */
130 end--;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100131
Chris Wilson380996a2015-10-01 12:34:47 +0100132 spin_lock(&mn->lock);
Chris Wilson768e1592016-01-21 17:32:43 +0000133 it = interval_tree_iter_first(&mn->objects, start, end);
134 while (it) {
135 /* The mmu_object is released late when destroying the
136 * GEM object so it is entirely possible to gain a
137 * reference on an object in the process of being freed
138 * since our serialisation is via the spinlock and not
139 * the struct_mutex - and consequently use it after it
140 * is freed and then double free it. To prevent that
141 * use-after-free we only acquire a reference on the
142 * object if it is not in the process of being destroyed.
143 */
144 mo = container_of(it, struct i915_mmu_object, it);
145 if (kref_get_unless_zero(&mo->obj->base.refcount))
Chris Wilson393afc22016-04-05 14:59:59 +0100146 queue_work(mn->wq, &mo->work);
Michał Winiarski460822b2015-02-03 15:48:17 +0100147
Chris Wilson768e1592016-01-21 17:32:43 +0000148 list_add(&mo->link, &cancelled);
149 it = interval_tree_iter_next(it, start, end);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100150 }
Chris Wilson768e1592016-01-21 17:32:43 +0000151 list_for_each_entry(mo, &cancelled, link)
152 del_object(mo);
Chris Wilson380996a2015-10-01 12:34:47 +0100153 spin_unlock(&mn->lock);
Chris Wilson393afc22016-04-05 14:59:59 +0100154
Chris Wilsond151e9c2017-03-07 20:58:50 +0000155 if (!list_empty(&cancelled))
156 flush_workqueue(mn->wq);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100157}
158
159static const struct mmu_notifier_ops i915_gem_userptr_notifier = {
160 .invalidate_range_start = i915_gem_userptr_mn_invalidate_range_start,
161};
162
163static struct i915_mmu_notifier *
Chris Wilsonad46cb52014-08-07 14:20:40 +0100164i915_mmu_notifier_create(struct mm_struct *mm)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100165{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100166 struct i915_mmu_notifier *mn;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100167 int ret;
168
Chris Wilsonad46cb52014-08-07 14:20:40 +0100169 mn = kmalloc(sizeof(*mn), GFP_KERNEL);
170 if (mn == NULL)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100171 return ERR_PTR(-ENOMEM);
172
Chris Wilsonad46cb52014-08-07 14:20:40 +0100173 spin_lock_init(&mn->lock);
174 mn->mn.ops = &i915_gem_userptr_notifier;
175 mn->objects = RB_ROOT;
Chris Wilson393afc22016-04-05 14:59:59 +0100176 mn->wq = alloc_workqueue("i915-userptr-release", WQ_UNBOUND, 0);
177 if (mn->wq == NULL) {
178 kfree(mn);
179 return ERR_PTR(-ENOMEM);
180 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100181
Chris Wilsonad46cb52014-08-07 14:20:40 +0100182 /* Protected by mmap_sem (write-lock) */
183 ret = __mmu_notifier_register(&mn->mn, mm);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100184 if (ret) {
Chris Wilson393afc22016-04-05 14:59:59 +0100185 destroy_workqueue(mn->wq);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100186 kfree(mn);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100187 return ERR_PTR(ret);
188 }
189
Chris Wilsonad46cb52014-08-07 14:20:40 +0100190 return mn;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100191}
192
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100193static void
194i915_gem_userptr_release__mmu_notifier(struct drm_i915_gem_object *obj)
195{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100196 struct i915_mmu_object *mo;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100197
Chris Wilsonad46cb52014-08-07 14:20:40 +0100198 mo = obj->userptr.mmu_object;
199 if (mo == NULL)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100200 return;
201
Chris Wilson768e1592016-01-21 17:32:43 +0000202 spin_lock(&mo->mn->lock);
203 del_object(mo);
204 spin_unlock(&mo->mn->lock);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100205 kfree(mo);
206
207 obj->userptr.mmu_object = NULL;
208}
209
210static struct i915_mmu_notifier *
211i915_mmu_notifier_find(struct i915_mm_struct *mm)
212{
Chris Wilsone9681362014-09-26 10:31:02 +0100213 struct i915_mmu_notifier *mn = mm->mn;
214
215 mn = mm->mn;
216 if (mn)
217 return mn;
218
219 down_write(&mm->mm->mmap_sem);
Chris Wilsonf470b192016-04-05 15:00:01 +0100220 mutex_lock(&mm->i915->mm_lock);
Chris Wilsone9681362014-09-26 10:31:02 +0100221 if ((mn = mm->mn) == NULL) {
222 mn = i915_mmu_notifier_create(mm->mm);
223 if (!IS_ERR(mn))
224 mm->mn = mn;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100225 }
Chris Wilsonf470b192016-04-05 15:00:01 +0100226 mutex_unlock(&mm->i915->mm_lock);
Chris Wilsone9681362014-09-26 10:31:02 +0100227 up_write(&mm->mm->mmap_sem);
228
229 return mn;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100230}
231
232static int
233i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj,
234 unsigned flags)
235{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100236 struct i915_mmu_notifier *mn;
237 struct i915_mmu_object *mo;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100238
239 if (flags & I915_USERPTR_UNSYNCHRONIZED)
240 return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
241
Chris Wilsonad46cb52014-08-07 14:20:40 +0100242 if (WARN_ON(obj->userptr.mm == NULL))
243 return -EINVAL;
244
245 mn = i915_mmu_notifier_find(obj->userptr.mm);
246 if (IS_ERR(mn))
247 return PTR_ERR(mn);
248
249 mo = kzalloc(sizeof(*mo), GFP_KERNEL);
250 if (mo == NULL)
251 return -ENOMEM;
252
253 mo->mn = mn;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100254 mo->obj = obj;
Chris Wilson768e1592016-01-21 17:32:43 +0000255 mo->it.start = obj->userptr.ptr;
256 mo->it.last = obj->userptr.ptr + obj->base.size - 1;
257 INIT_WORK(&mo->work, cancel_userptr);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100258
Chris Wilsonad46cb52014-08-07 14:20:40 +0100259 obj->userptr.mmu_object = mo;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100260 return 0;
Chris Wilsonad46cb52014-08-07 14:20:40 +0100261}
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100262
Chris Wilsonad46cb52014-08-07 14:20:40 +0100263static void
264i915_mmu_notifier_free(struct i915_mmu_notifier *mn,
265 struct mm_struct *mm)
266{
267 if (mn == NULL)
268 return;
269
270 mmu_notifier_unregister(&mn->mn, mm);
Chris Wilson393afc22016-04-05 14:59:59 +0100271 destroy_workqueue(mn->wq);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100272 kfree(mn);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100273}
274
275#else
276
277static void
278i915_gem_userptr_release__mmu_notifier(struct drm_i915_gem_object *obj)
279{
280}
281
282static int
283i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj,
284 unsigned flags)
285{
286 if ((flags & I915_USERPTR_UNSYNCHRONIZED) == 0)
287 return -ENODEV;
288
289 if (!capable(CAP_SYS_ADMIN))
290 return -EPERM;
291
292 return 0;
293}
Chris Wilsonad46cb52014-08-07 14:20:40 +0100294
295static void
296i915_mmu_notifier_free(struct i915_mmu_notifier *mn,
297 struct mm_struct *mm)
298{
299}
300
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100301#endif
302
Chris Wilsonad46cb52014-08-07 14:20:40 +0100303static struct i915_mm_struct *
304__i915_mm_struct_find(struct drm_i915_private *dev_priv, struct mm_struct *real)
305{
306 struct i915_mm_struct *mm;
307
308 /* Protected by dev_priv->mm_lock */
309 hash_for_each_possible(dev_priv->mm_structs, mm, node, (unsigned long)real)
310 if (mm->mm == real)
311 return mm;
312
313 return NULL;
314}
315
316static int
317i915_gem_userptr_init__mm_struct(struct drm_i915_gem_object *obj)
318{
319 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
320 struct i915_mm_struct *mm;
321 int ret = 0;
322
323 /* During release of the GEM object we hold the struct_mutex. This
324 * precludes us from calling mmput() at that time as that may be
325 * the last reference and so call exit_mmap(). exit_mmap() will
326 * attempt to reap the vma, and if we were holding a GTT mmap
327 * would then call drm_gem_vm_close() and attempt to reacquire
328 * the struct mutex. So in order to avoid that recursion, we have
329 * to defer releasing the mm reference until after we drop the
330 * struct_mutex, i.e. we need to schedule a worker to do the clean
331 * up.
332 */
333 mutex_lock(&dev_priv->mm_lock);
334 mm = __i915_mm_struct_find(dev_priv, current->mm);
335 if (mm == NULL) {
336 mm = kmalloc(sizeof(*mm), GFP_KERNEL);
337 if (mm == NULL) {
338 ret = -ENOMEM;
339 goto out;
340 }
341
342 kref_init(&mm->kref);
Chris Wilsonf470b192016-04-05 15:00:01 +0100343 mm->i915 = to_i915(obj->base.dev);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100344
345 mm->mm = current->mm;
Vegard Nossumf1f10072017-02-27 14:30:07 -0800346 mmgrab(current->mm);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100347
348 mm->mn = NULL;
349
350 /* Protected by dev_priv->mm_lock */
351 hash_add(dev_priv->mm_structs,
352 &mm->node, (unsigned long)mm->mm);
353 } else
354 kref_get(&mm->kref);
355
356 obj->userptr.mm = mm;
357out:
358 mutex_unlock(&dev_priv->mm_lock);
359 return ret;
360}
361
362static void
363__i915_mm_struct_free__worker(struct work_struct *work)
364{
365 struct i915_mm_struct *mm = container_of(work, typeof(*mm), work);
366 i915_mmu_notifier_free(mm->mn, mm->mm);
367 mmdrop(mm->mm);
368 kfree(mm);
369}
370
371static void
372__i915_mm_struct_free(struct kref *kref)
373{
374 struct i915_mm_struct *mm = container_of(kref, typeof(*mm), kref);
375
376 /* Protected by dev_priv->mm_lock */
377 hash_del(&mm->node);
Chris Wilsonf470b192016-04-05 15:00:01 +0100378 mutex_unlock(&mm->i915->mm_lock);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100379
380 INIT_WORK(&mm->work, __i915_mm_struct_free__worker);
Chris Wilson8a2421b2017-06-16 15:05:22 +0100381 queue_work(mm->i915->mm.userptr_wq, &mm->work);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100382}
383
384static void
385i915_gem_userptr_release__mm_struct(struct drm_i915_gem_object *obj)
386{
387 if (obj->userptr.mm == NULL)
388 return;
389
390 kref_put_mutex(&obj->userptr.mm->kref,
391 __i915_mm_struct_free,
392 &to_i915(obj->base.dev)->mm_lock);
393 obj->userptr.mm = NULL;
394}
395
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100396struct get_pages_work {
397 struct work_struct work;
398 struct drm_i915_gem_object *obj;
399 struct task_struct *task;
400};
401
Chris Wilson03ac84f2016-10-28 13:58:36 +0100402static struct sg_table *
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100403__i915_gem_userptr_alloc_pages(struct drm_i915_gem_object *obj,
404 struct page **pvec, int num_pages)
Imre Deake2273302015-07-09 12:59:05 +0300405{
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100406 unsigned int max_segment = i915_sg_segment_size();
407 struct sg_table *st;
Imre Deake2273302015-07-09 12:59:05 +0300408 int ret;
409
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100410 st = kmalloc(sizeof(*st), GFP_KERNEL);
411 if (!st)
412 return ERR_PTR(-ENOMEM);
Imre Deake2273302015-07-09 12:59:05 +0300413
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100414alloc_table:
415 ret = __sg_alloc_table_from_pages(st, pvec, num_pages,
416 0, num_pages << PAGE_SHIFT,
417 max_segment,
418 GFP_KERNEL);
Imre Deake2273302015-07-09 12:59:05 +0300419 if (ret) {
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100420 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100421 return ERR_PTR(ret);
Imre Deake2273302015-07-09 12:59:05 +0300422 }
423
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100424 ret = i915_gem_gtt_prepare_pages(obj, st);
425 if (ret) {
426 sg_free_table(st);
427
428 if (max_segment > PAGE_SIZE) {
429 max_segment = PAGE_SIZE;
430 goto alloc_table;
431 }
432
433 kfree(st);
434 return ERR_PTR(ret);
435 }
436
437 return st;
Imre Deake2273302015-07-09 12:59:05 +0300438}
439
Chris Wilson380996a2015-10-01 12:34:47 +0100440static int
Chris Wilsone4b946b2015-10-01 12:34:46 +0100441__i915_gem_userptr_set_active(struct drm_i915_gem_object *obj,
442 bool value)
443{
Chris Wilson380996a2015-10-01 12:34:47 +0100444 int ret = 0;
445
Chris Wilsone4b946b2015-10-01 12:34:46 +0100446 /* During mm_invalidate_range we need to cancel any userptr that
447 * overlaps the range being invalidated. Doing so requires the
448 * struct_mutex, and that risks recursion. In order to cause
449 * recursion, the user must alias the userptr address space with
450 * a GTT mmapping (possible with a MAP_FIXED) - then when we have
451 * to invalidate that mmaping, mm_invalidate_range is called with
452 * the userptr address *and* the struct_mutex held. To prevent that
453 * we set a flag under the i915_mmu_notifier spinlock to indicate
454 * whether this object is valid.
455 */
456#if defined(CONFIG_MMU_NOTIFIER)
457 if (obj->userptr.mmu_object == NULL)
Chris Wilson380996a2015-10-01 12:34:47 +0100458 return 0;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100459
460 spin_lock(&obj->userptr.mmu_object->mn->lock);
Chris Wilson380996a2015-10-01 12:34:47 +0100461 /* In order to serialise get_pages with an outstanding
462 * cancel_userptr, we must drop the struct_mutex and try again.
463 */
Chris Wilson768e1592016-01-21 17:32:43 +0000464 if (!value)
465 del_object(obj->userptr.mmu_object);
466 else if (!work_pending(&obj->userptr.mmu_object->work))
467 add_object(obj->userptr.mmu_object);
Chris Wilson380996a2015-10-01 12:34:47 +0100468 else
469 ret = -EAGAIN;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100470 spin_unlock(&obj->userptr.mmu_object->mn->lock);
471#endif
Chris Wilson380996a2015-10-01 12:34:47 +0100472
473 return ret;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100474}
475
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100476static void
477__i915_gem_userptr_get_pages_worker(struct work_struct *_work)
478{
479 struct get_pages_work *work = container_of(_work, typeof(*work), work);
480 struct drm_i915_gem_object *obj = work->obj;
Chris Wilson68d6c842015-10-01 12:34:45 +0100481 const int npages = obj->base.size >> PAGE_SHIFT;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100482 struct page **pvec;
483 int pinned, ret;
484
485 ret = -ENOMEM;
486 pinned = 0;
487
Michal Hocko20981052017-05-17 14:23:12 +0200488 pvec = kvmalloc_array(npages, sizeof(struct page *), GFP_TEMPORARY);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100489 if (pvec != NULL) {
Chris Wilsonad46cb52014-08-07 14:20:40 +0100490 struct mm_struct *mm = obj->userptr.mm->mm;
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +0100491 unsigned int flags = 0;
492
493 if (!obj->userptr.read_only)
494 flags |= FOLL_WRITE;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100495
Chris Wilson40313f02016-04-05 15:00:00 +0100496 ret = -EFAULT;
Vegard Nossum388f7932017-02-27 14:30:13 -0800497 if (mmget_not_zero(mm)) {
Chris Wilson40313f02016-04-05 15:00:00 +0100498 down_read(&mm->mmap_sem);
499 while (pinned < npages) {
500 ret = get_user_pages_remote
501 (work->task, mm,
502 obj->userptr.ptr + pinned * PAGE_SIZE,
503 npages - pinned,
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +0100504 flags,
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -0800505 pvec + pinned, NULL, NULL);
Chris Wilson40313f02016-04-05 15:00:00 +0100506 if (ret < 0)
507 break;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100508
Chris Wilson40313f02016-04-05 15:00:00 +0100509 pinned += ret;
510 }
511 up_read(&mm->mmap_sem);
512 mmput(mm);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100513 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100514 }
515
Chris Wilson1233e2d2016-10-28 13:58:37 +0100516 mutex_lock(&obj->mm.lock);
Chris Wilson68d6c842015-10-01 12:34:45 +0100517 if (obj->userptr.work == &work->work) {
Chris Wilson03ac84f2016-10-28 13:58:36 +0100518 struct sg_table *pages = ERR_PTR(ret);
519
Chris Wilson68d6c842015-10-01 12:34:45 +0100520 if (pinned == npages) {
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100521 pages = __i915_gem_userptr_alloc_pages(obj, pvec,
522 npages);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100523 if (!IS_ERR(pages)) {
524 __i915_gem_object_set_pages(obj, pages);
Chris Wilson68d6c842015-10-01 12:34:45 +0100525 pinned = 0;
Chris Wilson03ac84f2016-10-28 13:58:36 +0100526 pages = NULL;
Chris Wilson68d6c842015-10-01 12:34:45 +0100527 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100528 }
Chris Wilson03ac84f2016-10-28 13:58:36 +0100529
530 obj->userptr.work = ERR_CAST(pages);
Chris Wilson42953b32017-03-07 20:58:49 +0000531 if (IS_ERR(pages))
532 __i915_gem_userptr_set_active(obj, false);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100533 }
Chris Wilson1233e2d2016-10-28 13:58:37 +0100534 mutex_unlock(&obj->mm.lock);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100535
536 release_pages(pvec, pinned, 0);
Michal Hocko20981052017-05-17 14:23:12 +0200537 kvfree(pvec);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100538
Chris Wilsonf0cd5182016-10-28 13:58:43 +0100539 i915_gem_object_put(obj);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100540 put_task_struct(work->task);
541 kfree(work);
542}
543
Chris Wilson03ac84f2016-10-28 13:58:36 +0100544static struct sg_table *
Chris Wilson1c8782d2017-03-08 21:59:03 +0000545__i915_gem_userptr_get_pages_schedule(struct drm_i915_gem_object *obj)
Chris Wilsone4b946b2015-10-01 12:34:46 +0100546{
547 struct get_pages_work *work;
548
549 /* Spawn a worker so that we can acquire the
550 * user pages without holding our mutex. Access
551 * to the user pages requires mmap_sem, and we have
552 * a strict lock ordering of mmap_sem, struct_mutex -
553 * we already hold struct_mutex here and so cannot
554 * call gup without encountering a lock inversion.
555 *
556 * Userspace will keep on repeating the operation
557 * (thanks to EAGAIN) until either we hit the fast
558 * path or the worker completes. If the worker is
559 * cancelled or superseded, the task is still run
560 * but the results ignored. (This leads to
561 * complications that we may have a stray object
562 * refcount that we need to be wary of when
563 * checking for existing objects during creation.)
564 * If the worker encounters an error, it reports
565 * that error back to this function through
566 * obj->userptr.work = ERR_PTR.
567 */
Chris Wilsone4b946b2015-10-01 12:34:46 +0100568 work = kmalloc(sizeof(*work), GFP_KERNEL);
569 if (work == NULL)
Chris Wilson03ac84f2016-10-28 13:58:36 +0100570 return ERR_PTR(-ENOMEM);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100571
572 obj->userptr.work = &work->work;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100573
Chris Wilson25dc5562016-07-20 13:31:52 +0100574 work->obj = i915_gem_object_get(obj);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100575
576 work->task = current;
577 get_task_struct(work->task);
578
579 INIT_WORK(&work->work, __i915_gem_userptr_get_pages_worker);
Chris Wilson8a2421b2017-06-16 15:05:22 +0100580 queue_work(to_i915(obj->base.dev)->mm.userptr_wq, &work->work);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100581
Chris Wilson03ac84f2016-10-28 13:58:36 +0100582 return ERR_PTR(-EAGAIN);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100583}
584
Chris Wilson03ac84f2016-10-28 13:58:36 +0100585static struct sg_table *
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100586i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj)
587{
588 const int num_pages = obj->base.size >> PAGE_SHIFT;
Chris Wilson1c8782d2017-03-08 21:59:03 +0000589 struct mm_struct *mm = obj->userptr.mm->mm;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100590 struct page **pvec;
Chris Wilson03ac84f2016-10-28 13:58:36 +0100591 struct sg_table *pages;
Chris Wilsone4b946b2015-10-01 12:34:46 +0100592 bool active;
Chris Wilson1c8782d2017-03-08 21:59:03 +0000593 int pinned;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100594
595 /* If userspace should engineer that these pages are replaced in
596 * the vma between us binding this page into the GTT and completion
597 * of rendering... Their loss. If they change the mapping of their
598 * pages they need to create a new bo to point to the new vma.
599 *
600 * However, that still leaves open the possibility of the vma
601 * being copied upon fork. Which falls under the same userspace
602 * synchronisation issue as a regular bo, except that this time
603 * the process may not be expecting that a particular piece of
604 * memory is tied to the GPU.
605 *
606 * Fortunately, we can hook into the mmu_notifier in order to
607 * discard the page references prior to anything nasty happening
608 * to the vma (discard or cloning) which should prevent the more
609 * egregious cases from causing harm.
610 */
Chris Wilson364c8172016-08-18 17:16:58 +0100611
612 if (obj->userptr.work) {
Chris Wilsone4b946b2015-10-01 12:34:46 +0100613 /* active flag should still be held for the pending work */
Chris Wilson364c8172016-08-18 17:16:58 +0100614 if (IS_ERR(obj->userptr.work))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100615 return ERR_CAST(obj->userptr.work);
Chris Wilson364c8172016-08-18 17:16:58 +0100616 else
Chris Wilson03ac84f2016-10-28 13:58:36 +0100617 return ERR_PTR(-EAGAIN);
Chris Wilson364c8172016-08-18 17:16:58 +0100618 }
Chris Wilsone4b946b2015-10-01 12:34:46 +0100619
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100620 pvec = NULL;
621 pinned = 0;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100622
Chris Wilson15c344f2017-03-15 14:01:50 +0000623 if (mm == current->mm) {
Michal Hocko20981052017-05-17 14:23:12 +0200624 pvec = kvmalloc_array(num_pages, sizeof(struct page *),
Chris Wilson1c8782d2017-03-08 21:59:03 +0000625 GFP_TEMPORARY |
626 __GFP_NORETRY |
627 __GFP_NOWARN);
628 if (pvec) /* defer to worker if malloc fails */
629 pinned = __get_user_pages_fast(obj->userptr.ptr,
630 num_pages,
631 !obj->userptr.read_only,
632 pvec);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100633 }
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100634
Chris Wilsone4b946b2015-10-01 12:34:46 +0100635 active = false;
Chris Wilson1c8782d2017-03-08 21:59:03 +0000636 if (pinned < 0) {
637 pages = ERR_PTR(pinned);
638 pinned = 0;
639 } else if (pinned < num_pages) {
640 pages = __i915_gem_userptr_get_pages_schedule(obj);
641 active = pages == ERR_PTR(-EAGAIN);
642 } else {
Tvrtko Ursulin56024522017-08-03 10:14:17 +0100643 pages = __i915_gem_userptr_alloc_pages(obj, pvec, num_pages);
Chris Wilson1c8782d2017-03-08 21:59:03 +0000644 active = !IS_ERR(pages);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100645 }
Chris Wilson1c8782d2017-03-08 21:59:03 +0000646 if (active)
647 __i915_gem_userptr_set_active(obj, true);
Chris Wilson1c8782d2017-03-08 21:59:03 +0000648
649 if (IS_ERR(pages))
650 release_pages(pvec, pinned, 0);
Michal Hocko20981052017-05-17 14:23:12 +0200651 kvfree(pvec);
Chris Wilson1c8782d2017-03-08 21:59:03 +0000652
Chris Wilson03ac84f2016-10-28 13:58:36 +0100653 return pages;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100654}
655
656static void
Chris Wilson03ac84f2016-10-28 13:58:36 +0100657i915_gem_userptr_put_pages(struct drm_i915_gem_object *obj,
658 struct sg_table *pages)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100659{
Dave Gordon85d12252016-05-20 11:54:06 +0100660 struct sgt_iter sgt_iter;
661 struct page *page;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100662
663 BUG_ON(obj->userptr.work != NULL);
Chris Wilsone4b946b2015-10-01 12:34:46 +0100664 __i915_gem_userptr_set_active(obj, false);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100665
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100666 if (obj->mm.madv != I915_MADV_WILLNEED)
667 obj->mm.dirty = false;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100668
Chris Wilson03ac84f2016-10-28 13:58:36 +0100669 i915_gem_gtt_finish_pages(obj, pages);
Imre Deake2273302015-07-09 12:59:05 +0300670
Chris Wilson03ac84f2016-10-28 13:58:36 +0100671 for_each_sgt_page(page, sgt_iter, pages) {
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100672 if (obj->mm.dirty)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100673 set_page_dirty(page);
674
675 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300676 put_page(page);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100677 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100678 obj->mm.dirty = false;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100679
Chris Wilson03ac84f2016-10-28 13:58:36 +0100680 sg_free_table(pages);
681 kfree(pages);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100682}
683
684static void
685i915_gem_userptr_release(struct drm_i915_gem_object *obj)
686{
687 i915_gem_userptr_release__mmu_notifier(obj);
Chris Wilsonad46cb52014-08-07 14:20:40 +0100688 i915_gem_userptr_release__mm_struct(obj);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100689}
690
691static int
692i915_gem_userptr_dmabuf_export(struct drm_i915_gem_object *obj)
693{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100694 if (obj->userptr.mmu_object)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100695 return 0;
696
697 return i915_gem_userptr_init__mmu_notifier(obj, 0);
698}
699
700static const struct drm_i915_gem_object_ops i915_gem_userptr_ops = {
Tvrtko Ursulin3599a912016-11-01 14:44:10 +0000701 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE |
702 I915_GEM_OBJECT_IS_SHRINKABLE,
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100703 .get_pages = i915_gem_userptr_get_pages,
704 .put_pages = i915_gem_userptr_put_pages,
Chris Wilsonde472662016-01-22 18:32:31 +0000705 .dmabuf_export = i915_gem_userptr_dmabuf_export,
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100706 .release = i915_gem_userptr_release,
707};
708
709/**
710 * Creates a new mm object that wraps some normal memory from the process
711 * context - user memory.
712 *
713 * We impose several restrictions upon the memory being mapped
714 * into the GPU.
715 * 1. It must be page aligned (both start/end addresses, i.e ptr and size).
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100716 * 2. It must be normal system memory, not a pointer into another map of IO
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100717 * space (e.g. it must not be a GTT mmapping of another object).
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100718 * 3. We only allow a bo as large as we could in theory map into the GTT,
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100719 * that is we limit the size to the total size of the GTT.
Chris Wilsonec8b0dd2014-07-21 13:21:23 +0100720 * 4. The bo is marked as being snoopable. The backing pages are left
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100721 * accessible directly by the CPU, but reads and writes by the GPU may
722 * incur the cost of a snoop (unless you have an LLC architecture).
723 *
724 * Synchronisation between multiple users and the GPU is left to userspace
725 * through the normal set-domain-ioctl. The kernel will enforce that the
726 * GPU relinquishes the VMA before it is returned back to the system
727 * i.e. upon free(), munmap() or process termination. However, the userspace
728 * malloc() library may not immediately relinquish the VMA after free() and
729 * instead reuse it whilst the GPU is still reading and writing to the VMA.
730 * Caveat emptor.
731 *
732 * Also note, that the object created here is not currently a "first class"
733 * object, in that several ioctls are banned. These are the CPU access
734 * ioctls: mmap(), pwrite and pread. In practice, you are expected to use
Chris Wilsoncc917ab2015-10-13 14:22:26 +0100735 * direct access via your pointer rather than use those ioctls. Another
736 * restriction is that we do not allow userptr surfaces to be pinned to the
737 * hardware and so we reject any attempt to create a framebuffer out of a
738 * userptr.
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100739 *
740 * If you think this is a good interface to use to pass GPU memory between
741 * drivers, please use dma-buf instead. In fact, wherever possible use
742 * dma-buf instead.
743 */
744int
745i915_gem_userptr_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
746{
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +0000747 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100748 struct drm_i915_gem_userptr *args = data;
749 struct drm_i915_gem_object *obj;
750 int ret;
751 u32 handle;
752
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +0000753 if (!HAS_LLC(dev_priv) && !HAS_SNOOP(dev_priv)) {
Tvrtko Ursulinca377802016-03-02 12:10:31 +0000754 /* We cannot support coherent userptr objects on hw without
755 * LLC and broken snooping.
756 */
757 return -ENODEV;
758 }
759
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100760 if (args->flags & ~(I915_USERPTR_READ_ONLY |
761 I915_USERPTR_UNSYNCHRONIZED))
762 return -EINVAL;
763
764 if (offset_in_page(args->user_ptr | args->user_size))
765 return -EINVAL;
766
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100767 if (!access_ok(args->flags & I915_USERPTR_READ_ONLY ? VERIFY_READ : VERIFY_WRITE,
768 (char __user *)(unsigned long)args->user_ptr, args->user_size))
769 return -EFAULT;
770
771 if (args->flags & I915_USERPTR_READ_ONLY) {
772 /* On almost all of the current hw, we cannot tell the GPU that a
773 * page is readonly, so this is just a placeholder in the uAPI.
774 */
775 return -ENODEV;
776 }
777
Tvrtko Ursulin187685c2016-12-01 14:16:36 +0000778 obj = i915_gem_object_alloc(dev_priv);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100779 if (obj == NULL)
780 return -ENOMEM;
781
782 drm_gem_private_object_init(dev, &obj->base, args->user_size);
783 i915_gem_object_init(obj, &i915_gem_userptr_ops);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100784 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
Chris Wilsone27ab732017-06-15 13:38:49 +0100785 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilsonb8f55be2017-08-11 12:11:16 +0100786 i915_gem_object_set_cache_coherency(obj, I915_CACHE_LLC);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100787
788 obj->userptr.ptr = args->user_ptr;
789 obj->userptr.read_only = !!(args->flags & I915_USERPTR_READ_ONLY);
790
791 /* And keep a pointer to the current->mm for resolving the user pages
792 * at binding. This means that we need to hook into the mmu_notifier
793 * in order to detect if the mmu is destroyed.
794 */
Chris Wilsonad46cb52014-08-07 14:20:40 +0100795 ret = i915_gem_userptr_init__mm_struct(obj);
796 if (ret == 0)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100797 ret = i915_gem_userptr_init__mmu_notifier(obj, args->flags);
798 if (ret == 0)
799 ret = drm_gem_handle_create(file, &obj->base, &handle);
800
801 /* drop reference from allocate - handle holds it now */
Chris Wilsonf0cd5182016-10-28 13:58:43 +0100802 i915_gem_object_put(obj);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100803 if (ret)
804 return ret;
805
806 args->handle = handle;
807 return 0;
808}
809
Chris Wilson8a2421b2017-06-16 15:05:22 +0100810int i915_gem_init_userptr(struct drm_i915_private *dev_priv)
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100811{
Chris Wilsonad46cb52014-08-07 14:20:40 +0100812 mutex_init(&dev_priv->mm_lock);
813 hash_init(dev_priv->mm_structs);
Chris Wilson8a2421b2017-06-16 15:05:22 +0100814
815 dev_priv->mm.userptr_wq =
816 alloc_workqueue("i915-userptr-acquire", WQ_HIGHPRI, 0);
817 if (!dev_priv->mm.userptr_wq)
818 return -ENOMEM;
819
820 return 0;
821}
822
823void i915_gem_cleanup_userptr(struct drm_i915_private *dev_priv)
824{
825 destroy_workqueue(dev_priv->mm.userptr_wq);
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100826}