1
0
Fork 0

[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>
hifive-unleashed-5.1
Andrew Morton 2005-10-30 15:03:02 -08:00 committed by Linus Torvalds
parent eb8e317998
commit 0b360adbdb
1 changed files with 3 additions and 0 deletions

View File

@ -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;