From: "Américo Wang" <xiyou.wangcong@gmail.com>
To: balbir@linux.vnet.ibm.com, jdike@addtoit.com,
linux-kernel@vger.kernel.org,
user-mode-linux-devel@lists.sourceforge.net
Subject: Re: [PATCH][UML] Boot broken due to buffer overrun
Date: Sat, 29 Nov 2008 13:03:42 +0000 [thread overview]
Message-ID: <2375c9f90811290503s1b4cb9aelaecccc680c6e37d0@mail.gmail.com> (raw)
In-Reply-To: <20081129100830.GA24128@balbir.in.ibm.com>
On Sat, Nov 29, 2008 at 10:08 AM, Balbir Singh
<balbir@linux.vnet.ibm.com> wrote:
>
> 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];
>
Aha, good spot!
Please also correct the length of mconsole_socket_name.
Anyway,
Reviewed-by: WANG Cong <wangcong@zeuux.org>
next prev parent reply other threads:[~2008-11-29 13:03 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-29 10:08 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 [this message]
2008-11-30 3:01 ` Balbir Singh
2008-12-01 23:35 ` Américo Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2375c9f90811290503s1b4cb9aelaecccc680c6e37d0@mail.gmail.com \
--to=xiyou.wangcong@gmail.com \
--cc=balbir@linux.vnet.ibm.com \
--cc=jdike@addtoit.com \
--cc=linux-kernel@vger.kernel.org \
--cc=user-mode-linux-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®