blob: b7f7d968e4cd19f61dab1d8ddfa3449bfda37d73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Created: Fri Jan 8 09:01:26 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 *
David Herrmannec8f1122014-07-23 14:14:53 +02008 * Author Rickard E. (Rik) Faith <faith@valinux.com>
9 * Author Gareth Hughes <gareth@valinux.com>
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * 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
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
32#include <drm/drm_core.h>
David Herrmanne7b960702014-07-24 12:10:04 +020033#include "drm_legacy.h"
Daniel Vetter18882992014-09-10 08:16:10 +020034#include "drm_internal.h"
Daniel Vettera97df1c2014-12-18 22:49:02 +010035#include "drm_crtc_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
David Howells760285e2012-10-02 18:01:07 +010037#include <linux/pci.h>
38#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
David Herrmannec8f1122014-07-23 14:14:53 +020040static int drm_version(struct drm_device *dev, void *data,
41 struct drm_file *file_priv);
42
Daniel Vetter0aaf20c2015-09-08 13:56:27 +020043/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * Get the bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100045 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100047 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * \param cmd command.
49 * \param arg user argument, pointing to a drm_unique structure.
50 * \return zero on success or a negative number on failure.
51 *
52 * Copies the bus id from drm_device::unique into user space.
53 */
Daniel Vetter78238752014-09-10 12:43:55 +020054static int drm_getunique(struct drm_device *dev, void *data,
Eric Anholtc153f452007-09-03 12:06:45 +100055 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Eric Anholtc153f452007-09-03 12:06:45 +100057 struct drm_unique *u = data;
Dave Airlie7c1c2872008-11-28 14:22:24 +100058 struct drm_master *master = file_priv->master;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Dave Airlie7c1c2872008-11-28 14:22:24 +100060 if (u->unique_len >= master->unique_len) {
61 if (copy_to_user(u->unique, master->unique, master->unique_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return -EFAULT;
63 }
Dave Airlie7c1c2872008-11-28 14:22:24 +100064 u->unique_len = master->unique_len;
Eric Anholtc153f452007-09-03 12:06:45 +100065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
67}
68
Chris Wilson3fb688f2010-08-04 11:09:42 +010069static void
70drm_unset_busid(struct drm_device *dev,
71 struct drm_master *master)
72{
Chris Wilson3fb688f2010-08-04 11:09:42 +010073 kfree(master->unique);
74 master->unique = NULL;
75 master->unique_len = 0;
Chris Wilson3fb688f2010-08-04 11:09:42 +010076}
77
Daniel Vetter0aaf20c2015-09-08 13:56:27 +020078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * Set the bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100080 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100082 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * \param cmd command.
84 * \param arg user argument, pointing to a drm_unique structure.
85 * \return zero on success or a negative number on failure.
86 *
87 * Copies the bus id from userspace into drm_device::unique, and verifies that
88 * it matches the device this DRM is attached to (EINVAL otherwise). Deprecated
89 * in interface version 1.1 and will return EBUSY when setversion has requested
Daniel Vetter53bf2a22013-11-03 21:47:18 +010090 * version 1.1 or greater. Also note that KMS is all version 1.1 and later and
91 * UMS was only ever supported on pci devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
Daniel Vetter78238752014-09-10 12:43:55 +020093static int drm_setunique(struct drm_device *dev, void *data,
Eric Anholtc153f452007-09-03 12:06:45 +100094 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Eric Anholtc153f452007-09-03 12:06:45 +100096 struct drm_unique *u = data;
Dave Airlie7c1c2872008-11-28 14:22:24 +100097 struct drm_master *master = file_priv->master;
Dave Airlie8410ea32010-12-15 03:16:38 +100098 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Dave Airlie7c1c2872008-11-28 14:22:24 +1000100 if (master->unique_len || master->unique)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000101 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Eric Anholtc153f452007-09-03 12:06:45 +1000103 if (!u->unique_len || u->unique_len > 1024)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000104 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Daniel Vetter53bf2a22013-11-03 21:47:18 +0100106 if (drm_core_check_feature(dev, DRIVER_MODESET))
107 return 0;
108
109 if (WARN_ON(!dev->pdev))
Dave Airlie8410ea32010-12-15 03:16:38 +1000110 return -EINVAL;
111
Daniel Vetter53bf2a22013-11-03 21:47:18 +0100112 ret = drm_pci_set_unique(dev, master, u);
Dave Airlie8410ea32010-12-15 03:16:38 +1000113 if (ret)
Chris Wilson3fb688f2010-08-04 11:09:42 +0100114 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 return 0;
Chris Wilson3fb688f2010-08-04 11:09:42 +0100117
118err:
119 drm_unset_busid(dev, master);
120 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Dave Airlie7c1c2872008-11-28 14:22:24 +1000123static int drm_set_busid(struct drm_device *dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Dave Airlie7c1c2872008-11-28 14:22:24 +1000125 struct drm_master *master = file_priv->master;
Dave Airlie8410ea32010-12-15 03:16:38 +1000126 int ret;
Chris Wilson3fb688f2010-08-04 11:09:42 +0100127
128 if (master->unique != NULL)
129 drm_unset_busid(dev, master);
Dave Airliefe347652006-01-02 21:19:39 +1100130
David Herrmann915b4d12014-08-29 12:12:43 +0200131 if (dev->driver->set_busid) {
132 ret = dev->driver->set_busid(dev, master);
133 if (ret) {
134 drm_unset_busid(dev, master);
135 return ret;
136 }
Thierry Redingca8e2ad2014-04-11 15:23:00 +0200137 } else {
Daniel Vetter5079c462016-06-21 10:54:14 +0200138 WARN_ON(!dev->unique);
Thierry Redingca8e2ad2014-04-11 15:23:00 +0200139 master->unique = kstrdup(dev->unique, GFP_KERNEL);
140 if (master->unique)
141 master->unique_len = strlen(dev->unique);
142 }
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
145}
146
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200147/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * Get client information.
149 *
150 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000151 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * \param cmd command.
153 * \param arg user argument, pointing to a drm_client structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000154 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * \return zero on success or a negative number on failure.
156 *
157 * Searches for the client with the specified index and copies its information
158 * into userspace
159 */
Daniel Vetter78238752014-09-10 12:43:55 +0200160static int drm_getclient(struct drm_device *dev, void *data,
Eric Anholtc153f452007-09-03 12:06:45 +1000161 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Eric Anholtc153f452007-09-03 12:06:45 +1000163 struct drm_client *client = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Daniel Vetter719524d2013-08-08 15:41:31 +0200165 /*
166 * Hollowed-out getclient ioctl to keep some dead old drm tests/tools
167 * not breaking completely. Userspace tools stop enumerating one they
168 * get -EINVAL, hence this is the return value we need to hand back for
169 * no clients tracked.
170 *
171 * Unfortunately some clients (*cough* libva *cough*) use this in a fun
172 * attempt to figure out whether they're authenticated or not. Since
173 * that's the only thing they care about, give it to the directly
174 * instead of walking one giant list.
175 */
176 if (client->idx == 0) {
177 client->auth = file_priv->authenticated;
178 client->pid = pid_vnr(file_priv->pid);
179 client->uid = from_kuid_munged(current_user_ns(),
180 file_priv->uid);
181 client->magic = 0;
182 client->iocs = 0;
Ilija Hadzic09b4ea42011-10-28 17:43:28 -0400183
Daniel Vetter719524d2013-08-08 15:41:31 +0200184 return 0;
185 } else {
186 return -EINVAL;
Eric Anholtb018fcd2007-11-22 18:46:54 +1000187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200190/*
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000191 * Get statistics information.
192 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000194 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * \param cmd command.
196 * \param arg user argument, pointing to a drm_stats structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000197 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * \return zero on success or a negative number on failure.
199 */
Daniel Vetter78238752014-09-10 12:43:55 +0200200static int drm_getstats(struct drm_device *dev, void *data,
Eric Anholtc153f452007-09-03 12:06:45 +1000201 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Eric Anholtc153f452007-09-03 12:06:45 +1000203 struct drm_stats *stats = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Daniel Vetterd79cdc82013-08-08 15:41:32 +0200205 /* Clear stats to prevent userspace from eating its stack garbage. */
Li Zefan246a3d12007-11-05 12:53:09 +1000206 memset(stats, 0, sizeof(*stats));
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
209}
210
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200211/*
Ben Skeggs9f354212011-02-21 11:17:35 +1000212 * Get device/driver capabilities
213 */
Daniel Vetter78238752014-09-10 12:43:55 +0200214static int drm_getcap(struct drm_device *dev, void *data, struct drm_file *file_priv)
Ben Skeggs9f354212011-02-21 11:17:35 +1000215{
216 struct drm_get_cap *req = data;
217
218 req->value = 0;
Dave Airliee73f88a2011-03-04 14:50:28 +1000219 switch (req->capability) {
220 case DRM_CAP_DUMB_BUFFER:
221 if (dev->driver->dumb_create)
222 req->value = 1;
223 break;
Dave Airlie51eab412011-03-24 20:54:35 +1000224 case DRM_CAP_VBLANK_HIGH_CRTC:
Ilija Hadzic19b01b52011-03-18 16:58:04 -0500225 req->value = 1;
226 break;
Dave Airlie019d96c2011-09-29 16:20:42 +0100227 case DRM_CAP_DUMB_PREFERRED_DEPTH:
228 req->value = dev->mode_config.preferred_depth;
229 break;
230 case DRM_CAP_DUMB_PREFER_SHADOW:
231 req->value = dev->mode_config.prefer_shadow;
232 break;
Dave Airlie4271a402012-04-02 14:11:50 +0100233 case DRM_CAP_PRIME:
234 req->value |= dev->driver->prime_fd_to_handle ? DRM_PRIME_CAP_IMPORT : 0;
235 req->value |= dev->driver->prime_handle_to_fd ? DRM_PRIME_CAP_EXPORT : 0;
236 break;
Imre Deakc61eef72012-10-23 18:53:26 +0000237 case DRM_CAP_TIMESTAMP_MONOTONIC:
238 req->value = drm_timestamp_monotonic;
239 break;
Keith Packard62f21042013-07-22 18:50:00 -0700240 case DRM_CAP_ASYNC_PAGE_FLIP:
241 req->value = dev->mode_config.async_page_flip;
242 break;
Alex Deucher8716ed42014-02-12 12:48:23 -0500243 case DRM_CAP_CURSOR_WIDTH:
244 if (dev->mode_config.cursor_width)
245 req->value = dev->mode_config.cursor_width;
246 else
247 req->value = 64;
248 break;
249 case DRM_CAP_CURSOR_HEIGHT:
250 if (dev->mode_config.cursor_height)
251 req->value = dev->mode_config.cursor_height;
252 else
253 req->value = 64;
254 break;
Rob Clarke3eb3252015-02-05 14:41:52 +0000255 case DRM_CAP_ADDFB2_MODIFIERS:
256 req->value = dev->mode_config.allow_fb_modifiers;
257 break;
Dave Airliee73f88a2011-03-04 14:50:28 +1000258 default:
259 return -EINVAL;
260 }
Ben Skeggs9f354212011-02-21 11:17:35 +1000261 return 0;
262}
263
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200264/*
Damien Lespiau1c0814f2013-09-25 16:45:20 +0100265 * Set device/driver capabilities
266 */
Daniel Vetter78238752014-09-10 12:43:55 +0200267static int
Damien Lespiau1c0814f2013-09-25 16:45:20 +0100268drm_setclientcap(struct drm_device *dev, void *data, struct drm_file *file_priv)
269{
Damien Lespiau61d8e322013-09-25 16:45:22 +0100270 struct drm_set_client_cap *req = data;
271
272 switch (req->capability) {
273 case DRM_CLIENT_CAP_STEREO_3D:
274 if (req->value > 1)
275 return -EINVAL;
276 file_priv->stereo_allowed = req->value;
277 break;
Matt Roper681e7ec2014-04-01 15:22:42 -0700278 case DRM_CLIENT_CAP_UNIVERSAL_PLANES:
Matt Roper681e7ec2014-04-01 15:22:42 -0700279 if (req->value > 1)
280 return -EINVAL;
281 file_priv->universal_planes = req->value;
282 break;
Rob Clark88a48e22014-12-18 16:01:50 -0500283 case DRM_CLIENT_CAP_ATOMIC:
Rob Clark88a48e22014-12-18 16:01:50 -0500284 if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
285 return -EINVAL;
286 if (req->value > 1)
287 return -EINVAL;
288 file_priv->atomic = req->value;
Daniel Vetter179f1582014-12-19 10:33:52 +0100289 file_priv->universal_planes = req->value;
Rob Clark88a48e22014-12-18 16:01:50 -0500290 break;
Damien Lespiau61d8e322013-09-25 16:45:22 +0100291 default:
292 return -EINVAL;
293 }
294
295 return 0;
Damien Lespiau1c0814f2013-09-25 16:45:20 +0100296}
297
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200298/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * Setversion ioctl.
300 *
301 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000302 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * \param cmd command.
304 * \param arg user argument, pointing to a drm_lock structure.
305 * \return zero on success or negative number on failure.
306 *
307 * Sets the requested interface version
308 */
Daniel Vetter78238752014-09-10 12:43:55 +0200309static int drm_setversion(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Eric Anholtc153f452007-09-03 12:06:45 +1000311 struct drm_set_version *sv = data;
312 int if_version, retcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Eric Anholtc153f452007-09-03 12:06:45 +1000314 if (sv->drm_di_major != -1) {
315 if (sv->drm_di_major != DRM_IF_MAJOR ||
316 sv->drm_di_minor < 0 || sv->drm_di_minor > DRM_IF_MINOR) {
317 retcode = -EINVAL;
318 goto done;
319 }
320 if_version = DRM_IF_VERSION(sv->drm_di_major,
321 sv->drm_di_minor);
Dave Airlie3d774612006-08-07 20:07:43 +1000322 dev->if_version = max(if_version, dev->if_version);
Eric Anholtc153f452007-09-03 12:06:45 +1000323 if (sv->drm_di_minor >= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /*
325 * Version 1.1 includes tying of DRM to specific device
Benjamin Herrenschmidtc17c2f82010-08-06 13:55:10 +1000326 * Version 1.4 has proper PCI domain support
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
Chris Wilson3fb688f2010-08-04 11:09:42 +0100328 retcode = drm_set_busid(dev, file_priv);
329 if (retcode)
330 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 }
333
Eric Anholtc153f452007-09-03 12:06:45 +1000334 if (sv->drm_dd_major != -1) {
335 if (sv->drm_dd_major != dev->driver->major ||
336 sv->drm_dd_minor < 0 || sv->drm_dd_minor >
337 dev->driver->minor) {
338 retcode = -EINVAL;
339 goto done;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Eric Anholtc153f452007-09-03 12:06:45 +1000342
343done:
344 sv->drm_di_major = DRM_IF_MAJOR;
345 sv->drm_di_minor = DRM_IF_MINOR;
346 sv->drm_dd_major = dev->driver->major;
347 sv->drm_dd_minor = dev->driver->minor;
348
349 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200352/**
353 * drm_noop - DRM no-op ioctl implemntation
354 * @dev: DRM device for the ioctl
355 * @data: data pointer for the ioctl
356 * @file_priv: DRM file for the ioctl call
357 *
358 * This no-op implementation for drm ioctls is useful for deprecated
359 * functionality where we can't return a failure code because existing userspace
360 * checks the result of the ioctl, but doesn't care about the action.
361 *
362 * Always returns successfully with 0.
363 */
Eric Anholtc153f452007-09-03 12:06:45 +1000364int drm_noop(struct drm_device *dev, void *data,
365 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 DRM_DEBUG("\n");
368 return 0;
369}
Daniel Vetterb2c606f2012-01-17 12:50:12 +0100370EXPORT_SYMBOL(drm_noop);
David Herrmannec8f1122014-07-23 14:14:53 +0200371
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200372/**
373 * drm_invalid_op - DRM invalid ioctl implemntation
374 * @dev: DRM device for the ioctl
375 * @data: data pointer for the ioctl
376 * @file_priv: DRM file for the ioctl call
377 *
378 * This no-op implementation for drm ioctls is useful for deprecated
379 * functionality where we really don't want to allow userspace to call the ioctl
380 * any more. This is the case for old ums interfaces for drivers that
381 * transitioned to kms gradually and so kept the old legacy tables around. This
382 * only applies to radeon and i915 kms drivers, other drivers shouldn't need to
383 * use this function.
384 *
385 * Always fails with a return value of -EINVAL.
386 */
Daniel Vetter4b635392015-09-08 13:56:26 +0200387int drm_invalid_op(struct drm_device *dev, void *data,
388 struct drm_file *file_priv)
389{
390 return -EINVAL;
391}
392EXPORT_SYMBOL(drm_invalid_op);
393
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200394/*
David Herrmannec8f1122014-07-23 14:14:53 +0200395 * Copy and IOCTL return string to user space
396 */
397static int drm_copy_field(char __user *buf, size_t *buf_len, const char *value)
398{
399 int len;
400
401 /* don't overflow userbuf */
402 len = strlen(value);
403 if (len > *buf_len)
404 len = *buf_len;
405
406 /* let userspace know exact length of driver value (which could be
407 * larger than the userspace-supplied buffer) */
408 *buf_len = strlen(value);
409
410 /* finally, try filling in the userbuf */
411 if (len && buf)
412 if (copy_to_user(buf, value, len))
413 return -EFAULT;
414 return 0;
415}
416
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200417/*
David Herrmannec8f1122014-07-23 14:14:53 +0200418 * Get version information
419 *
420 * \param inode device inode.
421 * \param filp file pointer.
422 * \param cmd command.
423 * \param arg user argument, pointing to a drm_version structure.
424 * \return zero on success or negative number on failure.
425 *
426 * Fills in the version information in \p arg.
427 */
428static int drm_version(struct drm_device *dev, void *data,
429 struct drm_file *file_priv)
430{
431 struct drm_version *version = data;
432 int err;
433
434 version->version_major = dev->driver->major;
435 version->version_minor = dev->driver->minor;
436 version->version_patchlevel = dev->driver->patchlevel;
437 err = drm_copy_field(version->name, &version->name_len,
438 dev->driver->name);
439 if (!err)
440 err = drm_copy_field(version->date, &version->date_len,
441 dev->driver->date);
442 if (!err)
443 err = drm_copy_field(version->desc, &version->desc_len,
444 dev->driver->desc);
445
446 return err;
447}
448
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200449/*
David Herrmannec8f1122014-07-23 14:14:53 +0200450 * drm_ioctl_permit - Check ioctl permissions against caller
451 *
452 * @flags: ioctl permission flags.
453 * @file_priv: Pointer to struct drm_file identifying the caller.
454 *
455 * Checks whether the caller is allowed to run an ioctl with the
456 * indicated permissions. If so, returns zero. Otherwise returns an
457 * error code suitable for ioctl return.
458 */
Thomas Hellstrom51010202015-07-10 22:31:08 -0700459int drm_ioctl_permit(u32 flags, struct drm_file *file_priv)
David Herrmannec8f1122014-07-23 14:14:53 +0200460{
461 /* ROOT_ONLY is only for CAP_SYS_ADMIN */
462 if (unlikely((flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)))
463 return -EACCES;
464
465 /* AUTH is only for authenticated or render client */
466 if (unlikely((flags & DRM_AUTH) && !drm_is_render_client(file_priv) &&
467 !file_priv->authenticated))
468 return -EACCES;
469
470 /* MASTER is only for master or control clients */
Dave Airlie7963e9d2014-08-08 07:30:53 +1000471 if (unlikely((flags & DRM_MASTER) && !file_priv->is_master &&
David Herrmannec8f1122014-07-23 14:14:53 +0200472 !drm_is_control_client(file_priv)))
473 return -EACCES;
474
475 /* Control clients must be explicitly allowed */
476 if (unlikely(!(flags & DRM_CONTROL_ALLOW) &&
477 drm_is_control_client(file_priv)))
478 return -EACCES;
479
480 /* Render clients must be explicitly allowed */
481 if (unlikely(!(flags & DRM_RENDER_ALLOW) &&
482 drm_is_render_client(file_priv)))
483 return -EACCES;
484
485 return 0;
486}
Thomas Hellstrom51010202015-07-10 22:31:08 -0700487EXPORT_SYMBOL(drm_ioctl_permit);
David Herrmannec8f1122014-07-23 14:14:53 +0200488
Emil Velikov066626d2015-03-30 17:10:36 +0000489#define DRM_IOCTL_DEF(ioctl, _func, _flags) \
490 [DRM_IOCTL_NR(ioctl)] = { \
491 .cmd = ioctl, \
492 .func = _func, \
493 .flags = _flags, \
494 .name = #ioctl \
495 }
Daniel Vetter78238752014-09-10 12:43:55 +0200496
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200497/* Ioctl table */
Daniel Vetter78238752014-09-10 12:43:55 +0200498static const struct drm_ioctl_desc drm_ioctls[] = {
Thomas Hellstrom30c64662015-09-15 01:11:42 -0700499 DRM_IOCTL_DEF(DRM_IOCTL_VERSION, drm_version,
500 DRM_UNLOCKED|DRM_RENDER_ALLOW|DRM_CONTROL_ALLOW),
Daniel Vetter78238752014-09-10 12:43:55 +0200501 DRM_IOCTL_DEF(DRM_IOCTL_GET_UNIQUE, drm_getunique, 0),
Daniel Vetter94e86f52016-06-17 09:33:22 +0200502 DRM_IOCTL_DEF(DRM_IOCTL_GET_MAGIC, drm_getmagic, DRM_UNLOCKED),
Daniel Vetter78238752014-09-10 12:43:55 +0200503 DRM_IOCTL_DEF(DRM_IOCTL_IRQ_BUSID, drm_irq_by_busid, DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetterec1f52e2016-04-26 19:29:36 +0200504 DRM_IOCTL_DEF(DRM_IOCTL_GET_MAP, drm_legacy_getmap_ioctl, DRM_UNLOCKED),
Daniel Vetter78238752014-09-10 12:43:55 +0200505 DRM_IOCTL_DEF(DRM_IOCTL_GET_CLIENT, drm_getclient, DRM_UNLOCKED),
506 DRM_IOCTL_DEF(DRM_IOCTL_GET_STATS, drm_getstats, DRM_UNLOCKED),
507 DRM_IOCTL_DEF(DRM_IOCTL_GET_CAP, drm_getcap, DRM_UNLOCKED|DRM_RENDER_ALLOW),
508 DRM_IOCTL_DEF(DRM_IOCTL_SET_CLIENT_CAP, drm_setclientcap, 0),
509 DRM_IOCTL_DEF(DRM_IOCTL_SET_VERSION, drm_setversion, DRM_MASTER),
510
511 DRM_IOCTL_DEF(DRM_IOCTL_SET_UNIQUE, drm_setunique, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
512 DRM_IOCTL_DEF(DRM_IOCTL_BLOCK, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
513 DRM_IOCTL_DEF(DRM_IOCTL_UNBLOCK, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Daniel Vetter94e86f52016-06-17 09:33:22 +0200514 DRM_IOCTL_DEF(DRM_IOCTL_AUTH_MAGIC, drm_authmagic, DRM_AUTH|DRM_UNLOCKED|DRM_MASTER),
Daniel Vetter78238752014-09-10 12:43:55 +0200515
516 DRM_IOCTL_DEF(DRM_IOCTL_ADD_MAP, drm_legacy_addmap_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
517 DRM_IOCTL_DEF(DRM_IOCTL_RM_MAP, drm_legacy_rmmap_ioctl, DRM_AUTH),
518
519 DRM_IOCTL_DEF(DRM_IOCTL_SET_SAREA_CTX, drm_legacy_setsareactx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
520 DRM_IOCTL_DEF(DRM_IOCTL_GET_SAREA_CTX, drm_legacy_getsareactx, DRM_AUTH),
521
Daniel Vetterce833ba2016-06-17 09:33:23 +0200522 DRM_IOCTL_DEF(DRM_IOCTL_SET_MASTER, drm_setmaster_ioctl, DRM_UNLOCKED|DRM_ROOT_ONLY),
523 DRM_IOCTL_DEF(DRM_IOCTL_DROP_MASTER, drm_dropmaster_ioctl, DRM_UNLOCKED|DRM_ROOT_ONLY),
Daniel Vetter78238752014-09-10 12:43:55 +0200524
525 DRM_IOCTL_DEF(DRM_IOCTL_ADD_CTX, drm_legacy_addctx, DRM_AUTH|DRM_ROOT_ONLY),
526 DRM_IOCTL_DEF(DRM_IOCTL_RM_CTX, drm_legacy_rmctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
527 DRM_IOCTL_DEF(DRM_IOCTL_MOD_CTX, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
528 DRM_IOCTL_DEF(DRM_IOCTL_GET_CTX, drm_legacy_getctx, DRM_AUTH),
529 DRM_IOCTL_DEF(DRM_IOCTL_SWITCH_CTX, drm_legacy_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
530 DRM_IOCTL_DEF(DRM_IOCTL_NEW_CTX, drm_legacy_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
531 DRM_IOCTL_DEF(DRM_IOCTL_RES_CTX, drm_legacy_resctx, DRM_AUTH),
532
533 DRM_IOCTL_DEF(DRM_IOCTL_ADD_DRAW, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
534 DRM_IOCTL_DEF(DRM_IOCTL_RM_DRAW, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
535
536 DRM_IOCTL_DEF(DRM_IOCTL_LOCK, drm_legacy_lock, DRM_AUTH),
537 DRM_IOCTL_DEF(DRM_IOCTL_UNLOCK, drm_legacy_unlock, DRM_AUTH),
538
539 DRM_IOCTL_DEF(DRM_IOCTL_FINISH, drm_noop, DRM_AUTH),
540
541 DRM_IOCTL_DEF(DRM_IOCTL_ADD_BUFS, drm_legacy_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
542 DRM_IOCTL_DEF(DRM_IOCTL_MARK_BUFS, drm_legacy_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
543 DRM_IOCTL_DEF(DRM_IOCTL_INFO_BUFS, drm_legacy_infobufs, DRM_AUTH),
544 DRM_IOCTL_DEF(DRM_IOCTL_MAP_BUFS, drm_legacy_mapbufs, DRM_AUTH),
545 DRM_IOCTL_DEF(DRM_IOCTL_FREE_BUFS, drm_legacy_freebufs, DRM_AUTH),
546 DRM_IOCTL_DEF(DRM_IOCTL_DMA, drm_legacy_dma_ioctl, DRM_AUTH),
547
548 DRM_IOCTL_DEF(DRM_IOCTL_CONTROL, drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
549
Daniel Vettera7fb8a22015-09-09 16:45:52 +0200550#if IS_ENABLED(CONFIG_AGP)
Daniel Vetter78238752014-09-10 12:43:55 +0200551 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ACQUIRE, drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
552 DRM_IOCTL_DEF(DRM_IOCTL_AGP_RELEASE, drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
553 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ENABLE, drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
554 DRM_IOCTL_DEF(DRM_IOCTL_AGP_INFO, drm_agp_info_ioctl, DRM_AUTH),
555 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ALLOC, drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
556 DRM_IOCTL_DEF(DRM_IOCTL_AGP_FREE, drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
557 DRM_IOCTL_DEF(DRM_IOCTL_AGP_BIND, drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
558 DRM_IOCTL_DEF(DRM_IOCTL_AGP_UNBIND, drm_agp_unbind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
559#endif
560
561 DRM_IOCTL_DEF(DRM_IOCTL_SG_ALLOC, drm_legacy_sg_alloc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
562 DRM_IOCTL_DEF(DRM_IOCTL_SG_FREE, drm_legacy_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
563
564 DRM_IOCTL_DEF(DRM_IOCTL_WAIT_VBLANK, drm_wait_vblank, DRM_UNLOCKED),
565
566 DRM_IOCTL_DEF(DRM_IOCTL_MODESET_CTL, drm_modeset_ctl, 0),
567
568 DRM_IOCTL_DEF(DRM_IOCTL_UPDATE_DRAW, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
569
570 DRM_IOCTL_DEF(DRM_IOCTL_GEM_CLOSE, drm_gem_close_ioctl, DRM_UNLOCKED|DRM_RENDER_ALLOW),
571 DRM_IOCTL_DEF(DRM_IOCTL_GEM_FLINK, drm_gem_flink_ioctl, DRM_AUTH|DRM_UNLOCKED),
572 DRM_IOCTL_DEF(DRM_IOCTL_GEM_OPEN, drm_gem_open_ioctl, DRM_AUTH|DRM_UNLOCKED),
573
574 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETRESOURCES, drm_mode_getresources, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
575
576 DRM_IOCTL_DEF(DRM_IOCTL_PRIME_HANDLE_TO_FD, drm_prime_handle_to_fd_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
577 DRM_IOCTL_DEF(DRM_IOCTL_PRIME_FD_TO_HANDLE, drm_prime_fd_to_handle_ioctl, DRM_AUTH|DRM_UNLOCKED|DRM_RENDER_ALLOW),
578
579 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPLANERESOURCES, drm_mode_getplane_res, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
580 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETCRTC, drm_mode_getcrtc, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
581 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETCRTC, drm_mode_setcrtc, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
582 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPLANE, drm_mode_getplane, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
583 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETPLANE, drm_mode_setplane, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
584 DRM_IOCTL_DEF(DRM_IOCTL_MODE_CURSOR, drm_mode_cursor_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
585 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETGAMMA, drm_mode_gamma_get_ioctl, DRM_UNLOCKED),
586 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETGAMMA, drm_mode_gamma_set_ioctl, DRM_MASTER|DRM_UNLOCKED),
587 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETENCODER, drm_mode_getencoder, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
588 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETCONNECTOR, drm_mode_getconnector, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
589 DRM_IOCTL_DEF(DRM_IOCTL_MODE_ATTACHMODE, drm_noop, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
590 DRM_IOCTL_DEF(DRM_IOCTL_MODE_DETACHMODE, drm_noop, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
591 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPROPERTY, drm_mode_getproperty_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
592 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETPROPERTY, drm_mode_connector_property_set_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
593 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPROPBLOB, drm_mode_getblob_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
594 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETFB, drm_mode_getfb, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
595 DRM_IOCTL_DEF(DRM_IOCTL_MODE_ADDFB, drm_mode_addfb, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
596 DRM_IOCTL_DEF(DRM_IOCTL_MODE_ADDFB2, drm_mode_addfb2, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
597 DRM_IOCTL_DEF(DRM_IOCTL_MODE_RMFB, drm_mode_rmfb, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
598 DRM_IOCTL_DEF(DRM_IOCTL_MODE_PAGE_FLIP, drm_mode_page_flip_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
599 DRM_IOCTL_DEF(DRM_IOCTL_MODE_DIRTYFB, drm_mode_dirtyfb_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
600 DRM_IOCTL_DEF(DRM_IOCTL_MODE_CREATE_DUMB, drm_mode_create_dumb_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
601 DRM_IOCTL_DEF(DRM_IOCTL_MODE_MAP_DUMB, drm_mode_mmap_dumb_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
602 DRM_IOCTL_DEF(DRM_IOCTL_MODE_DESTROY_DUMB, drm_mode_destroy_dumb_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
603 DRM_IOCTL_DEF(DRM_IOCTL_MODE_OBJ_GETPROPERTIES, drm_mode_obj_get_properties_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
604 DRM_IOCTL_DEF(DRM_IOCTL_MODE_OBJ_SETPROPERTY, drm_mode_obj_set_property_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
605 DRM_IOCTL_DEF(DRM_IOCTL_MODE_CURSOR2, drm_mode_cursor2_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Rob Clarkd34f20d2014-12-18 16:01:56 -0500606 DRM_IOCTL_DEF(DRM_IOCTL_MODE_ATOMIC, drm_mode_atomic_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Daniel Stonee2f5d2e2015-05-22 13:34:51 +0100607 DRM_IOCTL_DEF(DRM_IOCTL_MODE_CREATEPROPBLOB, drm_mode_createblob_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
608 DRM_IOCTL_DEF(DRM_IOCTL_MODE_DESTROYPROPBLOB, drm_mode_destroyblob_ioctl, DRM_CONTROL_ALLOW|DRM_UNLOCKED),
Daniel Vetter78238752014-09-10 12:43:55 +0200609};
610
611#define DRM_CORE_IOCTL_COUNT ARRAY_SIZE( drm_ioctls )
612
David Herrmannec8f1122014-07-23 14:14:53 +0200613/**
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200614 * drm_ioctl - ioctl callback implementation for DRM drivers
615 * @filp: file this ioctl is called on
616 * @cmd: ioctl cmd number
617 * @arg: user argument
David Herrmannec8f1122014-07-23 14:14:53 +0200618 *
619 * Looks up the ioctl function in the ::ioctls table, checking for root
620 * previleges if so required, and dispatches to the respective function.
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200621 *
622 * Returns:
623 * Zero on success, negative error code on failure.
David Herrmannec8f1122014-07-23 14:14:53 +0200624 */
625long drm_ioctl(struct file *filp,
626 unsigned int cmd, unsigned long arg)
627{
628 struct drm_file *file_priv = filp->private_data;
629 struct drm_device *dev;
630 const struct drm_ioctl_desc *ioctl = NULL;
631 drm_ioctl_t *func;
632 unsigned int nr = DRM_IOCTL_NR(cmd);
633 int retcode = -EINVAL;
634 char stack_kdata[128];
635 char *kdata = NULL;
Ville Syrjälä83be0032015-03-27 15:51:58 +0200636 unsigned int usize, asize, drv_size;
Daniel Vetterea487832015-09-28 21:42:40 +0200637 bool is_driver_ioctl;
David Herrmannec8f1122014-07-23 14:14:53 +0200638
639 dev = file_priv->minor->dev;
640
641 if (drm_device_is_unplugged(dev))
642 return -ENODEV;
643
Daniel Vetterea487832015-09-28 21:42:40 +0200644 is_driver_ioctl = nr >= DRM_COMMAND_BASE && nr < DRM_COMMAND_END;
645
646 if (is_driver_ioctl) {
Ville Syrjälä83be0032015-03-27 15:51:58 +0200647 /* driver ioctl */
648 if (nr - DRM_COMMAND_BASE >= dev->driver->num_ioctls)
649 goto err_i1;
David Herrmannec8f1122014-07-23 14:14:53 +0200650 ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
Ville Syrjälä83be0032015-03-27 15:51:58 +0200651 } else {
652 /* core ioctl */
653 if (nr >= DRM_CORE_IOCTL_COUNT)
654 goto err_i1;
David Herrmannec8f1122014-07-23 14:14:53 +0200655 ioctl = &drm_ioctls[nr];
Ville Syrjälä83be0032015-03-27 15:51:58 +0200656 }
David Herrmannec8f1122014-07-23 14:14:53 +0200657
Ville Syrjälä83be0032015-03-27 15:51:58 +0200658 drv_size = _IOC_SIZE(ioctl->cmd);
Ville Syrjälä53615af2015-03-27 15:51:59 +0200659 usize = _IOC_SIZE(cmd);
660 asize = max(usize, drv_size);
Ville Syrjälä83be0032015-03-27 15:51:58 +0200661 cmd = ioctl->cmd;
David Herrmannec8f1122014-07-23 14:14:53 +0200662
663 DRM_DEBUG("pid=%d, dev=0x%lx, auth=%d, %s\n",
664 task_pid_nr(current),
665 (long)old_encode_dev(file_priv->minor->kdev->devt),
666 file_priv->authenticated, ioctl->name);
667
668 /* Do not trust userspace, use our own definition */
669 func = ioctl->func;
670
671 if (unlikely(!func)) {
672 DRM_DEBUG("no function\n");
673 retcode = -EINVAL;
674 goto err_i1;
675 }
676
677 retcode = drm_ioctl_permit(ioctl->flags, file_priv);
678 if (unlikely(retcode))
679 goto err_i1;
680
681 if (cmd & (IOC_IN | IOC_OUT)) {
682 if (asize <= sizeof(stack_kdata)) {
683 kdata = stack_kdata;
684 } else {
685 kdata = kmalloc(asize, GFP_KERNEL);
686 if (!kdata) {
687 retcode = -ENOMEM;
688 goto err_i1;
689 }
690 }
691 if (asize > usize)
692 memset(kdata + usize, 0, asize - usize);
693 }
694
695 if (cmd & IOC_IN) {
696 if (copy_from_user(kdata, (void __user *)arg,
697 usize) != 0) {
698 retcode = -EFAULT;
699 goto err_i1;
700 }
701 } else if (cmd & IOC_OUT) {
702 memset(kdata, 0, usize);
703 }
704
Daniel Vetterea487832015-09-28 21:42:40 +0200705 /* Enforce sane locking for kms driver ioctls. Core ioctls are
706 * too messy still. */
707 if ((drm_core_check_feature(dev, DRIVER_MODESET) && is_driver_ioctl) ||
708 (ioctl->flags & DRM_UNLOCKED))
David Herrmannec8f1122014-07-23 14:14:53 +0200709 retcode = func(dev, kdata, file_priv);
710 else {
711 mutex_lock(&drm_global_mutex);
712 retcode = func(dev, kdata, file_priv);
713 mutex_unlock(&drm_global_mutex);
714 }
715
716 if (cmd & IOC_OUT) {
717 if (copy_to_user((void __user *)arg, kdata,
718 usize) != 0)
719 retcode = -EFAULT;
720 }
721
722 err_i1:
723 if (!ioctl)
724 DRM_DEBUG("invalid ioctl: pid=%d, dev=0x%lx, auth=%d, cmd=0x%02x, nr=0x%02x\n",
725 task_pid_nr(current),
726 (long)old_encode_dev(file_priv->minor->kdev->devt),
727 file_priv->authenticated, cmd, nr);
728
729 if (kdata != stack_kdata)
730 kfree(kdata);
731 if (retcode)
732 DRM_DEBUG("ret = %d\n", retcode);
733 return retcode;
734}
735EXPORT_SYMBOL(drm_ioctl);
736
737/**
738 * drm_ioctl_flags - Check for core ioctl and return ioctl permission flags
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200739 * @nr: ioctl number
740 * @flags: where to return the ioctl permission flags
David Herrmannec8f1122014-07-23 14:14:53 +0200741 *
Daniel Vetter0aaf20c2015-09-08 13:56:27 +0200742 * This ioctl is only used by the vmwgfx driver to augment the access checks
743 * done by the drm core and insofar a pretty decent layering violation. This
744 * shouldn't be used by any drivers.
745 *
746 * Returns:
747 * True if the @nr corresponds to a DRM core ioctl numer, false otherwise.
David Herrmannec8f1122014-07-23 14:14:53 +0200748 */
749bool drm_ioctl_flags(unsigned int nr, unsigned int *flags)
750{
Ville Syrjälä7ef5f822015-03-27 15:52:00 +0200751 if (nr >= DRM_COMMAND_BASE && nr < DRM_COMMAND_END)
752 return false;
David Herrmannec8f1122014-07-23 14:14:53 +0200753
Ville Syrjälä7ef5f822015-03-27 15:52:00 +0200754 if (nr >= DRM_CORE_IOCTL_COUNT)
755 return false;
756
757 *flags = drm_ioctls[nr].flags;
758 return true;
David Herrmannec8f1122014-07-23 14:14:53 +0200759}
760EXPORT_SYMBOL(drm_ioctl_flags);