aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/vt_ioctl.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-10-30 15:03:02 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2005-10-30 17:37:25 -0800
commit0b360adbdb54d5b98b78d57ba0916bc4b8871968 (patch)
treeb793404c03c0ae77929786d0c501030791253163 /drivers/char/vt_ioctl.c
parent[PATCH] firmware: fix all kernel-doc warnings (diff)
downloadlinux-dev-0b360adbdb54d5b98b78d57ba0916bc4b8871968.tar.xz
linux-dev-0b360adbdb54d5b98b78d57ba0916bc4b8871968.zip
[PATCH] setkeys needs root
Because people can play games reprogramming keys and leaving traps for the next user of the console. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/vt_ioctl.c')
-rw-r--r--drivers/char/vt_ioctl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/char/vt_ioctl.c b/drivers/char/vt_ioctl.c
index 1d44f69e1fda..003dda147cd0 100644
--- a/drivers/char/vt_ioctl.c
+++ b/drivers/char/vt_ioctl.c
@@ -192,6 +192,9 @@ do_kdgkb_ioctl(int cmd, struct kbsentry __user *user_kdgkb, int perm)
int i, j, k;
int ret;
+ if (!capable(CAP_SYS_TTY_CONFIG))
+ return -EPERM;
+
kbs = kmalloc(sizeof(*kbs), GFP_KERNEL);
if (!kbs) {
ret = -ENOMEM;