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