Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 1 | /* |
| 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 Lankhorst | b588c92 | 2015-05-13 09:56:00 +0200 | [diff] [blame] | 25 | #include <drm/drmP.h> |
| 26 | #include <drm/i915_drm.h> |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 27 | #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 Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 34 | #include <linux/sched/mm.h> |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 35 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 36 | struct i915_mm_struct { |
| 37 | struct mm_struct *mm; |
Chris Wilson | f470b19 | 2016-04-05 15:00:01 +0100 | [diff] [blame] | 38 | struct drm_i915_private *i915; |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 39 | struct i915_mmu_notifier *mn; |
| 40 | struct hlist_node node; |
| 41 | struct kref kref; |
| 42 | struct work_struct work; |
| 43 | }; |
| 44 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 45 | #if defined(CONFIG_MMU_NOTIFIER) |
| 46 | #include <linux/interval_tree.h> |
| 47 | |
| 48 | struct i915_mmu_notifier { |
| 49 | spinlock_t lock; |
| 50 | struct hlist_node node; |
| 51 | struct mmu_notifier mn; |
Davidlohr Bueso | f808c13 | 2017-09-08 16:15:08 -0700 | [diff] [blame] | 52 | struct rb_root_cached objects; |
Chris Wilson | 393afc2 | 2016-04-05 14:59:59 +0100 | [diff] [blame] | 53 | struct workqueue_struct *wq; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct i915_mmu_object { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 57 | struct i915_mmu_notifier *mn; |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 58 | struct drm_i915_gem_object *obj; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 59 | struct interval_tree_node it; |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 60 | struct list_head link; |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 61 | struct work_struct work; |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 62 | bool attached; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 63 | }; |
| 64 | |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 65 | static void cancel_userptr(struct work_struct *work) |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 66 | { |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 67 | struct i915_mmu_object *mo = container_of(work, typeof(*mo), work); |
| 68 | struct drm_i915_gem_object *obj = mo->obj; |
Chris Wilson | 15c344f | 2017-03-15 14:01:50 +0000 | [diff] [blame] | 69 | 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 Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 77 | |
Chris Wilson | e95433c | 2016-10-28 13:58:27 +0100 | [diff] [blame] | 78 | i915_gem_object_wait(obj, I915_WAIT_ALL, MAX_SCHEDULE_TIMEOUT, NULL); |
Chris Wilson | 8a3b3d5 | 2016-08-05 10:14:08 +0100 | [diff] [blame] | 79 | |
Chris Wilson | 15c344f | 2017-03-15 14:01:50 +0000 | [diff] [blame] | 80 | mutex_lock(&obj->base.dev->struct_mutex); |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 81 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 82 | /* We are inside a kthread context and can't be interrupted */ |
| 83 | if (i915_gem_object_unbind(obj) == 0) |
Chris Wilson | 548625e | 2016-11-01 12:11:34 +0000 | [diff] [blame] | 84 | __i915_gem_object_put_pages(obj, I915_MM_NORMAL); |
Chris Wilson | f1fa4f4 | 2017-10-13 21:26:13 +0100 | [diff] [blame] | 85 | WARN_ONCE(i915_gem_object_has_pages(obj), |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 86 | "Failed to release pages: bind_count=%d, pages_pin_count=%d, pin_global=%d\n", |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 87 | obj->bind_count, |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 88 | atomic_read(&obj->mm.pages_pin_count), |
Chris Wilson | bd3d225 | 2017-10-13 21:26:14 +0100 | [diff] [blame] | 89 | obj->pin_global); |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 90 | |
Chris Wilson | 15c344f | 2017-03-15 14:01:50 +0000 | [diff] [blame] | 91 | mutex_unlock(&obj->base.dev->struct_mutex); |
| 92 | |
| 93 | out: |
Chris Wilson | f8c417c | 2016-07-20 13:31:53 +0100 | [diff] [blame] | 94 | i915_gem_object_put(obj); |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 95 | } |
| 96 | |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 97 | static void add_object(struct i915_mmu_object *mo) |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 98 | { |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 99 | if (mo->attached) |
| 100 | return; |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 101 | |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 102 | interval_tree_insert(&mo->it, &mo->mn->objects); |
| 103 | mo->attached = true; |
| 104 | } |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 105 | |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 106 | static 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 Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 113 | } |
| 114 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 115 | static 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 Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 120 | struct i915_mmu_notifier *mn = |
| 121 | container_of(_mn, struct i915_mmu_notifier, mn); |
| 122 | struct i915_mmu_object *mo; |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 123 | struct interval_tree_node *it; |
| 124 | LIST_HEAD(cancelled); |
| 125 | |
Davidlohr Bueso | f808c13 | 2017-09-08 16:15:08 -0700 | [diff] [blame] | 126 | if (RB_EMPTY_ROOT(&mn->objects.rb_root)) |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 127 | return; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 128 | |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 129 | /* interval ranges are inclusive, but invalidate range is exclusive */ |
| 130 | end--; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 131 | |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 132 | spin_lock(&mn->lock); |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 133 | 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 Wilson | 393afc2 | 2016-04-05 14:59:59 +0100 | [diff] [blame] | 146 | queue_work(mn->wq, &mo->work); |
Michał Winiarski | 460822b | 2015-02-03 15:48:17 +0100 | [diff] [blame] | 147 | |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 148 | list_add(&mo->link, &cancelled); |
| 149 | it = interval_tree_iter_next(it, start, end); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 150 | } |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 151 | list_for_each_entry(mo, &cancelled, link) |
| 152 | del_object(mo); |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 153 | spin_unlock(&mn->lock); |
Chris Wilson | 393afc2 | 2016-04-05 14:59:59 +0100 | [diff] [blame] | 154 | |
Chris Wilson | d151e9c | 2017-03-07 20:58:50 +0000 | [diff] [blame] | 155 | if (!list_empty(&cancelled)) |
| 156 | flush_workqueue(mn->wq); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static const struct mmu_notifier_ops i915_gem_userptr_notifier = { |
| 160 | .invalidate_range_start = i915_gem_userptr_mn_invalidate_range_start, |
| 161 | }; |
| 162 | |
| 163 | static struct i915_mmu_notifier * |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 164 | i915_mmu_notifier_create(struct mm_struct *mm) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 165 | { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 166 | struct i915_mmu_notifier *mn; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 167 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 168 | mn = kmalloc(sizeof(*mn), GFP_KERNEL); |
| 169 | if (mn == NULL) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 170 | return ERR_PTR(-ENOMEM); |
| 171 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 172 | spin_lock_init(&mn->lock); |
| 173 | mn->mn.ops = &i915_gem_userptr_notifier; |
Davidlohr Bueso | f808c13 | 2017-09-08 16:15:08 -0700 | [diff] [blame] | 174 | mn->objects = RB_ROOT_CACHED; |
Chris Wilson | 457db89 | 2017-11-14 17:35:20 +0000 | [diff] [blame] | 175 | mn->wq = alloc_workqueue("i915-userptr-release", |
| 176 | WQ_UNBOUND | WQ_MEM_RECLAIM, |
| 177 | 0); |
Chris Wilson | 393afc2 | 2016-04-05 14:59:59 +0100 | [diff] [blame] | 178 | if (mn->wq == NULL) { |
| 179 | kfree(mn); |
| 180 | return ERR_PTR(-ENOMEM); |
| 181 | } |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 182 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 183 | return mn; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 184 | } |
| 185 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 186 | static void |
| 187 | i915_gem_userptr_release__mmu_notifier(struct drm_i915_gem_object *obj) |
| 188 | { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 189 | struct i915_mmu_object *mo; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 190 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 191 | mo = obj->userptr.mmu_object; |
| 192 | if (mo == NULL) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 193 | return; |
| 194 | |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 195 | spin_lock(&mo->mn->lock); |
| 196 | del_object(mo); |
| 197 | spin_unlock(&mo->mn->lock); |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 198 | kfree(mo); |
| 199 | |
| 200 | obj->userptr.mmu_object = NULL; |
| 201 | } |
| 202 | |
| 203 | static struct i915_mmu_notifier * |
| 204 | i915_mmu_notifier_find(struct i915_mm_struct *mm) |
| 205 | { |
Daniel Vetter | 7741b54 | 2017-10-09 18:44:00 +0200 | [diff] [blame] | 206 | struct i915_mmu_notifier *mn; |
| 207 | int err = 0; |
Chris Wilson | e968136 | 2014-09-26 10:31:02 +0100 | [diff] [blame] | 208 | |
| 209 | mn = mm->mn; |
| 210 | if (mn) |
| 211 | return mn; |
| 212 | |
Daniel Vetter | 7741b54 | 2017-10-09 18:44:00 +0200 | [diff] [blame] | 213 | mn = i915_mmu_notifier_create(mm->mm); |
| 214 | if (IS_ERR(mn)) |
| 215 | err = PTR_ERR(mn); |
| 216 | |
Chris Wilson | e968136 | 2014-09-26 10:31:02 +0100 | [diff] [blame] | 217 | down_write(&mm->mm->mmap_sem); |
Chris Wilson | f470b19 | 2016-04-05 15:00:01 +0100 | [diff] [blame] | 218 | mutex_lock(&mm->i915->mm_lock); |
Daniel Vetter | 7741b54 | 2017-10-09 18:44:00 +0200 | [diff] [blame] | 219 | if (mm->mn == NULL && !err) { |
| 220 | /* Protected by mmap_sem (write-lock) */ |
| 221 | err = __mmu_notifier_register(&mn->mn, mm->mm); |
| 222 | if (!err) { |
| 223 | /* Protected by mm_lock */ |
| 224 | mm->mn = fetch_and_zero(&mn); |
| 225 | } |
Tvrtko Ursulin | cb8d50d | 2017-10-17 16:09:08 +0100 | [diff] [blame] | 226 | } else if (mm->mn) { |
| 227 | /* |
| 228 | * Someone else raced and successfully installed the mmu |
| 229 | * notifier, we can cancel our own errors. |
| 230 | */ |
Daniel Vetter | 7741b54 | 2017-10-09 18:44:00 +0200 | [diff] [blame] | 231 | err = 0; |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 232 | } |
Chris Wilson | f470b19 | 2016-04-05 15:00:01 +0100 | [diff] [blame] | 233 | mutex_unlock(&mm->i915->mm_lock); |
Chris Wilson | e968136 | 2014-09-26 10:31:02 +0100 | [diff] [blame] | 234 | up_write(&mm->mm->mmap_sem); |
| 235 | |
Tvrtko Ursulin | cb8d50d | 2017-10-17 16:09:08 +0100 | [diff] [blame] | 236 | if (mn && !IS_ERR(mn)) { |
Daniel Vetter | 7741b54 | 2017-10-09 18:44:00 +0200 | [diff] [blame] | 237 | destroy_workqueue(mn->wq); |
| 238 | kfree(mn); |
| 239 | } |
| 240 | |
| 241 | return err ? ERR_PTR(err) : mm->mn; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | static int |
| 245 | i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj, |
| 246 | unsigned flags) |
| 247 | { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 248 | struct i915_mmu_notifier *mn; |
| 249 | struct i915_mmu_object *mo; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 250 | |
| 251 | if (flags & I915_USERPTR_UNSYNCHRONIZED) |
| 252 | return capable(CAP_SYS_ADMIN) ? 0 : -EPERM; |
| 253 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 254 | if (WARN_ON(obj->userptr.mm == NULL)) |
| 255 | return -EINVAL; |
| 256 | |
| 257 | mn = i915_mmu_notifier_find(obj->userptr.mm); |
| 258 | if (IS_ERR(mn)) |
| 259 | return PTR_ERR(mn); |
| 260 | |
| 261 | mo = kzalloc(sizeof(*mo), GFP_KERNEL); |
| 262 | if (mo == NULL) |
| 263 | return -ENOMEM; |
| 264 | |
| 265 | mo->mn = mn; |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 266 | mo->obj = obj; |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 267 | mo->it.start = obj->userptr.ptr; |
| 268 | mo->it.last = obj->userptr.ptr + obj->base.size - 1; |
| 269 | INIT_WORK(&mo->work, cancel_userptr); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 270 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 271 | obj->userptr.mmu_object = mo; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 272 | return 0; |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 273 | } |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 274 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 275 | static void |
| 276 | i915_mmu_notifier_free(struct i915_mmu_notifier *mn, |
| 277 | struct mm_struct *mm) |
| 278 | { |
| 279 | if (mn == NULL) |
| 280 | return; |
| 281 | |
| 282 | mmu_notifier_unregister(&mn->mn, mm); |
Chris Wilson | 393afc2 | 2016-04-05 14:59:59 +0100 | [diff] [blame] | 283 | destroy_workqueue(mn->wq); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 284 | kfree(mn); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | #else |
| 288 | |
| 289 | static void |
| 290 | i915_gem_userptr_release__mmu_notifier(struct drm_i915_gem_object *obj) |
| 291 | { |
| 292 | } |
| 293 | |
| 294 | static int |
| 295 | i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj, |
| 296 | unsigned flags) |
| 297 | { |
| 298 | if ((flags & I915_USERPTR_UNSYNCHRONIZED) == 0) |
| 299 | return -ENODEV; |
| 300 | |
| 301 | if (!capable(CAP_SYS_ADMIN)) |
| 302 | return -EPERM; |
| 303 | |
| 304 | return 0; |
| 305 | } |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 306 | |
| 307 | static void |
| 308 | i915_mmu_notifier_free(struct i915_mmu_notifier *mn, |
| 309 | struct mm_struct *mm) |
| 310 | { |
| 311 | } |
| 312 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 313 | #endif |
| 314 | |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 315 | static struct i915_mm_struct * |
| 316 | __i915_mm_struct_find(struct drm_i915_private *dev_priv, struct mm_struct *real) |
| 317 | { |
| 318 | struct i915_mm_struct *mm; |
| 319 | |
| 320 | /* Protected by dev_priv->mm_lock */ |
| 321 | hash_for_each_possible(dev_priv->mm_structs, mm, node, (unsigned long)real) |
| 322 | if (mm->mm == real) |
| 323 | return mm; |
| 324 | |
| 325 | return NULL; |
| 326 | } |
| 327 | |
| 328 | static int |
| 329 | i915_gem_userptr_init__mm_struct(struct drm_i915_gem_object *obj) |
| 330 | { |
| 331 | struct drm_i915_private *dev_priv = to_i915(obj->base.dev); |
| 332 | struct i915_mm_struct *mm; |
| 333 | int ret = 0; |
| 334 | |
| 335 | /* During release of the GEM object we hold the struct_mutex. This |
| 336 | * precludes us from calling mmput() at that time as that may be |
| 337 | * the last reference and so call exit_mmap(). exit_mmap() will |
| 338 | * attempt to reap the vma, and if we were holding a GTT mmap |
| 339 | * would then call drm_gem_vm_close() and attempt to reacquire |
| 340 | * the struct mutex. So in order to avoid that recursion, we have |
| 341 | * to defer releasing the mm reference until after we drop the |
| 342 | * struct_mutex, i.e. we need to schedule a worker to do the clean |
| 343 | * up. |
| 344 | */ |
| 345 | mutex_lock(&dev_priv->mm_lock); |
| 346 | mm = __i915_mm_struct_find(dev_priv, current->mm); |
| 347 | if (mm == NULL) { |
| 348 | mm = kmalloc(sizeof(*mm), GFP_KERNEL); |
| 349 | if (mm == NULL) { |
| 350 | ret = -ENOMEM; |
| 351 | goto out; |
| 352 | } |
| 353 | |
| 354 | kref_init(&mm->kref); |
Chris Wilson | f470b19 | 2016-04-05 15:00:01 +0100 | [diff] [blame] | 355 | mm->i915 = to_i915(obj->base.dev); |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 356 | |
| 357 | mm->mm = current->mm; |
Vegard Nossum | f1f1007 | 2017-02-27 14:30:07 -0800 | [diff] [blame] | 358 | mmgrab(current->mm); |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 359 | |
| 360 | mm->mn = NULL; |
| 361 | |
| 362 | /* Protected by dev_priv->mm_lock */ |
| 363 | hash_add(dev_priv->mm_structs, |
| 364 | &mm->node, (unsigned long)mm->mm); |
| 365 | } else |
| 366 | kref_get(&mm->kref); |
| 367 | |
| 368 | obj->userptr.mm = mm; |
| 369 | out: |
| 370 | mutex_unlock(&dev_priv->mm_lock); |
| 371 | return ret; |
| 372 | } |
| 373 | |
| 374 | static void |
| 375 | __i915_mm_struct_free__worker(struct work_struct *work) |
| 376 | { |
| 377 | struct i915_mm_struct *mm = container_of(work, typeof(*mm), work); |
| 378 | i915_mmu_notifier_free(mm->mn, mm->mm); |
| 379 | mmdrop(mm->mm); |
| 380 | kfree(mm); |
| 381 | } |
| 382 | |
| 383 | static void |
| 384 | __i915_mm_struct_free(struct kref *kref) |
| 385 | { |
| 386 | struct i915_mm_struct *mm = container_of(kref, typeof(*mm), kref); |
| 387 | |
| 388 | /* Protected by dev_priv->mm_lock */ |
| 389 | hash_del(&mm->node); |
Chris Wilson | f470b19 | 2016-04-05 15:00:01 +0100 | [diff] [blame] | 390 | mutex_unlock(&mm->i915->mm_lock); |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 391 | |
| 392 | INIT_WORK(&mm->work, __i915_mm_struct_free__worker); |
Chris Wilson | 8a2421b | 2017-06-16 15:05:22 +0100 | [diff] [blame] | 393 | queue_work(mm->i915->mm.userptr_wq, &mm->work); |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | static void |
| 397 | i915_gem_userptr_release__mm_struct(struct drm_i915_gem_object *obj) |
| 398 | { |
| 399 | if (obj->userptr.mm == NULL) |
| 400 | return; |
| 401 | |
| 402 | kref_put_mutex(&obj->userptr.mm->kref, |
| 403 | __i915_mm_struct_free, |
| 404 | &to_i915(obj->base.dev)->mm_lock); |
| 405 | obj->userptr.mm = NULL; |
| 406 | } |
| 407 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 408 | struct get_pages_work { |
| 409 | struct work_struct work; |
| 410 | struct drm_i915_gem_object *obj; |
| 411 | struct task_struct *task; |
| 412 | }; |
| 413 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 414 | static struct sg_table * |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 415 | __i915_gem_userptr_alloc_pages(struct drm_i915_gem_object *obj, |
| 416 | struct page **pvec, int num_pages) |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 417 | { |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 418 | unsigned int max_segment = i915_sg_segment_size(); |
| 419 | struct sg_table *st; |
Matthew Auld | 84e8978 | 2017-10-09 12:00:24 +0100 | [diff] [blame] | 420 | unsigned int sg_page_sizes; |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 421 | int ret; |
| 422 | |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 423 | st = kmalloc(sizeof(*st), GFP_KERNEL); |
| 424 | if (!st) |
| 425 | return ERR_PTR(-ENOMEM); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 426 | |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 427 | alloc_table: |
| 428 | ret = __sg_alloc_table_from_pages(st, pvec, num_pages, |
| 429 | 0, num_pages << PAGE_SHIFT, |
| 430 | max_segment, |
| 431 | GFP_KERNEL); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 432 | if (ret) { |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 433 | kfree(st); |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 434 | return ERR_PTR(ret); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 435 | } |
| 436 | |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 437 | ret = i915_gem_gtt_prepare_pages(obj, st); |
| 438 | if (ret) { |
| 439 | sg_free_table(st); |
| 440 | |
| 441 | if (max_segment > PAGE_SIZE) { |
| 442 | max_segment = PAGE_SIZE; |
| 443 | goto alloc_table; |
| 444 | } |
| 445 | |
| 446 | kfree(st); |
| 447 | return ERR_PTR(ret); |
| 448 | } |
| 449 | |
Matthew Auld | 84e8978 | 2017-10-09 12:00:24 +0100 | [diff] [blame] | 450 | sg_page_sizes = i915_sg_page_sizes(st->sgl); |
Matthew Auld | a5c08166 | 2017-10-06 23:18:18 +0100 | [diff] [blame] | 451 | |
Matthew Auld | 84e8978 | 2017-10-09 12:00:24 +0100 | [diff] [blame] | 452 | __i915_gem_object_set_pages(obj, st, sg_page_sizes); |
Matthew Auld | b91b09e | 2017-10-06 23:18:17 +0100 | [diff] [blame] | 453 | |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 454 | return st; |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 455 | } |
| 456 | |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 457 | static int |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 458 | __i915_gem_userptr_set_active(struct drm_i915_gem_object *obj, |
| 459 | bool value) |
| 460 | { |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 461 | int ret = 0; |
| 462 | |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 463 | /* During mm_invalidate_range we need to cancel any userptr that |
| 464 | * overlaps the range being invalidated. Doing so requires the |
| 465 | * struct_mutex, and that risks recursion. In order to cause |
| 466 | * recursion, the user must alias the userptr address space with |
| 467 | * a GTT mmapping (possible with a MAP_FIXED) - then when we have |
| 468 | * to invalidate that mmaping, mm_invalidate_range is called with |
| 469 | * the userptr address *and* the struct_mutex held. To prevent that |
| 470 | * we set a flag under the i915_mmu_notifier spinlock to indicate |
| 471 | * whether this object is valid. |
| 472 | */ |
| 473 | #if defined(CONFIG_MMU_NOTIFIER) |
| 474 | if (obj->userptr.mmu_object == NULL) |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 475 | return 0; |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 476 | |
| 477 | spin_lock(&obj->userptr.mmu_object->mn->lock); |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 478 | /* In order to serialise get_pages with an outstanding |
| 479 | * cancel_userptr, we must drop the struct_mutex and try again. |
| 480 | */ |
Chris Wilson | 768e159 | 2016-01-21 17:32:43 +0000 | [diff] [blame] | 481 | if (!value) |
| 482 | del_object(obj->userptr.mmu_object); |
| 483 | else if (!work_pending(&obj->userptr.mmu_object->work)) |
| 484 | add_object(obj->userptr.mmu_object); |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 485 | else |
| 486 | ret = -EAGAIN; |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 487 | spin_unlock(&obj->userptr.mmu_object->mn->lock); |
| 488 | #endif |
Chris Wilson | 380996a | 2015-10-01 12:34:47 +0100 | [diff] [blame] | 489 | |
| 490 | return ret; |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 491 | } |
| 492 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 493 | static void |
| 494 | __i915_gem_userptr_get_pages_worker(struct work_struct *_work) |
| 495 | { |
| 496 | struct get_pages_work *work = container_of(_work, typeof(*work), work); |
| 497 | struct drm_i915_gem_object *obj = work->obj; |
Chris Wilson | 68d6c84 | 2015-10-01 12:34:45 +0100 | [diff] [blame] | 498 | const int npages = obj->base.size >> PAGE_SHIFT; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 499 | struct page **pvec; |
| 500 | int pinned, ret; |
| 501 | |
| 502 | ret = -ENOMEM; |
| 503 | pinned = 0; |
| 504 | |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 505 | pvec = kvmalloc_array(npages, sizeof(struct page *), GFP_KERNEL); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 506 | if (pvec != NULL) { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 507 | struct mm_struct *mm = obj->userptr.mm->mm; |
Lorenzo Stoakes | 9beae1e | 2016-10-13 01:20:17 +0100 | [diff] [blame] | 508 | unsigned int flags = 0; |
| 509 | |
| 510 | if (!obj->userptr.read_only) |
| 511 | flags |= FOLL_WRITE; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 512 | |
Chris Wilson | 40313f0 | 2016-04-05 15:00:00 +0100 | [diff] [blame] | 513 | ret = -EFAULT; |
Vegard Nossum | 388f793 | 2017-02-27 14:30:13 -0800 | [diff] [blame] | 514 | if (mmget_not_zero(mm)) { |
Chris Wilson | 40313f0 | 2016-04-05 15:00:00 +0100 | [diff] [blame] | 515 | down_read(&mm->mmap_sem); |
| 516 | while (pinned < npages) { |
| 517 | ret = get_user_pages_remote |
| 518 | (work->task, mm, |
| 519 | obj->userptr.ptr + pinned * PAGE_SIZE, |
| 520 | npages - pinned, |
Lorenzo Stoakes | 9beae1e | 2016-10-13 01:20:17 +0100 | [diff] [blame] | 521 | flags, |
Lorenzo Stoakes | 5b56d49 | 2016-12-14 15:06:52 -0800 | [diff] [blame] | 522 | pvec + pinned, NULL, NULL); |
Chris Wilson | 40313f0 | 2016-04-05 15:00:00 +0100 | [diff] [blame] | 523 | if (ret < 0) |
| 524 | break; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 525 | |
Chris Wilson | 40313f0 | 2016-04-05 15:00:00 +0100 | [diff] [blame] | 526 | pinned += ret; |
| 527 | } |
| 528 | up_read(&mm->mmap_sem); |
| 529 | mmput(mm); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 530 | } |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 531 | } |
| 532 | |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 533 | mutex_lock(&obj->mm.lock); |
Chris Wilson | 68d6c84 | 2015-10-01 12:34:45 +0100 | [diff] [blame] | 534 | if (obj->userptr.work == &work->work) { |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 535 | struct sg_table *pages = ERR_PTR(ret); |
| 536 | |
Chris Wilson | 68d6c84 | 2015-10-01 12:34:45 +0100 | [diff] [blame] | 537 | if (pinned == npages) { |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 538 | pages = __i915_gem_userptr_alloc_pages(obj, pvec, |
| 539 | npages); |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 540 | if (!IS_ERR(pages)) { |
Chris Wilson | 68d6c84 | 2015-10-01 12:34:45 +0100 | [diff] [blame] | 541 | pinned = 0; |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 542 | pages = NULL; |
Chris Wilson | 68d6c84 | 2015-10-01 12:34:45 +0100 | [diff] [blame] | 543 | } |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 544 | } |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 545 | |
| 546 | obj->userptr.work = ERR_CAST(pages); |
Chris Wilson | 42953b3 | 2017-03-07 20:58:49 +0000 | [diff] [blame] | 547 | if (IS_ERR(pages)) |
| 548 | __i915_gem_userptr_set_active(obj, false); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 549 | } |
Chris Wilson | 1233e2d | 2016-10-28 13:58:37 +0100 | [diff] [blame] | 550 | mutex_unlock(&obj->mm.lock); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 551 | |
Mel Gorman | c6f92f9 | 2017-11-15 17:37:55 -0800 | [diff] [blame] | 552 | release_pages(pvec, pinned); |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 553 | kvfree(pvec); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 554 | |
Chris Wilson | f0cd518 | 2016-10-28 13:58:43 +0100 | [diff] [blame] | 555 | i915_gem_object_put(obj); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 556 | put_task_struct(work->task); |
| 557 | kfree(work); |
| 558 | } |
| 559 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 560 | static struct sg_table * |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 561 | __i915_gem_userptr_get_pages_schedule(struct drm_i915_gem_object *obj) |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 562 | { |
| 563 | struct get_pages_work *work; |
| 564 | |
| 565 | /* Spawn a worker so that we can acquire the |
| 566 | * user pages without holding our mutex. Access |
| 567 | * to the user pages requires mmap_sem, and we have |
| 568 | * a strict lock ordering of mmap_sem, struct_mutex - |
| 569 | * we already hold struct_mutex here and so cannot |
| 570 | * call gup without encountering a lock inversion. |
| 571 | * |
| 572 | * Userspace will keep on repeating the operation |
| 573 | * (thanks to EAGAIN) until either we hit the fast |
| 574 | * path or the worker completes. If the worker is |
| 575 | * cancelled or superseded, the task is still run |
| 576 | * but the results ignored. (This leads to |
| 577 | * complications that we may have a stray object |
| 578 | * refcount that we need to be wary of when |
| 579 | * checking for existing objects during creation.) |
| 580 | * If the worker encounters an error, it reports |
| 581 | * that error back to this function through |
| 582 | * obj->userptr.work = ERR_PTR. |
| 583 | */ |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 584 | work = kmalloc(sizeof(*work), GFP_KERNEL); |
| 585 | if (work == NULL) |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 586 | return ERR_PTR(-ENOMEM); |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 587 | |
| 588 | obj->userptr.work = &work->work; |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 589 | |
Chris Wilson | 25dc556 | 2016-07-20 13:31:52 +0100 | [diff] [blame] | 590 | work->obj = i915_gem_object_get(obj); |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 591 | |
| 592 | work->task = current; |
| 593 | get_task_struct(work->task); |
| 594 | |
| 595 | INIT_WORK(&work->work, __i915_gem_userptr_get_pages_worker); |
Chris Wilson | 8a2421b | 2017-06-16 15:05:22 +0100 | [diff] [blame] | 596 | queue_work(to_i915(obj->base.dev)->mm.userptr_wq, &work->work); |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 597 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 598 | return ERR_PTR(-EAGAIN); |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 599 | } |
| 600 | |
Matthew Auld | b91b09e | 2017-10-06 23:18:17 +0100 | [diff] [blame] | 601 | static int i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 602 | { |
| 603 | const int num_pages = obj->base.size >> PAGE_SHIFT; |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 604 | struct mm_struct *mm = obj->userptr.mm->mm; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 605 | struct page **pvec; |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 606 | struct sg_table *pages; |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 607 | bool active; |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 608 | int pinned; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 609 | |
| 610 | /* If userspace should engineer that these pages are replaced in |
| 611 | * the vma between us binding this page into the GTT and completion |
| 612 | * of rendering... Their loss. If they change the mapping of their |
| 613 | * pages they need to create a new bo to point to the new vma. |
| 614 | * |
| 615 | * However, that still leaves open the possibility of the vma |
| 616 | * being copied upon fork. Which falls under the same userspace |
| 617 | * synchronisation issue as a regular bo, except that this time |
| 618 | * the process may not be expecting that a particular piece of |
| 619 | * memory is tied to the GPU. |
| 620 | * |
| 621 | * Fortunately, we can hook into the mmu_notifier in order to |
| 622 | * discard the page references prior to anything nasty happening |
| 623 | * to the vma (discard or cloning) which should prevent the more |
| 624 | * egregious cases from causing harm. |
| 625 | */ |
Chris Wilson | 364c817 | 2016-08-18 17:16:58 +0100 | [diff] [blame] | 626 | |
| 627 | if (obj->userptr.work) { |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 628 | /* active flag should still be held for the pending work */ |
Chris Wilson | 364c817 | 2016-08-18 17:16:58 +0100 | [diff] [blame] | 629 | if (IS_ERR(obj->userptr.work)) |
Matthew Auld | b91b09e | 2017-10-06 23:18:17 +0100 | [diff] [blame] | 630 | return PTR_ERR(obj->userptr.work); |
Chris Wilson | 364c817 | 2016-08-18 17:16:58 +0100 | [diff] [blame] | 631 | else |
Matthew Auld | b91b09e | 2017-10-06 23:18:17 +0100 | [diff] [blame] | 632 | return -EAGAIN; |
Chris Wilson | 364c817 | 2016-08-18 17:16:58 +0100 | [diff] [blame] | 633 | } |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 634 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 635 | pvec = NULL; |
| 636 | pinned = 0; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 637 | |
Chris Wilson | 15c344f | 2017-03-15 14:01:50 +0000 | [diff] [blame] | 638 | if (mm == current->mm) { |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 639 | pvec = kvmalloc_array(num_pages, sizeof(struct page *), |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 640 | GFP_KERNEL | |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 641 | __GFP_NORETRY | |
| 642 | __GFP_NOWARN); |
| 643 | if (pvec) /* defer to worker if malloc fails */ |
| 644 | pinned = __get_user_pages_fast(obj->userptr.ptr, |
| 645 | num_pages, |
| 646 | !obj->userptr.read_only, |
| 647 | pvec); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 648 | } |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 649 | |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 650 | active = false; |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 651 | if (pinned < 0) { |
| 652 | pages = ERR_PTR(pinned); |
| 653 | pinned = 0; |
| 654 | } else if (pinned < num_pages) { |
| 655 | pages = __i915_gem_userptr_get_pages_schedule(obj); |
| 656 | active = pages == ERR_PTR(-EAGAIN); |
| 657 | } else { |
Tvrtko Ursulin | 5602452 | 2017-08-03 10:14:17 +0100 | [diff] [blame] | 658 | pages = __i915_gem_userptr_alloc_pages(obj, pvec, num_pages); |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 659 | active = !IS_ERR(pages); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 660 | } |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 661 | if (active) |
| 662 | __i915_gem_userptr_set_active(obj, true); |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 663 | |
| 664 | if (IS_ERR(pages)) |
Mel Gorman | c6f92f9 | 2017-11-15 17:37:55 -0800 | [diff] [blame] | 665 | release_pages(pvec, pinned); |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 666 | kvfree(pvec); |
Chris Wilson | 1c8782d | 2017-03-08 21:59:03 +0000 | [diff] [blame] | 667 | |
Matthew Auld | b91b09e | 2017-10-06 23:18:17 +0100 | [diff] [blame] | 668 | return PTR_ERR_OR_ZERO(pages); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | static void |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 672 | i915_gem_userptr_put_pages(struct drm_i915_gem_object *obj, |
| 673 | struct sg_table *pages) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 674 | { |
Dave Gordon | 85d1225 | 2016-05-20 11:54:06 +0100 | [diff] [blame] | 675 | struct sgt_iter sgt_iter; |
| 676 | struct page *page; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 677 | |
| 678 | BUG_ON(obj->userptr.work != NULL); |
Chris Wilson | e4b946b | 2015-10-01 12:34:46 +0100 | [diff] [blame] | 679 | __i915_gem_userptr_set_active(obj, false); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 680 | |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 681 | if (obj->mm.madv != I915_MADV_WILLNEED) |
| 682 | obj->mm.dirty = false; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 683 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 684 | i915_gem_gtt_finish_pages(obj, pages); |
Imre Deak | e227330 | 2015-07-09 12:59:05 +0300 | [diff] [blame] | 685 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 686 | for_each_sgt_page(page, sgt_iter, pages) { |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 687 | if (obj->mm.dirty) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 688 | set_page_dirty(page); |
| 689 | |
| 690 | mark_page_accessed(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 691 | put_page(page); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 692 | } |
Chris Wilson | a4f5ea6 | 2016-10-28 13:58:35 +0100 | [diff] [blame] | 693 | obj->mm.dirty = false; |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 694 | |
Chris Wilson | 03ac84f | 2016-10-28 13:58:36 +0100 | [diff] [blame] | 695 | sg_free_table(pages); |
| 696 | kfree(pages); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | static void |
| 700 | i915_gem_userptr_release(struct drm_i915_gem_object *obj) |
| 701 | { |
| 702 | i915_gem_userptr_release__mmu_notifier(obj); |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 703 | i915_gem_userptr_release__mm_struct(obj); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | static int |
| 707 | i915_gem_userptr_dmabuf_export(struct drm_i915_gem_object *obj) |
| 708 | { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 709 | if (obj->userptr.mmu_object) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 710 | return 0; |
| 711 | |
| 712 | return i915_gem_userptr_init__mmu_notifier(obj, 0); |
| 713 | } |
| 714 | |
| 715 | static const struct drm_i915_gem_object_ops i915_gem_userptr_ops = { |
Tvrtko Ursulin | 3599a91 | 2016-11-01 14:44:10 +0000 | [diff] [blame] | 716 | .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE | |
| 717 | I915_GEM_OBJECT_IS_SHRINKABLE, |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 718 | .get_pages = i915_gem_userptr_get_pages, |
| 719 | .put_pages = i915_gem_userptr_put_pages, |
Chris Wilson | de47266 | 2016-01-22 18:32:31 +0000 | [diff] [blame] | 720 | .dmabuf_export = i915_gem_userptr_dmabuf_export, |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 721 | .release = i915_gem_userptr_release, |
| 722 | }; |
| 723 | |
Chris Wilson | a5a5ae2 | 2018-02-08 11:13:28 +0000 | [diff] [blame] | 724 | /* |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 725 | * Creates a new mm object that wraps some normal memory from the process |
| 726 | * context - user memory. |
| 727 | * |
| 728 | * We impose several restrictions upon the memory being mapped |
| 729 | * into the GPU. |
| 730 | * 1. It must be page aligned (both start/end addresses, i.e ptr and size). |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 731 | * 2. It must be normal system memory, not a pointer into another map of IO |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 732 | * space (e.g. it must not be a GTT mmapping of another object). |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 733 | * 3. We only allow a bo as large as we could in theory map into the GTT, |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 734 | * that is we limit the size to the total size of the GTT. |
Chris Wilson | ec8b0dd | 2014-07-21 13:21:23 +0100 | [diff] [blame] | 735 | * 4. The bo is marked as being snoopable. The backing pages are left |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 736 | * accessible directly by the CPU, but reads and writes by the GPU may |
| 737 | * incur the cost of a snoop (unless you have an LLC architecture). |
| 738 | * |
| 739 | * Synchronisation between multiple users and the GPU is left to userspace |
| 740 | * through the normal set-domain-ioctl. The kernel will enforce that the |
| 741 | * GPU relinquishes the VMA before it is returned back to the system |
| 742 | * i.e. upon free(), munmap() or process termination. However, the userspace |
| 743 | * malloc() library may not immediately relinquish the VMA after free() and |
| 744 | * instead reuse it whilst the GPU is still reading and writing to the VMA. |
| 745 | * Caveat emptor. |
| 746 | * |
| 747 | * Also note, that the object created here is not currently a "first class" |
| 748 | * object, in that several ioctls are banned. These are the CPU access |
| 749 | * ioctls: mmap(), pwrite and pread. In practice, you are expected to use |
Chris Wilson | cc917ab | 2015-10-13 14:22:26 +0100 | [diff] [blame] | 750 | * direct access via your pointer rather than use those ioctls. Another |
| 751 | * restriction is that we do not allow userptr surfaces to be pinned to the |
| 752 | * hardware and so we reject any attempt to create a framebuffer out of a |
| 753 | * userptr. |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 754 | * |
| 755 | * If you think this is a good interface to use to pass GPU memory between |
| 756 | * drivers, please use dma-buf instead. In fact, wherever possible use |
| 757 | * dma-buf instead. |
| 758 | */ |
| 759 | int |
Chris Wilson | a5a5ae2 | 2018-02-08 11:13:28 +0000 | [diff] [blame] | 760 | i915_gem_userptr_ioctl(struct drm_device *dev, |
| 761 | void *data, |
| 762 | struct drm_file *file) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 763 | { |
Tvrtko Ursulin | 0031fb9 | 2016-11-04 14:42:44 +0000 | [diff] [blame] | 764 | struct drm_i915_private *dev_priv = to_i915(dev); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 765 | struct drm_i915_gem_userptr *args = data; |
| 766 | struct drm_i915_gem_object *obj; |
| 767 | int ret; |
| 768 | u32 handle; |
| 769 | |
Tvrtko Ursulin | 0031fb9 | 2016-11-04 14:42:44 +0000 | [diff] [blame] | 770 | if (!HAS_LLC(dev_priv) && !HAS_SNOOP(dev_priv)) { |
Tvrtko Ursulin | ca37780 | 2016-03-02 12:10:31 +0000 | [diff] [blame] | 771 | /* We cannot support coherent userptr objects on hw without |
| 772 | * LLC and broken snooping. |
| 773 | */ |
| 774 | return -ENODEV; |
| 775 | } |
| 776 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 777 | if (args->flags & ~(I915_USERPTR_READ_ONLY | |
| 778 | I915_USERPTR_UNSYNCHRONIZED)) |
| 779 | return -EINVAL; |
| 780 | |
| 781 | if (offset_in_page(args->user_ptr | args->user_size)) |
| 782 | return -EINVAL; |
| 783 | |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 784 | if (!access_ok(args->flags & I915_USERPTR_READ_ONLY ? VERIFY_READ : VERIFY_WRITE, |
| 785 | (char __user *)(unsigned long)args->user_ptr, args->user_size)) |
| 786 | return -EFAULT; |
| 787 | |
| 788 | if (args->flags & I915_USERPTR_READ_ONLY) { |
| 789 | /* On almost all of the current hw, we cannot tell the GPU that a |
| 790 | * page is readonly, so this is just a placeholder in the uAPI. |
| 791 | */ |
| 792 | return -ENODEV; |
| 793 | } |
| 794 | |
Tvrtko Ursulin | 187685c | 2016-12-01 14:16:36 +0000 | [diff] [blame] | 795 | obj = i915_gem_object_alloc(dev_priv); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 796 | if (obj == NULL) |
| 797 | return -ENOMEM; |
| 798 | |
| 799 | drm_gem_private_object_init(dev, &obj->base, args->user_size); |
| 800 | i915_gem_object_init(obj, &i915_gem_userptr_ops); |
Christian König | c0a51fd | 2018-02-16 13:43:38 +0100 | [diff] [blame] | 801 | obj->read_domains = I915_GEM_DOMAIN_CPU; |
| 802 | obj->write_domain = I915_GEM_DOMAIN_CPU; |
Chris Wilson | b8f55be | 2017-08-11 12:11:16 +0100 | [diff] [blame] | 803 | i915_gem_object_set_cache_coherency(obj, I915_CACHE_LLC); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 804 | |
| 805 | obj->userptr.ptr = args->user_ptr; |
| 806 | obj->userptr.read_only = !!(args->flags & I915_USERPTR_READ_ONLY); |
| 807 | |
| 808 | /* And keep a pointer to the current->mm for resolving the user pages |
| 809 | * at binding. This means that we need to hook into the mmu_notifier |
| 810 | * in order to detect if the mmu is destroyed. |
| 811 | */ |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 812 | ret = i915_gem_userptr_init__mm_struct(obj); |
| 813 | if (ret == 0) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 814 | ret = i915_gem_userptr_init__mmu_notifier(obj, args->flags); |
| 815 | if (ret == 0) |
| 816 | ret = drm_gem_handle_create(file, &obj->base, &handle); |
| 817 | |
| 818 | /* drop reference from allocate - handle holds it now */ |
Chris Wilson | f0cd518 | 2016-10-28 13:58:43 +0100 | [diff] [blame] | 819 | i915_gem_object_put(obj); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 820 | if (ret) |
| 821 | return ret; |
| 822 | |
| 823 | args->handle = handle; |
| 824 | return 0; |
| 825 | } |
| 826 | |
Chris Wilson | 8a2421b | 2017-06-16 15:05:22 +0100 | [diff] [blame] | 827 | int i915_gem_init_userptr(struct drm_i915_private *dev_priv) |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 828 | { |
Chris Wilson | ad46cb5 | 2014-08-07 14:20:40 +0100 | [diff] [blame] | 829 | mutex_init(&dev_priv->mm_lock); |
| 830 | hash_init(dev_priv->mm_structs); |
Chris Wilson | 8a2421b | 2017-06-16 15:05:22 +0100 | [diff] [blame] | 831 | |
| 832 | dev_priv->mm.userptr_wq = |
Chris Wilson | 21cc6431 | 2017-09-11 09:41:25 +0100 | [diff] [blame] | 833 | alloc_workqueue("i915-userptr-acquire", |
Chris Wilson | 457db89 | 2017-11-14 17:35:20 +0000 | [diff] [blame] | 834 | WQ_HIGHPRI | WQ_UNBOUND, |
Chris Wilson | 21cc6431 | 2017-09-11 09:41:25 +0100 | [diff] [blame] | 835 | 0); |
Chris Wilson | 8a2421b | 2017-06-16 15:05:22 +0100 | [diff] [blame] | 836 | if (!dev_priv->mm.userptr_wq) |
| 837 | return -ENOMEM; |
| 838 | |
| 839 | return 0; |
| 840 | } |
| 841 | |
| 842 | void i915_gem_cleanup_userptr(struct drm_i915_private *dev_priv) |
| 843 | { |
| 844 | destroy_workqueue(dev_priv->mm.userptr_wq); |
Chris Wilson | 5cc9ed4 | 2014-05-16 14:22:37 +0100 | [diff] [blame] | 845 | } |