2016-01-11 22:40:55 +01:00
/*
2005-04-16 15:20:36 -07:00
* \ author Rickard E . ( Rik ) Faith < faith @ valinux . com >
* \ author Daryll Strauss < daryll @ valinux . com >
* \ author Gareth Hughes < gareth @ valinux . com >
*/
/*
* Created : Mon Jan 4 08 : 58 : 31 1999 by faith @ valinux . com
*
* Copyright 1999 Precision Insight , Inc . , Cedar Park , Texas .
* Copyright 2000 VA Linux Systems , Inc . , Sunnyvale , California .
* All Rights Reserved .
*
* Permission is hereby granted , free of charge , to any person obtaining a
* copy of this software and associated documentation files ( the " Software " ) ,
* to deal in the Software without restriction , including without limitation
* the rights to use , copy , modify , merge , publish , distribute , sublicense ,
* and / or sell copies of the Software , and to permit persons to whom the
* Software is furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice ( including the next
* paragraph ) shall be included in all copies or substantial portions of the
* Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* VA LINUX SYSTEMS AND / OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM , DAMAGES OR
* OTHER LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE ,
* ARISING FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE .
*/
2019-11-07 18:05:58 +00:00
# include <linux/anon_inodes.h>
2019-05-26 19:35:35 +02:00
# include <linux/dma-fence.h>
2019-11-07 18:05:58 +00:00
# include <linux/file.h>
2019-05-26 19:35:35 +02:00
# include <linux/module.h>
# include <linux/pci.h>
2005-04-16 15:20:36 -07:00
# include <linux/poll.h>
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 17:04:11 +09:00
# include <linux/slab.h>
2017-03-08 15:12:42 +01:00
2018-07-03 18:03:47 +02:00
# include <drm/drm_client.h>
2019-05-26 19:35:35 +02:00
# include <drm/drm_drv.h>
2017-03-08 15:12:42 +01:00
# include <drm/drm_file.h>
2023-05-24 08:59:35 -07:00
# include <drm/drm_gem.h>
2019-05-26 19:35:35 +02:00
# include <drm/drm_print.h>
2017-03-08 15:12:42 +01:00
2016-06-21 10:54:13 +02:00
# include "drm_crtc_internal.h"
2019-05-26 19:35:35 +02:00
# include "drm_internal.h"
# include "drm_legacy.h"
2005-04-16 15:20:36 -07:00
2014-02-24 15:53:25 +01:00
/* from BKL pushdown */
2010-07-10 23:51:39 +02:00
DEFINE_MUTEX ( drm_global_mutex ) ;
2020-02-04 16:01:46 +01:00
bool drm_dev_needs_global_mutex ( struct drm_device * dev )
{
/*
* Legacy drivers rely on all kinds of BKL locking semantics , don ' t
* bother . They also still need BKL locking for their ioctls , so better
* safe than sorry .
*/
if ( drm_core_check_feature ( dev , DRIVER_LEGACY ) )
return true ;
/*
* The deprecated - > load callback must be called after the driver is
* already registered . This means such drivers rely on the BKL to make
* sure an open can ' t proceed until the driver is actually fully set up .
* Similar hilarity holds for the unload callback .
*/
if ( dev - > driver - > load | | dev - > driver - > unload )
return true ;
/*
* Drivers with the lastclose callback assume that it ' s synchronized
* against concurrent opens , which again needs the BKL . The proper fix
* is to use the drm_client infrastructure with proper locking for each
* client .
*/
if ( dev - > driver - > lastclose )
return true ;
return false ;
}
2016-01-11 22:40:55 +01:00
/**
* DOC : file operations
*
* Drivers must define the file operations structure that forms the DRM
* userspace API entry point , even though most of those operations are
2017-03-08 15:12:44 +01:00
* implemented in the DRM core . The resulting & struct file_operations must be
* stored in the & drm_driver . fops field . The mandatory functions are drm_open ( ) ,
2016-11-01 17:40:44 +02:00
* drm_read ( ) , drm_ioctl ( ) and drm_compat_ioctl ( ) if CONFIG_COMPAT is enabled
2017-03-08 15:12:44 +01:00
* Note that drm_compat_ioctl will be NULL if CONFIG_COMPAT = n , so there ' s no
* need to sprinkle # ifdef into the code . Drivers which implement private ioctls
* that require 32 / 64 bit compatibility support must provide their own
* & file_operations . compat_ioctl handler that processes private ioctls and calls
* drm_compat_ioctl ( ) for core ioctls .
2016-01-11 22:40:55 +01:00
*
* In addition drm_read ( ) and drm_poll ( ) provide support for DRM events . DRM
* events are a generic and extensible means to send asynchronous events to
* userspace through the file descriptor . They are used to send vblank event and
* page flip completions by the KMS API . But drivers can also use it for their
* own needs , e . g . to signal completion of rendering .
*
2017-03-08 15:12:44 +01:00
* For the driver - side event interface see drm_event_reserve_init ( ) and
* drm_send_event ( ) as the main starting points .
*
2016-01-11 22:40:55 +01:00
* The memory mapping implementation will vary depending on how the driver
* manages memory . Legacy drivers will use the deprecated drm_legacy_mmap ( )
* function , modern drivers should use one of the provided memory - manager
2020-11-23 12:56:46 +01:00
* specific implementations . For GEM - based drivers this is drm_gem_mmap ( ) .
2016-01-11 22:40:55 +01:00
*
* No other file operations are supported by the DRM userspace API . Overall the
2017-05-31 11:20:45 +02:00
* following is an example & file_operations structure : :
2016-01-11 22:40:55 +01:00
*
* static const example_drm_fops = {
* . owner = THIS_MODULE ,
* . open = drm_open ,
* . release = drm_release ,
* . unlocked_ioctl = drm_ioctl ,
2016-11-01 17:40:44 +02:00
* . compat_ioctl = drm_compat_ioctl , // NULL if CONFIG_COMPAT=n
2016-01-11 22:40:55 +01:00
* . poll = drm_poll ,
* . read = drm_read ,
* . llseek = no_llseek ,
* . mmap = drm_gem_mmap ,
* } ;
2017-03-08 15:12:44 +01:00
*
drm/gem: Add DEFINE_DRM_GEM_FOPS
Sadly there's only 1 driver which can use it, everyone else is special
for some reason:
- gma500 has a horrible runtime PM ioctl wrapper that probably doesn't
really work but meh.
- i915 needs special compat_ioctl handler because regrets.
- arcgpu needs to fixup the pgprot because (no idea why it can't do
that in the fault handler like everyone else).
- tegra does even worse stuff with pgprot
- udl does something with vm_flags too ...
- cma helpers, etnaviv, mtk, msm, rockchip, omap all implement some
variation on prefaulting.
- exynos is exynos, I got lost in the midlayers.
- vc4 has to reinvent half of cma helpers because those are too much
midlayer, plus vm_flags dances.
- vgem also seems unhappy with the default vm_flags.
So pretty sad divergence and I'm sure we could do better, but not
really an idea. Oh well, maybe this macro here helps to encourage more
consistency at least going forward.
Reviewed-by: Sean Paul <seanpaul@chromium.org>
Reviewed-by: Liviu Dudau <Liviu.Dudau@arm.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170308141257.12119-25-daniel.vetter@ffwll.ch
2017-03-08 15:12:57 +01:00
* For plain GEM based drivers there is the DEFINE_DRM_GEM_FOPS ( ) macro , and for
2022-08-02 02:04:03 +02:00
* DMA based drivers there is the DEFINE_DRM_GEM_DMA_FOPS ( ) macro to make this
drm/gem: Add DEFINE_DRM_GEM_FOPS
Sadly there's only 1 driver which can use it, everyone else is special
for some reason:
- gma500 has a horrible runtime PM ioctl wrapper that probably doesn't
really work but meh.
- i915 needs special compat_ioctl handler because regrets.
- arcgpu needs to fixup the pgprot because (no idea why it can't do
that in the fault handler like everyone else).
- tegra does even worse stuff with pgprot
- udl does something with vm_flags too ...
- cma helpers, etnaviv, mtk, msm, rockchip, omap all implement some
variation on prefaulting.
- exynos is exynos, I got lost in the midlayers.
- vc4 has to reinvent half of cma helpers because those are too much
midlayer, plus vm_flags dances.
- vgem also seems unhappy with the default vm_flags.
So pretty sad divergence and I'm sure we could do better, but not
really an idea. Oh well, maybe this macro here helps to encourage more
consistency at least going forward.
Reviewed-by: Sean Paul <seanpaul@chromium.org>
Reviewed-by: Liviu Dudau <Liviu.Dudau@arm.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170308141257.12119-25-daniel.vetter@ffwll.ch
2017-03-08 15:12:57 +01:00
* simpler .
2017-05-31 11:20:45 +02:00
*
* The driver ' s & file_operations must be stored in & drm_driver . fops .
*
* For driver - private IOCTL handling see the more detailed discussion in
* : ref : ` IOCTL support in the userland interfaces chapter < drm_driver_ioctl > ` .
2016-01-11 22:40:55 +01:00
*/
2018-06-18 16:17:28 +02:00
/**
* drm_file_alloc - allocate file context
* @ minor : minor to allocate on
*
* This allocates a new DRM file context . It is not linked into any context and
* can be used by the caller freely . Note that the context keeps a pointer to
* @ minor , so it must be freed before @ minor is .
*
* RETURNS :
* Pointer to newly allocated context , ERR_PTR on failure .
*/
struct drm_file * drm_file_alloc ( struct drm_minor * minor )
{
2023-05-24 08:59:32 -07:00
static atomic64_t ident = ATOMIC_INIT ( 0 ) ;
2018-06-18 16:17:28 +02:00
struct drm_device * dev = minor - > dev ;
struct drm_file * file ;
int ret ;
file = kzalloc ( sizeof ( * file ) , GFP_KERNEL ) ;
if ( ! file )
return ERR_PTR ( - ENOMEM ) ;
2023-05-24 08:59:32 -07:00
/* Get a unique identifier for fdinfo: */
file - > client_id = atomic64_inc_return ( & ident ) ;
drm: Update file owner during use
With the typical model where the display server opens the file descriptor
and then hands it over to the client(*), we were showing stale data in
debugfs.
Fix it by updating the drm_file->pid on ioctl access from a different
process.
The field is also made RCU protected to allow for lockless readers. Update
side is protected with dev->filelist_mutex.
Before:
$ cat /sys/kernel/debug/dri/0/clients
command pid dev master a uid magic
Xorg 2344 0 y y 0 0
Xorg 2344 0 n y 0 2
Xorg 2344 0 n y 0 3
Xorg 2344 0 n y 0 4
After:
$ cat /sys/kernel/debug/dri/0/clients
command tgid dev master a uid magic
Xorg 830 0 y y 0 0
xfce4-session 880 0 n y 0 1
xfwm4 943 0 n y 0 2
neverball 1095 0 n y 0 3
*)
More detailed and historically accurate description of various handover
implementation kindly provided by Emil Velikov:
"""
The traditional model, the server was the orchestrator managing the
primary device node. From the fd, to the master status and
authentication. But looking at the fd alone, this has varied across
the years.
IIRC in the DRI1 days, Xorg (libdrm really) would have a list of open
fd(s) and reuse those whenever needed, DRI2 the client was responsible
for open() themselves and with DRI3 the fd was passed to the client.
Around the inception of DRI3 and systemd-logind, the latter became
another possible orchestrator. Whereby Xorg and Wayland compositors
could ask it for the fd. For various reasons (hysterical and genuine
ones) Xorg has a fallback path going the open(), whereas Wayland
compositors are moving to solely relying on logind... some never had
fallback even.
Over the past few years, more projects have emerged which provide
functionality similar (be that on API level, Dbus, or otherwise) to
systemd-logind.
"""
v2:
* Fixed typo in commit text and added a fine historical explanation
from Emil.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Tested-by: Rob Clark <robdclark@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230621094824.2348732-1-tvrtko.ursulin@linux.intel.com
Signed-off-by: Christian König <christian.koenig@amd.com>
2023-06-21 10:48:24 +01:00
rcu_assign_pointer ( file - > pid , get_pid ( task_tgid ( current ) ) ) ;
2018-06-18 16:17:28 +02:00
file - > minor = minor ;
/* for compatibility root is always authenticated */
file - > authenticated = capable ( CAP_SYS_ADMIN ) ;
INIT_LIST_HEAD ( & file - > lhead ) ;
INIT_LIST_HEAD ( & file - > fbs ) ;
mutex_init ( & file - > fbs_lock ) ;
INIT_LIST_HEAD ( & file - > blobs ) ;
INIT_LIST_HEAD ( & file - > pending_event_list ) ;
INIT_LIST_HEAD ( & file - > event_list ) ;
init_waitqueue_head ( & file - > event_wait ) ;
file - > event_space = 4096 ; /* set aside 4k for event buffer */
drm: serialize drm_file.master with a new spinlock
Currently, drm_file.master pointers should be protected by
drm_device.master_mutex when being dereferenced. This is because
drm_file.master is not invariant for the lifetime of drm_file. If
drm_file is not the creator of master, then drm_file.is_master is
false, and a call to drm_setmaster_ioctl will invoke
drm_new_set_master, which then allocates a new master for drm_file and
puts the old master.
Thus, without holding drm_device.master_mutex, the old value of
drm_file.master could be freed while it is being used by another
concurrent process.
However, it is not always possible to lock drm_device.master_mutex to
dereference drm_file.master. Through the fbdev emulation code, this
might occur in a deep nest of other locks. But drm_device.master_mutex
is also the outermost lock in the nesting hierarchy, so this leads to
potential deadlocks.
To address this, we introduce a new spin lock at the bottom of the
lock hierarchy that only serializes drm_file.master. With this change,
the value of drm_file.master changes only when both
drm_device.master_mutex and drm_file.master_lookup_lock are
held. Hence, any process holding either of those locks can ensure that
the value of drm_file.master will not change concurrently.
Since no lock depends on the new drm_file.master_lookup_lock, when
drm_file.master is dereferenced, but drm_device.master_mutex cannot be
held, we can safely protect the master pointer with
drm_file.master_lookup_lock.
Reported-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Desmond Cheong Zhi Xi <desmondcheongzx@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210712043508.11584-5-desmondcheongzx@gmail.com
2021-07-12 12:35:07 +08:00
spin_lock_init ( & file - > master_lookup_lock ) ;
2018-06-18 16:17:28 +02:00
mutex_init ( & file - > event_read_lock ) ;
if ( drm_core_check_feature ( dev , DRIVER_GEM ) )
drm_gem_open ( dev , file ) ;
if ( drm_core_check_feature ( dev , DRIVER_SYNCOBJ ) )
drm_syncobj_open ( file ) ;
2019-06-14 22:35:20 +02:00
drm_prime_init_file_private ( & file - > prime ) ;
2018-06-18 16:17:28 +02:00
if ( dev - > driver - > open ) {
ret = dev - > driver - > open ( dev , file ) ;
if ( ret < 0 )
goto out_prime_destroy ;
}
return file ;
out_prime_destroy :
2019-06-14 22:35:20 +02:00
drm_prime_destroy_file_private ( & file - > prime ) ;
2018-06-18 16:17:28 +02:00
if ( drm_core_check_feature ( dev , DRIVER_SYNCOBJ ) )
drm_syncobj_release ( file ) ;
if ( drm_core_check_feature ( dev , DRIVER_GEM ) )
drm_gem_release ( dev , file ) ;
drm: Update file owner during use
With the typical model where the display server opens the file descriptor
and then hands it over to the client(*), we were showing stale data in
debugfs.
Fix it by updating the drm_file->pid on ioctl access from a different
process.
The field is also made RCU protected to allow for lockless readers. Update
side is protected with dev->filelist_mutex.
Before:
$ cat /sys/kernel/debug/dri/0/clients
command pid dev master a uid magic
Xorg 2344 0 y y 0 0
Xorg 2344 0 n y 0 2
Xorg 2344 0 n y 0 3
Xorg 2344 0 n y 0 4
After:
$ cat /sys/kernel/debug/dri/0/clients
command tgid dev master a uid magic
Xorg 830 0 y y 0 0
xfce4-session 880 0 n y 0 1
xfwm4 943 0 n y 0 2
neverball 1095 0 n y 0 3
*)
More detailed and historically accurate description of various handover
implementation kindly provided by Emil Velikov:
"""
The traditional model, the server was the orchestrator managing the
primary device node. From the fd, to the master status and
authentication. But looking at the fd alone, this has varied across
the years.
IIRC in the DRI1 days, Xorg (libdrm really) would have a list of open
fd(s) and reuse those whenever needed, DRI2 the client was responsible
for open() themselves and with DRI3 the fd was passed to the client.
Around the inception of DRI3 and systemd-logind, the latter became
another possible orchestrator. Whereby Xorg and Wayland compositors
could ask it for the fd. For various reasons (hysterical and genuine
ones) Xorg has a fallback path going the open(), whereas Wayland
compositors are moving to solely relying on logind... some never had
fallback even.
Over the past few years, more projects have emerged which provide
functionality similar (be that on API level, Dbus, or otherwise) to
systemd-logind.
"""
v2:
* Fixed typo in commit text and added a fine historical explanation
from Emil.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Tested-by: Rob Clark <robdclark@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230621094824.2348732-1-tvrtko.ursulin@linux.intel.com
Signed-off-by: Christian König <christian.koenig@amd.com>
2023-06-21 10:48:24 +01:00
put_pid ( rcu_access_pointer ( file - > pid ) ) ;
2018-06-18 16:17:28 +02:00
kfree ( file ) ;
return ERR_PTR ( ret ) ;
}
static void drm_events_release ( struct drm_file * file_priv )
{
struct drm_device * dev = file_priv - > minor - > dev ;
struct drm_pending_event * e , * et ;
unsigned long flags ;
spin_lock_irqsave ( & dev - > event_lock , flags ) ;
/* Unlink pending events */
list_for_each_entry_safe ( e , et , & file_priv - > pending_event_list ,
pending_link ) {
list_del ( & e - > pending_link ) ;
e - > file_priv = NULL ;
}
/* Remove unconsumed events */
list_for_each_entry_safe ( e , et , & file_priv - > event_list , link ) {
list_del ( & e - > link ) ;
kfree ( e ) ;
}
spin_unlock_irqrestore ( & dev - > event_lock , flags ) ;
}
/**
* drm_file_free - free file context
* @ file : context to free , or NULL
*
* This destroys and deallocates a DRM file context previously allocated via
* drm_file_alloc ( ) . The caller must make sure to unlink it from any contexts
* before calling this .
*
* If NULL is passed , this is a no - op .
*/
void drm_file_free ( struct drm_file * file )
{
struct drm_device * dev ;
if ( ! file )
return ;
dev = file - > minor - > dev ;
2022-12-23 11:23:02 +00:00
drm_dbg_core ( dev , " comm= \" %s \" , pid=%d, dev=0x%lx, open_count=%d \n " ,
current - > comm , task_pid_nr ( current ) ,
( long ) old_encode_dev ( file - > minor - > kdev - > devt ) ,
atomic_read ( & dev - > open_count ) ) ;
2018-06-18 16:17:28 +02:00
2020-11-04 11:04:21 +01:00
# ifdef CONFIG_DRM_LEGACY
2018-06-18 16:17:28 +02:00
if ( drm_core_check_feature ( dev , DRIVER_LEGACY ) & &
dev - > driver - > preclose )
dev - > driver - > preclose ( dev , file ) ;
2020-11-04 11:04:21 +01:00
# endif
2018-06-18 16:17:28 +02:00
if ( drm_core_check_feature ( dev , DRIVER_LEGACY ) )
drm_legacy_lock_release ( dev , file - > filp ) ;
if ( drm_core_check_feature ( dev , DRIVER_HAVE_DMA ) )
drm_legacy_reclaim_buffers ( dev , file ) ;
drm_events_release ( file ) ;
if ( drm_core_check_feature ( dev , DRIVER_MODESET ) ) {
drm_fb_release ( file ) ;
drm_property_destroy_user_blobs ( dev , file ) ;
}
if ( drm_core_check_feature ( dev , DRIVER_SYNCOBJ ) )
drm_syncobj_release ( file ) ;
if ( drm_core_check_feature ( dev , DRIVER_GEM ) )
drm_gem_release ( dev , file ) ;
drm_legacy_ctxbitmap_flush ( dev , file ) ;
if ( drm_is_primary_client ( file ) )
drm_master_release ( file ) ;
if ( dev - > driver - > postclose )
dev - > driver - > postclose ( dev , file ) ;
2019-06-14 22:35:20 +02:00
drm_prime_destroy_file_private ( & file - > prime ) ;
2018-06-18 16:17:28 +02:00
WARN_ON ( ! list_empty ( & file - > event_list ) ) ;
drm: Update file owner during use
With the typical model where the display server opens the file descriptor
and then hands it over to the client(*), we were showing stale data in
debugfs.
Fix it by updating the drm_file->pid on ioctl access from a different
process.
The field is also made RCU protected to allow for lockless readers. Update
side is protected with dev->filelist_mutex.
Before:
$ cat /sys/kernel/debug/dri/0/clients
command pid dev master a uid magic
Xorg 2344 0 y y 0 0
Xorg 2344 0 n y 0 2
Xorg 2344 0 n y 0 3
Xorg 2344 0 n y 0 4
After:
$ cat /sys/kernel/debug/dri/0/clients
command tgid dev master a uid magic
Xorg 830 0 y y 0 0
xfce4-session 880 0 n y 0 1
xfwm4 943 0 n y 0 2
neverball 1095 0 n y 0 3
*)
More detailed and historically accurate description of various handover
implementation kindly provided by Emil Velikov:
"""
The traditional model, the server was the orchestrator managing the
primary device node. From the fd, to the master status and
authentication. But looking at the fd alone, this has varied across
the years.
IIRC in the DRI1 days, Xorg (libdrm really) would have a list of open
fd(s) and reuse those whenever needed, DRI2 the client was responsible
for open() themselves and with DRI3 the fd was passed to the client.
Around the inception of DRI3 and systemd-logind, the latter became
another possible orchestrator. Whereby Xorg and Wayland compositors
could ask it for the fd. For various reasons (hysterical and genuine
ones) Xorg has a fallback path going the open(), whereas Wayland
compositors are moving to solely relying on logind... some never had
fallback even.
Over the past few years, more projects have emerged which provide
functionality similar (be that on API level, Dbus, or otherwise) to
systemd-logind.
"""
v2:
* Fixed typo in commit text and added a fine historical explanation
from Emil.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Tested-by: Rob Clark <robdclark@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230621094824.2348732-1-tvrtko.ursulin@linux.intel.com
Signed-off-by: Christian König <christian.koenig@amd.com>
2023-06-21 10:48:24 +01:00
put_pid ( rcu_access_pointer ( file - > pid ) ) ;
2018-06-18 16:17:28 +02:00
kfree ( file ) ;
}
2019-01-14 08:44:09 +00:00
static void drm_close_helper ( struct file * filp )
{
struct drm_file * file_priv = filp - > private_data ;
struct drm_device * dev = file_priv - > minor - > dev ;
mutex_lock ( & dev - > filelist_mutex ) ;
list_del ( & file_priv - > lhead ) ;
mutex_unlock ( & dev - > filelist_mutex ) ;
drm_file_free ( file_priv ) ;
}
2016-01-11 22:40:55 +01:00
/*
2006-01-02 21:32:48 +11:00
* Check whether DRI will run on this CPU .
*
* \ return non - zero if the DRI will run on this CPU , or zero otherwise .
*/
static int drm_cpu_valid ( void )
{
# if defined(__sparc__) && !defined(__sparc_v9__)
return 0 ; /* No cmpxchg before v9 sparc. */
# endif
return 1 ;
}
2016-01-11 22:40:55 +01:00
/*
2019-07-22 17:56:48 +01:00
* Called whenever a process opens a drm node
2006-01-02 21:32:48 +11:00
*
* \ param filp file pointer .
2014-01-29 10:18:02 +01:00
* \ param minor acquired minor - object .
2006-01-02 21:32:48 +11:00
* \ return zero on success or a negative number on failure .
*
* Creates and initializes a drm_file structure for the file private data in \ p
* filp and add it into the double linked list in \ p dev .
*/
accel: add dedicated minor for accelerator devices
The accelerator devices are exposed to user-space using a dedicated
major. In addition, they are represented in /dev with new, dedicated
device char names: /dev/accel/accel*. This is done to make sure any
user-space software that tries to open a graphic card won't open
the accelerator device by mistake.
The above implies that the minor numbering should be separated from
the rest of the DRM devices. However, to avoid code duplication, we
want the drm_minor structure to be able to represent the accelerator
device.
To achieve this, we add a new drm_minor* to drm_device that represents
the accelerator device. This pointer is initialized for drivers that
declare they handle compute accelerator, using a new driver feature
flag called DRIVER_COMPUTE_ACCEL. It is important to note that this
driver feature is mutually exclusive with DRIVER_RENDER. Devices that
want to expose both graphics and compute device char files should be
handled by two drivers that are connected using the auxiliary bus
framework.
In addition, we define a different IDR to handle the accelerators
minors. This is done to make the minor's index be identical to the
device index in /dev/. Any access to the IDR is done solely
by functions in accel_drv.c, as the IDR is define as static. The
DRM core functions call those functions in case they detect the minor's
type is DRM_MINOR_ACCEL.
We define a separate accel_open function (from drm_open) that the
accel drivers should set as their open callback function. Both these
functions eventually call the same drm_open_helper(), which had to be
changed to be non-static so it can be called from accel_drv.c.
accel_open() only partially duplicates drm_open as I removed some code
from it that handles legacy devices.
To help new drivers, I defined DEFINE_DRM_ACCEL_FOPS macro to easily
set the required function operations pointers structure.
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
Tested-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
Reviewed-by: Melissa Wen <mwen@igalia.com>
2022-10-31 15:33:06 +02:00
int drm_open_helper ( struct file * filp , struct drm_minor * minor )
2006-01-02 21:32:48 +11:00
{
2014-01-29 10:18:02 +01:00
struct drm_device * dev = minor - > dev ;
2007-07-11 15:53:27 +10:00
struct drm_file * priv ;
2018-06-18 16:17:29 +02:00
int ret ;
2006-01-02 21:32:48 +11:00
if ( filp - > f_flags & O_EXCL )
return - EBUSY ; /* No exclusive opens */
if ( ! drm_cpu_valid ( ) )
return - EINVAL ;
2020-05-18 09:34:56 +01:00
if ( dev - > switch_power_state ! = DRM_SWITCH_POWER_ON & &
dev - > switch_power_state ! = DRM_SWITCH_POWER_DYNAMIC_OFF )
2010-12-07 09:20:40 +10:00
return - EINVAL ;
2006-01-02 21:32:48 +11:00
2022-12-23 11:23:02 +00:00
drm_dbg_core ( dev , " comm= \" %s \" , pid=%d, minor=%d \n " ,
current - > comm , task_pid_nr ( current ) , minor - > index ) ;
2006-01-02 21:32:48 +11:00
2018-06-18 16:17:28 +02:00
priv = drm_file_alloc ( minor ) ;
if ( IS_ERR ( priv ) )
return PTR_ERR ( priv ) ;
2006-01-02 21:32:48 +11:00
2018-06-18 16:17:29 +02:00
if ( drm_is_primary_client ( priv ) ) {
ret = drm_master_open ( priv ) ;
if ( ret ) {
drm_file_free ( priv ) ;
return ret ;
}
}
2006-01-02 21:32:48 +11:00
filp - > private_data = priv ;
2018-05-15 13:38:15 +10:00
filp - > f_mode | = FMODE_UNSIGNED_OFFSET ;
2007-08-25 20:23:09 +10:00
priv - > filp = filp ;
2007-05-26 05:01:51 +10:00
2016-04-26 19:29:41 +02:00
mutex_lock ( & dev - > filelist_mutex ) ;
2007-05-26 05:01:51 +10:00
list_add ( & priv - > lhead , & dev - > filelist ) ;
2016-04-26 19:29:41 +02:00
mutex_unlock ( & dev - > filelist_mutex ) ;
2006-01-02 21:32:48 +11:00
2021-01-12 09:10:35 +01:00
# ifdef CONFIG_DRM_LEGACY
2006-01-02 21:32:48 +11:00
# ifdef __alpha__
/*
* Default the hose
*/
if ( ! dev - > hose ) {
struct pci_dev * pci_dev ;
2020-07-02 18:53:32 +05:30
2006-01-02 21:32:48 +11:00
pci_dev = pci_get_class ( PCI_CLASS_DISPLAY_VGA < < 8 , NULL ) ;
if ( pci_dev ) {
dev - > hose = pci_dev - > sysdata ;
pci_dev_put ( pci_dev ) ;
}
if ( ! dev - > hose ) {
2014-02-13 21:14:00 +08:00
struct pci_bus * b = list_entry ( pci_root_buses . next ,
struct pci_bus , node ) ;
2006-01-02 21:32:48 +11:00
if ( b )
dev - > hose = b - > sysdata ;
}
}
2021-01-12 09:10:35 +01:00
# endif
2006-01-02 21:32:48 +11:00
# endif
return 0 ;
2009-09-12 04:33:34 +10:00
}
2019-05-02 15:56:03 +02:00
/**
* drm_open - open method for DRM file
* @ inode : device inode
* @ filp : file pointer .
*
* This function must be used by drivers as their & file_operations . open method .
* It looks up the correct DRM device and instantiates all the per - file
* resources for it . It also calls the & drm_driver . open driver callback .
*
* RETURNS :
*
2021-07-30 21:27:29 +08:00
* 0 on success or negative errno value on failure .
2019-05-02 15:56:03 +02:00
*/
int drm_open ( struct inode * inode , struct file * filp )
{
struct drm_device * dev ;
struct drm_minor * minor ;
int retcode ;
int need_setup = 0 ;
minor = drm_minor_acquire ( iminor ( inode ) ) ;
if ( IS_ERR ( minor ) )
return PTR_ERR ( minor ) ;
dev = minor - > dev ;
2020-02-04 16:01:46 +01:00
if ( drm_dev_needs_global_mutex ( dev ) )
mutex_lock ( & drm_global_mutex ) ;
2020-01-24 13:01:07 +00:00
if ( ! atomic_fetch_inc ( & dev - > open_count ) )
2019-05-02 15:56:03 +02:00
need_setup = 1 ;
/* share address_space across all char-devs of a single device */
filp - > f_mapping = dev - > anon_inode - > i_mapping ;
retcode = drm_open_helper ( filp , minor ) ;
if ( retcode )
goto err_undo ;
if ( need_setup ) {
retcode = drm_legacy_setup ( dev ) ;
if ( retcode ) {
drm_close_helper ( filp ) ;
goto err_undo ;
}
}
2020-02-04 16:01:45 +01:00
2020-02-04 16:01:46 +01:00
if ( drm_dev_needs_global_mutex ( dev ) )
mutex_unlock ( & drm_global_mutex ) ;
2020-02-04 16:01:45 +01:00
2019-05-02 15:56:03 +02:00
return 0 ;
err_undo :
2020-01-24 13:01:07 +00:00
atomic_dec ( & dev - > open_count ) ;
2020-02-04 16:01:46 +01:00
if ( drm_dev_needs_global_mutex ( dev ) )
mutex_unlock ( & drm_global_mutex ) ;
2019-05-02 15:56:03 +02:00
drm_minor_release ( minor ) ;
return retcode ;
}
EXPORT_SYMBOL ( drm_open ) ;
2016-04-26 19:29:35 +02:00
void drm_lastclose ( struct drm_device * dev )
2013-10-02 11:23:36 +02:00
{
2022-12-23 11:23:02 +00:00
drm_dbg_core ( dev , " \n " ) ;
2013-10-02 11:23:36 +02:00
if ( dev - > driver - > lastclose )
dev - > driver - > lastclose ( dev ) ;
2022-12-23 11:23:02 +00:00
drm_dbg_core ( dev , " driver lastclose completed \n " ) ;
2013-10-02 11:23:36 +02:00
2016-08-03 21:11:10 +02:00
if ( drm_core_check_feature ( dev , DRIVER_LEGACY ) )
2016-04-26 19:29:35 +02:00
drm_legacy_dev_reinit ( dev ) ;
2018-07-03 18:03:47 +02:00
drm_client_dev_restore ( dev ) ;
2013-10-02 11:23:36 +02:00
}
2005-04-16 15:20:36 -07:00
/**
2016-01-11 22:40:55 +01:00
* drm_release - release method for DRM file
* @ inode : device inode
* @ filp : file pointer .
2005-04-16 15:20:36 -07:00
*
2017-03-08 15:12:44 +01:00
* This function must be used by drivers as their & file_operations . release
* method . It frees any resources associated with the open file , and calls the
2017-05-08 10:26:33 +02:00
* & drm_driver . postclose driver callback . If this is the last open file for the
* DRM device also proceeds to call the & drm_driver . lastclose driver callback .
2005-04-16 15:20:36 -07:00
*
2016-01-11 22:40:55 +01:00
* RETURNS :
*
* Always succeeds and returns 0.
2005-04-16 15:20:36 -07:00
*/
2005-09-25 14:28:13 +10:00
int drm_release ( struct inode * inode , struct file * filp )
2005-04-16 15:20:36 -07:00
{
2007-08-25 20:23:09 +10:00
struct drm_file * file_priv = filp - > private_data ;
2014-01-29 10:49:19 +01:00
struct drm_minor * minor = file_priv - > minor ;
struct drm_device * dev = minor - > dev ;
2005-04-16 15:20:36 -07:00
2020-02-04 16:01:46 +01:00
if ( drm_dev_needs_global_mutex ( dev ) )
mutex_lock ( & drm_global_mutex ) ;
2005-04-16 15:20:36 -07:00
2022-12-23 11:23:02 +00:00
drm_dbg_core ( dev , " open_count = %d \n " , atomic_read ( & dev - > open_count ) ) ;
2005-04-16 15:20:36 -07:00
2019-01-14 08:44:09 +00:00
drm_close_helper ( filp ) ;
2005-04-16 15:20:36 -07:00
2020-01-24 13:01:07 +00:00
if ( atomic_dec_and_test ( & dev - > open_count ) )
2016-04-26 19:29:35 +02:00
drm_lastclose ( dev ) ;
2019-02-08 15:01:02 +01:00
2020-02-04 16:01:46 +01:00
if ( drm_dev_needs_global_mutex ( dev ) )
mutex_unlock ( & drm_global_mutex ) ;
2005-04-16 15:20:36 -07:00
2014-01-29 10:49:19 +01:00
drm_minor_release ( minor ) ;
2016-04-26 19:29:35 +02:00
return 0 ;
2005-04-16 15:20:36 -07:00
}
EXPORT_SYMBOL ( drm_release ) ;
drm: Update file owner during use
With the typical model where the display server opens the file descriptor
and then hands it over to the client(*), we were showing stale data in
debugfs.
Fix it by updating the drm_file->pid on ioctl access from a different
process.
The field is also made RCU protected to allow for lockless readers. Update
side is protected with dev->filelist_mutex.
Before:
$ cat /sys/kernel/debug/dri/0/clients
command pid dev master a uid magic
Xorg 2344 0 y y 0 0
Xorg 2344 0 n y 0 2
Xorg 2344 0 n y 0 3
Xorg 2344 0 n y 0 4
After:
$ cat /sys/kernel/debug/dri/0/clients
command tgid dev master a uid magic
Xorg 830 0 y y 0 0
xfce4-session 880 0 n y 0 1
xfwm4 943 0 n y 0 2
neverball 1095 0 n y 0 3
*)
More detailed and historically accurate description of various handover
implementation kindly provided by Emil Velikov:
"""
The traditional model, the server was the orchestrator managing the
primary device node. From the fd, to the master status and
authentication. But looking at the fd alone, this has varied across
the years.
IIRC in the DRI1 days, Xorg (libdrm really) would have a list of open
fd(s) and reuse those whenever needed, DRI2 the client was responsible
for open() themselves and with DRI3 the fd was passed to the client.
Around the inception of DRI3 and systemd-logind, the latter became
another possible orchestrator. Whereby Xorg and Wayland compositors
could ask it for the fd. For various reasons (hysterical and genuine
ones) Xorg has a fallback path going the open(), whereas Wayland
compositors are moving to solely relying on logind... some never had
fallback even.
Over the past few years, more projects have emerged which provide
functionality similar (be that on API level, Dbus, or otherwise) to
systemd-logind.
"""
v2:
* Fixed typo in commit text and added a fine historical explanation
from Emil.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Tested-by: Rob Clark <robdclark@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230621094824.2348732-1-tvrtko.ursulin@linux.intel.com
Signed-off-by: Christian König <christian.koenig@amd.com>
2023-06-21 10:48:24 +01:00
void drm_file_update_pid ( struct drm_file * filp )
{
struct drm_device * dev ;
struct pid * pid , * old ;
/*
* Master nodes need to keep the original ownership in order for
* drm_master_check_perm to keep working correctly . ( See comment in
* drm_auth . c . )
*/
if ( filp - > was_master )
return ;
pid = task_tgid ( current ) ;
/*
* Quick unlocked check since the model is a single handover followed by
* exclusive repeated use .
*/
if ( pid = = rcu_access_pointer ( filp - > pid ) )
return ;
dev = filp - > minor - > dev ;
mutex_lock ( & dev - > filelist_mutex ) ;
old = rcu_replace_pointer ( filp - > pid , pid , 1 ) ;
mutex_unlock ( & dev - > filelist_mutex ) ;
if ( pid ! = old ) {
get_pid ( pid ) ;
synchronize_rcu ( ) ;
put_pid ( old ) ;
}
}
2020-01-24 12:56:26 +00:00
/**
* drm_release_noglobal - release method for DRM file
* @ inode : device inode
* @ filp : file pointer .
*
* This function may be used by drivers as their & file_operations . release
* method . It frees any resources associated with the open file prior to taking
* the drm_global_mutex , which then calls the & drm_driver . postclose driver
* callback . If this is the last open file for the DRM device also proceeds to
* call the & drm_driver . lastclose driver callback .
*
* RETURNS :
*
* Always succeeds and returns 0.
*/
int drm_release_noglobal ( struct inode * inode , struct file * filp )
{
struct drm_file * file_priv = filp - > private_data ;
struct drm_minor * minor = file_priv - > minor ;
struct drm_device * dev = minor - > dev ;
drm_close_helper ( filp ) ;
2020-01-24 13:01:07 +00:00
if ( atomic_dec_and_mutex_lock ( & dev - > open_count , & drm_global_mutex ) ) {
2020-01-24 12:56:26 +00:00
drm_lastclose ( dev ) ;
2020-01-24 13:01:07 +00:00
mutex_unlock ( & drm_global_mutex ) ;
}
2020-01-24 12:56:26 +00:00
drm_minor_release ( minor ) ;
return 0 ;
}
EXPORT_SYMBOL ( drm_release_noglobal ) ;
2016-01-11 22:40:55 +01:00
/**
* drm_read - read method for DRM file
* @ filp : file pointer
* @ buffer : userspace destination pointer for the read
* @ count : count in bytes to read
* @ offset : offset to read
*
2017-03-08 15:12:44 +01:00
* This function must be used by drivers as their & file_operations . read
2021-07-30 21:27:29 +08:00
* method if they use DRM events for asynchronous signalling to userspace .
2016-01-11 22:40:55 +01:00
* Since events are used by the KMS API for vblank and page flip completion this
* means all modern display drivers must use it .
*
2022-06-29 15:07:00 +02:00
* @ offset is ignored , DRM events are read like a pipe . Polling support is
2016-01-11 22:40:55 +01:00
* provided by drm_poll ( ) .
*
* This function will only ever read a full event . Therefore userspace must
* supply a big enough buffer to fit any event to ensure forward progress . Since
* the maximum event space is currently 4 K it ' s recommended to just use that for
* safety .
*
* RETURNS :
*
* Number of bytes read ( always aligned to full events , and can be 0 ) or a
* negative error code on failure .
*/
2014-12-04 21:03:25 +00:00
ssize_t drm_read ( struct file * filp , char __user * buffer ,
size_t count , loff_t * offset )
2009-09-12 04:33:34 +10:00
{
2014-12-04 21:03:25 +00:00
struct drm_file * file_priv = filp - > private_data ;
2009-09-12 04:33:34 +10:00
struct drm_device * dev = file_priv - > minor - > dev ;
2015-11-25 14:39:03 +00:00
ssize_t ret ;
2009-09-12 04:33:34 +10:00
2015-11-25 14:39:03 +00:00
ret = mutex_lock_interruptible ( & file_priv - > event_read_lock ) ;
if ( ret )
return ret ;
2014-12-04 21:03:25 +00:00
for ( ; ; ) {
2015-11-25 14:39:02 +00:00
struct drm_pending_event * e = NULL ;
spin_lock_irq ( & dev - > event_lock ) ;
if ( ! list_empty ( & file_priv - > event_list ) ) {
e = list_first_entry ( & file_priv - > event_list ,
struct drm_pending_event , link ) ;
file_priv - > event_space + = e - > event - > length ;
list_del ( & e - > link ) ;
}
spin_unlock_irq ( & dev - > event_lock ) ;
if ( e = = NULL ) {
2014-12-04 21:03:25 +00:00
if ( ret )
break ;
2009-09-12 04:33:34 +10:00
2014-12-04 21:03:25 +00:00
if ( filp - > f_flags & O_NONBLOCK ) {
ret = - EAGAIN ;
break ;
}
2009-09-12 04:33:34 +10:00
2015-11-25 14:39:03 +00:00
mutex_unlock ( & file_priv - > event_read_lock ) ;
2014-12-04 21:03:25 +00:00
ret = wait_event_interruptible ( file_priv - > event_wait ,
! list_empty ( & file_priv - > event_list ) ) ;
2015-11-25 14:39:03 +00:00
if ( ret > = 0 )
ret = mutex_lock_interruptible ( & file_priv - > event_read_lock ) ;
if ( ret )
return ret ;
2014-12-04 21:03:25 +00:00
} else {
2015-11-25 14:39:02 +00:00
unsigned length = e - > event - > length ;
if ( length > count - ret ) {
put_back_event :
spin_lock_irq ( & dev - > event_lock ) ;
file_priv - > event_space - = length ;
list_add ( & e - > link , & file_priv - > event_list ) ;
spin_unlock_irq ( & dev - > event_lock ) ;
2020-04-24 16:51:03 +02:00
wake_up_interruptible_poll ( & file_priv - > event_wait ,
EPOLLIN | EPOLLRDNORM ) ;
2014-12-04 21:03:25 +00:00
break ;
2015-11-25 14:39:02 +00:00
}
2014-12-04 21:03:25 +00:00
2015-11-25 14:39:02 +00:00
if ( copy_to_user ( buffer + ret , e - > event , length ) ) {
2014-12-04 21:03:25 +00:00
if ( ret = = 0 )
ret = - EFAULT ;
2015-11-25 14:39:02 +00:00
goto put_back_event ;
2014-12-04 21:03:25 +00:00
}
2009-09-12 04:33:34 +10:00
2015-11-25 14:39:02 +00:00
ret + = length ;
2016-06-02 00:06:35 +02:00
kfree ( e ) ;
2009-09-12 04:33:34 +10:00
}
}
2015-11-25 14:39:03 +00:00
mutex_unlock ( & file_priv - > event_read_lock ) ;
2009-09-12 04:33:34 +10:00
2014-12-04 21:03:25 +00:00
return ret ;
2009-09-12 04:33:34 +10:00
}
EXPORT_SYMBOL ( drm_read ) ;
2016-01-11 22:40:55 +01:00
/**
* drm_poll - poll method for DRM file
* @ filp : file pointer
* @ wait : poll waiter table
*
2017-03-08 15:12:44 +01:00
* This function must be used by drivers as their & file_operations . read method
2021-07-30 21:27:29 +08:00
* if they use DRM events for asynchronous signalling to userspace . Since
2017-03-08 15:12:44 +01:00
* events are used by the KMS API for vblank and page flip completion this means
* all modern display drivers must use it .
2016-01-11 22:40:55 +01:00
*
* See also drm_read ( ) .
*
* RETURNS :
*
* Mask of POLL flags indicating the current status of the file .
*/
2017-07-03 06:39:46 -04:00
__poll_t drm_poll ( struct file * filp , struct poll_table_struct * wait )
2005-04-16 15:20:36 -07:00
{
2009-09-12 04:33:34 +10:00
struct drm_file * file_priv = filp - > private_data ;
2017-07-03 06:39:46 -04:00
__poll_t mask = 0 ;
2009-09-12 04:33:34 +10:00
poll_wait ( filp , & file_priv - > event_wait , wait ) ;
if ( ! list_empty ( & file_priv - > event_list ) )
2018-02-11 14:34:03 -08:00
mask | = EPOLLIN | EPOLLRDNORM ;
2009-09-12 04:33:34 +10:00
return mask ;
2005-04-16 15:20:36 -07:00
}
2005-09-25 14:28:13 +10:00
EXPORT_SYMBOL ( drm_poll ) ;
2016-01-11 22:40:56 +01:00
/**
2016-01-28 12:01:04 +01:00
* drm_event_reserve_init_locked - init a DRM event and reserve space for it
2016-01-11 22:40:56 +01:00
* @ dev : DRM device
* @ file_priv : DRM file private data
* @ p : tracking structure for the pending event
* @ e : actual event data to deliver to userspace
*
* This function prepares the passed in event for eventual delivery . If the event
* doesn ' t get delivered ( because the IOCTL fails later on , before queuing up
* anything ) then the even must be cancelled and freed using
2016-01-11 22:40:59 +01:00
* drm_event_cancel_free ( ) . Successfully initialized events should be sent out
* using drm_send_event ( ) or drm_send_event_locked ( ) to signal completion of the
* asynchronous event to userspace .
2016-01-11 22:40:56 +01:00
*
* If callers embedded @ p into a larger structure it must be allocated with
* kmalloc and @ p must be the first member element .
*
2016-01-28 12:01:04 +01:00
* This is the locked version of drm_event_reserve_init ( ) for callers which
2017-01-25 07:26:47 +01:00
* already hold & drm_device . event_lock .
2016-01-28 12:01:04 +01:00
*
2016-01-11 22:40:56 +01:00
* RETURNS :
*
* 0 on success or a negative error code on failure .
*/
2016-01-28 12:01:04 +01:00
int drm_event_reserve_init_locked ( struct drm_device * dev ,
struct drm_file * file_priv ,
struct drm_pending_event * p ,
struct drm_event * e )
2016-01-11 22:40:56 +01:00
{
2016-01-28 12:01:04 +01:00
if ( file_priv - > event_space < e - > length )
return - ENOMEM ;
2016-01-11 22:40:56 +01:00
file_priv - > event_space - = e - > length ;
p - > event = e ;
2016-01-25 22:16:43 +01:00
list_add ( & p - > pending_link , & file_priv - > pending_event_list ) ;
2016-01-11 22:40:56 +01:00
p - > file_priv = file_priv ;
2016-01-28 12:01:04 +01:00
return 0 ;
}
EXPORT_SYMBOL ( drm_event_reserve_init_locked ) ;
/**
* drm_event_reserve_init - init a DRM event and reserve space for it
* @ dev : DRM device
* @ file_priv : DRM file private data
* @ p : tracking structure for the pending event
* @ e : actual event data to deliver to userspace
*
* This function prepares the passed in event for eventual delivery . If the event
* doesn ' t get delivered ( because the IOCTL fails later on , before queuing up
* anything ) then the even must be cancelled and freed using
* drm_event_cancel_free ( ) . Successfully initialized events should be sent out
* using drm_send_event ( ) or drm_send_event_locked ( ) to signal completion of the
* asynchronous event to userspace .
*
* If callers embedded @ p into a larger structure it must be allocated with
* kmalloc and @ p must be the first member element .
*
2017-01-25 07:26:47 +01:00
* Callers which already hold & drm_device . event_lock should use
2016-12-15 12:36:02 +01:00
* drm_event_reserve_init_locked ( ) instead .
2016-01-28 12:01:04 +01:00
*
* RETURNS :
*
* 0 on success or a negative error code on failure .
*/
int drm_event_reserve_init ( struct drm_device * dev ,
struct drm_file * file_priv ,
struct drm_pending_event * p ,
struct drm_event * e )
{
unsigned long flags ;
int ret ;
spin_lock_irqsave ( & dev - > event_lock , flags ) ;
ret = drm_event_reserve_init_locked ( dev , file_priv , p , e ) ;
2016-01-11 22:40:56 +01:00
spin_unlock_irqrestore ( & dev - > event_lock , flags ) ;
2016-01-28 12:01:04 +01:00
2016-01-11 22:40:56 +01:00
return ret ;
}
EXPORT_SYMBOL ( drm_event_reserve_init ) ;
/**
2019-02-01 17:23:26 -08:00
* drm_event_cancel_free - free a DRM event and release its space
2016-01-11 22:40:56 +01:00
* @ dev : DRM device
* @ p : tracking structure for the pending event
*
* This function frees the event @ p initialized with drm_event_reserve_init ( )
2017-03-08 15:12:44 +01:00
* and releases any allocated space . It is used to cancel an event when the
* nonblocking operation could not be submitted and needed to be aborted .
2016-01-11 22:40:56 +01:00
*/
void drm_event_cancel_free ( struct drm_device * dev ,
struct drm_pending_event * p )
{
unsigned long flags ;
2020-07-02 18:53:32 +05:30
2016-01-11 22:40:56 +01:00
spin_lock_irqsave ( & dev - > event_lock , flags ) ;
2016-01-25 22:16:43 +01:00
if ( p - > file_priv ) {
p - > file_priv - > event_space + = p - > event - > length ;
list_del ( & p - > pending_link ) ;
}
2016-01-11 22:40:56 +01:00
spin_unlock_irqrestore ( & dev - > event_lock , flags ) ;
2016-10-20 12:50:03 -02:00
if ( p - > fence )
2016-10-25 13:00:45 +01:00
dma_fence_put ( p - > fence ) ;
2016-10-20 12:50:03 -02:00
2016-06-02 00:06:35 +02:00
kfree ( p ) ;
2016-01-11 22:40:56 +01:00
}
EXPORT_SYMBOL ( drm_event_cancel_free ) ;
2016-01-11 22:40:59 +01:00
2021-04-27 12:55:03 +02:00
static void drm_send_event_helper ( struct drm_device * dev ,
2021-01-15 16:31:47 -08:00
struct drm_pending_event * e , ktime_t timestamp )
2016-01-11 22:40:59 +01:00
{
assert_spin_locked ( & dev - > event_lock ) ;
2016-06-08 14:19:00 +02:00
if ( e - > completion ) {
complete_all ( e - > completion ) ;
2016-12-21 11:23:30 +01:00
e - > completion_release ( e - > completion ) ;
2016-06-08 14:19:00 +02:00
e - > completion = NULL ;
}
2016-06-02 00:06:35 +02:00
if ( e - > fence ) {
2021-01-15 16:31:47 -08:00
if ( timestamp )
dma_fence_signal_timestamp ( e - > fence , timestamp ) ;
else
dma_fence_signal ( e - > fence ) ;
2016-10-25 13:00:45 +01:00
dma_fence_put ( e - > fence ) ;
2016-06-02 00:06:35 +02:00
}
2016-01-25 22:16:43 +01:00
if ( ! e - > file_priv ) {
2016-06-02 00:06:35 +02:00
kfree ( e ) ;
2016-01-25 22:16:43 +01:00
return ;
}
list_del ( & e - > pending_link ) ;
2016-01-11 22:40:59 +01:00
list_add_tail ( & e - > link ,
& e - > file_priv - > event_list ) ;
2020-04-24 16:51:03 +02:00
wake_up_interruptible_poll ( & e - > file_priv - > event_wait ,
EPOLLIN | EPOLLRDNORM ) ;
2016-01-11 22:40:59 +01:00
}
2021-01-15 16:31:47 -08:00
/**
* drm_send_event_timestamp_locked - send DRM event to file descriptor
* @ dev : DRM device
* @ e : DRM event to deliver
* @ timestamp : timestamp to set for the fence event in kernel ' s CLOCK_MONOTONIC
* time domain
*
* This function sends the event @ e , initialized with drm_event_reserve_init ( ) ,
* to its associated userspace DRM file . Callers must already hold
* & drm_device . event_lock .
*
* Note that the core will take care of unlinking and disarming events when the
* corresponding DRM file is closed . Drivers need not worry about whether the
* DRM file for this event still exists and can call this function upon
* completion of the asynchronous work unconditionally .
*/
void drm_send_event_timestamp_locked ( struct drm_device * dev ,
struct drm_pending_event * e , ktime_t timestamp )
{
drm_send_event_helper ( dev , e , timestamp ) ;
}
EXPORT_SYMBOL ( drm_send_event_timestamp_locked ) ;
/**
* drm_send_event_locked - send DRM event to file descriptor
* @ dev : DRM device
* @ e : DRM event to deliver
*
* This function sends the event @ e , initialized with drm_event_reserve_init ( ) ,
* to its associated userspace DRM file . Callers must already hold
* & drm_device . event_lock , see drm_send_event ( ) for the unlocked version .
*
* Note that the core will take care of unlinking and disarming events when the
* corresponding DRM file is closed . Drivers need not worry about whether the
* DRM file for this event still exists and can call this function upon
* completion of the asynchronous work unconditionally .
*/
void drm_send_event_locked ( struct drm_device * dev , struct drm_pending_event * e )
{
drm_send_event_helper ( dev , e , 0 ) ;
}
2016-01-11 22:40:59 +01:00
EXPORT_SYMBOL ( drm_send_event_locked ) ;
/**
* drm_send_event - send DRM event to file descriptor
* @ dev : DRM device
* @ e : DRM event to deliver
*
* This function sends the event @ e , initialized with drm_event_reserve_init ( ) ,
2017-01-25 07:26:47 +01:00
* to its associated userspace DRM file . This function acquires
* & drm_device . event_lock , see drm_send_event_locked ( ) for callers which already
* hold this lock .
2016-01-25 22:16:43 +01:00
*
* Note that the core will take care of unlinking and disarming events when the
* corresponding DRM file is closed . Drivers need not worry about whether the
* DRM file for this event still exists and can call this function upon
* completion of the asynchronous work unconditionally .
2016-01-11 22:40:59 +01:00
*/
void drm_send_event ( struct drm_device * dev , struct drm_pending_event * e )
{
unsigned long irqflags ;
spin_lock_irqsave ( & dev - > event_lock , irqflags ) ;
2021-01-15 16:31:47 -08:00
drm_send_event_helper ( dev , e , 0 ) ;
2016-01-11 22:40:59 +01:00
spin_unlock_irqrestore ( & dev - > event_lock , irqflags ) ;
}
EXPORT_SYMBOL ( drm_send_event ) ;
2019-11-07 18:05:58 +00:00
2023-05-24 08:59:35 -07:00
static void print_size ( struct drm_printer * p , const char * stat ,
const char * region , u64 sz )
{
const char * units [ ] = { " " , " KiB " , " MiB " } ;
unsigned u ;
for ( u = 0 ; u < ARRAY_SIZE ( units ) - 1 ; u + + ) {
if ( sz < SZ_1K )
break ;
sz = div_u64 ( sz , SZ_1K ) ;
}
drm_printf ( p , " drm-%s-%s: \t %llu%s \n " , stat , region , sz , units [ u ] ) ;
}
/**
* drm_print_memory_stats - A helper to print memory stats
* @ p : The printer to print output to
* @ stats : The collected memory stats
* @ supported_status : Bitmask of optional stats which are available
* @ region : The memory region
*
*/
void drm_print_memory_stats ( struct drm_printer * p ,
const struct drm_memory_stats * stats ,
enum drm_gem_object_status supported_status ,
const char * region )
{
print_size ( p , " total " , region , stats - > private + stats - > shared ) ;
print_size ( p , " shared " , region , stats - > shared ) ;
print_size ( p , " active " , region , stats - > active ) ;
if ( supported_status & DRM_GEM_OBJECT_RESIDENT )
print_size ( p , " resident " , region , stats - > resident ) ;
if ( supported_status & DRM_GEM_OBJECT_PURGEABLE )
print_size ( p , " purgeable " , region , stats - > purgeable ) ;
}
EXPORT_SYMBOL ( drm_print_memory_stats ) ;
/**
* drm_show_memory_stats - Helper to collect and show standard fdinfo memory stats
* @ p : the printer to print output to
* @ file : the DRM file
*
* Helper to iterate over GEM objects with a handle allocated in the specified
* file .
*/
void drm_show_memory_stats ( struct drm_printer * p , struct drm_file * file )
{
struct drm_gem_object * obj ;
struct drm_memory_stats status = { } ;
enum drm_gem_object_status supported_status ;
int id ;
spin_lock ( & file - > table_lock ) ;
idr_for_each_entry ( & file - > object_idr , obj , id ) {
enum drm_gem_object_status s = 0 ;
2023-09-29 19:14:30 +01:00
size_t add_size = ( obj - > funcs & & obj - > funcs - > rss ) ?
obj - > funcs - > rss ( obj ) : obj - > size ;
2023-05-24 08:59:35 -07:00
if ( obj - > funcs & & obj - > funcs - > status ) {
s = obj - > funcs - > status ( obj ) ;
supported_status = DRM_GEM_OBJECT_RESIDENT |
DRM_GEM_OBJECT_PURGEABLE ;
}
if ( obj - > handle_count > 1 ) {
status . shared + = obj - > size ;
} else {
status . private + = obj - > size ;
}
if ( s & DRM_GEM_OBJECT_RESIDENT ) {
2023-09-29 19:14:30 +01:00
status . resident + = add_size ;
2023-05-24 08:59:35 -07:00
} else {
/* If already purged or not yet backed by pages, don't
* count it as purgeable :
*/
s & = ~ DRM_GEM_OBJECT_PURGEABLE ;
}
if ( ! dma_resv_test_signaled ( obj - > resv , dma_resv_usage_rw ( true ) ) ) {
2023-09-29 19:14:30 +01:00
status . active + = add_size ;
2023-05-24 08:59:35 -07:00
/* If still active, don't count as purgeable: */
s & = ~ DRM_GEM_OBJECT_PURGEABLE ;
}
if ( s & DRM_GEM_OBJECT_PURGEABLE )
2023-09-29 19:14:30 +01:00
status . purgeable + = add_size ;
2023-05-24 08:59:35 -07:00
}
spin_unlock ( & file - > table_lock ) ;
drm_print_memory_stats ( p , & status , supported_status , " memory " ) ;
}
EXPORT_SYMBOL ( drm_show_memory_stats ) ;
2023-05-24 08:59:32 -07:00
/**
* drm_show_fdinfo - helper for drm file fops
2023-05-24 08:59:35 -07:00
* @ m : output stream
2023-05-24 08:59:32 -07:00
* @ f : the device file instance
*
* Helper to implement fdinfo , for userspace to query usage stats , etc , of a
* process using the GPU . See also & drm_driver . show_fdinfo .
*
* For text output format description please see Documentation / gpu / drm - usage - stats . rst
*/
void drm_show_fdinfo ( struct seq_file * m , struct file * f )
{
struct drm_file * file = f - > private_data ;
struct drm_device * dev = file - > minor - > dev ;
struct drm_printer p = drm_seq_file_printer ( m ) ;
drm_printf ( & p , " drm-driver: \t %s \n " , dev - > driver - > name ) ;
drm_printf ( & p , " drm-client-id: \t %llu \n " , file - > client_id ) ;
if ( dev_is_pci ( dev - > dev ) ) {
struct pci_dev * pdev = to_pci_dev ( dev - > dev ) ;
drm_printf ( & p , " drm-pdev: \t %04x:%02x:%02x.%d \n " ,
pci_domain_nr ( pdev - > bus ) , pdev - > bus - > number ,
PCI_SLOT ( pdev - > devfn ) , PCI_FUNC ( pdev - > devfn ) ) ;
}
if ( dev - > driver - > show_fdinfo )
dev - > driver - > show_fdinfo ( & p , file ) ;
}
EXPORT_SYMBOL ( drm_show_fdinfo ) ;
2019-11-07 18:05:58 +00:00
/**
* mock_drm_getfile - Create a new struct file for the drm device
* @ minor : drm minor to wrap ( e . g . # drm_device . primary )
* @ flags : file creation mode ( O_RDWR etc )
*
* This create a new struct file that wraps a DRM file context around a
* DRM minor . This mimicks userspace opening e . g . / dev / dri / card0 , but without
* invoking userspace . The struct file may be operated on using its f_op
* ( the drm_device . driver . fops ) to mimick userspace operations , or be supplied
* to userspace facing functions as an internal / anonymous client .
*
* RETURNS :
* Pointer to newly created struct file , ERR_PTR on failure .
*/
struct file * mock_drm_getfile ( struct drm_minor * minor , unsigned int flags )
{
struct drm_device * dev = minor - > dev ;
struct drm_file * priv ;
struct file * file ;
priv = drm_file_alloc ( minor ) ;
if ( IS_ERR ( priv ) )
return ERR_CAST ( priv ) ;
file = anon_inode_getfile ( " drm " , dev - > driver - > fops , priv , flags ) ;
if ( IS_ERR ( file ) ) {
drm_file_free ( priv ) ;
return file ;
}
/* Everyone shares a single global address space */
file - > f_mapping = dev - > anon_inode - > i_mapping ;
drm_dev_get ( dev ) ;
priv - > filp = file ;
return file ;
}
EXPORT_SYMBOL_FOR_TESTS_ONLY ( mock_drm_getfile ) ;