Loading...
1/*
2 * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
3 *
4 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6 * All Rights Reserved.
7 *
8 * Author Rickard E. (Rik) Faith <faith@valinux.com>
9 * Author Gareth Hughes <gareth@valinux.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice (including the next
19 * paragraph) shall be included in all copies or substantial portions of the
20 * Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31#include <linux/slab.h>
32
33#include <drm/drm_auth.h>
34#include <drm/drm_drv.h>
35#include <drm/drm_file.h>
36#include <drm/drm_lease.h>
37#include <drm/drm_print.h>
38
39#include "drm_internal.h"
40
41/**
42 * DOC: master and authentication
43 *
44 * &struct drm_master is used to track groups of clients with open
45 * primary device nodes. For every &struct drm_file which has had at
46 * least once successfully became the device master (either through the
47 * SET_MASTER IOCTL, or implicitly through opening the primary device node when
48 * no one else is the current master that time) there exists one &drm_master.
49 * This is noted in &drm_file.is_master. All other clients have just a pointer
50 * to the &drm_master they are associated with.
51 *
52 * In addition only one &drm_master can be the current master for a &drm_device.
53 * It can be switched through the DROP_MASTER and SET_MASTER IOCTL, or
54 * implicitly through closing/opening the primary device node. See also
55 * drm_is_current_master().
56 *
57 * Clients can authenticate against the current master (if it matches their own)
58 * using the GETMAGIC and AUTHMAGIC IOCTLs. Together with exchanging masters,
59 * this allows controlled access to the device for an entire group of mutually
60 * trusted clients.
61 */
62
63static bool drm_is_current_master_locked(struct drm_file *fpriv)
64{
65 lockdep_assert_once(lockdep_is_held(&fpriv->master_lookup_lock) ||
66 lockdep_is_held(&fpriv->minor->dev->master_mutex));
67
68 return fpriv->is_master && drm_lease_owner(fpriv->master) == fpriv->minor->dev->master;
69}
70
71/**
72 * drm_is_current_master - checks whether @priv is the current master
73 * @fpriv: DRM file private
74 *
75 * Checks whether @fpriv is current master on its device. This decides whether a
76 * client is allowed to run DRM_MASTER IOCTLs.
77 *
78 * Most of the modern IOCTL which require DRM_MASTER are for kernel modesetting
79 * - the current master is assumed to own the non-shareable display hardware.
80 */
81bool drm_is_current_master(struct drm_file *fpriv)
82{
83 bool ret;
84
85 spin_lock(&fpriv->master_lookup_lock);
86 ret = drm_is_current_master_locked(fpriv);
87 spin_unlock(&fpriv->master_lookup_lock);
88
89 return ret;
90}
91EXPORT_SYMBOL(drm_is_current_master);
92
93int drm_getmagic(struct drm_device *dev, void *data, struct drm_file *file_priv)
94{
95 struct drm_auth *auth = data;
96 int ret = 0;
97
98 mutex_lock(&dev->master_mutex);
99 if (!file_priv->magic) {
100 ret = idr_alloc(&file_priv->master->magic_map, file_priv,
101 1, 0, GFP_KERNEL);
102 if (ret >= 0)
103 file_priv->magic = ret;
104 }
105 auth->magic = file_priv->magic;
106 mutex_unlock(&dev->master_mutex);
107
108 drm_dbg_core(dev, "%u\n", auth->magic);
109
110 return ret < 0 ? ret : 0;
111}
112
113int drm_authmagic(struct drm_device *dev, void *data,
114 struct drm_file *file_priv)
115{
116 struct drm_auth *auth = data;
117 struct drm_file *file;
118
119 drm_dbg_core(dev, "%u\n", auth->magic);
120
121 mutex_lock(&dev->master_mutex);
122 file = idr_find(&file_priv->master->magic_map, auth->magic);
123 if (file) {
124 file->authenticated = 1;
125 idr_replace(&file_priv->master->magic_map, NULL, auth->magic);
126 }
127 mutex_unlock(&dev->master_mutex);
128
129 return file ? 0 : -EINVAL;
130}
131
132struct drm_master *drm_master_create(struct drm_device *dev)
133{
134 struct drm_master *master;
135
136 master = kzalloc(sizeof(*master), GFP_KERNEL);
137 if (!master)
138 return NULL;
139
140 kref_init(&master->refcount);
141 idr_init_base(&master->magic_map, 1);
142 master->dev = dev;
143
144 /* initialize the tree of output resource lessees */
145 INIT_LIST_HEAD(&master->lessees);
146 INIT_LIST_HEAD(&master->lessee_list);
147 idr_init(&master->leases);
148 idr_init_base(&master->lessee_idr, 1);
149
150 return master;
151}
152
153static void drm_set_master(struct drm_device *dev, struct drm_file *fpriv,
154 bool new_master)
155{
156 dev->master = drm_master_get(fpriv->master);
157 if (dev->driver->master_set)
158 dev->driver->master_set(dev, fpriv, new_master);
159
160 fpriv->was_master = true;
161}
162
163static int drm_new_set_master(struct drm_device *dev, struct drm_file *fpriv)
164{
165 struct drm_master *old_master;
166 struct drm_master *new_master;
167
168 lockdep_assert_held_once(&dev->master_mutex);
169
170 WARN_ON(fpriv->is_master);
171 old_master = fpriv->master;
172 new_master = drm_master_create(dev);
173 if (!new_master)
174 return -ENOMEM;
175 spin_lock(&fpriv->master_lookup_lock);
176 fpriv->master = new_master;
177 spin_unlock(&fpriv->master_lookup_lock);
178
179 fpriv->is_master = 1;
180 fpriv->authenticated = 1;
181
182 drm_set_master(dev, fpriv, true);
183
184 if (old_master)
185 drm_master_put(&old_master);
186
187 return 0;
188}
189
190/*
191 * In the olden days the SET/DROP_MASTER ioctls used to return EACCES when
192 * CAP_SYS_ADMIN was not set. This was used to prevent rogue applications
193 * from becoming master and/or failing to release it.
194 *
195 * At the same time, the first client (for a given VT) is _always_ master.
196 * Thus in order for the ioctls to succeed, one had to _explicitly_ run the
197 * application as root or flip the setuid bit.
198 *
199 * If the CAP_SYS_ADMIN was missing, no other client could become master...
200 * EVER :-( Leading to a) the graphics session dying badly or b) a completely
201 * locked session.
202 *
203 *
204 * As some point systemd-logind was introduced to orchestrate and delegate
205 * master as applicable. It does so by opening the fd and passing it to users
206 * while in itself logind a) does the set/drop master per users' request and
207 * b) * implicitly drops master on VT switch.
208 *
209 * Even though logind looks like the future, there are a few issues:
210 * - some platforms don't have equivalent (Android, CrOS, some BSDs) so
211 * root is required _solely_ for SET/DROP MASTER.
212 * - applications may not be updated to use it,
213 * - any client which fails to drop master* can DoS the application using
214 * logind, to a varying degree.
215 *
216 * * Either due missing CAP_SYS_ADMIN or simply not calling DROP_MASTER.
217 *
218 *
219 * Here we implement the next best thing:
220 * - ensure the logind style of fd passing works unchanged, and
221 * - allow a client to drop/set master, iff it is/was master at a given point
222 * in time.
223 *
224 * Note: DROP_MASTER cannot be free for all, as an arbitrator user could:
225 * - DoS/crash the arbitrator - details would be implementation specific
226 * - open the node, become master implicitly and cause issues
227 *
228 * As a result this fixes the following when using root-less build w/o logind
229 * - startx
230 * - weston
231 * - various compositors based on wlroots
232 */
233static int
234drm_master_check_perm(struct drm_device *dev, struct drm_file *file_priv)
235{
236 if (file_priv->was_master &&
237 rcu_access_pointer(file_priv->pid) == task_tgid(current))
238 return 0;
239
240 if (!capable(CAP_SYS_ADMIN))
241 return -EACCES;
242
243 return 0;
244}
245
246int drm_setmaster_ioctl(struct drm_device *dev, void *data,
247 struct drm_file *file_priv)
248{
249 int ret;
250
251 mutex_lock(&dev->master_mutex);
252
253 ret = drm_master_check_perm(dev, file_priv);
254 if (ret)
255 goto out_unlock;
256
257 if (drm_is_current_master_locked(file_priv))
258 goto out_unlock;
259
260 if (dev->master) {
261 ret = -EBUSY;
262 goto out_unlock;
263 }
264
265 if (!file_priv->master) {
266 ret = -EINVAL;
267 goto out_unlock;
268 }
269
270 if (!file_priv->is_master) {
271 ret = drm_new_set_master(dev, file_priv);
272 goto out_unlock;
273 }
274
275 if (file_priv->master->lessor != NULL) {
276 drm_dbg_lease(dev,
277 "Attempt to set lessee %d as master\n",
278 file_priv->master->lessee_id);
279 ret = -EINVAL;
280 goto out_unlock;
281 }
282
283 drm_set_master(dev, file_priv, false);
284out_unlock:
285 mutex_unlock(&dev->master_mutex);
286 return ret;
287}
288
289static void drm_drop_master(struct drm_device *dev,
290 struct drm_file *fpriv)
291{
292 if (dev->driver->master_drop)
293 dev->driver->master_drop(dev, fpriv);
294 drm_master_put(&dev->master);
295}
296
297int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
298 struct drm_file *file_priv)
299{
300 int ret;
301
302 mutex_lock(&dev->master_mutex);
303
304 ret = drm_master_check_perm(dev, file_priv);
305 if (ret)
306 goto out_unlock;
307
308 if (!drm_is_current_master_locked(file_priv)) {
309 ret = -EINVAL;
310 goto out_unlock;
311 }
312
313 if (!dev->master) {
314 ret = -EINVAL;
315 goto out_unlock;
316 }
317
318 if (file_priv->master->lessor != NULL) {
319 drm_dbg_lease(dev,
320 "Attempt to drop lessee %d as master\n",
321 file_priv->master->lessee_id);
322 ret = -EINVAL;
323 goto out_unlock;
324 }
325
326 drm_drop_master(dev, file_priv);
327out_unlock:
328 mutex_unlock(&dev->master_mutex);
329 return ret;
330}
331
332int drm_master_open(struct drm_file *file_priv)
333{
334 struct drm_device *dev = file_priv->minor->dev;
335 int ret = 0;
336
337 /* if there is no current master make this fd it, but do not create
338 * any master object for render clients
339 */
340 mutex_lock(&dev->master_mutex);
341 if (!dev->master) {
342 ret = drm_new_set_master(dev, file_priv);
343 } else {
344 spin_lock(&file_priv->master_lookup_lock);
345 file_priv->master = drm_master_get(dev->master);
346 spin_unlock(&file_priv->master_lookup_lock);
347 }
348 mutex_unlock(&dev->master_mutex);
349
350 return ret;
351}
352
353void drm_master_release(struct drm_file *file_priv)
354{
355 struct drm_device *dev = file_priv->minor->dev;
356 struct drm_master *master;
357
358 mutex_lock(&dev->master_mutex);
359 master = file_priv->master;
360 if (file_priv->magic)
361 idr_remove(&file_priv->master->magic_map, file_priv->magic);
362
363 if (!drm_is_current_master_locked(file_priv))
364 goto out;
365
366 if (dev->master == file_priv->master)
367 drm_drop_master(dev, file_priv);
368out:
369 if (drm_core_check_feature(dev, DRIVER_MODESET) && file_priv->is_master) {
370 /* Revoke any leases held by this or lessees, but only if
371 * this is the "real" master
372 */
373 drm_lease_revoke(master);
374 }
375
376 /* drop the master reference held by the file priv */
377 if (file_priv->master)
378 drm_master_put(&file_priv->master);
379 mutex_unlock(&dev->master_mutex);
380}
381
382/**
383 * drm_master_get - reference a master pointer
384 * @master: &struct drm_master
385 *
386 * Increments the reference count of @master and returns a pointer to @master.
387 */
388struct drm_master *drm_master_get(struct drm_master *master)
389{
390 kref_get(&master->refcount);
391 return master;
392}
393EXPORT_SYMBOL(drm_master_get);
394
395/**
396 * drm_file_get_master - reference &drm_file.master of @file_priv
397 * @file_priv: DRM file private
398 *
399 * Increments the reference count of @file_priv's &drm_file.master and returns
400 * the &drm_file.master. If @file_priv has no &drm_file.master, returns NULL.
401 *
402 * Master pointers returned from this function should be unreferenced using
403 * drm_master_put().
404 */
405struct drm_master *drm_file_get_master(struct drm_file *file_priv)
406{
407 struct drm_master *master = NULL;
408
409 spin_lock(&file_priv->master_lookup_lock);
410 if (!file_priv->master)
411 goto unlock;
412 master = drm_master_get(file_priv->master);
413
414unlock:
415 spin_unlock(&file_priv->master_lookup_lock);
416 return master;
417}
418EXPORT_SYMBOL(drm_file_get_master);
419
420static void drm_master_destroy(struct kref *kref)
421{
422 struct drm_master *master = container_of(kref, struct drm_master, refcount);
423 struct drm_device *dev = master->dev;
424
425 if (drm_core_check_feature(dev, DRIVER_MODESET))
426 drm_lease_destroy(master);
427
428 idr_destroy(&master->magic_map);
429 idr_destroy(&master->leases);
430 idr_destroy(&master->lessee_idr);
431
432 kfree(master->unique);
433 kfree(master);
434}
435
436/**
437 * drm_master_put - unreference and clear a master pointer
438 * @master: pointer to a pointer of &struct drm_master
439 *
440 * This decrements the &drm_master behind @master and sets it to NULL.
441 */
442void drm_master_put(struct drm_master **master)
443{
444 kref_put(&(*master)->refcount, drm_master_destroy);
445 *master = NULL;
446}
447EXPORT_SYMBOL(drm_master_put);
448
449/* Used by drm_client and drm_fb_helper */
450bool drm_master_internal_acquire(struct drm_device *dev)
451{
452 mutex_lock(&dev->master_mutex);
453 if (dev->master) {
454 mutex_unlock(&dev->master_mutex);
455 return false;
456 }
457
458 return true;
459}
460EXPORT_SYMBOL(drm_master_internal_acquire);
461
462/* Used by drm_client and drm_fb_helper */
463void drm_master_internal_release(struct drm_device *dev)
464{
465 mutex_unlock(&dev->master_mutex);
466}
467EXPORT_SYMBOL(drm_master_internal_release);
1/*
2 * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
3 *
4 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6 * All Rights Reserved.
7 *
8 * Author Rickard E. (Rik) Faith <faith@valinux.com>
9 * Author Gareth Hughes <gareth@valinux.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice (including the next
19 * paragraph) shall be included in all copies or substantial portions of the
20 * Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31#include <linux/slab.h>
32
33#include <drm/drm_auth.h>
34#include <drm/drm_drv.h>
35#include <drm/drm_file.h>
36#include <drm/drm_lease.h>
37#include <drm/drm_print.h>
38
39#include "drm_internal.h"
40#include "drm_legacy.h"
41
42/**
43 * DOC: master and authentication
44 *
45 * &struct drm_master is used to track groups of clients with open
46 * primary/legacy device nodes. For every &struct drm_file which has had at
47 * least once successfully became the device master (either through the
48 * SET_MASTER IOCTL, or implicitly through opening the primary device node when
49 * no one else is the current master that time) there exists one &drm_master.
50 * This is noted in &drm_file.is_master. All other clients have just a pointer
51 * to the &drm_master they are associated with.
52 *
53 * In addition only one &drm_master can be the current master for a &drm_device.
54 * It can be switched through the DROP_MASTER and SET_MASTER IOCTL, or
55 * implicitly through closing/openeing the primary device node. See also
56 * drm_is_current_master().
57 *
58 * Clients can authenticate against the current master (if it matches their own)
59 * using the GETMAGIC and AUTHMAGIC IOCTLs. Together with exchanging masters,
60 * this allows controlled access to the device for an entire group of mutually
61 * trusted clients.
62 */
63
64int drm_getmagic(struct drm_device *dev, void *data, struct drm_file *file_priv)
65{
66 struct drm_auth *auth = data;
67 int ret = 0;
68
69 mutex_lock(&dev->master_mutex);
70 if (!file_priv->magic) {
71 ret = idr_alloc(&file_priv->master->magic_map, file_priv,
72 1, 0, GFP_KERNEL);
73 if (ret >= 0)
74 file_priv->magic = ret;
75 }
76 auth->magic = file_priv->magic;
77 mutex_unlock(&dev->master_mutex);
78
79 DRM_DEBUG("%u\n", auth->magic);
80
81 return ret < 0 ? ret : 0;
82}
83
84int drm_authmagic(struct drm_device *dev, void *data,
85 struct drm_file *file_priv)
86{
87 struct drm_auth *auth = data;
88 struct drm_file *file;
89
90 DRM_DEBUG("%u\n", auth->magic);
91
92 mutex_lock(&dev->master_mutex);
93 file = idr_find(&file_priv->master->magic_map, auth->magic);
94 if (file) {
95 file->authenticated = 1;
96 idr_replace(&file_priv->master->magic_map, NULL, auth->magic);
97 }
98 mutex_unlock(&dev->master_mutex);
99
100 return file ? 0 : -EINVAL;
101}
102
103struct drm_master *drm_master_create(struct drm_device *dev)
104{
105 struct drm_master *master;
106
107 master = kzalloc(sizeof(*master), GFP_KERNEL);
108 if (!master)
109 return NULL;
110
111 kref_init(&master->refcount);
112 drm_master_legacy_init(master);
113 idr_init(&master->magic_map);
114 master->dev = dev;
115
116 /* initialize the tree of output resource lessees */
117 INIT_LIST_HEAD(&master->lessees);
118 INIT_LIST_HEAD(&master->lessee_list);
119 idr_init(&master->leases);
120 idr_init(&master->lessee_idr);
121
122 return master;
123}
124
125static int drm_set_master(struct drm_device *dev, struct drm_file *fpriv,
126 bool new_master)
127{
128 int ret = 0;
129
130 dev->master = drm_master_get(fpriv->master);
131 if (dev->driver->master_set) {
132 ret = dev->driver->master_set(dev, fpriv, new_master);
133 if (unlikely(ret != 0)) {
134 drm_master_put(&dev->master);
135 }
136 }
137
138 return ret;
139}
140
141static int drm_new_set_master(struct drm_device *dev, struct drm_file *fpriv)
142{
143 struct drm_master *old_master;
144 int ret;
145
146 lockdep_assert_held_once(&dev->master_mutex);
147
148 WARN_ON(fpriv->is_master);
149 old_master = fpriv->master;
150 fpriv->master = drm_master_create(dev);
151 if (!fpriv->master) {
152 fpriv->master = old_master;
153 return -ENOMEM;
154 }
155
156 if (dev->driver->master_create) {
157 ret = dev->driver->master_create(dev, fpriv->master);
158 if (ret)
159 goto out_err;
160 }
161 fpriv->is_master = 1;
162 fpriv->authenticated = 1;
163
164 ret = drm_set_master(dev, fpriv, true);
165 if (ret)
166 goto out_err;
167
168 if (old_master)
169 drm_master_put(&old_master);
170
171 return 0;
172
173out_err:
174 /* drop references and restore old master on failure */
175 drm_master_put(&fpriv->master);
176 fpriv->master = old_master;
177 fpriv->is_master = 0;
178
179 return ret;
180}
181
182int drm_setmaster_ioctl(struct drm_device *dev, void *data,
183 struct drm_file *file_priv)
184{
185 int ret = 0;
186
187 mutex_lock(&dev->master_mutex);
188 if (drm_is_current_master(file_priv))
189 goto out_unlock;
190
191 if (dev->master) {
192 ret = -EINVAL;
193 goto out_unlock;
194 }
195
196 if (!file_priv->master) {
197 ret = -EINVAL;
198 goto out_unlock;
199 }
200
201 if (!file_priv->is_master) {
202 ret = drm_new_set_master(dev, file_priv);
203 goto out_unlock;
204 }
205
206 if (file_priv->master->lessor != NULL) {
207 DRM_DEBUG_LEASE("Attempt to set lessee %d as master\n", file_priv->master->lessee_id);
208 ret = -EINVAL;
209 goto out_unlock;
210 }
211
212 ret = drm_set_master(dev, file_priv, false);
213out_unlock:
214 mutex_unlock(&dev->master_mutex);
215 return ret;
216}
217
218static void drm_drop_master(struct drm_device *dev,
219 struct drm_file *fpriv)
220{
221 if (dev->driver->master_drop)
222 dev->driver->master_drop(dev, fpriv);
223 drm_master_put(&dev->master);
224}
225
226int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
227 struct drm_file *file_priv)
228{
229 int ret = -EINVAL;
230
231 mutex_lock(&dev->master_mutex);
232 if (!drm_is_current_master(file_priv))
233 goto out_unlock;
234
235 if (!dev->master)
236 goto out_unlock;
237
238 if (file_priv->master->lessor != NULL) {
239 DRM_DEBUG_LEASE("Attempt to drop lessee %d as master\n", file_priv->master->lessee_id);
240 ret = -EINVAL;
241 goto out_unlock;
242 }
243
244 ret = 0;
245 drm_drop_master(dev, file_priv);
246out_unlock:
247 mutex_unlock(&dev->master_mutex);
248 return ret;
249}
250
251int drm_master_open(struct drm_file *file_priv)
252{
253 struct drm_device *dev = file_priv->minor->dev;
254 int ret = 0;
255
256 /* if there is no current master make this fd it, but do not create
257 * any master object for render clients */
258 mutex_lock(&dev->master_mutex);
259 if (!dev->master)
260 ret = drm_new_set_master(dev, file_priv);
261 else
262 file_priv->master = drm_master_get(dev->master);
263 mutex_unlock(&dev->master_mutex);
264
265 return ret;
266}
267
268void drm_master_release(struct drm_file *file_priv)
269{
270 struct drm_device *dev = file_priv->minor->dev;
271 struct drm_master *master = file_priv->master;
272
273 mutex_lock(&dev->master_mutex);
274 if (file_priv->magic)
275 idr_remove(&file_priv->master->magic_map, file_priv->magic);
276
277 if (!drm_is_current_master(file_priv))
278 goto out;
279
280 drm_legacy_lock_master_cleanup(dev, master);
281
282 if (dev->master == file_priv->master)
283 drm_drop_master(dev, file_priv);
284out:
285 if (drm_core_check_feature(dev, DRIVER_MODESET) && file_priv->is_master) {
286 /* Revoke any leases held by this or lessees, but only if
287 * this is the "real" master
288 */
289 drm_lease_revoke(master);
290 }
291
292 /* drop the master reference held by the file priv */
293 if (file_priv->master)
294 drm_master_put(&file_priv->master);
295 mutex_unlock(&dev->master_mutex);
296}
297
298/**
299 * drm_is_current_master - checks whether @priv is the current master
300 * @fpriv: DRM file private
301 *
302 * Checks whether @fpriv is current master on its device. This decides whether a
303 * client is allowed to run DRM_MASTER IOCTLs.
304 *
305 * Most of the modern IOCTL which require DRM_MASTER are for kernel modesetting
306 * - the current master is assumed to own the non-shareable display hardware.
307 */
308bool drm_is_current_master(struct drm_file *fpriv)
309{
310 return fpriv->is_master && drm_lease_owner(fpriv->master) == fpriv->minor->dev->master;
311}
312EXPORT_SYMBOL(drm_is_current_master);
313
314/**
315 * drm_master_get - reference a master pointer
316 * @master: &struct drm_master
317 *
318 * Increments the reference count of @master and returns a pointer to @master.
319 */
320struct drm_master *drm_master_get(struct drm_master *master)
321{
322 kref_get(&master->refcount);
323 return master;
324}
325EXPORT_SYMBOL(drm_master_get);
326
327static void drm_master_destroy(struct kref *kref)
328{
329 struct drm_master *master = container_of(kref, struct drm_master, refcount);
330 struct drm_device *dev = master->dev;
331
332 if (drm_core_check_feature(dev, DRIVER_MODESET))
333 drm_lease_destroy(master);
334
335 if (dev->driver->master_destroy)
336 dev->driver->master_destroy(dev, master);
337
338 drm_legacy_master_rmmaps(dev, master);
339
340 idr_destroy(&master->magic_map);
341 idr_destroy(&master->leases);
342 idr_destroy(&master->lessee_idr);
343
344 kfree(master->unique);
345 kfree(master);
346}
347
348/**
349 * drm_master_put - unreference and clear a master pointer
350 * @master: pointer to a pointer of &struct drm_master
351 *
352 * This decrements the &drm_master behind @master and sets it to NULL.
353 */
354void drm_master_put(struct drm_master **master)
355{
356 kref_put(&(*master)->refcount, drm_master_destroy);
357 *master = NULL;
358}
359EXPORT_SYMBOL(drm_master_put);
360
361/* Used by drm_client and drm_fb_helper */
362bool drm_master_internal_acquire(struct drm_device *dev)
363{
364 mutex_lock(&dev->master_mutex);
365 if (dev->master) {
366 mutex_unlock(&dev->master_mutex);
367 return false;
368 }
369
370 return true;
371}
372EXPORT_SYMBOL(drm_master_internal_acquire);
373
374/* Used by drm_client and drm_fb_helper */
375void drm_master_internal_release(struct drm_device *dev)
376{
377 mutex_unlock(&dev->master_mutex);
378}
379EXPORT_SYMBOL(drm_master_internal_release);