aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom@vmware.com>2014-02-19 08:21:48 -0500
committerThomas Hellstrom <thellstrom@vmware.com>2014-03-28 09:19:01 -0400
commitac05dbc57ef2b8709bf48693bb25e16a63e8e71f (patch)
treeb598a45b17e29c7127e40cf4e90d38706c7ffb93
parentc2667355619572c9324916b62b4f6608a56de031 (diff)
drm: Make control nodes master-less v3
Like for render-nodes, there is no point in maintaining the master concept for control nodes, so set the struct drm_file::master pointer to NULL. At the same time, make sure DRM_MASTER | DRM_CONTROL_ALLOW ioctls are always allowed when called through the control node. Previously the caller also needed to be master. v2: Adapt to refactoring of ioctl permission check. v3: Formatting of logical expression. Use drm_is_control_client() instead of drm_is_control(). Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r--drivers/gpu/drm/drm_drv.c7
-rw-r--r--drivers/gpu/drm/drm_fops.c6
-rw-r--r--include/drm/drmP.h5
3 files changed, 13 insertions, 5 deletions
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index 05e30530c025..cf2dfb790bf1 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -306,13 +306,14 @@ static int drm_ioctl_permit(u32 flags, struct drm_file *file_priv)
306 !file_priv->authenticated)) 306 !file_priv->authenticated))
307 return -EACCES; 307 return -EACCES;
308 308
309 /* MASTER is only for master */ 309 /* MASTER is only for master or control clients */
310 if (unlikely((flags & DRM_MASTER) && !file_priv->is_master)) 310 if (unlikely((flags & DRM_MASTER) && !file_priv->is_master &&
311 !drm_is_control_client(file_priv)))
311 return -EACCES; 312 return -EACCES;
312 313
313 /* Control clients must be explicitly allowed */ 314 /* Control clients must be explicitly allowed */
314 if (unlikely(!(flags & DRM_CONTROL_ALLOW) && 315 if (unlikely(!(flags & DRM_CONTROL_ALLOW) &&
315 file_priv->minor->type == DRM_MINOR_CONTROL)) 316 drm_is_control_client(file_priv)))
316 return -EACCES; 317 return -EACCES;
317 318
318 /* Render clients must be explicitly allowed */ 319 /* Render clients must be explicitly allowed */
diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c
index 9b02f126fb0d..5432a1a61c15 100644
--- a/drivers/gpu/drm/drm_fops.c
+++ b/drivers/gpu/drm/drm_fops.c
@@ -232,7 +232,8 @@ static int drm_open_helper(struct inode *inode, struct file *filp,
232 /* if there is no current master make this fd it, but do not create 232 /* if there is no current master make this fd it, but do not create
233 * any master object for render clients */ 233 * any master object for render clients */
234 mutex_lock(&dev->struct_mutex); 234 mutex_lock(&dev->struct_mutex);
235 if (!priv->minor->master && !drm_is_render_client(priv)) { 235 if (!priv->minor->master && !drm_is_render_client(priv) &&
236 !drm_is_control_client(priv)) {
236 /* create a new master */ 237 /* create a new master */
237 priv->minor->master = drm_master_create(priv->minor); 238 priv->minor->master = drm_master_create(priv->minor);
238 if (!priv->minor->master) { 239 if (!priv->minor->master) {
@@ -270,7 +271,8 @@ static int drm_open_helper(struct inode *inode, struct file *filp,
270 goto out_close; 271 goto out_close;
271 } 272 }
272 } 273 }
273 } else if (!drm_is_render_client(priv)) { 274 } else if (!drm_is_render_client(priv) &&
275 !drm_is_control_client(priv)) {
274 /* get a reference to the master */ 276 /* get a reference to the master */
275 priv->master = drm_master_get(priv->minor->master); 277 priv->master = drm_master_get(priv->minor->master);
276 } 278 }
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 2242968e7deb..3cf9f46ce2e6 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -1207,6 +1207,11 @@ static inline bool drm_is_render_client(struct drm_file *file_priv)
1207 return file_priv->minor->type == DRM_MINOR_RENDER; 1207 return file_priv->minor->type == DRM_MINOR_RENDER;
1208} 1208}
1209 1209
1210static inline bool drm_is_control_client(const struct drm_file *file_priv)
1211{
1212 return file_priv->minor->type == DRM_MINOR_CONTROL;
1213}
1214
1210/******************************************************************/ 1215/******************************************************************/
1211/** \name Internal function definitions */ 1216/** \name Internal function definitions */
1212/*@{*/ 1217/*@{*/