1 /* 2 * Copyright © 2008 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 * Authors: 24 * Eric Anholt <eric@anholt.net> 25 * 26 */ 27 28 #include <linux/dma-buf.h> 29 #include <linux/export.h> 30 #include <linux/file.h> 31 #include <linux/fs.h> 32 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 33 #include <linux/fs_context.h> 34 #endif 35 #include <linux/iosys-map.h> 36 #include <linux/mem_encrypt.h> 37 #include <linux/mm.h> 38 #include <linux/mman.h> 39 #include <linux/module.h> 40 #include <linux/pagemap.h> 41 #include <linux/folio_batch.h> 42 #include <linux/sched/mm.h> 43 #include <linux/shmem_fs.h> 44 #include <linux/slab.h> 45 #include <linux/string_helpers.h> 46 #include <linux/types.h> 47 #include <linux/uaccess.h> 48 49 #include <drm/drm.h> 50 #include <drm/drm_device.h> 51 #include <drm/drm_drv.h> 52 #include <drm/drm_file.h> 53 #include <drm/drm_gem.h> 54 #include <drm/drm_managed.h> 55 #include <drm/drm_print.h> 56 #include <drm/drm_vma_manager.h> 57 58 #include "drm_internal.h" 59 60 /** @file drm_gem.c 61 * 62 * This file provides some of the base ioctls and library routines for 63 * the graphics memory manager implemented by each device driver. 64 * 65 * Because various devices have different requirements in terms of 66 * synchronization and migration strategies, implementing that is left up to 67 * the driver, and all that the general API provides should be generic -- 68 * allocating objects, reading/writing data with the cpu, freeing objects. 69 * Even there, platform-dependent optimizations for reading/writing data with 70 * the CPU mean we'll likely hook those out to driver-specific calls. However, 71 * the DRI2 implementation wants to have at least allocate/mmap be generic. 72 * 73 * The goal was to have swap-backed object allocation managed through 74 * struct file. However, file descriptors as handles to a struct file have 75 * two major failings: 76 * - Process limits prevent more than 1024 or so being used at a time by 77 * default. 78 * - Inability to allocate high fds will aggravate the X Server's select() 79 * handling, and likely that of many GL client applications as well. 80 * 81 * This led to a plan of using our own integer IDs (called handles, following 82 * DRM terminology) to mimic fds, and implement the fd syscalls we need as 83 * ioctls. The objects themselves will still include the struct file so 84 * that we can transition to fds if the required kernel infrastructure shows 85 * up at a later date, and as our interface with shmfs for memory allocation. 86 */ 87 88 #ifdef CONFIG_TRANSPARENT_HUGEPAGE 89 static void drm_gem_huge_mnt_free(struct drm_device *dev, void *data) 90 { 91 kern_unmount(dev->huge_mnt); 92 } 93 94 /** 95 * drm_gem_huge_mnt_create - Create, mount and use a huge tmpfs mountpoint 96 * @dev: DRM device that will use the huge tmpfs mountpoint 97 * @value: huge tmpfs mount option value 98 * 99 * This function creates and mounts a dedicated huge tmpfs mountpoint for the 100 * lifetime of the DRM device @dev which is used at GEM object initialization 101 * with drm_gem_object_init(). 102 * 103 * The most common option for @value is "within_size" which only allocates huge 104 * pages if the page will be fully within the GEM object size. "always", 105 * "advise" and "never" are supported too but the latter would just create a 106 * mountpoint similar to the default one (`shm_mnt`). See shmemfs and 107 * Transparent Hugepage for more information. 108 * 109 * Returns: 110 * 0 on success or a negative error code on failure. 111 */ 112 int drm_gem_huge_mnt_create(struct drm_device *dev, const char *value) 113 { 114 struct file_system_type *type; 115 struct fs_context *fc; 116 int ret; 117 118 if (unlikely(drm_gem_get_huge_mnt(dev))) 119 return 0; 120 121 type = get_fs_type("tmpfs"); 122 if (unlikely(!type)) 123 return -EOPNOTSUPP; 124 fc = fs_context_for_mount(type, SB_KERNMOUNT); 125 if (IS_ERR(fc)) 126 return PTR_ERR(fc); 127 ret = vfs_parse_fs_string(fc, "source", "tmpfs"); 128 if (unlikely(ret)) 129 return -ENOPARAM; 130 ret = vfs_parse_fs_string(fc, "huge", value); 131 if (unlikely(ret)) 132 return -ENOPARAM; 133 134 dev->huge_mnt = fc_mount_longterm(fc); 135 put_fs_context(fc); 136 137 return drmm_add_action_or_reset(dev, drm_gem_huge_mnt_free, NULL); 138 } 139 EXPORT_SYMBOL_GPL(drm_gem_huge_mnt_create); 140 #endif 141 142 static void 143 drm_gem_init_release(struct drm_device *dev, void *ptr) 144 { 145 drm_vma_offset_manager_destroy(dev->vma_offset_manager); 146 } 147 148 /** 149 * drm_gem_init - Initialize the GEM device fields 150 * @dev: drm_devic structure to initialize 151 */ 152 int 153 drm_gem_init(struct drm_device *dev) 154 { 155 struct drm_vma_offset_manager *vma_offset_manager; 156 157 mutex_init(&dev->object_name_lock); 158 idr_init_base(&dev->object_name_idr, 1); 159 160 vma_offset_manager = drmm_kzalloc(dev, sizeof(*vma_offset_manager), 161 GFP_KERNEL); 162 if (!vma_offset_manager) 163 return -ENOMEM; 164 165 dev->vma_offset_manager = vma_offset_manager; 166 drm_vma_offset_manager_init(vma_offset_manager, 167 DRM_FILE_PAGE_OFFSET_START, 168 DRM_FILE_PAGE_OFFSET_SIZE); 169 170 return drmm_add_action(dev, drm_gem_init_release, NULL); 171 } 172 173 /** 174 * drm_gem_object_init - initialize an allocated shmem-backed GEM object 175 * 176 * @dev: drm_device the object should be initialized for 177 * @obj: drm_gem_object to initialize 178 * @size: object size 179 * 180 * Initialize an already allocated GEM object of the specified size with 181 * shmfs backing store. A huge mountpoint can be used by calling 182 * drm_gem_huge_mnt_create() beforehand. 183 */ 184 int drm_gem_object_init(struct drm_device *dev, struct drm_gem_object *obj, 185 size_t size) 186 { 187 struct vfsmount *huge_mnt; 188 struct file *filp; 189 const vma_flags_t flags = mk_vma_flags(VMA_NORESERVE_BIT); 190 191 drm_gem_private_object_init(dev, obj, size); 192 193 huge_mnt = drm_gem_get_huge_mnt(dev); 194 if (huge_mnt) 195 filp = shmem_file_setup_with_mnt(huge_mnt, "drm mm object", 196 size, flags); 197 else 198 filp = shmem_file_setup("drm mm object", size, flags); 199 200 if (IS_ERR(filp)) 201 return PTR_ERR(filp); 202 203 obj->filp = filp; 204 205 return 0; 206 } 207 EXPORT_SYMBOL(drm_gem_object_init); 208 209 /** 210 * drm_gem_private_object_init - initialize an allocated private GEM object 211 * @dev: drm_device the object should be initialized for 212 * @obj: drm_gem_object to initialize 213 * @size: object size 214 * 215 * Initialize an already allocated GEM object of the specified size with 216 * no GEM provided backing store. Instead the caller is responsible for 217 * backing the object and handling it. 218 */ 219 void drm_gem_private_object_init(struct drm_device *dev, 220 struct drm_gem_object *obj, size_t size) 221 { 222 BUG_ON((size & (PAGE_SIZE - 1)) != 0); 223 224 obj->dev = dev; 225 obj->filp = NULL; 226 227 kref_init(&obj->refcount); 228 obj->handle_count = 0; 229 obj->size = size; 230 mutex_init(&obj->gpuva.lock); 231 dma_resv_init(&obj->_resv); 232 if (!obj->resv) 233 obj->resv = &obj->_resv; 234 235 if (drm_core_check_feature(dev, DRIVER_GEM_GPUVA)) 236 drm_gem_gpuva_init(obj); 237 238 drm_vma_node_reset(&obj->vma_node); 239 INIT_LIST_HEAD(&obj->lru_node); 240 } 241 EXPORT_SYMBOL(drm_gem_private_object_init); 242 243 /** 244 * drm_gem_private_object_fini - Finalize a failed drm_gem_object 245 * @obj: drm_gem_object 246 * 247 * Uninitialize an already allocated GEM object when it initialized failed 248 */ 249 void drm_gem_private_object_fini(struct drm_gem_object *obj) 250 { 251 WARN_ON(obj->dma_buf); 252 253 dma_resv_fini(&obj->_resv); 254 mutex_destroy(&obj->gpuva.lock); 255 } 256 EXPORT_SYMBOL(drm_gem_private_object_fini); 257 258 static void drm_gem_object_handle_get(struct drm_gem_object *obj) 259 { 260 struct drm_device *dev = obj->dev; 261 262 drm_WARN_ON(dev, !mutex_is_locked(&dev->object_name_lock)); 263 264 if (obj->handle_count++ == 0) 265 drm_gem_object_get(obj); 266 } 267 268 /** 269 * drm_gem_object_handle_get_if_exists_unlocked - acquire reference on user-space handle, if any 270 * @obj: GEM object 271 * 272 * Acquires a reference on the GEM buffer object's handle. Required to keep 273 * the GEM object alive. Call drm_gem_object_handle_put_if_exists_unlocked() 274 * to release the reference. Does nothing if the buffer object has no handle. 275 * 276 * Returns: 277 * True if a handle exists, or false otherwise 278 */ 279 bool drm_gem_object_handle_get_if_exists_unlocked(struct drm_gem_object *obj) 280 { 281 struct drm_device *dev = obj->dev; 282 283 guard(mutex)(&dev->object_name_lock); 284 285 /* 286 * First ref taken during GEM object creation, if any. Some 287 * drivers set up internal framebuffers with GEM objects that 288 * do not have a GEM handle. Hence, this counter can be zero. 289 */ 290 if (!obj->handle_count) 291 return false; 292 293 drm_gem_object_handle_get(obj); 294 295 return true; 296 } 297 298 /** 299 * drm_gem_object_handle_free - release resources bound to userspace handles 300 * @obj: GEM object to clean up. 301 * 302 * Called after the last handle to the object has been closed 303 * 304 * Removes any name for the object. Note that this must be 305 * called before drm_gem_object_free or we'll be touching 306 * freed memory 307 */ 308 static void drm_gem_object_handle_free(struct drm_gem_object *obj) 309 { 310 struct drm_device *dev = obj->dev; 311 312 /* Remove any name for this object */ 313 if (obj->name) { 314 idr_remove(&dev->object_name_idr, obj->name); 315 obj->name = 0; 316 } 317 } 318 319 static void drm_gem_object_exported_dma_buf_free(struct drm_gem_object *obj) 320 { 321 /* Unbreak the reference cycle if we have an exported dma_buf. */ 322 if (obj->dma_buf) { 323 dma_buf_put(obj->dma_buf); 324 obj->dma_buf = NULL; 325 } 326 } 327 328 /** 329 * drm_gem_object_handle_put_unlocked - releases reference on user-space handle 330 * @obj: GEM object 331 * 332 * Releases a reference on the GEM buffer object's handle. Possibly releases 333 * the GEM buffer object and associated dma-buf objects. 334 */ 335 void drm_gem_object_handle_put_unlocked(struct drm_gem_object *obj) 336 { 337 struct drm_device *dev = obj->dev; 338 bool final = false; 339 340 if (drm_WARN_ON(dev, READ_ONCE(obj->handle_count) == 0)) 341 return; 342 343 /* 344 * Must bump handle count first as this may be the last 345 * ref, in which case the object would disappear before 346 * we checked for a name. 347 */ 348 349 mutex_lock(&dev->object_name_lock); 350 if (--obj->handle_count == 0) { 351 drm_gem_object_handle_free(obj); 352 drm_gem_object_exported_dma_buf_free(obj); 353 final = true; 354 } 355 mutex_unlock(&dev->object_name_lock); 356 357 if (final) 358 drm_gem_object_put(obj); 359 } 360 361 /* 362 * Called at device or object close to release the file's 363 * handle references on objects. 364 */ 365 static int 366 drm_gem_object_release_handle(int id, void *ptr, void *data) 367 { 368 struct drm_file *file_priv = data; 369 struct drm_gem_object *obj = ptr; 370 371 if (drm_WARN_ON(obj->dev, !data)) 372 return 0; 373 374 if (obj->funcs->close) 375 obj->funcs->close(obj, file_priv); 376 377 mutex_lock(&file_priv->prime.lock); 378 379 drm_prime_remove_buf_handle(&file_priv->prime, id); 380 381 mutex_unlock(&file_priv->prime.lock); 382 383 drm_vma_node_revoke(&obj->vma_node, file_priv); 384 385 drm_gem_object_handle_put_unlocked(obj); 386 387 return 0; 388 } 389 390 /** 391 * drm_gem_handle_delete - deletes the given file-private handle 392 * @filp: drm file-private structure to use for the handle look up 393 * @handle: userspace handle to delete 394 * 395 * Removes the GEM handle from the @filp lookup table which has been added with 396 * drm_gem_handle_create(). If this is the last handle also cleans up linked 397 * resources like GEM names. 398 */ 399 int 400 drm_gem_handle_delete(struct drm_file *filp, u32 handle) 401 { 402 struct drm_gem_object *obj; 403 404 spin_lock(&filp->table_lock); 405 406 /* Check if we currently have a reference on the object */ 407 obj = idr_replace(&filp->object_idr, NULL, handle); 408 spin_unlock(&filp->table_lock); 409 if (IS_ERR_OR_NULL(obj)) 410 return -EINVAL; 411 412 /* Release driver's reference and decrement refcount. */ 413 drm_gem_object_release_handle(handle, obj, filp); 414 415 /* And finally make the handle available for future allocations. */ 416 spin_lock(&filp->table_lock); 417 idr_remove(&filp->object_idr, handle); 418 spin_unlock(&filp->table_lock); 419 420 return 0; 421 } 422 EXPORT_SYMBOL(drm_gem_handle_delete); 423 424 /** 425 * drm_gem_dumb_map_offset - return the fake mmap offset for a gem object 426 * @file: drm file-private structure containing the gem object 427 * @dev: corresponding drm_device 428 * @handle: gem object handle 429 * @offset: return location for the fake mmap offset 430 * 431 * This implements the &drm_driver.dumb_map_offset kms driver callback for 432 * drivers which use gem to manage their backing storage. 433 * 434 * Returns: 435 * 0 on success or a negative error code on failure. 436 */ 437 int drm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev, 438 u32 handle, u64 *offset) 439 { 440 struct drm_gem_object *obj; 441 int ret; 442 443 obj = drm_gem_object_lookup(file, handle); 444 if (!obj) 445 return -ENOENT; 446 447 /* Don't allow imported objects to be mapped */ 448 if (drm_gem_is_imported(obj)) { 449 ret = -EINVAL; 450 goto out; 451 } 452 453 ret = drm_gem_create_mmap_offset(obj); 454 if (ret) 455 goto out; 456 457 *offset = drm_vma_node_offset_addr(&obj->vma_node); 458 out: 459 drm_gem_object_put(obj); 460 461 return ret; 462 } 463 EXPORT_SYMBOL_GPL(drm_gem_dumb_map_offset); 464 465 /** 466 * drm_gem_handle_create_tail - internal functions to create a handle 467 * @file_priv: drm file-private structure to register the handle for 468 * @obj: object to register 469 * @handlep: pointer to return the created handle to the caller 470 * 471 * This expects the &drm_device.object_name_lock to be held already and will 472 * drop it before returning. Used to avoid races in establishing new handles 473 * when importing an object from either an flink name or a dma-buf. 474 * 475 * Handles must be release again through drm_gem_handle_delete(). This is done 476 * when userspace closes @file_priv for all attached handles, or through the 477 * GEM_CLOSE ioctl for individual handles. 478 */ 479 int 480 drm_gem_handle_create_tail(struct drm_file *file_priv, 481 struct drm_gem_object *obj, 482 u32 *handlep) 483 { 484 struct drm_device *dev = obj->dev; 485 u32 handle; 486 int ret; 487 488 WARN_ON(!mutex_is_locked(&dev->object_name_lock)); 489 490 drm_gem_object_handle_get(obj); 491 492 /* 493 * Get the user-visible handle using idr. Preload and perform 494 * allocation under our spinlock. 495 */ 496 idr_preload(GFP_KERNEL); 497 spin_lock(&file_priv->table_lock); 498 499 ret = idr_alloc(&file_priv->object_idr, NULL, 1, 0, GFP_NOWAIT); 500 501 spin_unlock(&file_priv->table_lock); 502 idr_preload_end(); 503 504 mutex_unlock(&dev->object_name_lock); 505 if (ret < 0) 506 goto err_unref; 507 508 handle = ret; 509 510 ret = drm_vma_node_allow(&obj->vma_node, file_priv); 511 if (ret) 512 goto err_remove; 513 514 if (obj->funcs->open) { 515 ret = obj->funcs->open(obj, file_priv); 516 if (ret) 517 goto err_revoke; 518 } 519 520 /* mirrors drm_gem_handle_delete to avoid races */ 521 spin_lock(&file_priv->table_lock); 522 obj = idr_replace(&file_priv->object_idr, obj, handle); 523 WARN_ON(obj != NULL); 524 spin_unlock(&file_priv->table_lock); 525 *handlep = handle; 526 return 0; 527 528 err_revoke: 529 drm_vma_node_revoke(&obj->vma_node, file_priv); 530 err_remove: 531 spin_lock(&file_priv->table_lock); 532 idr_remove(&file_priv->object_idr, handle); 533 spin_unlock(&file_priv->table_lock); 534 err_unref: 535 drm_gem_object_handle_put_unlocked(obj); 536 return ret; 537 } 538 539 /** 540 * drm_gem_handle_create - create a gem handle for an object 541 * @file_priv: drm file-private structure to register the handle for 542 * @obj: object to register 543 * @handlep: pointer to return the created handle to the caller 544 * 545 * Create a handle for this object. This adds a handle reference to the object, 546 * which includes a regular reference count. Callers will likely want to 547 * dereference the object afterwards. 548 * 549 * Since this publishes @obj to userspace it must be fully set up by this point, 550 * drivers must call this last in their buffer object creation callbacks. 551 */ 552 int drm_gem_handle_create(struct drm_file *file_priv, 553 struct drm_gem_object *obj, 554 u32 *handlep) 555 { 556 mutex_lock(&obj->dev->object_name_lock); 557 558 return drm_gem_handle_create_tail(file_priv, obj, handlep); 559 } 560 EXPORT_SYMBOL(drm_gem_handle_create); 561 562 563 /** 564 * drm_gem_free_mmap_offset - release a fake mmap offset for an object 565 * @obj: obj in question 566 * 567 * This routine frees fake offsets allocated by drm_gem_create_mmap_offset(). 568 * 569 * Note that drm_gem_object_release() already calls this function, so drivers 570 * don't have to take care of releasing the mmap offset themselves when freeing 571 * the GEM object. 572 */ 573 void 574 drm_gem_free_mmap_offset(struct drm_gem_object *obj) 575 { 576 struct drm_device *dev = obj->dev; 577 578 drm_vma_offset_remove(dev->vma_offset_manager, &obj->vma_node); 579 } 580 EXPORT_SYMBOL(drm_gem_free_mmap_offset); 581 582 /** 583 * drm_gem_create_mmap_offset_size - create a fake mmap offset for an object 584 * @obj: obj in question 585 * @size: the virtual size 586 * 587 * GEM memory mapping works by handing back to userspace a fake mmap offset 588 * it can use in a subsequent mmap(2) call. The DRM core code then looks 589 * up the object based on the offset and sets up the various memory mapping 590 * structures. 591 * 592 * This routine allocates and attaches a fake offset for @obj, in cases where 593 * the virtual size differs from the physical size (ie. &drm_gem_object.size). 594 * Otherwise just use drm_gem_create_mmap_offset(). 595 * 596 * This function is idempotent and handles an already allocated mmap offset 597 * transparently. Drivers do not need to check for this case. 598 */ 599 int 600 drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size) 601 { 602 struct drm_device *dev = obj->dev; 603 604 return drm_vma_offset_add(dev->vma_offset_manager, &obj->vma_node, 605 size / PAGE_SIZE); 606 } 607 EXPORT_SYMBOL(drm_gem_create_mmap_offset_size); 608 609 /** 610 * drm_gem_create_mmap_offset - create a fake mmap offset for an object 611 * @obj: obj in question 612 * 613 * GEM memory mapping works by handing back to userspace a fake mmap offset 614 * it can use in a subsequent mmap(2) call. The DRM core code then looks 615 * up the object based on the offset and sets up the various memory mapping 616 * structures. 617 * 618 * This routine allocates and attaches a fake offset for @obj. 619 * 620 * Drivers can call drm_gem_free_mmap_offset() before freeing @obj to release 621 * the fake offset again. 622 */ 623 int drm_gem_create_mmap_offset(struct drm_gem_object *obj) 624 { 625 return drm_gem_create_mmap_offset_size(obj, obj->size); 626 } 627 EXPORT_SYMBOL(drm_gem_create_mmap_offset); 628 629 /* 630 * Move folios to appropriate lru and release the folios, decrementing the 631 * ref count of those folios. 632 */ 633 static void drm_gem_check_release_batch(struct folio_batch *fbatch) 634 { 635 check_move_unevictable_folios(fbatch); 636 __folio_batch_release(fbatch); 637 cond_resched(); 638 } 639 640 /** 641 * drm_gem_get_pages - helper to allocate backing pages for a GEM object 642 * from shmem 643 * @obj: obj in question 644 * 645 * This reads the page-array of the shmem-backing storage of the given gem 646 * object. An array of pages is returned. If a page is not allocated or 647 * swapped-out, this will allocate/swap-in the required pages. Note that the 648 * whole object is covered by the page-array and pinned in memory. 649 * 650 * Use drm_gem_put_pages() to release the array and unpin all pages. 651 * 652 * This uses the GFP-mask set on the shmem-mapping (see mapping_set_gfp_mask()). 653 * If you require other GFP-masks, you have to do those allocations yourself. 654 * 655 * Note that you are not allowed to change gfp-zones during runtime. That is, 656 * shmem_read_mapping_page_gfp() must be called with the same gfp_zone(gfp) as 657 * set during initialization. If you have special zone constraints, set them 658 * after drm_gem_object_init() via mapping_set_gfp_mask(). shmem-core takes care 659 * to keep pages in the required zone during swap-in. 660 * 661 * This function is only valid on objects initialized with 662 * drm_gem_object_init(), but not for those initialized with 663 * drm_gem_private_object_init() only. 664 */ 665 struct page **drm_gem_get_pages(struct drm_gem_object *obj) 666 { 667 struct address_space *mapping; 668 struct page **pages; 669 struct folio *folio; 670 struct folio_batch fbatch; 671 unsigned long i, j, npages; 672 673 if (WARN_ON(!obj->filp)) 674 return ERR_PTR(-EINVAL); 675 676 /* This is the shared memory object that backs the GEM resource */ 677 mapping = obj->filp->f_mapping; 678 679 /* We already BUG_ON() for non-page-aligned sizes in 680 * drm_gem_object_init(), so we should never hit this unless 681 * driver author is doing something really wrong: 682 */ 683 WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0); 684 685 npages = obj->size >> PAGE_SHIFT; 686 687 pages = kvmalloc_objs(struct page *, npages); 688 if (pages == NULL) 689 return ERR_PTR(-ENOMEM); 690 691 mapping_set_unevictable(mapping); 692 693 i = 0; 694 while (i < npages) { 695 unsigned long nr; 696 folio = shmem_read_folio_gfp(mapping, i, 697 mapping_gfp_mask(mapping)); 698 if (IS_ERR(folio)) 699 goto fail; 700 nr = min(npages - i, folio_nr_pages(folio)); 701 for (j = 0; j < nr; j++, i++) 702 pages[i] = folio_file_page(folio, i); 703 704 /* Make sure shmem keeps __GFP_DMA32 allocated pages in the 705 * correct region during swapin. Note that this requires 706 * __GFP_DMA32 to be set in mapping_gfp_mask(inode->i_mapping) 707 * so shmem can relocate pages during swapin if required. 708 */ 709 BUG_ON(mapping_gfp_constraint(mapping, __GFP_DMA32) && 710 (folio_pfn(folio) >= 0x00100000UL)); 711 } 712 713 return pages; 714 715 fail: 716 mapping_clear_unevictable(mapping); 717 folio_batch_init(&fbatch); 718 j = 0; 719 while (j < i) { 720 struct folio *f = page_folio(pages[j]); 721 if (!folio_batch_add(&fbatch, f)) 722 drm_gem_check_release_batch(&fbatch); 723 j += folio_nr_pages(f); 724 } 725 if (fbatch.nr) 726 drm_gem_check_release_batch(&fbatch); 727 728 kvfree(pages); 729 return ERR_CAST(folio); 730 } 731 EXPORT_SYMBOL(drm_gem_get_pages); 732 733 /** 734 * drm_gem_put_pages - helper to free backing pages for a GEM object 735 * @obj: obj in question 736 * @pages: pages to free 737 * @dirty: if true, pages will be marked as dirty 738 * @accessed: if true, the pages will be marked as accessed 739 */ 740 void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages, 741 bool dirty, bool accessed) 742 { 743 int i, npages; 744 struct address_space *mapping; 745 struct folio_batch fbatch; 746 747 mapping = file_inode(obj->filp)->i_mapping; 748 mapping_clear_unevictable(mapping); 749 750 /* We already BUG_ON() for non-page-aligned sizes in 751 * drm_gem_object_init(), so we should never hit this unless 752 * driver author is doing something really wrong: 753 */ 754 WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0); 755 756 npages = obj->size >> PAGE_SHIFT; 757 758 folio_batch_init(&fbatch); 759 for (i = 0; i < npages; i++) { 760 struct folio *folio; 761 762 if (!pages[i]) 763 continue; 764 folio = page_folio(pages[i]); 765 766 if (dirty) 767 folio_mark_dirty(folio); 768 769 if (accessed) 770 folio_mark_accessed(folio); 771 772 /* Undo the reference we took when populating the table */ 773 if (!folio_batch_add(&fbatch, folio)) 774 drm_gem_check_release_batch(&fbatch); 775 i += folio_nr_pages(folio) - 1; 776 } 777 if (folio_batch_count(&fbatch)) 778 drm_gem_check_release_batch(&fbatch); 779 780 kvfree(pages); 781 } 782 EXPORT_SYMBOL(drm_gem_put_pages); 783 784 static int objects_lookup(struct drm_file *filp, u32 *handle, int count, 785 struct drm_gem_object **objs) 786 { 787 int i; 788 struct drm_gem_object *obj; 789 790 spin_lock(&filp->table_lock); 791 792 for (i = 0; i < count; i++) { 793 /* Check if we currently have a reference on the object */ 794 obj = idr_find(&filp->object_idr, handle[i]); 795 if (!obj) 796 goto err; 797 798 drm_gem_object_get(obj); 799 objs[i] = obj; 800 } 801 802 spin_unlock(&filp->table_lock); 803 return 0; 804 805 err: 806 spin_unlock(&filp->table_lock); 807 808 while (i--) 809 drm_gem_object_put(objs[i]); 810 811 return -ENOENT; 812 } 813 814 /** 815 * drm_gem_objects_lookup - look up GEM objects from an array of handles 816 * @filp: DRM file private date 817 * @bo_handles: user pointer to array of userspace handle 818 * @count: size of handle array 819 * @objs_out: returned pointer to array of drm_gem_object pointers 820 * 821 * Takes an array of userspace handles and returns a newly allocated array of 822 * GEM objects. 823 * 824 * After a successful lookup GEM objects need to be released using 825 * drm_gem_object_put() and the array returned in @objs_out must be freed using 826 * kvfree(). 827 * 828 * For a single handle lookup, use drm_gem_object_lookup(). 829 * 830 * Return: 831 * Zero on success or a negative error code. 832 */ 833 int drm_gem_objects_lookup(struct drm_file *filp, void __user *bo_handles, 834 int count, struct drm_gem_object ***objs_out) 835 { 836 struct drm_gem_object **objs; 837 u32 *handles; 838 int ret; 839 840 *objs_out = NULL; 841 842 if (!count) 843 return 0; 844 845 objs = kvmalloc_objs(*objs, count); 846 if (!objs) 847 return -ENOMEM; 848 849 handles = vmemdup_array_user(bo_handles, count, sizeof(u32)); 850 if (IS_ERR(handles)) { 851 ret = PTR_ERR(handles); 852 goto err_free_objs; 853 } 854 855 ret = objects_lookup(filp, handles, count, objs); 856 if (ret) 857 goto err_free_handles; 858 859 kvfree(handles); 860 *objs_out = objs; 861 return 0; 862 863 err_free_handles: 864 kvfree(handles); 865 err_free_objs: 866 kvfree(objs); 867 return ret; 868 } 869 EXPORT_SYMBOL(drm_gem_objects_lookup); 870 871 /** 872 * drm_gem_object_lookup - look up a GEM object from its handle 873 * @filp: DRM file private date 874 * @handle: userspace handle 875 * 876 * If looking up an array of handles, use drm_gem_objects_lookup(). 877 * 878 * Returns: 879 * A reference to the object named by the handle if such exists on @filp, NULL 880 * otherwise. 881 */ 882 struct drm_gem_object * 883 drm_gem_object_lookup(struct drm_file *filp, u32 handle) 884 { 885 struct drm_gem_object *obj = NULL; 886 887 objects_lookup(filp, &handle, 1, &obj); 888 return obj; 889 } 890 EXPORT_SYMBOL(drm_gem_object_lookup); 891 892 /** 893 * drm_gem_dma_resv_wait - Wait on GEM object's reservation's objects 894 * shared and/or exclusive fences. 895 * @filep: DRM file private date 896 * @handle: userspace handle 897 * @wait_all: if true, wait on all fences, else wait on just exclusive fence 898 * @timeout: timeout value in jiffies or zero to return immediately 899 * 900 * Returns: 901 * Returns -ERESTARTSYS if interrupted, 0 if the wait timed out, or 902 * greater than 0 on success. 903 */ 904 long drm_gem_dma_resv_wait(struct drm_file *filep, u32 handle, 905 bool wait_all, unsigned long timeout) 906 { 907 struct drm_device *dev = filep->minor->dev; 908 struct drm_gem_object *obj; 909 long ret; 910 911 obj = drm_gem_object_lookup(filep, handle); 912 if (!obj) { 913 drm_dbg_core(dev, "Failed to look up GEM BO %d\n", handle); 914 return -EINVAL; 915 } 916 917 ret = dma_resv_wait_timeout(obj->resv, dma_resv_usage_rw(wait_all), 918 true, timeout); 919 if (ret == 0) 920 ret = -ETIME; 921 else if (ret > 0) 922 ret = 0; 923 924 drm_gem_object_put(obj); 925 926 return ret; 927 } 928 EXPORT_SYMBOL(drm_gem_dma_resv_wait); 929 930 int 931 drm_gem_close_ioctl(struct drm_device *dev, void *data, 932 struct drm_file *file_priv) 933 { 934 struct drm_gem_close *args = data; 935 int ret; 936 937 if (!drm_core_check_feature(dev, DRIVER_GEM)) 938 return -EOPNOTSUPP; 939 940 ret = drm_gem_handle_delete(file_priv, args->handle); 941 942 return ret; 943 } 944 945 int 946 drm_gem_flink_ioctl(struct drm_device *dev, void *data, 947 struct drm_file *file_priv) 948 { 949 struct drm_gem_flink *args = data; 950 struct drm_gem_object *obj; 951 int ret; 952 953 if (!drm_core_check_feature(dev, DRIVER_GEM)) 954 return -EOPNOTSUPP; 955 956 obj = drm_gem_object_lookup(file_priv, args->handle); 957 if (obj == NULL) 958 return -ENOENT; 959 960 mutex_lock(&dev->object_name_lock); 961 /* prevent races with concurrent gem_close. */ 962 if (obj->handle_count == 0) { 963 ret = -ENOENT; 964 goto err; 965 } 966 967 if (!obj->name) { 968 ret = idr_alloc(&dev->object_name_idr, obj, 1, 0, GFP_KERNEL); 969 if (ret < 0) 970 goto err; 971 972 obj->name = ret; 973 } 974 975 args->name = (uint64_t) obj->name; 976 ret = 0; 977 978 err: 979 mutex_unlock(&dev->object_name_lock); 980 drm_gem_object_put(obj); 981 return ret; 982 } 983 984 int 985 drm_gem_open_ioctl(struct drm_device *dev, void *data, 986 struct drm_file *file_priv) 987 { 988 struct drm_gem_open *args = data; 989 struct drm_gem_object *obj; 990 int ret; 991 u32 handle; 992 993 if (!drm_core_check_feature(dev, DRIVER_GEM)) 994 return -EOPNOTSUPP; 995 996 mutex_lock(&dev->object_name_lock); 997 obj = idr_find(&dev->object_name_idr, (int) args->name); 998 if (obj) { 999 drm_gem_object_get(obj); 1000 } else { 1001 mutex_unlock(&dev->object_name_lock); 1002 return -ENOENT; 1003 } 1004 1005 /* drm_gem_handle_create_tail unlocks dev->object_name_lock. */ 1006 ret = drm_gem_handle_create_tail(file_priv, obj, &handle); 1007 if (ret) 1008 goto err; 1009 1010 args->handle = handle; 1011 args->size = obj->size; 1012 1013 err: 1014 drm_gem_object_put(obj); 1015 return ret; 1016 } 1017 1018 int drm_gem_change_handle_ioctl(struct drm_device *dev, void *data, 1019 struct drm_file *file_priv) 1020 { 1021 struct drm_gem_change_handle *args = data; 1022 struct drm_gem_object *obj; 1023 int handle, ret; 1024 1025 if (!drm_core_check_feature(dev, DRIVER_GEM)) 1026 return -EOPNOTSUPP; 1027 1028 /* idr_alloc() limitation. */ 1029 if (args->new_handle > INT_MAX) 1030 return -EINVAL; 1031 handle = args->new_handle; 1032 1033 obj = drm_gem_object_lookup(file_priv, args->handle); 1034 if (!obj) 1035 return -ENOENT; 1036 1037 if (args->handle == handle) { 1038 ret = 0; 1039 goto out; 1040 } 1041 1042 mutex_lock(&file_priv->prime.lock); 1043 1044 spin_lock(&file_priv->table_lock); 1045 ret = idr_alloc(&file_priv->object_idr, obj, handle, handle + 1, 1046 GFP_NOWAIT); 1047 spin_unlock(&file_priv->table_lock); 1048 1049 if (ret < 0) 1050 goto out_unlock; 1051 1052 if (obj->dma_buf) { 1053 ret = drm_prime_add_buf_handle(&file_priv->prime, obj->dma_buf, 1054 handle); 1055 if (ret < 0) { 1056 spin_lock(&file_priv->table_lock); 1057 idr_remove(&file_priv->object_idr, handle); 1058 spin_unlock(&file_priv->table_lock); 1059 goto out_unlock; 1060 } 1061 1062 drm_prime_remove_buf_handle(&file_priv->prime, args->handle); 1063 } 1064 1065 ret = 0; 1066 1067 spin_lock(&file_priv->table_lock); 1068 idr_remove(&file_priv->object_idr, args->handle); 1069 spin_unlock(&file_priv->table_lock); 1070 1071 out_unlock: 1072 mutex_unlock(&file_priv->prime.lock); 1073 out: 1074 drm_gem_object_put(obj); 1075 1076 return ret; 1077 } 1078 1079 /** 1080 * drm_gem_open - initializes GEM file-private structures at devnode open time 1081 * @dev: drm_device which is being opened by userspace 1082 * @file_private: drm file-private structure to set up 1083 * 1084 * Called at device open time, sets up the structure for handling refcounting 1085 * of mm objects. 1086 */ 1087 void 1088 drm_gem_open(struct drm_device *dev, struct drm_file *file_private) 1089 { 1090 idr_init_base(&file_private->object_idr, 1); 1091 spin_lock_init(&file_private->table_lock); 1092 } 1093 1094 /** 1095 * drm_gem_release - release file-private GEM resources 1096 * @dev: drm_device which is being closed by userspace 1097 * @file_private: drm file-private structure to clean up 1098 * 1099 * Called at close time when the filp is going away. 1100 * 1101 * Releases any remaining references on objects by this filp. 1102 */ 1103 void 1104 drm_gem_release(struct drm_device *dev, struct drm_file *file_private) 1105 { 1106 idr_for_each(&file_private->object_idr, 1107 &drm_gem_object_release_handle, file_private); 1108 idr_destroy(&file_private->object_idr); 1109 } 1110 1111 /** 1112 * drm_gem_object_release - release GEM buffer object resources 1113 * @obj: GEM buffer object 1114 * 1115 * This releases any structures and resources used by @obj and is the inverse of 1116 * drm_gem_object_init(). 1117 */ 1118 void 1119 drm_gem_object_release(struct drm_gem_object *obj) 1120 { 1121 if (obj->filp) 1122 fput(obj->filp); 1123 1124 drm_gem_private_object_fini(obj); 1125 1126 drm_gem_free_mmap_offset(obj); 1127 drm_gem_lru_remove(obj); 1128 } 1129 EXPORT_SYMBOL(drm_gem_object_release); 1130 1131 /** 1132 * drm_gem_object_free - free a GEM object 1133 * @kref: kref of the object to free 1134 * 1135 * Called after the last reference to the object has been lost. 1136 * 1137 * Frees the object 1138 */ 1139 void 1140 drm_gem_object_free(struct kref *kref) 1141 { 1142 struct drm_gem_object *obj = 1143 container_of(kref, struct drm_gem_object, refcount); 1144 1145 if (WARN_ON(!obj->funcs->free)) 1146 return; 1147 1148 obj->funcs->free(obj); 1149 } 1150 EXPORT_SYMBOL(drm_gem_object_free); 1151 1152 /** 1153 * drm_gem_vm_open - vma->ops->open implementation for GEM 1154 * @vma: VM area structure 1155 * 1156 * This function implements the #vm_operations_struct open() callback for GEM 1157 * drivers. This must be used together with drm_gem_vm_close(). 1158 */ 1159 void drm_gem_vm_open(struct vm_area_struct *vma) 1160 { 1161 struct drm_gem_object *obj = vma->vm_private_data; 1162 1163 drm_gem_object_get(obj); 1164 } 1165 EXPORT_SYMBOL(drm_gem_vm_open); 1166 1167 /** 1168 * drm_gem_vm_close - vma->ops->close implementation for GEM 1169 * @vma: VM area structure 1170 * 1171 * This function implements the #vm_operations_struct close() callback for GEM 1172 * drivers. This must be used together with drm_gem_vm_open(). 1173 */ 1174 void drm_gem_vm_close(struct vm_area_struct *vma) 1175 { 1176 struct drm_gem_object *obj = vma->vm_private_data; 1177 1178 drm_gem_object_put(obj); 1179 } 1180 EXPORT_SYMBOL(drm_gem_vm_close); 1181 1182 /** 1183 * drm_gem_mmap_obj - memory map a GEM object 1184 * @obj: the GEM object to map 1185 * @obj_size: the object size to be mapped, in bytes 1186 * @vma: VMA for the area to be mapped 1187 * 1188 * Set up the VMA to prepare mapping of the GEM object using the GEM object's 1189 * vm_ops. Depending on their requirements, GEM objects can either 1190 * provide a fault handler in their vm_ops (in which case any accesses to 1191 * the object will be trapped, to perform migration, GTT binding, surface 1192 * register allocation, or performance monitoring), or mmap the buffer memory 1193 * synchronously after calling drm_gem_mmap_obj. 1194 * 1195 * This function is mainly intended to implement the DMABUF mmap operation, when 1196 * the GEM object is not looked up based on its fake offset. To implement the 1197 * DRM mmap operation, drivers should use the drm_gem_mmap() function. 1198 * 1199 * drm_gem_mmap_obj() assumes the user is granted access to the buffer while 1200 * drm_gem_mmap() prevents unprivileged users from mapping random objects. So 1201 * callers must verify access restrictions before calling this helper. 1202 * 1203 * Return 0 or success or -EINVAL if the object size is smaller than the VMA 1204 * size, or if no vm_ops are provided. 1205 */ 1206 int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size, 1207 struct vm_area_struct *vma) 1208 { 1209 int ret; 1210 1211 /* Check for valid size. */ 1212 if (obj_size < vma->vm_end - vma->vm_start) 1213 return -EINVAL; 1214 1215 /* Take a ref for this mapping of the object, so that the fault 1216 * handler can dereference the mmap offset's pointer to the object. 1217 * This reference is cleaned up by the corresponding vm_close 1218 * (which should happen whether the vma was created by this call, or 1219 * by a vm_open due to mremap or partial unmap or whatever). 1220 */ 1221 drm_gem_object_get(obj); 1222 1223 vma->vm_private_data = obj; 1224 vma->vm_ops = obj->funcs->vm_ops; 1225 1226 if (obj->funcs->mmap) { 1227 ret = obj->funcs->mmap(obj, vma); 1228 if (ret) 1229 goto err_drm_gem_object_put; 1230 WARN_ON(!(vma->vm_flags & VM_DONTEXPAND)); 1231 } else { 1232 if (!vma->vm_ops) { 1233 ret = -EINVAL; 1234 goto err_drm_gem_object_put; 1235 } 1236 1237 vm_flags_set(vma, VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP); 1238 vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); 1239 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot); 1240 } 1241 1242 return 0; 1243 1244 err_drm_gem_object_put: 1245 drm_gem_object_put(obj); 1246 return ret; 1247 } 1248 EXPORT_SYMBOL(drm_gem_mmap_obj); 1249 1250 /* 1251 * Look up a GEM object in offset space based on the exact start address. The 1252 * caller must be granted access to the object. Returns a GEM object on success 1253 * or a negative error code on failure. The returned GEM object needs to be 1254 * released with drm_gem_object_put(). 1255 */ 1256 static struct drm_gem_object * 1257 drm_gem_object_lookup_at_offset(struct file *filp, unsigned long start, 1258 unsigned long pages) 1259 { 1260 struct drm_file *priv = filp->private_data; 1261 struct drm_device *dev = priv->minor->dev; 1262 struct drm_gem_object *obj = NULL; 1263 struct drm_vma_offset_node *node; 1264 1265 if (drm_dev_is_unplugged(dev)) 1266 return ERR_PTR(-ENODEV); 1267 1268 drm_vma_offset_lock_lookup(dev->vma_offset_manager); 1269 node = drm_vma_offset_exact_lookup_locked(dev->vma_offset_manager, 1270 start, pages); 1271 if (likely(node)) { 1272 obj = container_of(node, struct drm_gem_object, vma_node); 1273 /* 1274 * When the object is being freed, after it hits 0-refcnt it 1275 * proceeds to tear down the object. In the process it will 1276 * attempt to remove the VMA offset and so acquire this 1277 * mgr->vm_lock. Therefore if we find an object with a 0-refcnt 1278 * that matches our range, we know it is in the process of being 1279 * destroyed and will be freed as soon as we release the lock - 1280 * so we have to check for the 0-refcnted object and treat it as 1281 * invalid. 1282 */ 1283 if (!kref_get_unless_zero(&obj->refcount)) 1284 obj = NULL; 1285 } 1286 drm_vma_offset_unlock_lookup(dev->vma_offset_manager); 1287 1288 if (!obj) 1289 return ERR_PTR(-EINVAL); 1290 1291 if (!drm_vma_node_is_allowed(node, priv)) { 1292 drm_gem_object_put(obj); 1293 return ERR_PTR(-EACCES); 1294 } 1295 1296 return obj; 1297 } 1298 1299 #ifdef CONFIG_MMU 1300 /** 1301 * drm_gem_get_unmapped_area - get memory mapping region routine for GEM objects 1302 * @filp: DRM file pointer 1303 * @uaddr: User address hint 1304 * @len: Mapping length 1305 * @pgoff: Offset (in pages) 1306 * @flags: Mapping flags 1307 * 1308 * If a driver supports GEM object mapping, before ending up in drm_gem_mmap(), 1309 * mmap calls on the DRM file descriptor will first try to find a free linear 1310 * address space large enough for a mapping. Since GEM objects are backed by 1311 * shmem buffers, this should preferably be handled by the shmem virtual memory 1312 * filesystem which can appropriately align addresses to huge page sizes when 1313 * needed. 1314 * 1315 * Look up the GEM object based on the offset passed in (vma->vm_pgoff will 1316 * contain the fake offset we created) and call shmem_get_unmapped_area() with 1317 * the right file pointer. 1318 * 1319 * If a GEM object is not available at the given offset or if the caller is not 1320 * granted access to it, fall back to mm_get_unmapped_area(). 1321 */ 1322 unsigned long drm_gem_get_unmapped_area(struct file *filp, unsigned long uaddr, 1323 unsigned long len, unsigned long pgoff, 1324 unsigned long flags) 1325 { 1326 struct drm_gem_object *obj; 1327 unsigned long ret; 1328 1329 obj = drm_gem_object_lookup_at_offset(filp, pgoff, len >> PAGE_SHIFT); 1330 if (IS_ERR(obj)) 1331 obj = NULL; 1332 1333 if (!obj || !obj->filp || !obj->filp->f_op->get_unmapped_area) 1334 ret = mm_get_unmapped_area(filp, uaddr, len, 0, flags); 1335 else 1336 ret = obj->filp->f_op->get_unmapped_area(obj->filp, uaddr, len, 0, flags); 1337 1338 drm_gem_object_put(obj); 1339 1340 return ret; 1341 } 1342 EXPORT_SYMBOL_GPL(drm_gem_get_unmapped_area); 1343 #endif 1344 1345 /** 1346 * drm_gem_mmap - memory map routine for GEM objects 1347 * @filp: DRM file pointer 1348 * @vma: VMA for the area to be mapped 1349 * 1350 * If a driver supports GEM object mapping, mmap calls on the DRM file 1351 * descriptor will end up here. 1352 * 1353 * Look up the GEM object based on the offset passed in (vma->vm_pgoff will 1354 * contain the fake offset we created) and map it with a call to 1355 * drm_gem_mmap_obj(). 1356 * 1357 * If the caller is not granted access to the buffer object, the mmap will fail 1358 * with EACCES. Please see the vma manager for more information. 1359 */ 1360 int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) 1361 { 1362 struct drm_gem_object *obj; 1363 int ret; 1364 1365 obj = drm_gem_object_lookup_at_offset(filp, vma->vm_pgoff, 1366 vma_pages(vma)); 1367 if (IS_ERR(obj)) 1368 return PTR_ERR(obj); 1369 1370 ret = drm_gem_mmap_obj(obj, 1371 drm_vma_node_size(&obj->vma_node) << PAGE_SHIFT, 1372 vma); 1373 1374 drm_gem_object_put(obj); 1375 1376 return ret; 1377 } 1378 EXPORT_SYMBOL(drm_gem_mmap); 1379 1380 void drm_gem_print_info(struct drm_printer *p, unsigned int indent, 1381 const struct drm_gem_object *obj) 1382 { 1383 drm_printf_indent(p, indent, "name=%d\n", obj->name); 1384 drm_printf_indent(p, indent, "refcount=%u\n", 1385 kref_read(&obj->refcount)); 1386 drm_printf_indent(p, indent, "start=%08lx\n", 1387 drm_vma_node_start(&obj->vma_node)); 1388 drm_printf_indent(p, indent, "size=%zu\n", obj->size); 1389 drm_printf_indent(p, indent, "imported=%s\n", 1390 str_yes_no(drm_gem_is_imported(obj))); 1391 1392 if (obj->funcs->print_info) 1393 obj->funcs->print_info(p, indent, obj); 1394 } 1395 1396 int drm_gem_vmap_locked(struct drm_gem_object *obj, struct iosys_map *map) 1397 { 1398 int ret; 1399 1400 dma_resv_assert_held(obj->resv); 1401 1402 if (!obj->funcs->vmap) 1403 return -EOPNOTSUPP; 1404 1405 ret = obj->funcs->vmap(obj, map); 1406 if (ret) 1407 return ret; 1408 else if (iosys_map_is_null(map)) 1409 return -ENOMEM; 1410 1411 return 0; 1412 } 1413 EXPORT_SYMBOL(drm_gem_vmap_locked); 1414 1415 void drm_gem_vunmap_locked(struct drm_gem_object *obj, struct iosys_map *map) 1416 { 1417 dma_resv_assert_held(obj->resv); 1418 1419 if (iosys_map_is_null(map)) 1420 return; 1421 1422 if (obj->funcs->vunmap) 1423 obj->funcs->vunmap(obj, map); 1424 1425 /* Always set the mapping to NULL. Callers may rely on this. */ 1426 iosys_map_clear(map); 1427 } 1428 EXPORT_SYMBOL(drm_gem_vunmap_locked); 1429 1430 void drm_gem_lock(struct drm_gem_object *obj) 1431 { 1432 dma_resv_lock(obj->resv, NULL); 1433 } 1434 EXPORT_SYMBOL(drm_gem_lock); 1435 1436 void drm_gem_unlock(struct drm_gem_object *obj) 1437 { 1438 dma_resv_unlock(obj->resv); 1439 } 1440 EXPORT_SYMBOL(drm_gem_unlock); 1441 1442 int drm_gem_vmap(struct drm_gem_object *obj, struct iosys_map *map) 1443 { 1444 int ret; 1445 1446 dma_resv_lock(obj->resv, NULL); 1447 ret = drm_gem_vmap_locked(obj, map); 1448 dma_resv_unlock(obj->resv); 1449 1450 return ret; 1451 } 1452 EXPORT_SYMBOL(drm_gem_vmap); 1453 1454 void drm_gem_vunmap(struct drm_gem_object *obj, struct iosys_map *map) 1455 { 1456 dma_resv_lock(obj->resv, NULL); 1457 drm_gem_vunmap_locked(obj, map); 1458 dma_resv_unlock(obj->resv); 1459 } 1460 EXPORT_SYMBOL(drm_gem_vunmap); 1461 1462 /** 1463 * drm_gem_lock_reservations - Sets up the ww context and acquires 1464 * the lock on an array of GEM objects. 1465 * 1466 * Once you've locked your reservations, you'll want to set up space 1467 * for your shared fences (if applicable), submit your job, then 1468 * drm_gem_unlock_reservations(). 1469 * 1470 * @objs: drm_gem_objects to lock 1471 * @count: Number of objects in @objs 1472 * @acquire_ctx: struct ww_acquire_ctx that will be initialized as 1473 * part of tracking this set of locked reservations. 1474 */ 1475 int 1476 drm_gem_lock_reservations(struct drm_gem_object **objs, int count, 1477 struct ww_acquire_ctx *acquire_ctx) 1478 { 1479 int contended = -1; 1480 int i, ret; 1481 1482 ww_acquire_init(acquire_ctx, &reservation_ww_class); 1483 1484 retry: 1485 if (contended != -1) { 1486 struct drm_gem_object *obj = objs[contended]; 1487 1488 ret = dma_resv_lock_slow_interruptible(obj->resv, 1489 acquire_ctx); 1490 if (ret) { 1491 ww_acquire_fini(acquire_ctx); 1492 return ret; 1493 } 1494 } 1495 1496 for (i = 0; i < count; i++) { 1497 if (i == contended) 1498 continue; 1499 1500 ret = dma_resv_lock_interruptible(objs[i]->resv, 1501 acquire_ctx); 1502 if (ret) { 1503 int j; 1504 1505 for (j = 0; j < i; j++) 1506 dma_resv_unlock(objs[j]->resv); 1507 1508 if (contended != -1 && contended >= i) 1509 dma_resv_unlock(objs[contended]->resv); 1510 1511 if (ret == -EDEADLK) { 1512 contended = i; 1513 goto retry; 1514 } 1515 1516 ww_acquire_fini(acquire_ctx); 1517 return ret; 1518 } 1519 } 1520 1521 ww_acquire_done(acquire_ctx); 1522 1523 return 0; 1524 } 1525 EXPORT_SYMBOL(drm_gem_lock_reservations); 1526 1527 void 1528 drm_gem_unlock_reservations(struct drm_gem_object **objs, int count, 1529 struct ww_acquire_ctx *acquire_ctx) 1530 { 1531 int i; 1532 1533 for (i = 0; i < count; i++) 1534 dma_resv_unlock(objs[i]->resv); 1535 1536 ww_acquire_fini(acquire_ctx); 1537 } 1538 EXPORT_SYMBOL(drm_gem_unlock_reservations); 1539 1540 /** 1541 * drm_gem_lru_init - initialize a LRU 1542 * 1543 * @lru: The LRU to initialize 1544 * @lock: The lock protecting the LRU 1545 */ 1546 void 1547 drm_gem_lru_init(struct drm_gem_lru *lru, struct mutex *lock) 1548 { 1549 lru->lock = lock; 1550 lru->count = 0; 1551 INIT_LIST_HEAD(&lru->list); 1552 } 1553 EXPORT_SYMBOL(drm_gem_lru_init); 1554 1555 static void 1556 drm_gem_lru_remove_locked(struct drm_gem_object *obj) 1557 { 1558 obj->lru->count -= obj->size >> PAGE_SHIFT; 1559 WARN_ON(obj->lru->count < 0); 1560 list_del(&obj->lru_node); 1561 obj->lru = NULL; 1562 } 1563 1564 /** 1565 * drm_gem_lru_remove - remove object from whatever LRU it is in 1566 * 1567 * If the object is currently in any LRU, remove it. 1568 * 1569 * @obj: The GEM object to remove from current LRU 1570 */ 1571 void 1572 drm_gem_lru_remove(struct drm_gem_object *obj) 1573 { 1574 struct drm_gem_lru *lru = obj->lru; 1575 1576 if (!lru) 1577 return; 1578 1579 mutex_lock(lru->lock); 1580 drm_gem_lru_remove_locked(obj); 1581 mutex_unlock(lru->lock); 1582 } 1583 EXPORT_SYMBOL(drm_gem_lru_remove); 1584 1585 /** 1586 * drm_gem_lru_move_tail_locked - move the object to the tail of the LRU 1587 * 1588 * Like &drm_gem_lru_move_tail but lru lock must be held 1589 * 1590 * @lru: The LRU to move the object into. 1591 * @obj: The GEM object to move into this LRU 1592 */ 1593 void 1594 drm_gem_lru_move_tail_locked(struct drm_gem_lru *lru, struct drm_gem_object *obj) 1595 { 1596 lockdep_assert_held_once(lru->lock); 1597 1598 if (obj->lru) 1599 drm_gem_lru_remove_locked(obj); 1600 1601 lru->count += obj->size >> PAGE_SHIFT; 1602 list_add_tail(&obj->lru_node, &lru->list); 1603 obj->lru = lru; 1604 } 1605 EXPORT_SYMBOL(drm_gem_lru_move_tail_locked); 1606 1607 /** 1608 * drm_gem_lru_move_tail - move the object to the tail of the LRU 1609 * 1610 * If the object is already in this LRU it will be moved to the 1611 * tail. Otherwise it will be removed from whichever other LRU 1612 * it is in (if any) and moved into this LRU. 1613 * 1614 * @lru: The LRU to move the object into. 1615 * @obj: The GEM object to move into this LRU 1616 */ 1617 void 1618 drm_gem_lru_move_tail(struct drm_gem_lru *lru, struct drm_gem_object *obj) 1619 { 1620 mutex_lock(lru->lock); 1621 drm_gem_lru_move_tail_locked(lru, obj); 1622 mutex_unlock(lru->lock); 1623 } 1624 EXPORT_SYMBOL(drm_gem_lru_move_tail); 1625 1626 /** 1627 * drm_gem_lru_scan - helper to implement shrinker.scan_objects 1628 * 1629 * If the shrink callback succeeds, it is expected that the driver 1630 * move the object out of this LRU. 1631 * 1632 * If the LRU possibly contain active buffers, it is the responsibility 1633 * of the shrink callback to check for this (ie. dma_resv_test_signaled()) 1634 * or if necessary block until the buffer becomes idle. 1635 * 1636 * @lru: The LRU to scan 1637 * @nr_to_scan: The number of pages to try to reclaim 1638 * @remaining: The number of pages left to reclaim, should be initialized by caller 1639 * @shrink: Callback to try to shrink/reclaim the object. 1640 * @ticket: Optional ww_acquire_ctx context to use for locking 1641 */ 1642 unsigned long 1643 drm_gem_lru_scan(struct drm_gem_lru *lru, 1644 unsigned int nr_to_scan, 1645 unsigned long *remaining, 1646 bool (*shrink)(struct drm_gem_object *obj, struct ww_acquire_ctx *ticket), 1647 struct ww_acquire_ctx *ticket) 1648 { 1649 struct drm_gem_lru still_in_lru; 1650 struct drm_gem_object *obj; 1651 unsigned freed = 0; 1652 1653 drm_gem_lru_init(&still_in_lru, lru->lock); 1654 1655 mutex_lock(lru->lock); 1656 1657 while (freed < nr_to_scan) { 1658 obj = list_first_entry_or_null(&lru->list, typeof(*obj), lru_node); 1659 1660 if (!obj) 1661 break; 1662 1663 drm_gem_lru_move_tail_locked(&still_in_lru, obj); 1664 1665 /* 1666 * If it's in the process of being freed, gem_object->free() 1667 * may be blocked on lock waiting to remove it. So just 1668 * skip it. 1669 */ 1670 if (!kref_get_unless_zero(&obj->refcount)) 1671 continue; 1672 1673 /* 1674 * Now that we own a reference, we can drop the lock for the 1675 * rest of the loop body, to reduce contention with other 1676 * code paths that need the LRU lock 1677 */ 1678 mutex_unlock(lru->lock); 1679 1680 if (ticket) 1681 ww_acquire_init(ticket, &reservation_ww_class); 1682 1683 /* 1684 * Note that this still needs to be trylock, since we can 1685 * hit shrinker in response to trying to get backing pages 1686 * for this obj (ie. while it's lock is already held) 1687 */ 1688 if (!ww_mutex_trylock(&obj->resv->lock, ticket)) { 1689 *remaining += obj->size >> PAGE_SHIFT; 1690 goto tail; 1691 } 1692 1693 if (shrink(obj, ticket)) { 1694 freed += obj->size >> PAGE_SHIFT; 1695 1696 /* 1697 * If we succeeded in releasing the object's backing 1698 * pages, we expect the driver to have moved the object 1699 * out of this LRU 1700 */ 1701 WARN_ON(obj->lru == &still_in_lru); 1702 WARN_ON(obj->lru == lru); 1703 } 1704 1705 dma_resv_unlock(obj->resv); 1706 1707 if (ticket) 1708 ww_acquire_fini(ticket); 1709 1710 tail: 1711 drm_gem_object_put(obj); 1712 mutex_lock(lru->lock); 1713 } 1714 1715 /* 1716 * Move objects we've skipped over out of the temporary still_in_lru 1717 * back into this LRU 1718 */ 1719 list_for_each_entry (obj, &still_in_lru.list, lru_node) 1720 obj->lru = lru; 1721 list_splice_tail(&still_in_lru.list, &lru->list); 1722 lru->count += still_in_lru.count; 1723 1724 mutex_unlock(lru->lock); 1725 1726 return freed; 1727 } 1728 EXPORT_SYMBOL(drm_gem_lru_scan); 1729 1730 /** 1731 * drm_gem_evict_locked - helper to evict backing pages for a GEM object 1732 * @obj: obj in question 1733 */ 1734 int drm_gem_evict_locked(struct drm_gem_object *obj) 1735 { 1736 dma_resv_assert_held(obj->resv); 1737 1738 if (!dma_resv_test_signaled(obj->resv, DMA_RESV_USAGE_READ)) 1739 return -EBUSY; 1740 1741 if (obj->funcs->evict) 1742 return obj->funcs->evict(obj); 1743 1744 return 0; 1745 } 1746 EXPORT_SYMBOL(drm_gem_evict_locked); 1747