public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][UML] Boot broken due to buffer overrun
@ 2008-11-29 10:08 Balbir Singh
  2008-11-29 10:21 ` Pekka Enberg
  2008-11-29 13:03 ` Américo Wang
  0 siblings, 2 replies; 9+ messages in thread
From: Balbir Singh @ 2008-11-29 10:08 UTC (permalink / raw)
  To: jdike; +Cc: linux-kernel, user-mode-linux-devel


mconsole_init() passed 256 bytes as length in os_create_unix_socket, while
the sizeof UNIX_PATH_MAX is 108. This patch fixes that problem and avoids
a big overrun bug reported on UML bootup.

Reported-by: Vikas K Managutte <vikki.km@gmail.com>
Reported-by: Sarvesh Kumar Lal Das <skldas@gmail.com>
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
---

 arch/um/drivers/mconsole_kern.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff -puN arch/um/drivers/mconsole_kern.c~fix-uml-buggy-socket-creation arch/um/drivers/mconsole_kern.c
--- linux-2.6.28-rc6/arch/um/drivers/mconsole_kern.c~fix-uml-buggy-socket-creation	2008-11-29 15:29:04.000000000 +0530
+++ linux-2.6.28-rc6-balbir/arch/um/drivers/mconsole_kern.c	2008-11-29 15:32:23.000000000 +0530
@@ -16,6 +16,8 @@
 #include <linux/slab.h>
 #include <linux/syscalls.h>
 #include <linux/utsname.h>
+#include <linux/socket.h>
+#include <linux/un.h>
 #include <linux/workqueue.h>
 #include <linux/mutex.h>
 #include <asm/uaccess.h>
@@ -785,7 +787,7 @@ static int __init mconsole_init(void)
 	/* long to avoid size mismatch warnings from gcc */
 	long sock;
 	int err;
-	char file[256];
+	char file[UNIX_PATH_MAX];
 
 	if (umid_file_name("mconsole", file, sizeof(file)))
 		return -1;
_

-- 
	Balbir

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

end of thread, other threads:[~2008-12-06  5:45 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-29 10:08 [PATCH][UML] Boot broken due to buffer overrun Balbir Singh
2008-11-29 10:21 ` Pekka Enberg
2008-11-29 12:20   ` Balbir Singh
2008-12-02 20:17     ` Andrew Morton
2008-12-06  1:16       ` Américo Wang
2008-12-06  5:44       ` Balbir Singh
2008-11-29 13:03 ` Américo Wang
2008-11-30  3:01   ` Balbir Singh
2008-12-01 23:35     ` Américo Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox