blob: 2896ff60552f5d873933ddedbb576df5a9e10b2c [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
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/types.h>
29#include <linux/slab.h>
30#include <linux/mm.h>
31#include <linux/uaccess.h>
32#include <linux/fs.h>
33#include <linux/file.h>
34#include <linux/module.h>
35#include <linux/mman.h>
36#include <linux/pagemap.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070037#include <linux/shmem_fs.h>
Dave Airlie32488772011-11-25 15:21:02 +000038#include <linux/dma-buf.h>
Tom Lendacky95cf9262017-07-17 16:10:26 -050039#include <linux/mem_encrypt.h>
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +080040#include <linux/pagevec.h>
David Howells760285e2012-10-02 18:01:07 +010041#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020042#include <drm/drm_vma_manager.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020043#include <drm/drm_gem.h>
Noralf Trønnes45d58b42017-11-07 20:13:40 +010044#include <drm/drm_print.h>
Daniel Vetter67d0ec42014-09-10 12:43:53 +020045#include "drm_internal.h"
Eric Anholt673a3942008-07-30 12:06:12 -070046
47/** @file drm_gem.c
48 *
49 * This file provides some of the base ioctls and library routines for
50 * the graphics memory manager implemented by each device driver.
51 *
52 * Because various devices have different requirements in terms of
53 * synchronization and migration strategies, implementing that is left up to
54 * the driver, and all that the general API provides should be generic --
55 * allocating objects, reading/writing data with the cpu, freeing objects.
56 * Even there, platform-dependent optimizations for reading/writing data with
57 * the CPU mean we'll likely hook those out to driver-specific calls. However,
58 * the DRI2 implementation wants to have at least allocate/mmap be generic.
59 *
60 * The goal was to have swap-backed object allocation managed through
61 * struct file. However, file descriptors as handles to a struct file have
62 * two major failings:
63 * - Process limits prevent more than 1024 or so being used at a time by
64 * default.
65 * - Inability to allocate high fds will aggravate the X Server's select()
66 * handling, and likely that of many GL client applications as well.
67 *
68 * This led to a plan of using our own integer IDs (called handles, following
69 * DRM terminology) to mimic fds, and implement the fd syscalls we need as
70 * ioctls. The objects themselves will still include the struct file so
71 * that we can transition to fds if the required kernel infrastructure shows
72 * up at a later date, and as our interface with shmfs for memory allocation.
73 */
74
Jesse Barnesa2c0a972008-11-05 10:31:53 -080075/*
76 * We make up offsets for buffer objects so we can recognize them at
77 * mmap time.
78 */
Jordan Crouse05269a32010-05-27 13:40:27 -060079
80/* pgoff in mmap is an unsigned long, so we need to make sure that
81 * the faked up offset will fit
82 */
83
84#if BITS_PER_LONG == 64
Jesse Barnesa2c0a972008-11-05 10:31:53 -080085#define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFFUL >> PAGE_SHIFT) + 1)
86#define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFFUL >> PAGE_SHIFT) * 16)
Jordan Crouse05269a32010-05-27 13:40:27 -060087#else
88#define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFUL >> PAGE_SHIFT) + 1)
89#define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFUL >> PAGE_SHIFT) * 16)
90#endif
Jesse Barnesa2c0a972008-11-05 10:31:53 -080091
Eric Anholt673a3942008-07-30 12:06:12 -070092/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +010093 * drm_gem_init - Initialize the GEM device fields
94 * @dev: drm_devic structure to initialize
Eric Anholt673a3942008-07-30 12:06:12 -070095 */
Eric Anholt673a3942008-07-30 12:06:12 -070096int
97drm_gem_init(struct drm_device *dev)
98{
Daniel Vetterb04a5902013-12-11 14:24:46 +010099 struct drm_vma_offset_manager *vma_offset_manager;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800100
Daniel Vettercd4f0132013-08-15 00:02:44 +0200101 mutex_init(&dev->object_name_lock);
Chris Wilsone86584c2018-02-12 14:55:33 +0000102 idr_init_base(&dev->object_name_idr, 1);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800103
Daniel Vetterb04a5902013-12-11 14:24:46 +0100104 vma_offset_manager = kzalloc(sizeof(*vma_offset_manager), GFP_KERNEL);
105 if (!vma_offset_manager) {
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800106 DRM_ERROR("out of memory\n");
107 return -ENOMEM;
108 }
109
Daniel Vetterb04a5902013-12-11 14:24:46 +0100110 dev->vma_offset_manager = vma_offset_manager;
111 drm_vma_offset_manager_init(vma_offset_manager,
David Herrmann0de23972013-07-24 21:07:52 +0200112 DRM_FILE_PAGE_OFFSET_START,
113 DRM_FILE_PAGE_OFFSET_SIZE);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800114
Eric Anholt673a3942008-07-30 12:06:12 -0700115 return 0;
116}
117
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800118void
119drm_gem_destroy(struct drm_device *dev)
120{
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800121
Daniel Vetterb04a5902013-12-11 14:24:46 +0100122 drm_vma_offset_manager_destroy(dev->vma_offset_manager);
123 kfree(dev->vma_offset_manager);
124 dev->vma_offset_manager = NULL;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800125}
126
Eric Anholt673a3942008-07-30 12:06:12 -0700127/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100128 * drm_gem_object_init - initialize an allocated shmem-backed GEM object
129 * @dev: drm_device the object should be initialized for
130 * @obj: drm_gem_object to initialize
131 * @size: object size
132 *
Alan Cox62cb70112011-06-07 14:17:51 +0100133 * Initialize an already allocated GEM object of the specified size with
Daniel Vetter1d397042010-04-09 19:05:04 +0000134 * shmfs backing store.
135 */
136int drm_gem_object_init(struct drm_device *dev,
137 struct drm_gem_object *obj, size_t size)
138{
David Herrmann89c82332013-07-11 11:56:32 +0200139 struct file *filp;
Daniel Vetter1d397042010-04-09 19:05:04 +0000140
Daniel Vetter6ab11a22014-01-20 08:21:54 +0100141 drm_gem_private_object_init(dev, obj, size);
142
David Herrmann89c82332013-07-11 11:56:32 +0200143 filp = shmem_file_setup("drm mm object", size, VM_NORESERVE);
144 if (IS_ERR(filp))
145 return PTR_ERR(filp);
Daniel Vetter1d397042010-04-09 19:05:04 +0000146
David Herrmann89c82332013-07-11 11:56:32 +0200147 obj->filp = filp;
Daniel Vetter1d397042010-04-09 19:05:04 +0000148
Daniel Vetter1d397042010-04-09 19:05:04 +0000149 return 0;
150}
151EXPORT_SYMBOL(drm_gem_object_init);
152
153/**
Laurent Pinchart2a5706a2014-08-28 14:34:36 +0200154 * drm_gem_private_object_init - initialize an allocated private GEM object
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100155 * @dev: drm_device the object should be initialized for
156 * @obj: drm_gem_object to initialize
157 * @size: object size
158 *
Alan Cox62cb70112011-06-07 14:17:51 +0100159 * Initialize an already allocated GEM object of the specified size with
160 * no GEM provided backing store. Instead the caller is responsible for
161 * backing the object and handling it.
162 */
David Herrmann89c82332013-07-11 11:56:32 +0200163void drm_gem_private_object_init(struct drm_device *dev,
164 struct drm_gem_object *obj, size_t size)
Alan Cox62cb70112011-06-07 14:17:51 +0100165{
166 BUG_ON((size & (PAGE_SIZE - 1)) != 0);
167
168 obj->dev = dev;
169 obj->filp = NULL;
170
171 kref_init(&obj->refcount);
Daniel Vettera8e11d12013-08-15 00:02:37 +0200172 obj->handle_count = 0;
Alan Cox62cb70112011-06-07 14:17:51 +0100173 obj->size = size;
David Herrmann88d7ebe2013-08-25 18:28:57 +0200174 drm_vma_node_reset(&obj->vma_node);
Alan Cox62cb70112011-06-07 14:17:51 +0100175}
176EXPORT_SYMBOL(drm_gem_private_object_init);
177
Dave Airlie0ff926c2012-05-20 17:31:16 +0100178static void
179drm_gem_remove_prime_handles(struct drm_gem_object *obj, struct drm_file *filp)
180{
Daniel Vetter319c9332013-08-15 00:02:46 +0200181 /*
182 * Note: obj->dma_buf can't disappear as long as we still hold a
183 * handle reference in obj->handle_count.
184 */
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200185 mutex_lock(&filp->prime.lock);
Daniel Vetter319c9332013-08-15 00:02:46 +0200186 if (obj->dma_buf) {
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200187 drm_prime_remove_buf_handle_locked(&filp->prime,
188 obj->dma_buf);
Dave Airlie0ff926c2012-05-20 17:31:16 +0100189 }
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200190 mutex_unlock(&filp->prime.lock);
Dave Airlie0ff926c2012-05-20 17:31:16 +0100191}
192
Daniel Vetter36da5902013-08-15 00:02:34 +0200193/**
Thierry Redingc6a84322014-10-02 14:45:55 +0200194 * drm_gem_object_handle_free - release resources bound to userspace handles
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100195 * @obj: GEM object to clean up.
196 *
Daniel Vetter36da5902013-08-15 00:02:34 +0200197 * Called after the last handle to the object has been closed
198 *
199 * Removes any name for the object. Note that this must be
200 * called before drm_gem_object_free or we'll be touching
201 * freed memory
202 */
203static void drm_gem_object_handle_free(struct drm_gem_object *obj)
204{
205 struct drm_device *dev = obj->dev;
206
207 /* Remove any name for this object */
Daniel Vetter36da5902013-08-15 00:02:34 +0200208 if (obj->name) {
209 idr_remove(&dev->object_name_idr, obj->name);
210 obj->name = 0;
Daniel Vettera8e11d12013-08-15 00:02:37 +0200211 }
Daniel Vetter36da5902013-08-15 00:02:34 +0200212}
213
Daniel Vetter319c9332013-08-15 00:02:46 +0200214static void drm_gem_object_exported_dma_buf_free(struct drm_gem_object *obj)
215{
216 /* Unbreak the reference cycle if we have an exported dma_buf. */
217 if (obj->dma_buf) {
218 dma_buf_put(obj->dma_buf);
219 obj->dma_buf = NULL;
220 }
221}
222
Daniel Vetterbecee2a2013-08-15 00:02:39 +0200223static void
Thierry Redinge6b62712017-02-28 15:46:41 +0100224drm_gem_object_handle_put_unlocked(struct drm_gem_object *obj)
Daniel Vetter36da5902013-08-15 00:02:34 +0200225{
Chris Wilson98a88832016-01-04 10:11:00 +0000226 struct drm_device *dev = obj->dev;
227 bool final = false;
228
Daniel Vettera8e11d12013-08-15 00:02:37 +0200229 if (WARN_ON(obj->handle_count == 0))
Daniel Vetter36da5902013-08-15 00:02:34 +0200230 return;
231
232 /*
233 * Must bump handle count first as this may be the last
234 * ref, in which case the object would disappear before we
235 * checked for a name
236 */
237
Chris Wilson98a88832016-01-04 10:11:00 +0000238 mutex_lock(&dev->object_name_lock);
Daniel Vetter319c9332013-08-15 00:02:46 +0200239 if (--obj->handle_count == 0) {
Daniel Vetter36da5902013-08-15 00:02:34 +0200240 drm_gem_object_handle_free(obj);
Daniel Vetter319c9332013-08-15 00:02:46 +0200241 drm_gem_object_exported_dma_buf_free(obj);
Chris Wilson98a88832016-01-04 10:11:00 +0000242 final = true;
Daniel Vetter319c9332013-08-15 00:02:46 +0200243 }
Chris Wilson98a88832016-01-04 10:11:00 +0000244 mutex_unlock(&dev->object_name_lock);
Daniel Vettera8e11d12013-08-15 00:02:37 +0200245
Chris Wilson98a88832016-01-04 10:11:00 +0000246 if (final)
Thierry Redinge6b62712017-02-28 15:46:41 +0100247 drm_gem_object_put_unlocked(obj);
Daniel Vetter36da5902013-08-15 00:02:34 +0200248}
249
Chris Wilson8815b232016-01-05 09:42:31 +0000250/*
251 * Called at device or object close to release the file's
252 * handle references on objects.
253 */
254static int
255drm_gem_object_release_handle(int id, void *ptr, void *data)
256{
257 struct drm_file *file_priv = data;
258 struct drm_gem_object *obj = ptr;
259 struct drm_device *dev = obj->dev;
260
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100261 if (obj->funcs && obj->funcs->close)
262 obj->funcs->close(obj, file_priv);
263 else if (dev->driver->gem_close_object)
Chris Wilsond0a133f2017-08-19 13:05:58 +0100264 dev->driver->gem_close_object(obj, file_priv);
265
Chris Wilson8815b232016-01-05 09:42:31 +0000266 if (drm_core_check_feature(dev, DRIVER_PRIME))
267 drm_gem_remove_prime_handles(obj, file_priv);
David Herrmannd9a1f0b2016-09-01 14:48:33 +0200268 drm_vma_node_revoke(&obj->vma_node, file_priv);
Chris Wilson8815b232016-01-05 09:42:31 +0000269
Thierry Redinge6b62712017-02-28 15:46:41 +0100270 drm_gem_object_handle_put_unlocked(obj);
Chris Wilson8815b232016-01-05 09:42:31 +0000271
272 return 0;
273}
274
Eric Anholt673a3942008-07-30 12:06:12 -0700275/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100276 * drm_gem_handle_delete - deletes the given file-private handle
277 * @filp: drm file-private structure to use for the handle look up
278 * @handle: userspace handle to delete
279 *
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200280 * Removes the GEM handle from the @filp lookup table which has been added with
281 * drm_gem_handle_create(). If this is the last handle also cleans up linked
282 * resources like GEM names.
Eric Anholt673a3942008-07-30 12:06:12 -0700283 */
Dave Airlieff72145b2011-02-07 12:16:14 +1000284int
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300285drm_gem_handle_delete(struct drm_file *filp, u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700286{
Eric Anholt673a3942008-07-30 12:06:12 -0700287 struct drm_gem_object *obj;
288
Eric Anholt673a3942008-07-30 12:06:12 -0700289 spin_lock(&filp->table_lock);
290
291 /* Check if we currently have a reference on the object */
Chris Wilsonf6cd7da2016-04-15 12:55:08 +0100292 obj = idr_replace(&filp->object_idr, NULL, handle);
293 spin_unlock(&filp->table_lock);
294 if (IS_ERR_OR_NULL(obj))
Eric Anholt673a3942008-07-30 12:06:12 -0700295 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700296
Chris Wilsonf6cd7da2016-04-15 12:55:08 +0100297 /* Release driver's reference and decrement refcount. */
298 drm_gem_object_release_handle(handle, obj, filp);
299
300 /* And finally make the handle available for future allocations. */
301 spin_lock(&filp->table_lock);
Eric Anholt673a3942008-07-30 12:06:12 -0700302 idr_remove(&filp->object_idr, handle);
303 spin_unlock(&filp->table_lock);
304
Eric Anholt673a3942008-07-30 12:06:12 -0700305 return 0;
306}
Dave Airlieff72145b2011-02-07 12:16:14 +1000307EXPORT_SYMBOL(drm_gem_handle_delete);
Eric Anholt673a3942008-07-30 12:06:12 -0700308
309/**
Noralf Trønnesdb611522017-07-23 21:16:17 +0200310 * drm_gem_dumb_map_offset - return the fake mmap offset for a gem object
311 * @file: drm file-private structure containing the gem object
312 * @dev: corresponding drm_device
313 * @handle: gem object handle
314 * @offset: return location for the fake mmap offset
315 *
316 * This implements the &drm_driver.dumb_map_offset kms driver callback for
317 * drivers which use gem to manage their backing storage.
318 *
319 * Returns:
320 * 0 on success or a negative error code on failure.
321 */
322int drm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
323 u32 handle, u64 *offset)
324{
325 struct drm_gem_object *obj;
326 int ret;
327
328 obj = drm_gem_object_lookup(file, handle);
329 if (!obj)
330 return -ENOENT;
331
Noralf Trønnes90378e52017-08-17 18:21:30 +0200332 /* Don't allow imported objects to be mapped */
333 if (obj->import_attach) {
334 ret = -EINVAL;
335 goto out;
336 }
337
Noralf Trønnesdb611522017-07-23 21:16:17 +0200338 ret = drm_gem_create_mmap_offset(obj);
339 if (ret)
340 goto out;
341
342 *offset = drm_vma_node_offset_addr(&obj->vma_node);
343out:
344 drm_gem_object_put_unlocked(obj);
345
346 return ret;
347}
348EXPORT_SYMBOL_GPL(drm_gem_dumb_map_offset);
349
350/**
Daniel Vetter43387b32013-07-16 09:12:04 +0200351 * drm_gem_dumb_destroy - dumb fb callback helper for gem based drivers
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100352 * @file: drm file-private structure to remove the dumb handle from
353 * @dev: corresponding drm_device
354 * @handle: the dumb handle to remove
Noralf Trønnes1dd3a0602017-10-26 18:57:26 +0200355 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100356 * This implements the &drm_driver.dumb_destroy kms driver callback for drivers
357 * which use gem to manage their backing storage.
Daniel Vetter43387b32013-07-16 09:12:04 +0200358 */
359int drm_gem_dumb_destroy(struct drm_file *file,
360 struct drm_device *dev,
361 uint32_t handle)
362{
363 return drm_gem_handle_delete(file, handle);
364}
365EXPORT_SYMBOL(drm_gem_dumb_destroy);
366
367/**
Daniel Vetter20228c42013-08-15 00:02:45 +0200368 * drm_gem_handle_create_tail - internal functions to create a handle
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100369 * @file_priv: drm file-private structure to register the handle for
370 * @obj: object to register
Thierry Reding8bf81802014-11-03 13:20:52 +0100371 * @handlep: pointer to return the created handle to the caller
Noralf Trønnes1dd3a0602017-10-26 18:57:26 +0200372 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100373 * This expects the &drm_device.object_name_lock to be held already and will
374 * drop it before returning. Used to avoid races in establishing new handles
375 * when importing an object from either an flink name or a dma-buf.
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200376 *
377 * Handles must be release again through drm_gem_handle_delete(). This is done
378 * when userspace closes @file_priv for all attached handles, or through the
379 * GEM_CLOSE ioctl for individual handles.
Eric Anholt673a3942008-07-30 12:06:12 -0700380 */
381int
Daniel Vetter20228c42013-08-15 00:02:45 +0200382drm_gem_handle_create_tail(struct drm_file *file_priv,
383 struct drm_gem_object *obj,
384 u32 *handlep)
Eric Anholt673a3942008-07-30 12:06:12 -0700385{
Ben Skeggs304eda32011-06-09 00:24:59 +0000386 struct drm_device *dev = obj->dev;
Chris Wilson9649399e2016-01-05 09:42:30 +0000387 u32 handle;
Ben Skeggs304eda32011-06-09 00:24:59 +0000388 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700389
Daniel Vetter20228c42013-08-15 00:02:45 +0200390 WARN_ON(!mutex_is_locked(&dev->object_name_lock));
Chris Wilson98a88832016-01-04 10:11:00 +0000391 if (obj->handle_count++ == 0)
Thierry Redinge6b62712017-02-28 15:46:41 +0100392 drm_gem_object_get(obj);
Daniel Vetter20228c42013-08-15 00:02:45 +0200393
Eric Anholt673a3942008-07-30 12:06:12 -0700394 /*
Tejun Heo2e928812013-02-27 17:04:08 -0800395 * Get the user-visible handle using idr. Preload and perform
396 * allocation under our spinlock.
Eric Anholt673a3942008-07-30 12:06:12 -0700397 */
Tejun Heo2e928812013-02-27 17:04:08 -0800398 idr_preload(GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -0700399 spin_lock(&file_priv->table_lock);
Tejun Heo2e928812013-02-27 17:04:08 -0800400
401 ret = idr_alloc(&file_priv->object_idr, obj, 1, 0, GFP_NOWAIT);
Chris Wilson98a88832016-01-04 10:11:00 +0000402
Eric Anholt673a3942008-07-30 12:06:12 -0700403 spin_unlock(&file_priv->table_lock);
Tejun Heo2e928812013-02-27 17:04:08 -0800404 idr_preload_end();
Chris Wilson98a88832016-01-04 10:11:00 +0000405
Daniel Vettercd4f0132013-08-15 00:02:44 +0200406 mutex_unlock(&dev->object_name_lock);
Chris Wilson69841282016-01-04 10:10:59 +0000407 if (ret < 0)
408 goto err_unref;
409
Chris Wilson9649399e2016-01-05 09:42:30 +0000410 handle = ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700411
David Herrmannd9a1f0b2016-09-01 14:48:33 +0200412 ret = drm_vma_node_allow(&obj->vma_node, file_priv);
Chris Wilson69841282016-01-04 10:10:59 +0000413 if (ret)
414 goto err_remove;
Ben Skeggs304eda32011-06-09 00:24:59 +0000415
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100416 if (obj->funcs && obj->funcs->open) {
417 ret = obj->funcs->open(obj, file_priv);
418 if (ret)
419 goto err_revoke;
420 } else if (dev->driver->gem_open_object) {
Ben Skeggs304eda32011-06-09 00:24:59 +0000421 ret = dev->driver->gem_open_object(obj, file_priv);
Chris Wilson69841282016-01-04 10:10:59 +0000422 if (ret)
423 goto err_revoke;
Ben Skeggs304eda32011-06-09 00:24:59 +0000424 }
425
Chris Wilson9649399e2016-01-05 09:42:30 +0000426 *handlep = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700427 return 0;
Chris Wilson69841282016-01-04 10:10:59 +0000428
429err_revoke:
David Herrmannd9a1f0b2016-09-01 14:48:33 +0200430 drm_vma_node_revoke(&obj->vma_node, file_priv);
Chris Wilson69841282016-01-04 10:10:59 +0000431err_remove:
432 spin_lock(&file_priv->table_lock);
Chris Wilson9649399e2016-01-05 09:42:30 +0000433 idr_remove(&file_priv->object_idr, handle);
Chris Wilson69841282016-01-04 10:10:59 +0000434 spin_unlock(&file_priv->table_lock);
435err_unref:
Thierry Redinge6b62712017-02-28 15:46:41 +0100436 drm_gem_object_handle_put_unlocked(obj);
Chris Wilson69841282016-01-04 10:10:59 +0000437 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700438}
Daniel Vetter20228c42013-08-15 00:02:45 +0200439
440/**
Thierry Reding8bf81802014-11-03 13:20:52 +0100441 * drm_gem_handle_create - create a gem handle for an object
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100442 * @file_priv: drm file-private structure to register the handle for
443 * @obj: object to register
444 * @handlep: pionter to return the created handle to the caller
445 *
Daniel Vetter390311762018-03-22 09:02:33 +0100446 * Create a handle for this object. This adds a handle reference to the object,
447 * which includes a regular reference count. Callers will likely want to
448 * dereference the object afterwards.
449 *
450 * Since this publishes @obj to userspace it must be fully set up by this point,
451 * drivers must call this last in their buffer object creation callbacks.
Daniel Vetter20228c42013-08-15 00:02:45 +0200452 */
Thierry Reding8bf81802014-11-03 13:20:52 +0100453int drm_gem_handle_create(struct drm_file *file_priv,
454 struct drm_gem_object *obj,
455 u32 *handlep)
Daniel Vetter20228c42013-08-15 00:02:45 +0200456{
457 mutex_lock(&obj->dev->object_name_lock);
458
459 return drm_gem_handle_create_tail(file_priv, obj, handlep);
460}
Eric Anholt673a3942008-07-30 12:06:12 -0700461EXPORT_SYMBOL(drm_gem_handle_create);
462
Rob Clark75ef8b32011-08-10 08:09:07 -0500463
464/**
465 * drm_gem_free_mmap_offset - release a fake mmap offset for an object
466 * @obj: obj in question
467 *
468 * This routine frees fake offsets allocated by drm_gem_create_mmap_offset().
Daniel Vetterf74418a2016-03-30 11:40:52 +0200469 *
470 * Note that drm_gem_object_release() already calls this function, so drivers
471 * don't have to take care of releasing the mmap offset themselves when freeing
472 * the GEM object.
Rob Clark75ef8b32011-08-10 08:09:07 -0500473 */
474void
475drm_gem_free_mmap_offset(struct drm_gem_object *obj)
476{
477 struct drm_device *dev = obj->dev;
Rob Clark75ef8b32011-08-10 08:09:07 -0500478
Daniel Vetterb04a5902013-12-11 14:24:46 +0100479 drm_vma_offset_remove(dev->vma_offset_manager, &obj->vma_node);
Rob Clark75ef8b32011-08-10 08:09:07 -0500480}
481EXPORT_SYMBOL(drm_gem_free_mmap_offset);
482
483/**
Rob Clark367bbd42013-08-07 13:41:23 -0400484 * drm_gem_create_mmap_offset_size - create a fake mmap offset for an object
485 * @obj: obj in question
486 * @size: the virtual size
487 *
488 * GEM memory mapping works by handing back to userspace a fake mmap offset
489 * it can use in a subsequent mmap(2) call. The DRM core code then looks
490 * up the object based on the offset and sets up the various memory mapping
491 * structures.
492 *
493 * This routine allocates and attaches a fake offset for @obj, in cases where
Daniel Vetter940eba22017-01-25 07:26:46 +0100494 * the virtual size differs from the physical size (ie. &drm_gem_object.size).
495 * Otherwise just use drm_gem_create_mmap_offset().
Daniel Vetterf74418a2016-03-30 11:40:52 +0200496 *
497 * This function is idempotent and handles an already allocated mmap offset
498 * transparently. Drivers do not need to check for this case.
Rob Clark367bbd42013-08-07 13:41:23 -0400499 */
500int
501drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size)
502{
503 struct drm_device *dev = obj->dev;
Rob Clark367bbd42013-08-07 13:41:23 -0400504
Daniel Vetterb04a5902013-12-11 14:24:46 +0100505 return drm_vma_offset_add(dev->vma_offset_manager, &obj->vma_node,
Rob Clark367bbd42013-08-07 13:41:23 -0400506 size / PAGE_SIZE);
507}
508EXPORT_SYMBOL(drm_gem_create_mmap_offset_size);
509
510/**
Rob Clark75ef8b32011-08-10 08:09:07 -0500511 * drm_gem_create_mmap_offset - create a fake mmap offset for an object
512 * @obj: obj in question
513 *
514 * GEM memory mapping works by handing back to userspace a fake mmap offset
515 * it can use in a subsequent mmap(2) call. The DRM core code then looks
516 * up the object based on the offset and sets up the various memory mapping
517 * structures.
518 *
519 * This routine allocates and attaches a fake offset for @obj.
Daniel Vetterf74418a2016-03-30 11:40:52 +0200520 *
521 * Drivers can call drm_gem_free_mmap_offset() before freeing @obj to release
522 * the fake offset again.
Rob Clark75ef8b32011-08-10 08:09:07 -0500523 */
Rob Clark367bbd42013-08-07 13:41:23 -0400524int drm_gem_create_mmap_offset(struct drm_gem_object *obj)
Rob Clark75ef8b32011-08-10 08:09:07 -0500525{
Rob Clark367bbd42013-08-07 13:41:23 -0400526 return drm_gem_create_mmap_offset_size(obj, obj->size);
Rob Clark75ef8b32011-08-10 08:09:07 -0500527}
528EXPORT_SYMBOL(drm_gem_create_mmap_offset);
529
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800530/*
531 * Move pages to appropriate lru and release the pagevec, decrementing the
532 * ref count of those pages.
533 */
534static void drm_gem_check_release_pagevec(struct pagevec *pvec)
535{
536 check_move_unevictable_pages(pvec);
537 __pagevec_release(pvec);
538 cond_resched();
539}
540
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400541/**
542 * drm_gem_get_pages - helper to allocate backing pages for a GEM object
543 * from shmem
544 * @obj: obj in question
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200545 *
546 * This reads the page-array of the shmem-backing storage of the given gem
547 * object. An array of pages is returned. If a page is not allocated or
548 * swapped-out, this will allocate/swap-in the required pages. Note that the
549 * whole object is covered by the page-array and pinned in memory.
550 *
551 * Use drm_gem_put_pages() to release the array and unpin all pages.
552 *
553 * This uses the GFP-mask set on the shmem-mapping (see mapping_set_gfp_mask()).
554 * If you require other GFP-masks, you have to do those allocations yourself.
555 *
556 * Note that you are not allowed to change gfp-zones during runtime. That is,
557 * shmem_read_mapping_page_gfp() must be called with the same gfp_zone(gfp) as
558 * set during initialization. If you have special zone constraints, set them
Jordan Crouse5b9fbff2017-10-03 09:38:10 -0600559 * after drm_gem_object_init() via mapping_set_gfp_mask(). shmem-core takes care
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200560 * to keep pages in the required zone during swap-in.
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400561 */
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200562struct page **drm_gem_get_pages(struct drm_gem_object *obj)
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400563{
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400564 struct address_space *mapping;
565 struct page *p, **pages;
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800566 struct pagevec pvec;
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400567 int i, npages;
568
569 /* This is the shared memory object that backs the GEM resource */
Al Viro93c76a32015-12-04 23:45:44 -0500570 mapping = obj->filp->f_mapping;
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400571
572 /* We already BUG_ON() for non-page-aligned sizes in
573 * drm_gem_object_init(), so we should never hit this unless
574 * driver author is doing something really wrong:
575 */
576 WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0);
577
578 npages = obj->size >> PAGE_SHIFT;
579
Michal Hocko20981052017-05-17 14:23:12 +0200580 pages = kvmalloc_array(npages, sizeof(struct page *), GFP_KERNEL);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400581 if (pages == NULL)
582 return ERR_PTR(-ENOMEM);
583
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800584 mapping_set_unevictable(mapping);
585
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400586 for (i = 0; i < npages; i++) {
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200587 p = shmem_read_mapping_page(mapping, i);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400588 if (IS_ERR(p))
589 goto fail;
590 pages[i] = p;
591
David Herrmann21230002014-05-25 14:34:08 +0200592 /* Make sure shmem keeps __GFP_DMA32 allocated pages in the
593 * correct region during swapin. Note that this requires
594 * __GFP_DMA32 to be set in mapping_gfp_mask(inode->i_mapping)
595 * so shmem can relocate pages during swapin if required.
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400596 */
Michal Hockoc62d2552015-11-06 16:28:49 -0800597 BUG_ON(mapping_gfp_constraint(mapping, __GFP_DMA32) &&
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400598 (page_to_pfn(p) >= 0x00100000UL));
599 }
600
601 return pages;
602
603fail:
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800604 mapping_clear_unevictable(mapping);
605 pagevec_init(&pvec);
606 while (i--) {
607 if (!pagevec_add(&pvec, pages[i]))
608 drm_gem_check_release_pagevec(&pvec);
609 }
610 if (pagevec_count(&pvec))
611 drm_gem_check_release_pagevec(&pvec);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400612
Michal Hocko20981052017-05-17 14:23:12 +0200613 kvfree(pages);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400614 return ERR_CAST(p);
615}
616EXPORT_SYMBOL(drm_gem_get_pages);
617
618/**
619 * drm_gem_put_pages - helper to free backing pages for a GEM object
620 * @obj: obj in question
621 * @pages: pages to free
622 * @dirty: if true, pages will be marked as dirty
623 * @accessed: if true, the pages will be marked as accessed
624 */
625void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
626 bool dirty, bool accessed)
627{
628 int i, npages;
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800629 struct address_space *mapping;
630 struct pagevec pvec;
631
632 mapping = file_inode(obj->filp)->i_mapping;
633 mapping_clear_unevictable(mapping);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400634
635 /* We already BUG_ON() for non-page-aligned sizes in
636 * drm_gem_object_init(), so we should never hit this unless
637 * driver author is doing something really wrong:
638 */
639 WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0);
640
641 npages = obj->size >> PAGE_SHIFT;
642
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800643 pagevec_init(&pvec);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400644 for (i = 0; i < npages; i++) {
645 if (dirty)
646 set_page_dirty(pages[i]);
647
648 if (accessed)
649 mark_page_accessed(pages[i]);
650
651 /* Undo the reference we took when populating the table */
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800652 if (!pagevec_add(&pvec, pages[i]))
653 drm_gem_check_release_pagevec(&pvec);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400654 }
Kuo-Hsin Yangfb4b4922019-01-08 15:45:17 +0800655 if (pagevec_count(&pvec))
656 drm_gem_check_release_pagevec(&pvec);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400657
Michal Hocko20981052017-05-17 14:23:12 +0200658 kvfree(pages);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400659}
660EXPORT_SYMBOL(drm_gem_put_pages);
661
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200662/**
663 * drm_gem_object_lookup - look up a GEM object from it's handle
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200664 * @filp: DRM file private date
665 * @handle: userspace handle
666 *
667 * Returns:
668 *
669 * A reference to the object named by the handle if such exists on @filp, NULL
670 * otherwise.
671 */
Eric Anholt673a3942008-07-30 12:06:12 -0700672struct drm_gem_object *
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100673drm_gem_object_lookup(struct drm_file *filp, u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700674{
675 struct drm_gem_object *obj;
676
677 spin_lock(&filp->table_lock);
678
679 /* Check if we currently have a reference on the object */
680 obj = idr_find(&filp->object_idr, handle);
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100681 if (obj)
Thierry Redinge6b62712017-02-28 15:46:41 +0100682 drm_gem_object_get(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700683
684 spin_unlock(&filp->table_lock);
685
686 return obj;
687}
688EXPORT_SYMBOL(drm_gem_object_lookup);
689
690/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100691 * drm_gem_close_ioctl - implementation of the GEM_CLOSE ioctl
692 * @dev: drm_device
693 * @data: ioctl data
694 * @file_priv: drm file-private structure
695 *
Eric Anholt673a3942008-07-30 12:06:12 -0700696 * Releases the handle to an mm object.
697 */
698int
699drm_gem_close_ioctl(struct drm_device *dev, void *data,
700 struct drm_file *file_priv)
701{
702 struct drm_gem_close *args = data;
703 int ret;
704
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200705 if (!drm_core_check_feature(dev, DRIVER_GEM))
Chris Wilson69fdf422018-09-13 20:20:50 +0100706 return -EOPNOTSUPP;
Eric Anholt673a3942008-07-30 12:06:12 -0700707
708 ret = drm_gem_handle_delete(file_priv, args->handle);
709
710 return ret;
711}
712
713/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100714 * drm_gem_flink_ioctl - implementation of the GEM_FLINK ioctl
715 * @dev: drm_device
716 * @data: ioctl data
717 * @file_priv: drm file-private structure
718 *
Eric Anholt673a3942008-07-30 12:06:12 -0700719 * Create a global name for an object, returning the name.
720 *
721 * Note that the name does not hold a reference; when the object
722 * is freed, the name goes away.
723 */
724int
725drm_gem_flink_ioctl(struct drm_device *dev, void *data,
726 struct drm_file *file_priv)
727{
728 struct drm_gem_flink *args = data;
729 struct drm_gem_object *obj;
730 int ret;
731
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200732 if (!drm_core_check_feature(dev, DRIVER_GEM))
Chris Wilson69fdf422018-09-13 20:20:50 +0100733 return -EOPNOTSUPP;
Eric Anholt673a3942008-07-30 12:06:12 -0700734
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100735 obj = drm_gem_object_lookup(file_priv, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -0700736 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100737 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700738
Daniel Vettercd4f0132013-08-15 00:02:44 +0200739 mutex_lock(&dev->object_name_lock);
Daniel Vettera8e11d12013-08-15 00:02:37 +0200740 /* prevent races with concurrent gem_close. */
741 if (obj->handle_count == 0) {
742 ret = -ENOENT;
743 goto err;
744 }
745
Chris Wilson8d59bae2009-02-11 14:26:28 +0000746 if (!obj->name) {
Chris Wilson0f646422016-01-04 10:11:01 +0000747 ret = idr_alloc(&dev->object_name_idr, obj, 1, 0, GFP_KERNEL);
Tejun Heo2e928812013-02-27 17:04:08 -0800748 if (ret < 0)
Chris Wilson8d59bae2009-02-11 14:26:28 +0000749 goto err;
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900750
751 obj->name = ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700752 }
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000753
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900754 args->name = (uint64_t) obj->name;
755 ret = 0;
756
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000757err:
Daniel Vettercd4f0132013-08-15 00:02:44 +0200758 mutex_unlock(&dev->object_name_lock);
Thierry Redinge6b62712017-02-28 15:46:41 +0100759 drm_gem_object_put_unlocked(obj);
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000760 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700761}
762
763/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100764 * drm_gem_open - implementation of the GEM_OPEN ioctl
765 * @dev: drm_device
766 * @data: ioctl data
767 * @file_priv: drm file-private structure
768 *
Eric Anholt673a3942008-07-30 12:06:12 -0700769 * Open an object using the global name, returning a handle and the size.
770 *
771 * This handle (of course) holds a reference to the object, so the object
772 * will not go away until the handle is deleted.
773 */
774int
775drm_gem_open_ioctl(struct drm_device *dev, void *data,
776 struct drm_file *file_priv)
777{
778 struct drm_gem_open *args = data;
779 struct drm_gem_object *obj;
780 int ret;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300781 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700782
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200783 if (!drm_core_check_feature(dev, DRIVER_GEM))
Chris Wilson69fdf422018-09-13 20:20:50 +0100784 return -EOPNOTSUPP;
Eric Anholt673a3942008-07-30 12:06:12 -0700785
Daniel Vettercd4f0132013-08-15 00:02:44 +0200786 mutex_lock(&dev->object_name_lock);
Eric Anholt673a3942008-07-30 12:06:12 -0700787 obj = idr_find(&dev->object_name_idr, (int) args->name);
Daniel Vetter20228c42013-08-15 00:02:45 +0200788 if (obj) {
Thierry Redinge6b62712017-02-28 15:46:41 +0100789 drm_gem_object_get(obj);
Daniel Vetter20228c42013-08-15 00:02:45 +0200790 } else {
791 mutex_unlock(&dev->object_name_lock);
Eric Anholt673a3942008-07-30 12:06:12 -0700792 return -ENOENT;
Daniel Vetter20228c42013-08-15 00:02:45 +0200793 }
Eric Anholt673a3942008-07-30 12:06:12 -0700794
Daniel Vetter20228c42013-08-15 00:02:45 +0200795 /* drm_gem_handle_create_tail unlocks dev->object_name_lock. */
796 ret = drm_gem_handle_create_tail(file_priv, obj, &handle);
Thierry Redinge6b62712017-02-28 15:46:41 +0100797 drm_gem_object_put_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700798 if (ret)
799 return ret;
800
801 args->handle = handle;
802 args->size = obj->size;
803
804 return 0;
805}
806
807/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100808 * gem_gem_open - initalizes GEM file-private structures at devnode open time
809 * @dev: drm_device which is being opened by userspace
810 * @file_private: drm file-private structure to set up
811 *
Eric Anholt673a3942008-07-30 12:06:12 -0700812 * Called at device open time, sets up the structure for handling refcounting
813 * of mm objects.
814 */
815void
816drm_gem_open(struct drm_device *dev, struct drm_file *file_private)
817{
Chris Wilsone86584c2018-02-12 14:55:33 +0000818 idr_init_base(&file_private->object_idr, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700819 spin_lock_init(&file_private->table_lock);
820}
821
Eric Anholt673a3942008-07-30 12:06:12 -0700822/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100823 * drm_gem_release - release file-private GEM resources
824 * @dev: drm_device which is being closed by userspace
825 * @file_private: drm file-private structure to clean up
826 *
Eric Anholt673a3942008-07-30 12:06:12 -0700827 * Called at close time when the filp is going away.
828 *
829 * Releases any remaining references on objects by this filp.
830 */
831void
832drm_gem_release(struct drm_device *dev, struct drm_file *file_private)
833{
Eric Anholt673a3942008-07-30 12:06:12 -0700834 idr_for_each(&file_private->object_idr,
Ben Skeggs304eda32011-06-09 00:24:59 +0000835 &drm_gem_object_release_handle, file_private);
Eric Anholt673a3942008-07-30 12:06:12 -0700836 idr_destroy(&file_private->object_idr);
Eric Anholt673a3942008-07-30 12:06:12 -0700837}
838
Daniel Vetterf74418a2016-03-30 11:40:52 +0200839/**
840 * drm_gem_object_release - release GEM buffer object resources
841 * @obj: GEM buffer object
842 *
843 * This releases any structures and resources used by @obj and is the invers of
844 * drm_gem_object_init().
845 */
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000846void
847drm_gem_object_release(struct drm_gem_object *obj)
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000848{
Daniel Vetter319c9332013-08-15 00:02:46 +0200849 WARN_ON(obj->dma_buf);
850
Alan Cox62cb70112011-06-07 14:17:51 +0100851 if (obj->filp)
David Herrmann16d28312014-01-20 20:07:49 +0100852 fput(obj->filp);
David Herrmann77472342014-01-20 20:05:43 +0100853
854 drm_gem_free_mmap_offset(obj);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000855}
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000856EXPORT_SYMBOL(drm_gem_object_release);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000857
Eric Anholt673a3942008-07-30 12:06:12 -0700858/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100859 * drm_gem_object_free - free a GEM object
860 * @kref: kref of the object to free
861 *
Eric Anholt673a3942008-07-30 12:06:12 -0700862 * Called after the last reference to the object has been lost.
Daniel Vetter940eba22017-01-25 07:26:46 +0100863 * Must be called holding &drm_device.struct_mutex.
Eric Anholt673a3942008-07-30 12:06:12 -0700864 *
865 * Frees the object
866 */
867void
868drm_gem_object_free(struct kref *kref)
869{
Daniel Vetter6ff774b2015-10-15 09:36:26 +0200870 struct drm_gem_object *obj =
871 container_of(kref, struct drm_gem_object, refcount);
Eric Anholt673a3942008-07-30 12:06:12 -0700872 struct drm_device *dev = obj->dev;
873
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100874 if (obj->funcs) {
875 obj->funcs->free(obj);
876 } else if (dev->driver->gem_free_object_unlocked) {
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200877 dev->driver->gem_free_object_unlocked(obj);
Daniel Vetter6d3e7fd2016-05-04 14:10:44 +0200878 } else if (dev->driver->gem_free_object) {
879 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
880
Eric Anholt673a3942008-07-30 12:06:12 -0700881 dev->driver->gem_free_object(obj);
Daniel Vetter6d3e7fd2016-05-04 14:10:44 +0200882 }
Eric Anholt673a3942008-07-30 12:06:12 -0700883}
884EXPORT_SYMBOL(drm_gem_object_free);
885
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200886/**
Thierry Redinge6b62712017-02-28 15:46:41 +0100887 * drm_gem_object_put_unlocked - drop a GEM buffer object reference
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200888 * @obj: GEM buffer object
889 *
890 * This releases a reference to @obj. Callers must not hold the
Daniel Vetter940eba22017-01-25 07:26:46 +0100891 * &drm_device.struct_mutex lock when calling this function.
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200892 *
Thierry Redinge6b62712017-02-28 15:46:41 +0100893 * See also __drm_gem_object_put().
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200894 */
895void
Thierry Redinge6b62712017-02-28 15:46:41 +0100896drm_gem_object_put_unlocked(struct drm_gem_object *obj)
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200897{
898 struct drm_device *dev;
899
900 if (!obj)
901 return;
902
903 dev = obj->dev;
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200904
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100905 if (dev->driver->gem_free_object) {
Daniel Vetter3379c042017-07-15 11:53:28 +0200906 might_lock(&dev->struct_mutex);
907 if (kref_put_mutex(&obj->refcount, drm_gem_object_free,
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200908 &dev->struct_mutex))
Daniel Vetter3379c042017-07-15 11:53:28 +0200909 mutex_unlock(&dev->struct_mutex);
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100910 } else {
911 kref_put(&obj->refcount, drm_gem_object_free);
Daniel Vetter3379c042017-07-15 11:53:28 +0200912 }
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200913}
Thierry Redinge6b62712017-02-28 15:46:41 +0100914EXPORT_SYMBOL(drm_gem_object_put_unlocked);
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200915
916/**
Thierry Redinge6b62712017-02-28 15:46:41 +0100917 * drm_gem_object_put - release a GEM buffer object reference
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200918 * @obj: GEM buffer object
919 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100920 * This releases a reference to @obj. Callers must hold the
921 * &drm_device.struct_mutex lock when calling this function, even when the
922 * driver doesn't use &drm_device.struct_mutex for anything.
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200923 *
924 * For drivers not encumbered with legacy locking use
Thierry Redinge6b62712017-02-28 15:46:41 +0100925 * drm_gem_object_put_unlocked() instead.
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200926 */
927void
Thierry Redinge6b62712017-02-28 15:46:41 +0100928drm_gem_object_put(struct drm_gem_object *obj)
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200929{
930 if (obj) {
931 WARN_ON(!mutex_is_locked(&obj->dev->struct_mutex));
932
933 kref_put(&obj->refcount, drm_gem_object_free);
934 }
935}
Thierry Redinge6b62712017-02-28 15:46:41 +0100936EXPORT_SYMBOL(drm_gem_object_put);
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200937
938/**
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200939 * drm_gem_vm_open - vma->ops->open implementation for GEM
940 * @vma: VM area structure
941 *
942 * This function implements the #vm_operations_struct open() callback for GEM
943 * drivers. This must be used together with drm_gem_vm_close().
944 */
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800945void drm_gem_vm_open(struct vm_area_struct *vma)
946{
947 struct drm_gem_object *obj = vma->vm_private_data;
948
Thierry Redinge6b62712017-02-28 15:46:41 +0100949 drm_gem_object_get(obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800950}
951EXPORT_SYMBOL(drm_gem_vm_open);
952
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200953/**
954 * drm_gem_vm_close - vma->ops->close implementation for GEM
955 * @vma: VM area structure
956 *
957 * This function implements the #vm_operations_struct close() callback for GEM
958 * drivers. This must be used together with drm_gem_vm_open().
959 */
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800960void drm_gem_vm_close(struct vm_area_struct *vma)
961{
962 struct drm_gem_object *obj = vma->vm_private_data;
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800963
Thierry Redinge6b62712017-02-28 15:46:41 +0100964 drm_gem_object_put_unlocked(obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800965}
966EXPORT_SYMBOL(drm_gem_vm_close);
967
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200968/**
969 * drm_gem_mmap_obj - memory map a GEM object
970 * @obj: the GEM object to map
971 * @obj_size: the object size to be mapped, in bytes
972 * @vma: VMA for the area to be mapped
973 *
974 * Set up the VMA to prepare mapping of the GEM object using the gem_vm_ops
975 * provided by the driver. Depending on their requirements, drivers can either
976 * provide a fault handler in their gem_vm_ops (in which case any accesses to
977 * the object will be trapped, to perform migration, GTT binding, surface
978 * register allocation, or performance monitoring), or mmap the buffer memory
979 * synchronously after calling drm_gem_mmap_obj.
980 *
981 * This function is mainly intended to implement the DMABUF mmap operation, when
982 * the GEM object is not looked up based on its fake offset. To implement the
983 * DRM mmap operation, drivers should use the drm_gem_mmap() function.
984 *
David Herrmannca481c92013-08-25 18:28:58 +0200985 * drm_gem_mmap_obj() assumes the user is granted access to the buffer while
986 * drm_gem_mmap() prevents unprivileged users from mapping random objects. So
987 * callers must verify access restrictions before calling this helper.
988 *
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200989 * Return 0 or success or -EINVAL if the object size is smaller than the VMA
990 * size, or if no gem_vm_ops are provided.
991 */
992int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
993 struct vm_area_struct *vma)
994{
995 struct drm_device *dev = obj->dev;
996
997 /* Check for valid size. */
998 if (obj_size < vma->vm_end - vma->vm_start)
999 return -EINVAL;
1000
Noralf Trønnesb39b5392018-11-10 15:56:45 +01001001 if (obj->funcs && obj->funcs->vm_ops)
1002 vma->vm_ops = obj->funcs->vm_ops;
1003 else if (dev->driver->gem_vm_ops)
1004 vma->vm_ops = dev->driver->gem_vm_ops;
1005 else
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001006 return -EINVAL;
1007
1008 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001009 vma->vm_private_data = obj;
David Herrmann16d28312014-01-20 20:07:49 +01001010 vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
Tom Lendacky95cf9262017-07-17 16:10:26 -05001011 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001012
1013 /* Take a ref for this mapping of the object, so that the fault
1014 * handler can dereference the mmap offset's pointer to the object.
1015 * This reference is cleaned up by the corresponding vm_close
1016 * (which should happen whether the vma was created by this call, or
1017 * by a vm_open due to mremap or partial unmap or whatever).
1018 */
Thierry Redinge6b62712017-02-28 15:46:41 +01001019 drm_gem_object_get(obj);
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001020
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001021 return 0;
1022}
1023EXPORT_SYMBOL(drm_gem_mmap_obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001024
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001025/**
1026 * drm_gem_mmap - memory map routine for GEM objects
1027 * @filp: DRM file pointer
1028 * @vma: VMA for the area to be mapped
1029 *
1030 * If a driver supports GEM object mapping, mmap calls on the DRM file
1031 * descriptor will end up here.
1032 *
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001033 * Look up the GEM object based on the offset passed in (vma->vm_pgoff will
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001034 * contain the fake offset we created when the GTT map ioctl was called on
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001035 * the object) and map it with a call to drm_gem_mmap_obj().
David Herrmannca481c92013-08-25 18:28:58 +02001036 *
1037 * If the caller is not granted access to the buffer object, the mmap will fail
1038 * with EACCES. Please see the vma manager for more information.
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001039 */
1040int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)
1041{
1042 struct drm_file *priv = filp->private_data;
1043 struct drm_device *dev = priv->minor->dev;
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001044 struct drm_gem_object *obj = NULL;
David Herrmann0de23972013-07-24 21:07:52 +02001045 struct drm_vma_offset_node *node;
David Herrmanna8469aa2014-01-20 20:15:38 +01001046 int ret;
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001047
Daniel Vetterc07dcd62017-08-02 13:56:02 +02001048 if (drm_dev_is_unplugged(dev))
Dave Airlie2c07a212012-02-20 14:18:07 +00001049 return -ENODEV;
1050
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001051 drm_vma_offset_lock_lookup(dev->vma_offset_manager);
1052 node = drm_vma_offset_exact_lookup_locked(dev->vma_offset_manager,
1053 vma->vm_pgoff,
1054 vma_pages(vma));
1055 if (likely(node)) {
1056 obj = container_of(node, struct drm_gem_object, vma_node);
1057 /*
1058 * When the object is being freed, after it hits 0-refcnt it
1059 * proceeds to tear down the object. In the process it will
1060 * attempt to remove the VMA offset and so acquire this
1061 * mgr->vm_lock. Therefore if we find an object with a 0-refcnt
1062 * that matches our range, we know it is in the process of being
1063 * destroyed and will be freed as soon as we release the lock -
1064 * so we have to check for the 0-refcnted object and treat it as
1065 * invalid.
1066 */
1067 if (!kref_get_unless_zero(&obj->refcount))
1068 obj = NULL;
1069 }
1070 drm_vma_offset_unlock_lookup(dev->vma_offset_manager);
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001071
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001072 if (!obj)
Daniel Vetter197633b2014-09-23 15:46:48 +02001073 return -EINVAL;
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001074
David Herrmannd9a1f0b2016-09-01 14:48:33 +02001075 if (!drm_vma_node_is_allowed(node, priv)) {
Thierry Redinge6b62712017-02-28 15:46:41 +01001076 drm_gem_object_put_unlocked(obj);
David Herrmannca481c92013-08-25 18:28:58 +02001077 return -EACCES;
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001078 }
1079
Chris Wilson3e977ac2018-07-12 19:53:13 +01001080 if (node->readonly) {
1081 if (vma->vm_flags & VM_WRITE) {
1082 drm_gem_object_put_unlocked(obj);
1083 return -EINVAL;
1084 }
1085
1086 vma->vm_flags &= ~VM_MAYWRITE;
1087 }
1088
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001089 ret = drm_gem_mmap_obj(obj, drm_vma_node_size(node) << PAGE_SHIFT,
1090 vma);
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001091
Thierry Redinge6b62712017-02-28 15:46:41 +01001092 drm_gem_object_put_unlocked(obj);
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001093
1094 return ret;
1095}
1096EXPORT_SYMBOL(drm_gem_mmap);
Noralf Trønnes45d58b42017-11-07 20:13:40 +01001097
1098void drm_gem_print_info(struct drm_printer *p, unsigned int indent,
1099 const struct drm_gem_object *obj)
1100{
1101 drm_printf_indent(p, indent, "name=%d\n", obj->name);
1102 drm_printf_indent(p, indent, "refcount=%u\n",
1103 kref_read(&obj->refcount));
1104 drm_printf_indent(p, indent, "start=%08lx\n",
1105 drm_vma_node_start(&obj->vma_node));
1106 drm_printf_indent(p, indent, "size=%zu\n", obj->size);
1107 drm_printf_indent(p, indent, "imported=%s\n",
1108 obj->import_attach ? "yes" : "no");
1109
Noralf Trønnesb39b5392018-11-10 15:56:45 +01001110 if (obj->funcs && obj->funcs->print_info)
1111 obj->funcs->print_info(p, indent, obj);
1112 else if (obj->dev->driver->gem_print_info)
Noralf Trønnes45d58b42017-11-07 20:13:40 +01001113 obj->dev->driver->gem_print_info(p, indent, obj);
1114}
Noralf Trønnesb39b5392018-11-10 15:56:45 +01001115
1116/**
1117 * drm_gem_pin - Pin backing buffer in memory
1118 * @obj: GEM object
1119 *
1120 * Make sure the backing buffer is pinned in memory.
1121 *
1122 * Returns:
1123 * 0 on success or a negative error code on failure.
1124 */
1125int drm_gem_pin(struct drm_gem_object *obj)
1126{
1127 if (obj->funcs && obj->funcs->pin)
1128 return obj->funcs->pin(obj);
1129 else if (obj->dev->driver->gem_prime_pin)
1130 return obj->dev->driver->gem_prime_pin(obj);
1131 else
1132 return 0;
1133}
1134EXPORT_SYMBOL(drm_gem_pin);
1135
1136/**
1137 * drm_gem_unpin - Unpin backing buffer from memory
1138 * @obj: GEM object
1139 *
1140 * Relax the requirement that the backing buffer is pinned in memory.
1141 */
1142void drm_gem_unpin(struct drm_gem_object *obj)
1143{
1144 if (obj->funcs && obj->funcs->unpin)
1145 obj->funcs->unpin(obj);
1146 else if (obj->dev->driver->gem_prime_unpin)
1147 obj->dev->driver->gem_prime_unpin(obj);
1148}
1149EXPORT_SYMBOL(drm_gem_unpin);
1150
1151/**
1152 * drm_gem_vmap - Map buffer into kernel virtual address space
1153 * @obj: GEM object
1154 *
1155 * Returns:
1156 * A virtual pointer to a newly created GEM object or an ERR_PTR-encoded negative
1157 * error code on failure.
1158 */
1159void *drm_gem_vmap(struct drm_gem_object *obj)
1160{
1161 void *vaddr;
1162
1163 if (obj->funcs && obj->funcs->vmap)
1164 vaddr = obj->funcs->vmap(obj);
1165 else if (obj->dev->driver->gem_prime_vmap)
1166 vaddr = obj->dev->driver->gem_prime_vmap(obj);
1167 else
1168 vaddr = ERR_PTR(-EOPNOTSUPP);
1169
1170 if (!vaddr)
1171 vaddr = ERR_PTR(-ENOMEM);
1172
1173 return vaddr;
1174}
1175EXPORT_SYMBOL(drm_gem_vmap);
1176
1177/**
1178 * drm_gem_vunmap - Remove buffer mapping from kernel virtual address space
1179 * @obj: GEM object
1180 * @vaddr: Virtual address (can be NULL)
1181 */
1182void drm_gem_vunmap(struct drm_gem_object *obj, void *vaddr)
1183{
1184 if (!vaddr)
1185 return;
1186
1187 if (obj->funcs && obj->funcs->vunmap)
1188 obj->funcs->vunmap(obj, vaddr);
1189 else if (obj->dev->driver->gem_prime_vunmap)
1190 obj->dev->driver->gem_prime_vunmap(obj, vaddr);
1191}
1192EXPORT_SYMBOL(drm_gem_vunmap);