lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 02 May 2013 14:45:25 -0400
From:	Steven Rostedt <rostedt@...dmis.org>
To:	Geert Uytterhoeven <geert@...ux-m68k.org>
Cc:	Linus Torvalds <torvalds@...ux-foundation.org>,
	LKML <linux-kernel@...r.kernel.org>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>
Subject: Re: [PATCH v2] init: Do not warn on non-zero initcall return

On Thu, 2013-05-02 at 20:33 +0200, Geert Uytterhoeven wrote:
> On Thu, May 2, 2013 at 5:17 PM, Steven Rostedt <rostedt@...dmis.org> wrote:
> > On Thu, 2013-05-02 at 09:43 +0200, Geert Uytterhoeven wrote:
> >> On Wed, May 1, 2013 at 7:35 PM, Steven Rostedt <rostedt@...dmis.org> wrote:
> >> > --- a/init/main.c
> >> > +++ b/init/main.c
> >> > @@ -686,11 +686,8 @@ int __init_or_module do_one_initcall(initcall_t fn)
> >> >
> >> >         msgbuf[0] = 0;
> >> >
> >> > -       if (ret && ret != -ENODEV && initcall_debug)
> >> > -               sprintf(msgbuf, "error code %d ", ret);
> >> > -
> >> >         if (preempt_count() != count) {
> >> > -               strlcat(msgbuf, "preemption imbalance ", sizeof(msgbuf));
> >> > +               sprintf(msgbuf, "preemption imbalance ");
> >>
> >> snprintf(), please?
> >
> > Why? The msgbuf is 64 bytes, this is the first occurrence and
> > "preemption imbalance " is much less than 64 bytes.
> 
> The day after tomorrow, someone will modify the code, and cause a buffer
> overflow.
> 
> I'm actually surprised (v)sprintf() is not tagged __deprecated.
> 

I actually did think for a second in adding that. Not sure why I didn't.
Probably just because the original code didn't do that.

But I'll let that clean up come another day by someone else.

-- Steve


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ