blob: 8b55ece97967f43d0861d6d5f6dfc043f00b9a39 [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>
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020041#include <drm/drm_vma_manager.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020042#include <drm/drm_gem.h>
Noralf Trønnes45d58b42017-11-07 20:13:40 +010043#include <drm/drm_print.h>
Daniel Vetter67d0ec42014-09-10 12:43:53 +020044#include "drm_internal.h"
Eric Anholt673a3942008-07-30 12:06:12 -070045
46/** @file drm_gem.c
47 *
48 * This file provides some of the base ioctls and library routines for
49 * the graphics memory manager implemented by each device driver.
50 *
51 * Because various devices have different requirements in terms of
52 * synchronization and migration strategies, implementing that is left up to
53 * the driver, and all that the general API provides should be generic --
54 * allocating objects, reading/writing data with the cpu, freeing objects.
55 * Even there, platform-dependent optimizations for reading/writing data with
56 * the CPU mean we'll likely hook those out to driver-specific calls. However,
57 * the DRI2 implementation wants to have at least allocate/mmap be generic.
58 *
59 * The goal was to have swap-backed object allocation managed through
60 * struct file. However, file descriptors as handles to a struct file have
61 * two major failings:
62 * - Process limits prevent more than 1024 or so being used at a time by
63 * default.
64 * - Inability to allocate high fds will aggravate the X Server's select()
65 * handling, and likely that of many GL client applications as well.
66 *
67 * This led to a plan of using our own integer IDs (called handles, following
68 * DRM terminology) to mimic fds, and implement the fd syscalls we need as
69 * ioctls. The objects themselves will still include the struct file so
70 * that we can transition to fds if the required kernel infrastructure shows
71 * up at a later date, and as our interface with shmfs for memory allocation.
72 */
73
Jesse Barnesa2c0a972008-11-05 10:31:53 -080074/*
75 * We make up offsets for buffer objects so we can recognize them at
76 * mmap time.
77 */
Jordan Crouse05269a32010-05-27 13:40:27 -060078
79/* pgoff in mmap is an unsigned long, so we need to make sure that
80 * the faked up offset will fit
81 */
82
83#if BITS_PER_LONG == 64
Jesse Barnesa2c0a972008-11-05 10:31:53 -080084#define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFFUL >> PAGE_SHIFT) + 1)
85#define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFFUL >> PAGE_SHIFT) * 16)
Jordan Crouse05269a32010-05-27 13:40:27 -060086#else
87#define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFUL >> PAGE_SHIFT) + 1)
88#define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFUL >> PAGE_SHIFT) * 16)
89#endif
Jesse Barnesa2c0a972008-11-05 10:31:53 -080090
Eric Anholt673a3942008-07-30 12:06:12 -070091/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +010092 * drm_gem_init - Initialize the GEM device fields
93 * @dev: drm_devic structure to initialize
Eric Anholt673a3942008-07-30 12:06:12 -070094 */
Eric Anholt673a3942008-07-30 12:06:12 -070095int
96drm_gem_init(struct drm_device *dev)
97{
Daniel Vetterb04a5902013-12-11 14:24:46 +010098 struct drm_vma_offset_manager *vma_offset_manager;
Jesse Barnesa2c0a972008-11-05 10:31:53 -080099
Daniel Vettercd4f0132013-08-15 00:02:44 +0200100 mutex_init(&dev->object_name_lock);
Chris Wilsone86584c2018-02-12 14:55:33 +0000101 idr_init_base(&dev->object_name_idr, 1);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800102
Daniel Vetterb04a5902013-12-11 14:24:46 +0100103 vma_offset_manager = kzalloc(sizeof(*vma_offset_manager), GFP_KERNEL);
104 if (!vma_offset_manager) {
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800105 DRM_ERROR("out of memory\n");
106 return -ENOMEM;
107 }
108
Daniel Vetterb04a5902013-12-11 14:24:46 +0100109 dev->vma_offset_manager = vma_offset_manager;
110 drm_vma_offset_manager_init(vma_offset_manager,
David Herrmann0de23972013-07-24 21:07:52 +0200111 DRM_FILE_PAGE_OFFSET_START,
112 DRM_FILE_PAGE_OFFSET_SIZE);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800113
Eric Anholt673a3942008-07-30 12:06:12 -0700114 return 0;
115}
116
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800117void
118drm_gem_destroy(struct drm_device *dev)
119{
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800120
Daniel Vetterb04a5902013-12-11 14:24:46 +0100121 drm_vma_offset_manager_destroy(dev->vma_offset_manager);
122 kfree(dev->vma_offset_manager);
123 dev->vma_offset_manager = NULL;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800124}
125
Eric Anholt673a3942008-07-30 12:06:12 -0700126/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100127 * drm_gem_object_init - initialize an allocated shmem-backed GEM object
128 * @dev: drm_device the object should be initialized for
129 * @obj: drm_gem_object to initialize
130 * @size: object size
131 *
Alan Cox62cb70112011-06-07 14:17:51 +0100132 * Initialize an already allocated GEM object of the specified size with
Daniel Vetter1d397042010-04-09 19:05:04 +0000133 * shmfs backing store.
134 */
135int drm_gem_object_init(struct drm_device *dev,
136 struct drm_gem_object *obj, size_t size)
137{
David Herrmann89c82332013-07-11 11:56:32 +0200138 struct file *filp;
Daniel Vetter1d397042010-04-09 19:05:04 +0000139
Daniel Vetter6ab11a22014-01-20 08:21:54 +0100140 drm_gem_private_object_init(dev, obj, size);
141
David Herrmann89c82332013-07-11 11:56:32 +0200142 filp = shmem_file_setup("drm mm object", size, VM_NORESERVE);
143 if (IS_ERR(filp))
144 return PTR_ERR(filp);
Daniel Vetter1d397042010-04-09 19:05:04 +0000145
David Herrmann89c82332013-07-11 11:56:32 +0200146 obj->filp = filp;
Daniel Vetter1d397042010-04-09 19:05:04 +0000147
Daniel Vetter1d397042010-04-09 19:05:04 +0000148 return 0;
149}
150EXPORT_SYMBOL(drm_gem_object_init);
151
152/**
Laurent Pinchart2a5706a2014-08-28 14:34:36 +0200153 * drm_gem_private_object_init - initialize an allocated private GEM object
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100154 * @dev: drm_device the object should be initialized for
155 * @obj: drm_gem_object to initialize
156 * @size: object size
157 *
Alan Cox62cb70112011-06-07 14:17:51 +0100158 * Initialize an already allocated GEM object of the specified size with
159 * no GEM provided backing store. Instead the caller is responsible for
160 * backing the object and handling it.
161 */
David Herrmann89c82332013-07-11 11:56:32 +0200162void drm_gem_private_object_init(struct drm_device *dev,
163 struct drm_gem_object *obj, size_t size)
Alan Cox62cb70112011-06-07 14:17:51 +0100164{
165 BUG_ON((size & (PAGE_SIZE - 1)) != 0);
166
167 obj->dev = dev;
168 obj->filp = NULL;
169
170 kref_init(&obj->refcount);
Daniel Vettera8e11d12013-08-15 00:02:37 +0200171 obj->handle_count = 0;
Alan Cox62cb70112011-06-07 14:17:51 +0100172 obj->size = size;
David Herrmann88d7ebe2013-08-25 18:28:57 +0200173 drm_vma_node_reset(&obj->vma_node);
Alan Cox62cb70112011-06-07 14:17:51 +0100174}
175EXPORT_SYMBOL(drm_gem_private_object_init);
176
Dave Airlie0ff926c2012-05-20 17:31:16 +0100177static void
178drm_gem_remove_prime_handles(struct drm_gem_object *obj, struct drm_file *filp)
179{
Daniel Vetter319c9332013-08-15 00:02:46 +0200180 /*
181 * Note: obj->dma_buf can't disappear as long as we still hold a
182 * handle reference in obj->handle_count.
183 */
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200184 mutex_lock(&filp->prime.lock);
Daniel Vetter319c9332013-08-15 00:02:46 +0200185 if (obj->dma_buf) {
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200186 drm_prime_remove_buf_handle_locked(&filp->prime,
187 obj->dma_buf);
Dave Airlie0ff926c2012-05-20 17:31:16 +0100188 }
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200189 mutex_unlock(&filp->prime.lock);
Dave Airlie0ff926c2012-05-20 17:31:16 +0100190}
191
Daniel Vetter36da5902013-08-15 00:02:34 +0200192/**
Thierry Redingc6a84322014-10-02 14:45:55 +0200193 * drm_gem_object_handle_free - release resources bound to userspace handles
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100194 * @obj: GEM object to clean up.
195 *
Daniel Vetter36da5902013-08-15 00:02:34 +0200196 * Called after the last handle to the object has been closed
197 *
198 * Removes any name for the object. Note that this must be
199 * called before drm_gem_object_free or we'll be touching
200 * freed memory
201 */
202static void drm_gem_object_handle_free(struct drm_gem_object *obj)
203{
204 struct drm_device *dev = obj->dev;
205
206 /* Remove any name for this object */
Daniel Vetter36da5902013-08-15 00:02:34 +0200207 if (obj->name) {
208 idr_remove(&dev->object_name_idr, obj->name);
209 obj->name = 0;
Daniel Vettera8e11d12013-08-15 00:02:37 +0200210 }
Daniel Vetter36da5902013-08-15 00:02:34 +0200211}
212
Daniel Vetter319c9332013-08-15 00:02:46 +0200213static void drm_gem_object_exported_dma_buf_free(struct drm_gem_object *obj)
214{
215 /* Unbreak the reference cycle if we have an exported dma_buf. */
216 if (obj->dma_buf) {
217 dma_buf_put(obj->dma_buf);
218 obj->dma_buf = NULL;
219 }
220}
221
Daniel Vetterbecee2a2013-08-15 00:02:39 +0200222static void
Thierry Redinge6b62712017-02-28 15:46:41 +0100223drm_gem_object_handle_put_unlocked(struct drm_gem_object *obj)
Daniel Vetter36da5902013-08-15 00:02:34 +0200224{
Chris Wilson98a88832016-01-04 10:11:00 +0000225 struct drm_device *dev = obj->dev;
226 bool final = false;
227
Daniel Vettera8e11d12013-08-15 00:02:37 +0200228 if (WARN_ON(obj->handle_count == 0))
Daniel Vetter36da5902013-08-15 00:02:34 +0200229 return;
230
231 /*
232 * Must bump handle count first as this may be the last
233 * ref, in which case the object would disappear before we
234 * checked for a name
235 */
236
Chris Wilson98a88832016-01-04 10:11:00 +0000237 mutex_lock(&dev->object_name_lock);
Daniel Vetter319c9332013-08-15 00:02:46 +0200238 if (--obj->handle_count == 0) {
Daniel Vetter36da5902013-08-15 00:02:34 +0200239 drm_gem_object_handle_free(obj);
Daniel Vetter319c9332013-08-15 00:02:46 +0200240 drm_gem_object_exported_dma_buf_free(obj);
Chris Wilson98a88832016-01-04 10:11:00 +0000241 final = true;
Daniel Vetter319c9332013-08-15 00:02:46 +0200242 }
Chris Wilson98a88832016-01-04 10:11:00 +0000243 mutex_unlock(&dev->object_name_lock);
Daniel Vettera8e11d12013-08-15 00:02:37 +0200244
Chris Wilson98a88832016-01-04 10:11:00 +0000245 if (final)
Thierry Redinge6b62712017-02-28 15:46:41 +0100246 drm_gem_object_put_unlocked(obj);
Daniel Vetter36da5902013-08-15 00:02:34 +0200247}
248
Chris Wilson8815b232016-01-05 09:42:31 +0000249/*
250 * Called at device or object close to release the file's
251 * handle references on objects.
252 */
253static int
254drm_gem_object_release_handle(int id, void *ptr, void *data)
255{
256 struct drm_file *file_priv = data;
257 struct drm_gem_object *obj = ptr;
258 struct drm_device *dev = obj->dev;
259
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100260 if (obj->funcs && obj->funcs->close)
261 obj->funcs->close(obj, file_priv);
262 else if (dev->driver->gem_close_object)
Chris Wilsond0a133f2017-08-19 13:05:58 +0100263 dev->driver->gem_close_object(obj, file_priv);
264
Chris Wilson8815b232016-01-05 09:42:31 +0000265 if (drm_core_check_feature(dev, DRIVER_PRIME))
266 drm_gem_remove_prime_handles(obj, file_priv);
David Herrmannd9a1f0b2016-09-01 14:48:33 +0200267 drm_vma_node_revoke(&obj->vma_node, file_priv);
Chris Wilson8815b232016-01-05 09:42:31 +0000268
Thierry Redinge6b62712017-02-28 15:46:41 +0100269 drm_gem_object_handle_put_unlocked(obj);
Chris Wilson8815b232016-01-05 09:42:31 +0000270
271 return 0;
272}
273
Eric Anholt673a3942008-07-30 12:06:12 -0700274/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100275 * drm_gem_handle_delete - deletes the given file-private handle
276 * @filp: drm file-private structure to use for the handle look up
277 * @handle: userspace handle to delete
278 *
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200279 * Removes the GEM handle from the @filp lookup table which has been added with
280 * drm_gem_handle_create(). If this is the last handle also cleans up linked
281 * resources like GEM names.
Eric Anholt673a3942008-07-30 12:06:12 -0700282 */
Dave Airlieff72145b2011-02-07 12:16:14 +1000283int
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300284drm_gem_handle_delete(struct drm_file *filp, u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700285{
Eric Anholt673a3942008-07-30 12:06:12 -0700286 struct drm_gem_object *obj;
287
Eric Anholt673a3942008-07-30 12:06:12 -0700288 spin_lock(&filp->table_lock);
289
290 /* Check if we currently have a reference on the object */
Chris Wilsonf6cd7da2016-04-15 12:55:08 +0100291 obj = idr_replace(&filp->object_idr, NULL, handle);
292 spin_unlock(&filp->table_lock);
293 if (IS_ERR_OR_NULL(obj))
Eric Anholt673a3942008-07-30 12:06:12 -0700294 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700295
Chris Wilsonf6cd7da2016-04-15 12:55:08 +0100296 /* Release driver's reference and decrement refcount. */
297 drm_gem_object_release_handle(handle, obj, filp);
298
299 /* And finally make the handle available for future allocations. */
300 spin_lock(&filp->table_lock);
Eric Anholt673a3942008-07-30 12:06:12 -0700301 idr_remove(&filp->object_idr, handle);
302 spin_unlock(&filp->table_lock);
303
Eric Anholt673a3942008-07-30 12:06:12 -0700304 return 0;
305}
Dave Airlieff72145b2011-02-07 12:16:14 +1000306EXPORT_SYMBOL(drm_gem_handle_delete);
Eric Anholt673a3942008-07-30 12:06:12 -0700307
308/**
Noralf Trønnesdb611522017-07-23 21:16:17 +0200309 * drm_gem_dumb_map_offset - return the fake mmap offset for a gem object
310 * @file: drm file-private structure containing the gem object
311 * @dev: corresponding drm_device
312 * @handle: gem object handle
313 * @offset: return location for the fake mmap offset
314 *
315 * This implements the &drm_driver.dumb_map_offset kms driver callback for
316 * drivers which use gem to manage their backing storage.
317 *
318 * Returns:
319 * 0 on success or a negative error code on failure.
320 */
321int drm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
322 u32 handle, u64 *offset)
323{
324 struct drm_gem_object *obj;
325 int ret;
326
327 obj = drm_gem_object_lookup(file, handle);
328 if (!obj)
329 return -ENOENT;
330
Noralf Trønnes90378e52017-08-17 18:21:30 +0200331 /* Don't allow imported objects to be mapped */
332 if (obj->import_attach) {
333 ret = -EINVAL;
334 goto out;
335 }
336
Noralf Trønnesdb611522017-07-23 21:16:17 +0200337 ret = drm_gem_create_mmap_offset(obj);
338 if (ret)
339 goto out;
340
341 *offset = drm_vma_node_offset_addr(&obj->vma_node);
342out:
343 drm_gem_object_put_unlocked(obj);
344
345 return ret;
346}
347EXPORT_SYMBOL_GPL(drm_gem_dumb_map_offset);
348
349/**
Daniel Vetter43387b32013-07-16 09:12:04 +0200350 * drm_gem_dumb_destroy - dumb fb callback helper for gem based drivers
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100351 * @file: drm file-private structure to remove the dumb handle from
352 * @dev: corresponding drm_device
353 * @handle: the dumb handle to remove
Noralf Trønnes1dd3a0602017-10-26 18:57:26 +0200354 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100355 * This implements the &drm_driver.dumb_destroy kms driver callback for drivers
356 * which use gem to manage their backing storage.
Daniel Vetter43387b32013-07-16 09:12:04 +0200357 */
358int drm_gem_dumb_destroy(struct drm_file *file,
359 struct drm_device *dev,
360 uint32_t handle)
361{
362 return drm_gem_handle_delete(file, handle);
363}
364EXPORT_SYMBOL(drm_gem_dumb_destroy);
365
366/**
Daniel Vetter20228c42013-08-15 00:02:45 +0200367 * drm_gem_handle_create_tail - internal functions to create a handle
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100368 * @file_priv: drm file-private structure to register the handle for
369 * @obj: object to register
Thierry Reding8bf81802014-11-03 13:20:52 +0100370 * @handlep: pointer to return the created handle to the caller
Noralf Trønnes1dd3a0602017-10-26 18:57:26 +0200371 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100372 * This expects the &drm_device.object_name_lock to be held already and will
373 * drop it before returning. Used to avoid races in establishing new handles
374 * when importing an object from either an flink name or a dma-buf.
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200375 *
376 * Handles must be release again through drm_gem_handle_delete(). This is done
377 * when userspace closes @file_priv for all attached handles, or through the
378 * GEM_CLOSE ioctl for individual handles.
Eric Anholt673a3942008-07-30 12:06:12 -0700379 */
380int
Daniel Vetter20228c42013-08-15 00:02:45 +0200381drm_gem_handle_create_tail(struct drm_file *file_priv,
382 struct drm_gem_object *obj,
383 u32 *handlep)
Eric Anholt673a3942008-07-30 12:06:12 -0700384{
Ben Skeggs304eda32011-06-09 00:24:59 +0000385 struct drm_device *dev = obj->dev;
Chris Wilson9649399e2016-01-05 09:42:30 +0000386 u32 handle;
Ben Skeggs304eda32011-06-09 00:24:59 +0000387 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700388
Daniel Vetter20228c42013-08-15 00:02:45 +0200389 WARN_ON(!mutex_is_locked(&dev->object_name_lock));
Chris Wilson98a88832016-01-04 10:11:00 +0000390 if (obj->handle_count++ == 0)
Thierry Redinge6b62712017-02-28 15:46:41 +0100391 drm_gem_object_get(obj);
Daniel Vetter20228c42013-08-15 00:02:45 +0200392
Eric Anholt673a3942008-07-30 12:06:12 -0700393 /*
Tejun Heo2e928812013-02-27 17:04:08 -0800394 * Get the user-visible handle using idr. Preload and perform
395 * allocation under our spinlock.
Eric Anholt673a3942008-07-30 12:06:12 -0700396 */
Tejun Heo2e928812013-02-27 17:04:08 -0800397 idr_preload(GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -0700398 spin_lock(&file_priv->table_lock);
Tejun Heo2e928812013-02-27 17:04:08 -0800399
400 ret = idr_alloc(&file_priv->object_idr, obj, 1, 0, GFP_NOWAIT);
Chris Wilson98a88832016-01-04 10:11:00 +0000401
Eric Anholt673a3942008-07-30 12:06:12 -0700402 spin_unlock(&file_priv->table_lock);
Tejun Heo2e928812013-02-27 17:04:08 -0800403 idr_preload_end();
Chris Wilson98a88832016-01-04 10:11:00 +0000404
Daniel Vettercd4f0132013-08-15 00:02:44 +0200405 mutex_unlock(&dev->object_name_lock);
Chris Wilson69841282016-01-04 10:10:59 +0000406 if (ret < 0)
407 goto err_unref;
408
Chris Wilson9649399e2016-01-05 09:42:30 +0000409 handle = ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700410
David Herrmannd9a1f0b2016-09-01 14:48:33 +0200411 ret = drm_vma_node_allow(&obj->vma_node, file_priv);
Chris Wilson69841282016-01-04 10:10:59 +0000412 if (ret)
413 goto err_remove;
Ben Skeggs304eda32011-06-09 00:24:59 +0000414
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100415 if (obj->funcs && obj->funcs->open) {
416 ret = obj->funcs->open(obj, file_priv);
417 if (ret)
418 goto err_revoke;
419 } else if (dev->driver->gem_open_object) {
Ben Skeggs304eda32011-06-09 00:24:59 +0000420 ret = dev->driver->gem_open_object(obj, file_priv);
Chris Wilson69841282016-01-04 10:10:59 +0000421 if (ret)
422 goto err_revoke;
Ben Skeggs304eda32011-06-09 00:24:59 +0000423 }
424
Chris Wilson9649399e2016-01-05 09:42:30 +0000425 *handlep = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700426 return 0;
Chris Wilson69841282016-01-04 10:10:59 +0000427
428err_revoke:
David Herrmannd9a1f0b2016-09-01 14:48:33 +0200429 drm_vma_node_revoke(&obj->vma_node, file_priv);
Chris Wilson69841282016-01-04 10:10:59 +0000430err_remove:
431 spin_lock(&file_priv->table_lock);
Chris Wilson9649399e2016-01-05 09:42:30 +0000432 idr_remove(&file_priv->object_idr, handle);
Chris Wilson69841282016-01-04 10:10:59 +0000433 spin_unlock(&file_priv->table_lock);
434err_unref:
Thierry Redinge6b62712017-02-28 15:46:41 +0100435 drm_gem_object_handle_put_unlocked(obj);
Chris Wilson69841282016-01-04 10:10:59 +0000436 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700437}
Daniel Vetter20228c42013-08-15 00:02:45 +0200438
439/**
Thierry Reding8bf81802014-11-03 13:20:52 +0100440 * drm_gem_handle_create - create a gem handle for an object
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100441 * @file_priv: drm file-private structure to register the handle for
442 * @obj: object to register
443 * @handlep: pionter to return the created handle to the caller
444 *
Daniel Vetter390311762018-03-22 09:02:33 +0100445 * Create a handle for this object. This adds a handle reference to the object,
446 * which includes a regular reference count. Callers will likely want to
447 * dereference the object afterwards.
448 *
449 * Since this publishes @obj to userspace it must be fully set up by this point,
450 * drivers must call this last in their buffer object creation callbacks.
Daniel Vetter20228c42013-08-15 00:02:45 +0200451 */
Thierry Reding8bf81802014-11-03 13:20:52 +0100452int drm_gem_handle_create(struct drm_file *file_priv,
453 struct drm_gem_object *obj,
454 u32 *handlep)
Daniel Vetter20228c42013-08-15 00:02:45 +0200455{
456 mutex_lock(&obj->dev->object_name_lock);
457
458 return drm_gem_handle_create_tail(file_priv, obj, handlep);
459}
Eric Anholt673a3942008-07-30 12:06:12 -0700460EXPORT_SYMBOL(drm_gem_handle_create);
461
Rob Clark75ef8b32011-08-10 08:09:07 -0500462
463/**
464 * drm_gem_free_mmap_offset - release a fake mmap offset for an object
465 * @obj: obj in question
466 *
467 * This routine frees fake offsets allocated by drm_gem_create_mmap_offset().
Daniel Vetterf74418a2016-03-30 11:40:52 +0200468 *
469 * Note that drm_gem_object_release() already calls this function, so drivers
470 * don't have to take care of releasing the mmap offset themselves when freeing
471 * the GEM object.
Rob Clark75ef8b32011-08-10 08:09:07 -0500472 */
473void
474drm_gem_free_mmap_offset(struct drm_gem_object *obj)
475{
476 struct drm_device *dev = obj->dev;
Rob Clark75ef8b32011-08-10 08:09:07 -0500477
Daniel Vetterb04a5902013-12-11 14:24:46 +0100478 drm_vma_offset_remove(dev->vma_offset_manager, &obj->vma_node);
Rob Clark75ef8b32011-08-10 08:09:07 -0500479}
480EXPORT_SYMBOL(drm_gem_free_mmap_offset);
481
482/**
Rob Clark367bbd42013-08-07 13:41:23 -0400483 * drm_gem_create_mmap_offset_size - create a fake mmap offset for an object
484 * @obj: obj in question
485 * @size: the virtual size
486 *
487 * GEM memory mapping works by handing back to userspace a fake mmap offset
488 * it can use in a subsequent mmap(2) call. The DRM core code then looks
489 * up the object based on the offset and sets up the various memory mapping
490 * structures.
491 *
492 * This routine allocates and attaches a fake offset for @obj, in cases where
Daniel Vetter940eba22017-01-25 07:26:46 +0100493 * the virtual size differs from the physical size (ie. &drm_gem_object.size).
494 * Otherwise just use drm_gem_create_mmap_offset().
Daniel Vetterf74418a2016-03-30 11:40:52 +0200495 *
496 * This function is idempotent and handles an already allocated mmap offset
497 * transparently. Drivers do not need to check for this case.
Rob Clark367bbd42013-08-07 13:41:23 -0400498 */
499int
500drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size)
501{
502 struct drm_device *dev = obj->dev;
Rob Clark367bbd42013-08-07 13:41:23 -0400503
Daniel Vetterb04a5902013-12-11 14:24:46 +0100504 return drm_vma_offset_add(dev->vma_offset_manager, &obj->vma_node,
Rob Clark367bbd42013-08-07 13:41:23 -0400505 size / PAGE_SIZE);
506}
507EXPORT_SYMBOL(drm_gem_create_mmap_offset_size);
508
509/**
Rob Clark75ef8b32011-08-10 08:09:07 -0500510 * drm_gem_create_mmap_offset - create a fake mmap offset for an object
511 * @obj: obj in question
512 *
513 * GEM memory mapping works by handing back to userspace a fake mmap offset
514 * it can use in a subsequent mmap(2) call. The DRM core code then looks
515 * up the object based on the offset and sets up the various memory mapping
516 * structures.
517 *
518 * This routine allocates and attaches a fake offset for @obj.
Daniel Vetterf74418a2016-03-30 11:40:52 +0200519 *
520 * Drivers can call drm_gem_free_mmap_offset() before freeing @obj to release
521 * the fake offset again.
Rob Clark75ef8b32011-08-10 08:09:07 -0500522 */
Rob Clark367bbd42013-08-07 13:41:23 -0400523int drm_gem_create_mmap_offset(struct drm_gem_object *obj)
Rob Clark75ef8b32011-08-10 08:09:07 -0500524{
Rob Clark367bbd42013-08-07 13:41:23 -0400525 return drm_gem_create_mmap_offset_size(obj, obj->size);
Rob Clark75ef8b32011-08-10 08:09:07 -0500526}
527EXPORT_SYMBOL(drm_gem_create_mmap_offset);
528
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400529/**
530 * drm_gem_get_pages - helper to allocate backing pages for a GEM object
531 * from shmem
532 * @obj: obj in question
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200533 *
534 * This reads the page-array of the shmem-backing storage of the given gem
535 * object. An array of pages is returned. If a page is not allocated or
536 * swapped-out, this will allocate/swap-in the required pages. Note that the
537 * whole object is covered by the page-array and pinned in memory.
538 *
539 * Use drm_gem_put_pages() to release the array and unpin all pages.
540 *
541 * This uses the GFP-mask set on the shmem-mapping (see mapping_set_gfp_mask()).
542 * If you require other GFP-masks, you have to do those allocations yourself.
543 *
544 * Note that you are not allowed to change gfp-zones during runtime. That is,
545 * shmem_read_mapping_page_gfp() must be called with the same gfp_zone(gfp) as
546 * set during initialization. If you have special zone constraints, set them
Jordan Crouse5b9fbff2017-10-03 09:38:10 -0600547 * after drm_gem_object_init() via mapping_set_gfp_mask(). shmem-core takes care
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200548 * to keep pages in the required zone during swap-in.
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400549 */
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200550struct page **drm_gem_get_pages(struct drm_gem_object *obj)
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400551{
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400552 struct address_space *mapping;
553 struct page *p, **pages;
554 int i, npages;
555
556 /* This is the shared memory object that backs the GEM resource */
Al Viro93c76a32015-12-04 23:45:44 -0500557 mapping = obj->filp->f_mapping;
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400558
559 /* We already BUG_ON() for non-page-aligned sizes in
560 * drm_gem_object_init(), so we should never hit this unless
561 * driver author is doing something really wrong:
562 */
563 WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0);
564
565 npages = obj->size >> PAGE_SHIFT;
566
Michal Hocko20981052017-05-17 14:23:12 +0200567 pages = kvmalloc_array(npages, sizeof(struct page *), GFP_KERNEL);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400568 if (pages == NULL)
569 return ERR_PTR(-ENOMEM);
570
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400571 for (i = 0; i < npages; i++) {
David Herrmann0cdbe8a2014-05-25 12:59:47 +0200572 p = shmem_read_mapping_page(mapping, i);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400573 if (IS_ERR(p))
574 goto fail;
575 pages[i] = p;
576
David Herrmann21230002014-05-25 14:34:08 +0200577 /* Make sure shmem keeps __GFP_DMA32 allocated pages in the
578 * correct region during swapin. Note that this requires
579 * __GFP_DMA32 to be set in mapping_gfp_mask(inode->i_mapping)
580 * so shmem can relocate pages during swapin if required.
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400581 */
Michal Hockoc62d2552015-11-06 16:28:49 -0800582 BUG_ON(mapping_gfp_constraint(mapping, __GFP_DMA32) &&
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400583 (page_to_pfn(p) >= 0x00100000UL));
584 }
585
586 return pages;
587
588fail:
589 while (i--)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300590 put_page(pages[i]);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400591
Michal Hocko20981052017-05-17 14:23:12 +0200592 kvfree(pages);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400593 return ERR_CAST(p);
594}
595EXPORT_SYMBOL(drm_gem_get_pages);
596
597/**
598 * drm_gem_put_pages - helper to free backing pages for a GEM object
599 * @obj: obj in question
600 * @pages: pages to free
601 * @dirty: if true, pages will be marked as dirty
602 * @accessed: if true, the pages will be marked as accessed
603 */
604void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
605 bool dirty, bool accessed)
606{
607 int i, npages;
608
609 /* We already BUG_ON() for non-page-aligned sizes in
610 * drm_gem_object_init(), so we should never hit this unless
611 * driver author is doing something really wrong:
612 */
613 WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0);
614
615 npages = obj->size >> PAGE_SHIFT;
616
617 for (i = 0; i < npages; i++) {
618 if (dirty)
619 set_page_dirty(pages[i]);
620
621 if (accessed)
622 mark_page_accessed(pages[i]);
623
624 /* Undo the reference we took when populating the table */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300625 put_page(pages[i]);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400626 }
627
Michal Hocko20981052017-05-17 14:23:12 +0200628 kvfree(pages);
Rob Clarkbcc5c9d2013-08-07 13:41:24 -0400629}
630EXPORT_SYMBOL(drm_gem_put_pages);
631
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200632/**
633 * drm_gem_object_lookup - look up a GEM object from it's handle
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200634 * @filp: DRM file private date
635 * @handle: userspace handle
636 *
637 * Returns:
638 *
639 * A reference to the object named by the handle if such exists on @filp, NULL
640 * otherwise.
641 */
Eric Anholt673a3942008-07-30 12:06:12 -0700642struct drm_gem_object *
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100643drm_gem_object_lookup(struct drm_file *filp, u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700644{
645 struct drm_gem_object *obj;
646
647 spin_lock(&filp->table_lock);
648
649 /* Check if we currently have a reference on the object */
650 obj = idr_find(&filp->object_idr, handle);
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100651 if (obj)
Thierry Redinge6b62712017-02-28 15:46:41 +0100652 drm_gem_object_get(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700653
654 spin_unlock(&filp->table_lock);
655
656 return obj;
657}
658EXPORT_SYMBOL(drm_gem_object_lookup);
659
660/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100661 * drm_gem_close_ioctl - implementation of the GEM_CLOSE ioctl
662 * @dev: drm_device
663 * @data: ioctl data
664 * @file_priv: drm file-private structure
665 *
Eric Anholt673a3942008-07-30 12:06:12 -0700666 * Releases the handle to an mm object.
667 */
668int
669drm_gem_close_ioctl(struct drm_device *dev, void *data,
670 struct drm_file *file_priv)
671{
672 struct drm_gem_close *args = data;
673 int ret;
674
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200675 if (!drm_core_check_feature(dev, DRIVER_GEM))
Chris Wilson69fdf422018-09-13 20:20:50 +0100676 return -EOPNOTSUPP;
Eric Anholt673a3942008-07-30 12:06:12 -0700677
678 ret = drm_gem_handle_delete(file_priv, args->handle);
679
680 return ret;
681}
682
683/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100684 * drm_gem_flink_ioctl - implementation of the GEM_FLINK ioctl
685 * @dev: drm_device
686 * @data: ioctl data
687 * @file_priv: drm file-private structure
688 *
Eric Anholt673a3942008-07-30 12:06:12 -0700689 * Create a global name for an object, returning the name.
690 *
691 * Note that the name does not hold a reference; when the object
692 * is freed, the name goes away.
693 */
694int
695drm_gem_flink_ioctl(struct drm_device *dev, void *data,
696 struct drm_file *file_priv)
697{
698 struct drm_gem_flink *args = data;
699 struct drm_gem_object *obj;
700 int ret;
701
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200702 if (!drm_core_check_feature(dev, DRIVER_GEM))
Chris Wilson69fdf422018-09-13 20:20:50 +0100703 return -EOPNOTSUPP;
Eric Anholt673a3942008-07-30 12:06:12 -0700704
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100705 obj = drm_gem_object_lookup(file_priv, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -0700706 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100707 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700708
Daniel Vettercd4f0132013-08-15 00:02:44 +0200709 mutex_lock(&dev->object_name_lock);
Daniel Vettera8e11d12013-08-15 00:02:37 +0200710 /* prevent races with concurrent gem_close. */
711 if (obj->handle_count == 0) {
712 ret = -ENOENT;
713 goto err;
714 }
715
Chris Wilson8d59bae2009-02-11 14:26:28 +0000716 if (!obj->name) {
Chris Wilson0f646422016-01-04 10:11:01 +0000717 ret = idr_alloc(&dev->object_name_idr, obj, 1, 0, GFP_KERNEL);
Tejun Heo2e928812013-02-27 17:04:08 -0800718 if (ret < 0)
Chris Wilson8d59bae2009-02-11 14:26:28 +0000719 goto err;
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900720
721 obj->name = ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700722 }
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000723
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900724 args->name = (uint64_t) obj->name;
725 ret = 0;
726
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000727err:
Daniel Vettercd4f0132013-08-15 00:02:44 +0200728 mutex_unlock(&dev->object_name_lock);
Thierry Redinge6b62712017-02-28 15:46:41 +0100729 drm_gem_object_put_unlocked(obj);
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000730 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700731}
732
733/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100734 * drm_gem_open - implementation of the GEM_OPEN ioctl
735 * @dev: drm_device
736 * @data: ioctl data
737 * @file_priv: drm file-private structure
738 *
Eric Anholt673a3942008-07-30 12:06:12 -0700739 * Open an object using the global name, returning a handle and the size.
740 *
741 * This handle (of course) holds a reference to the object, so the object
742 * will not go away until the handle is deleted.
743 */
744int
745drm_gem_open_ioctl(struct drm_device *dev, void *data,
746 struct drm_file *file_priv)
747{
748 struct drm_gem_open *args = data;
749 struct drm_gem_object *obj;
750 int ret;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300751 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700752
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200753 if (!drm_core_check_feature(dev, DRIVER_GEM))
Chris Wilson69fdf422018-09-13 20:20:50 +0100754 return -EOPNOTSUPP;
Eric Anholt673a3942008-07-30 12:06:12 -0700755
Daniel Vettercd4f0132013-08-15 00:02:44 +0200756 mutex_lock(&dev->object_name_lock);
Eric Anholt673a3942008-07-30 12:06:12 -0700757 obj = idr_find(&dev->object_name_idr, (int) args->name);
Daniel Vetter20228c42013-08-15 00:02:45 +0200758 if (obj) {
Thierry Redinge6b62712017-02-28 15:46:41 +0100759 drm_gem_object_get(obj);
Daniel Vetter20228c42013-08-15 00:02:45 +0200760 } else {
761 mutex_unlock(&dev->object_name_lock);
Eric Anholt673a3942008-07-30 12:06:12 -0700762 return -ENOENT;
Daniel Vetter20228c42013-08-15 00:02:45 +0200763 }
Eric Anholt673a3942008-07-30 12:06:12 -0700764
Daniel Vetter20228c42013-08-15 00:02:45 +0200765 /* drm_gem_handle_create_tail unlocks dev->object_name_lock. */
766 ret = drm_gem_handle_create_tail(file_priv, obj, &handle);
Thierry Redinge6b62712017-02-28 15:46:41 +0100767 drm_gem_object_put_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700768 if (ret)
769 return ret;
770
771 args->handle = handle;
772 args->size = obj->size;
773
774 return 0;
775}
776
777/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100778 * gem_gem_open - initalizes GEM file-private structures at devnode open time
779 * @dev: drm_device which is being opened by userspace
780 * @file_private: drm file-private structure to set up
781 *
Eric Anholt673a3942008-07-30 12:06:12 -0700782 * Called at device open time, sets up the structure for handling refcounting
783 * of mm objects.
784 */
785void
786drm_gem_open(struct drm_device *dev, struct drm_file *file_private)
787{
Chris Wilsone86584c2018-02-12 14:55:33 +0000788 idr_init_base(&file_private->object_idr, 1);
Eric Anholt673a3942008-07-30 12:06:12 -0700789 spin_lock_init(&file_private->table_lock);
790}
791
Eric Anholt673a3942008-07-30 12:06:12 -0700792/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100793 * drm_gem_release - release file-private GEM resources
794 * @dev: drm_device which is being closed by userspace
795 * @file_private: drm file-private structure to clean up
796 *
Eric Anholt673a3942008-07-30 12:06:12 -0700797 * Called at close time when the filp is going away.
798 *
799 * Releases any remaining references on objects by this filp.
800 */
801void
802drm_gem_release(struct drm_device *dev, struct drm_file *file_private)
803{
Eric Anholt673a3942008-07-30 12:06:12 -0700804 idr_for_each(&file_private->object_idr,
Ben Skeggs304eda32011-06-09 00:24:59 +0000805 &drm_gem_object_release_handle, file_private);
Eric Anholt673a3942008-07-30 12:06:12 -0700806 idr_destroy(&file_private->object_idr);
Eric Anholt673a3942008-07-30 12:06:12 -0700807}
808
Daniel Vetterf74418a2016-03-30 11:40:52 +0200809/**
810 * drm_gem_object_release - release GEM buffer object resources
811 * @obj: GEM buffer object
812 *
813 * This releases any structures and resources used by @obj and is the invers of
814 * drm_gem_object_init().
815 */
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000816void
817drm_gem_object_release(struct drm_gem_object *obj)
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000818{
Daniel Vetter319c9332013-08-15 00:02:46 +0200819 WARN_ON(obj->dma_buf);
820
Alan Cox62cb70112011-06-07 14:17:51 +0100821 if (obj->filp)
David Herrmann16d28312014-01-20 20:07:49 +0100822 fput(obj->filp);
David Herrmann77472342014-01-20 20:05:43 +0100823
824 drm_gem_free_mmap_offset(obj);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000825}
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000826EXPORT_SYMBOL(drm_gem_object_release);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000827
Eric Anholt673a3942008-07-30 12:06:12 -0700828/**
Daniel Vetter89d61fc2014-01-21 12:39:00 +0100829 * drm_gem_object_free - free a GEM object
830 * @kref: kref of the object to free
831 *
Eric Anholt673a3942008-07-30 12:06:12 -0700832 * Called after the last reference to the object has been lost.
Daniel Vetter940eba22017-01-25 07:26:46 +0100833 * Must be called holding &drm_device.struct_mutex.
Eric Anholt673a3942008-07-30 12:06:12 -0700834 *
835 * Frees the object
836 */
837void
838drm_gem_object_free(struct kref *kref)
839{
Daniel Vetter6ff774b2015-10-15 09:36:26 +0200840 struct drm_gem_object *obj =
841 container_of(kref, struct drm_gem_object, refcount);
Eric Anholt673a3942008-07-30 12:06:12 -0700842 struct drm_device *dev = obj->dev;
843
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100844 if (obj->funcs) {
845 obj->funcs->free(obj);
846 } else if (dev->driver->gem_free_object_unlocked) {
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200847 dev->driver->gem_free_object_unlocked(obj);
Daniel Vetter6d3e7fd2016-05-04 14:10:44 +0200848 } else if (dev->driver->gem_free_object) {
849 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
850
Eric Anholt673a3942008-07-30 12:06:12 -0700851 dev->driver->gem_free_object(obj);
Daniel Vetter6d3e7fd2016-05-04 14:10:44 +0200852 }
Eric Anholt673a3942008-07-30 12:06:12 -0700853}
854EXPORT_SYMBOL(drm_gem_object_free);
855
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200856/**
Thierry Redinge6b62712017-02-28 15:46:41 +0100857 * drm_gem_object_put_unlocked - drop a GEM buffer object reference
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200858 * @obj: GEM buffer object
859 *
860 * This releases a reference to @obj. Callers must not hold the
Daniel Vetter940eba22017-01-25 07:26:46 +0100861 * &drm_device.struct_mutex lock when calling this function.
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200862 *
Thierry Redinge6b62712017-02-28 15:46:41 +0100863 * See also __drm_gem_object_put().
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200864 */
865void
Thierry Redinge6b62712017-02-28 15:46:41 +0100866drm_gem_object_put_unlocked(struct drm_gem_object *obj)
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200867{
868 struct drm_device *dev;
869
870 if (!obj)
871 return;
872
873 dev = obj->dev;
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200874
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100875 if (dev->driver->gem_free_object) {
Daniel Vetter3379c042017-07-15 11:53:28 +0200876 might_lock(&dev->struct_mutex);
877 if (kref_put_mutex(&obj->refcount, drm_gem_object_free,
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200878 &dev->struct_mutex))
Daniel Vetter3379c042017-07-15 11:53:28 +0200879 mutex_unlock(&dev->struct_mutex);
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100880 } else {
881 kref_put(&obj->refcount, drm_gem_object_free);
Daniel Vetter3379c042017-07-15 11:53:28 +0200882 }
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200883}
Thierry Redinge6b62712017-02-28 15:46:41 +0100884EXPORT_SYMBOL(drm_gem_object_put_unlocked);
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200885
886/**
Thierry Redinge6b62712017-02-28 15:46:41 +0100887 * drm_gem_object_put - release a GEM buffer object reference
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200888 * @obj: GEM buffer object
889 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100890 * This releases a reference to @obj. Callers must hold the
891 * &drm_device.struct_mutex lock when calling this function, even when the
892 * driver doesn't use &drm_device.struct_mutex for anything.
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200893 *
894 * For drivers not encumbered with legacy locking use
Thierry Redinge6b62712017-02-28 15:46:41 +0100895 * drm_gem_object_put_unlocked() instead.
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200896 */
897void
Thierry Redinge6b62712017-02-28 15:46:41 +0100898drm_gem_object_put(struct drm_gem_object *obj)
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200899{
900 if (obj) {
901 WARN_ON(!mutex_is_locked(&obj->dev->struct_mutex));
902
903 kref_put(&obj->refcount, drm_gem_object_free);
904 }
905}
Thierry Redinge6b62712017-02-28 15:46:41 +0100906EXPORT_SYMBOL(drm_gem_object_put);
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200907
908/**
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200909 * drm_gem_vm_open - vma->ops->open implementation for GEM
910 * @vma: VM area structure
911 *
912 * This function implements the #vm_operations_struct open() callback for GEM
913 * drivers. This must be used together with drm_gem_vm_close().
914 */
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800915void drm_gem_vm_open(struct vm_area_struct *vma)
916{
917 struct drm_gem_object *obj = vma->vm_private_data;
918
Thierry Redinge6b62712017-02-28 15:46:41 +0100919 drm_gem_object_get(obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800920}
921EXPORT_SYMBOL(drm_gem_vm_open);
922
Daniel Vetterdf2e0902015-10-22 19:11:29 +0200923/**
924 * drm_gem_vm_close - vma->ops->close implementation for GEM
925 * @vma: VM area structure
926 *
927 * This function implements the #vm_operations_struct close() callback for GEM
928 * drivers. This must be used together with drm_gem_vm_open().
929 */
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800930void drm_gem_vm_close(struct vm_area_struct *vma)
931{
932 struct drm_gem_object *obj = vma->vm_private_data;
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800933
Thierry Redinge6b62712017-02-28 15:46:41 +0100934 drm_gem_object_put_unlocked(obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800935}
936EXPORT_SYMBOL(drm_gem_vm_close);
937
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200938/**
939 * drm_gem_mmap_obj - memory map a GEM object
940 * @obj: the GEM object to map
941 * @obj_size: the object size to be mapped, in bytes
942 * @vma: VMA for the area to be mapped
943 *
944 * Set up the VMA to prepare mapping of the GEM object using the gem_vm_ops
945 * provided by the driver. Depending on their requirements, drivers can either
946 * provide a fault handler in their gem_vm_ops (in which case any accesses to
947 * the object will be trapped, to perform migration, GTT binding, surface
948 * register allocation, or performance monitoring), or mmap the buffer memory
949 * synchronously after calling drm_gem_mmap_obj.
950 *
951 * This function is mainly intended to implement the DMABUF mmap operation, when
952 * the GEM object is not looked up based on its fake offset. To implement the
953 * DRM mmap operation, drivers should use the drm_gem_mmap() function.
954 *
David Herrmannca481c92013-08-25 18:28:58 +0200955 * drm_gem_mmap_obj() assumes the user is granted access to the buffer while
956 * drm_gem_mmap() prevents unprivileged users from mapping random objects. So
957 * callers must verify access restrictions before calling this helper.
958 *
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200959 * Return 0 or success or -EINVAL if the object size is smaller than the VMA
960 * size, or if no gem_vm_ops are provided.
961 */
962int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
963 struct vm_area_struct *vma)
964{
965 struct drm_device *dev = obj->dev;
966
967 /* Check for valid size. */
968 if (obj_size < vma->vm_end - vma->vm_start)
969 return -EINVAL;
970
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100971 if (obj->funcs && obj->funcs->vm_ops)
972 vma->vm_ops = obj->funcs->vm_ops;
973 else if (dev->driver->gem_vm_ops)
974 vma->vm_ops = dev->driver->gem_vm_ops;
975 else
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200976 return -EINVAL;
977
978 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200979 vma->vm_private_data = obj;
David Herrmann16d28312014-01-20 20:07:49 +0100980 vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
Tom Lendacky95cf9262017-07-17 16:10:26 -0500981 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200982
983 /* Take a ref for this mapping of the object, so that the fault
984 * handler can dereference the mmap offset's pointer to the object.
985 * This reference is cleaned up by the corresponding vm_close
986 * (which should happen whether the vma was created by this call, or
987 * by a vm_open due to mremap or partial unmap or whatever).
988 */
Thierry Redinge6b62712017-02-28 15:46:41 +0100989 drm_gem_object_get(obj);
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200990
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200991 return 0;
992}
993EXPORT_SYMBOL(drm_gem_mmap_obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800994
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800995/**
996 * drm_gem_mmap - memory map routine for GEM objects
997 * @filp: DRM file pointer
998 * @vma: VMA for the area to be mapped
999 *
1000 * If a driver supports GEM object mapping, mmap calls on the DRM file
1001 * descriptor will end up here.
1002 *
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001003 * Look up the GEM object based on the offset passed in (vma->vm_pgoff will
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001004 * contain the fake offset we created when the GTT map ioctl was called on
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +02001005 * the object) and map it with a call to drm_gem_mmap_obj().
David Herrmannca481c92013-08-25 18:28:58 +02001006 *
1007 * If the caller is not granted access to the buffer object, the mmap will fail
1008 * with EACCES. Please see the vma manager for more information.
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001009 */
1010int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)
1011{
1012 struct drm_file *priv = filp->private_data;
1013 struct drm_device *dev = priv->minor->dev;
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001014 struct drm_gem_object *obj = NULL;
David Herrmann0de23972013-07-24 21:07:52 +02001015 struct drm_vma_offset_node *node;
David Herrmanna8469aa2014-01-20 20:15:38 +01001016 int ret;
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001017
Daniel Vetterc07dcd62017-08-02 13:56:02 +02001018 if (drm_dev_is_unplugged(dev))
Dave Airlie2c07a212012-02-20 14:18:07 +00001019 return -ENODEV;
1020
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001021 drm_vma_offset_lock_lookup(dev->vma_offset_manager);
1022 node = drm_vma_offset_exact_lookup_locked(dev->vma_offset_manager,
1023 vma->vm_pgoff,
1024 vma_pages(vma));
1025 if (likely(node)) {
1026 obj = container_of(node, struct drm_gem_object, vma_node);
1027 /*
1028 * When the object is being freed, after it hits 0-refcnt it
1029 * proceeds to tear down the object. In the process it will
1030 * attempt to remove the VMA offset and so acquire this
1031 * mgr->vm_lock. Therefore if we find an object with a 0-refcnt
1032 * that matches our range, we know it is in the process of being
1033 * destroyed and will be freed as soon as we release the lock -
1034 * so we have to check for the 0-refcnted object and treat it as
1035 * invalid.
1036 */
1037 if (!kref_get_unless_zero(&obj->refcount))
1038 obj = NULL;
1039 }
1040 drm_vma_offset_unlock_lookup(dev->vma_offset_manager);
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001041
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001042 if (!obj)
Daniel Vetter197633b2014-09-23 15:46:48 +02001043 return -EINVAL;
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001044
David Herrmannd9a1f0b2016-09-01 14:48:33 +02001045 if (!drm_vma_node_is_allowed(node, priv)) {
Thierry Redinge6b62712017-02-28 15:46:41 +01001046 drm_gem_object_put_unlocked(obj);
David Herrmannca481c92013-08-25 18:28:58 +02001047 return -EACCES;
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001048 }
1049
Chris Wilson3e977ac2018-07-12 19:53:13 +01001050 if (node->readonly) {
1051 if (vma->vm_flags & VM_WRITE) {
1052 drm_gem_object_put_unlocked(obj);
1053 return -EINVAL;
1054 }
1055
1056 vma->vm_flags &= ~VM_MAYWRITE;
1057 }
1058
Daniel Vetter2225cfe2015-10-15 11:33:43 +02001059 ret = drm_gem_mmap_obj(obj, drm_vma_node_size(node) << PAGE_SHIFT,
1060 vma);
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001061
Thierry Redinge6b62712017-02-28 15:46:41 +01001062 drm_gem_object_put_unlocked(obj);
Jesse Barnesa2c0a972008-11-05 10:31:53 -08001063
1064 return ret;
1065}
1066EXPORT_SYMBOL(drm_gem_mmap);
Noralf Trønnes45d58b42017-11-07 20:13:40 +01001067
1068void drm_gem_print_info(struct drm_printer *p, unsigned int indent,
1069 const struct drm_gem_object *obj)
1070{
1071 drm_printf_indent(p, indent, "name=%d\n", obj->name);
1072 drm_printf_indent(p, indent, "refcount=%u\n",
1073 kref_read(&obj->refcount));
1074 drm_printf_indent(p, indent, "start=%08lx\n",
1075 drm_vma_node_start(&obj->vma_node));
1076 drm_printf_indent(p, indent, "size=%zu\n", obj->size);
1077 drm_printf_indent(p, indent, "imported=%s\n",
1078 obj->import_attach ? "yes" : "no");
1079
Noralf Trønnesb39b5392018-11-10 15:56:45 +01001080 if (obj->funcs && obj->funcs->print_info)
1081 obj->funcs->print_info(p, indent, obj);
1082 else if (obj->dev->driver->gem_print_info)
Noralf Trønnes45d58b42017-11-07 20:13:40 +01001083 obj->dev->driver->gem_print_info(p, indent, obj);
1084}
Noralf Trønnesb39b5392018-11-10 15:56:45 +01001085
1086/**
1087 * drm_gem_pin - Pin backing buffer in memory
1088 * @obj: GEM object
1089 *
1090 * Make sure the backing buffer is pinned in memory.
1091 *
1092 * Returns:
1093 * 0 on success or a negative error code on failure.
1094 */
1095int drm_gem_pin(struct drm_gem_object *obj)
1096{
1097 if (obj->funcs && obj->funcs->pin)
1098 return obj->funcs->pin(obj);
1099 else if (obj->dev->driver->gem_prime_pin)
1100 return obj->dev->driver->gem_prime_pin(obj);
1101 else
1102 return 0;
1103}
1104EXPORT_SYMBOL(drm_gem_pin);
1105
1106/**
1107 * drm_gem_unpin - Unpin backing buffer from memory
1108 * @obj: GEM object
1109 *
1110 * Relax the requirement that the backing buffer is pinned in memory.
1111 */
1112void drm_gem_unpin(struct drm_gem_object *obj)
1113{
1114 if (obj->funcs && obj->funcs->unpin)
1115 obj->funcs->unpin(obj);
1116 else if (obj->dev->driver->gem_prime_unpin)
1117 obj->dev->driver->gem_prime_unpin(obj);
1118}
1119EXPORT_SYMBOL(drm_gem_unpin);
1120
1121/**
1122 * drm_gem_vmap - Map buffer into kernel virtual address space
1123 * @obj: GEM object
1124 *
1125 * Returns:
1126 * A virtual pointer to a newly created GEM object or an ERR_PTR-encoded negative
1127 * error code on failure.
1128 */
1129void *drm_gem_vmap(struct drm_gem_object *obj)
1130{
1131 void *vaddr;
1132
1133 if (obj->funcs && obj->funcs->vmap)
1134 vaddr = obj->funcs->vmap(obj);
1135 else if (obj->dev->driver->gem_prime_vmap)
1136 vaddr = obj->dev->driver->gem_prime_vmap(obj);
1137 else
1138 vaddr = ERR_PTR(-EOPNOTSUPP);
1139
1140 if (!vaddr)
1141 vaddr = ERR_PTR(-ENOMEM);
1142
1143 return vaddr;
1144}
1145EXPORT_SYMBOL(drm_gem_vmap);
1146
1147/**
1148 * drm_gem_vunmap - Remove buffer mapping from kernel virtual address space
1149 * @obj: GEM object
1150 * @vaddr: Virtual address (can be NULL)
1151 */
1152void drm_gem_vunmap(struct drm_gem_object *obj, void *vaddr)
1153{
1154 if (!vaddr)
1155 return;
1156
1157 if (obj->funcs && obj->funcs->vunmap)
1158 obj->funcs->vunmap(obj, vaddr);
1159 else if (obj->dev->driver->gem_prime_vunmap)
1160 obj->dev->driver->gem_prime_vunmap(obj, vaddr);
1161}
1162EXPORT_SYMBOL(drm_gem_vunmap);