linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Kernel crash triggered by con2fb
@ 2003-04-24 21:50 Petr Vandrovec
  2003-04-24 23:28 ` James Simmons
  0 siblings, 1 reply; 2+ messages in thread
From: Petr Vandrovec @ 2003-04-24 21:50 UTC (permalink / raw)
  To: jsimmons; +Cc: linux-kernel

Hi James,
  it is not nice that anybody can crash my kernel by
doing con2fb with unallocated VT.
				Thanks,
					Petr Vandrovec
					vandrove@vc.cvut.cz

diff -urN linux-2.5.68-c1216.dist/drivers/video/console/fbcon.c linux-2.5.68-c1216.fb/drivers/video/console/fbcon.c
--- linux-2.5.68-c1216.dist/drivers/video/console/fbcon.c	2003-04-24 19:35:16.000000000 +0200
+++ linux-2.5.68-c1216.fb/drivers/video/console/fbcon.c	2003-04-24 23:37:24.000000000 +0200
@@ -294,13 +294,17 @@
  *	Maps a virtual console @unit to a frame buffer device
  *	@newidx.
  */
-void set_con2fb_map(int unit, int newidx)
+int set_con2fb_map(int unit, int newidx)
 {
 	struct vc_data *vc = vc_cons[unit].d;
 
+	if (!vc) {
+		return -ENODEV;
+	}
 	con2fb_map[unit] = newidx;
 	fbcon_is_default = (vc->vc_sw == &fb_con) ? 1 : 0;
 	take_over_console(&fb_con, unit, unit, fbcon_is_default);
+	return 0;
 }
 
 /*
diff -urN linux-2.5.68-c1216.dist/drivers/video/console/fbcon.h linux-2.5.68-c1216.fb/drivers/video/console/fbcon.h
--- linux-2.5.68-c1216.dist/drivers/video/console/fbcon.h	2003-04-24 19:35:21.000000000 +0200
+++ linux-2.5.68-c1216.fb/drivers/video/console/fbcon.h	2003-04-24 23:37:04.000000000 +0200
@@ -38,7 +38,7 @@
 
 /* drivers/video/console/fbcon.c */
 extern char con2fb_map[MAX_NR_CONSOLES];
-extern void set_con2fb_map(int unit, int newidx);
+extern int set_con2fb_map(int unit, int newidx);
 
     /*
      *  Attribute Decoding
diff -urN linux-2.5.68-c1216.dist/drivers/video/fbmem.c linux-2.5.68-c1216.fb/drivers/video/fbmem.c
--- linux-2.5.68-c1216.dist/drivers/video/fbmem.c	2003-04-24 19:33:03.000000000 +0200
+++ linux-2.5.68-c1216.fb/drivers/video/fbmem.c	2003-04-24 23:36:48.000000000 +0200
@@ -1035,7 +1035,7 @@
 		if (!registered_fb[con2fb.framebuffer])
 		    return -EINVAL;
 		if (con2fb.console != 0)
-			set_con2fb_map(con2fb.console-1, con2fb.framebuffer);
+			return set_con2fb_map(con2fb.console-1, con2fb.framebuffer);
 		else
 			fb_console_init();		
 		return 0;

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

* Re: [PATCH] Kernel crash triggered by con2fb
  2003-04-24 21:50 [PATCH] Kernel crash triggered by con2fb Petr Vandrovec
@ 2003-04-24 23:28 ` James Simmons
  0 siblings, 0 replies; 2+ messages in thread
From: James Simmons @ 2003-04-24 23:28 UTC (permalink / raw)
  To: Petr Vandrovec; +Cc: linux-kernel


> Hi James,
>   it is not nice that anybody can crash my kernel by
> doing con2fb with unallocated VT.

Thanks. Applied.



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

end of thread, other threads:[~2003-04-24 23:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-24 21:50 [PATCH] Kernel crash triggered by con2fb Petr Vandrovec
2003-04-24 23:28 ` James Simmons

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).