linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* PATCH: drivers/char/vt.c allows virtually locking up nonnetworked machine
@ 2001-06-30 21:10 Rudolf Polzer
  2001-06-30 22:53 ` Guest section DW
  2001-06-30 22:54 ` Dan Podeanu
  0 siblings, 2 replies; 3+ messages in thread
From: Rudolf Polzer @ 2001-06-30 21:10 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

There is a problem concerning chvt. A normal user can run a

bash$ while [ 1 ]; do chvt 11; done

which cannot be killed using the console (only remotely, virtually never
on a nonnetworked multiuser machine). So I changed the kernel source code
so that only the superuser may change terminals.

Since renaming/deleting chvt is no solution (chvt is a simple ioctl call),
it seems to be the simplest way to prevent this. Console switching
using Ctrl-Alt-Fkey still works, as well as X, so probably there are
no implications in most cases.

But, since this may be too restrictive for some applications, I would
recommend making this a configuration option. Unfortunately I do not
know how to do this :(

--- drivers/char/vt.c.orig	Mon Jun 25 09:00:28 2001
+++ drivers/char/vt.c	Sat Jun 30 23:02:56 2001
@@ -435,10 +435,16 @@
 
 	/*
 	 * To have permissions to do most of the vt ioctls, we either have
-	 * to be the owner of the tty, or super-user.
+	 * to be the owner of the tty, or super-user. Only the superuser
+	 * if you want added security.
+	 */
+         
+	/*
+	 * disable a security hole, therefore the first check is commented
+	 * out!
 	 */
 	perm = 0;
-	if (current->tty == tty || suser())
+	if (/* current->tty == tty || */ suser())
 		perm = 1;
  
 	kbd = kbd_table + console;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-07-03  1:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-06-30 21:10 PATCH: drivers/char/vt.c allows virtually locking up nonnetworked machine Rudolf Polzer
2001-06-30 22:53 ` Guest section DW
2001-06-30 22:54 ` Dan Podeanu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).