From: "Tobin C. Harding" <me@tobin.cc>
To: Kees Cook <keescook@chromium.org>
Cc: kernel test robot <xiaolong.ye@intel.com>,
kernel-hardening@lists.openwall.com,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
Theodore Ts'o <tytso@mit.edu>,
Linus Torvalds <torvalds@linux-foundation.org>,
Paolo Bonzini <pbonzini@redhat.com>,
Tycho Andersen <tycho@docker.com>,
"Roberts, William C" <william.c.roberts@intel.com>,
Tejun Heo <tj@kernel.org>,
Jordan Glover <Golden_Miller83@protonmail.ch>,
Greg KH <gregkh@linuxfoundation.org>,
Petr Mladek <pmladek@suse.com>, Joe Perches <joe@perches.com>,
Ian Campbell <ijc@hellion.org.uk>,
Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <wilal.deacon@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Chris Fries <cfries@google.com>,
Dave Weinstein <olorin@google.com>,
Daniel Micay <danielmicay@gmail.com>,
Djalal Harouni <tixxdz@gmail.com>,
LKML <linux-kernel@vger.kernel.org>, LKP <lkp@01.org>
Subject: [kernel-hardening] Re: [lkp-robot] [printk] 7f7c60e066: BUG:KASAN:slab-out-of-bounds
Date: Tue, 31 Oct 2017 13:39:38 +1100 [thread overview]
Message-ID: <20171031023938.GE12341@eros> (raw)
In-Reply-To: <CAGXu5jJ+oVhroQHcbbiKERqYQXmoMtsmP_QuQwJX9TdAOdtYvQ@mail.gmail.com>
On Mon, Oct 30, 2017 at 05:14:59PM -0700, Kees Cook wrote:
> On Wed, Oct 25, 2017 at 9:22 AM, kernel test robot
> <xiaolong.ye@intel.com> wrote:
thanks for looking at this, I was at a loss as to what (if any) action I
needed to take.
> > FYI, we noticed the following commit (built with gcc-4.9):
> >
> > commit: 7f7c60e0663645e757e520245606fde9c6e326bb ("printk: hash addresses printed with %p")
> > url: https://github.com/0day-ci/linux/commits/Tobin-C-Harding/printk-hash-addresses-printed-with-p/20171024-231922
>
> It's not clear to me which of the various versions this test ran
> against, but it seems like the printf self-tests got very confused by
> the results:
>
> > [ 40.275423] test_printf: kvasprintf(..., "%p %p", ...) returned '3cf9adbe eff717bf', expected '0000000001234567 fffffffffedcba98'
> > [ 40.296739] test_printf: vsnprintf(buf, 256, "|%-*p|%*p|", ...) returned 19, expected 39
> > [ 40.322776] test_printf: vsnprintf(buf, 16, "|%-*p|%*p|", ...) returned 19, expected 39
> > [ 40.334834] test_printf: vsnprintf(buf, 0, "|%-*p|%*p|", ...) returned 19, expected 39
>
> I assume v10 will fix the width issues, but probably not the value tests...
Oh, so I need to update lib/test_printf.c to cover hashed %p.
> And it claims a use-after-free, too:
>
> > [ 39.757461] The buggy address belongs to the object at 22cb34bb
> > [ 39.757461] which belongs to the cache kmalloc-32 of size 32
> > [ 39.757461] The buggy address is located 0 bytes inside of
> > [ 39.757461] 32-byte region [22cb34bb, 24ac3a60)
>
> Which becomes rather unreadable, since the address got hashed. :P
So I think we need to patch mm/kasan/report to use %pK instead of %p.
I don't know what I should be doing about
[ 39.757461] BUG: KASAN: slab-out-of-bounds in __test+0xee/0x13f
Awesome, thanks,
Tobin.
WARNING: multiple messages have this Message-ID (diff)
From: "Tobin C. Harding" <me@tobin.cc>
To: Kees Cook <keescook@chromium.org>
Cc: kernel test robot <xiaolong.ye@intel.com>,
kernel-hardening@lists.openwall.com,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
"Theodore Ts'o" <tytso@mit.edu>,
Linus Torvalds <torvalds@linux-foundation.org>,
Paolo Bonzini <pbonzini@redhat.com>,
Tycho Andersen <tycho@docker.com>,
"Roberts, William C" <william.c.roberts@intel.com>,
Tejun Heo <tj@kernel.org>,
Jordan Glover <Golden_Miller83@protonmail.ch>,
Greg KH <gregkh@linuxfoundation.org>,
Petr Mladek <pmladek@suse.com>, Joe Perches <joe@perches.com>,
Ian Campbell <ijc@hellion.org.uk>,
Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <wilal.deacon@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Chris Fries <cfries@google.com>,
Dave Weinstein <olorin@google.com>,
Daniel Micay <danielmicay@gmail.com>,
Djalal Harouni <tixxdz@gmail.com>,
LKML <linux-kernel@vger.kernel.org>, LKP <lkp@01.org>
Subject: Re: [lkp-robot] [printk] 7f7c60e066: BUG:KASAN:slab-out-of-bounds
Date: Tue, 31 Oct 2017 13:39:38 +1100 [thread overview]
Message-ID: <20171031023938.GE12341@eros> (raw)
In-Reply-To: <CAGXu5jJ+oVhroQHcbbiKERqYQXmoMtsmP_QuQwJX9TdAOdtYvQ@mail.gmail.com>
On Mon, Oct 30, 2017 at 05:14:59PM -0700, Kees Cook wrote:
> On Wed, Oct 25, 2017 at 9:22 AM, kernel test robot
> <xiaolong.ye@intel.com> wrote:
thanks for looking at this, I was at a loss as to what (if any) action I
needed to take.
> > FYI, we noticed the following commit (built with gcc-4.9):
> >
> > commit: 7f7c60e0663645e757e520245606fde9c6e326bb ("printk: hash addresses printed with %p")
> > url: https://github.com/0day-ci/linux/commits/Tobin-C-Harding/printk-hash-addresses-printed-with-p/20171024-231922
>
> It's not clear to me which of the various versions this test ran
> against, but it seems like the printf self-tests got very confused by
> the results:
>
> > [ 40.275423] test_printf: kvasprintf(..., "%p %p", ...) returned '3cf9adbe eff717bf', expected '0000000001234567 fffffffffedcba98'
> > [ 40.296739] test_printf: vsnprintf(buf, 256, "|%-*p|%*p|", ...) returned 19, expected 39
> > [ 40.322776] test_printf: vsnprintf(buf, 16, "|%-*p|%*p|", ...) returned 19, expected 39
> > [ 40.334834] test_printf: vsnprintf(buf, 0, "|%-*p|%*p|", ...) returned 19, expected 39
>
> I assume v10 will fix the width issues, but probably not the value tests...
Oh, so I need to update lib/test_printf.c to cover hashed %p.
> And it claims a use-after-free, too:
>
> > [ 39.757461] The buggy address belongs to the object at 22cb34bb
> > [ 39.757461] which belongs to the cache kmalloc-32 of size 32
> > [ 39.757461] The buggy address is located 0 bytes inside of
> > [ 39.757461] 32-byte region [22cb34bb, 24ac3a60)
>
> Which becomes rather unreadable, since the address got hashed. :P
So I think we need to patch mm/kasan/report to use %pK instead of %p.
I don't know what I should be doing about
[ 39.757461] BUG: KASAN: slab-out-of-bounds in __test+0xee/0x13f
Awesome, thanks,
Tobin.
next prev parent reply other threads:[~2017-10-31 2:39 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-23 22:33 [kernel-hardening] [PATCH v7] printk: hash addresses printed with %p Tobin C. Harding
2017-10-23 22:33 ` Tobin C. Harding
2017-10-23 23:00 ` [kernel-hardening] " Jason A. Donenfeld
2017-10-23 23:00 ` Jason A. Donenfeld
2017-10-24 0:31 ` [kernel-hardening] " Tobin C. Harding
2017-10-24 0:31 ` Tobin C. Harding
2017-10-24 11:25 ` [kernel-hardening] " Jason A. Donenfeld
2017-10-24 11:25 ` Jason A. Donenfeld
2017-10-24 20:45 ` [kernel-hardening] " Tobin C. Harding
2017-10-24 20:45 ` Tobin C. Harding
2017-10-25 3:49 ` [kernel-hardening] " Tobin C. Harding
2017-10-25 3:49 ` Tobin C. Harding
2017-10-30 20:22 ` [kernel-hardening] " Steven Rostedt
2017-10-30 20:22 ` Steven Rostedt
2017-10-30 21:24 ` [kernel-hardening] " Tobin C. Harding
2017-10-30 21:24 ` Tobin C. Harding
2017-10-31 14:22 ` [kernel-hardening] " Jason A. Donenfeld
2017-10-31 14:22 ` Jason A. Donenfeld
2017-10-24 19:25 ` [kernel-hardening] " Rasmus Villemoes
2017-10-24 21:52 ` Tobin C. Harding
2017-10-24 23:57 ` Tobin C. Harding
2017-10-25 19:02 ` Rasmus Villemoes
2017-10-25 19:02 ` Rasmus Villemoes
2017-10-25 22:14 ` [kernel-hardening] " Tobin C. Harding
2017-10-25 22:14 ` Tobin C. Harding
2017-10-25 16:22 ` [kernel-hardening] [lkp-robot] [printk] 7f7c60e066: BUG:KASAN:slab-out-of-bounds kernel test robot
2017-10-25 16:22 ` kernel test robot
2017-10-25 16:22 ` kernel test robot
2017-10-31 0:14 ` [kernel-hardening] " Kees Cook
2017-10-31 0:14 ` Kees Cook
2017-10-31 0:14 ` Kees Cook
2017-10-30 9:57 ` [kernel-hardening] " Ye Xiaolong
2017-10-30 9:57 ` Ye Xiaolong
2017-10-30 9:57 ` Ye Xiaolong
2017-10-31 2:39 ` Tobin C. Harding [this message]
2017-10-31 2:39 ` Tobin C. Harding
2017-10-31 2:47 ` [kernel-hardening] " Kees Cook
2017-10-31 2:47 ` Kees Cook
2017-10-31 2:47 ` Kees Cook
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=20171031023938.GE12341@eros \
--to=me@tobin.cc \
--cc=Golden_Miller83@protonmail.ch \
--cc=Jason@zx2c4.com \
--cc=catalin.marinas@arm.com \
--cc=cfries@google.com \
--cc=danielmicay@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=ijc@hellion.org.uk \
--cc=joe@perches.com \
--cc=keescook@chromium.org \
--cc=kernel-hardening@lists.openwall.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lkp@01.org \
--cc=olorin@google.com \
--cc=pbonzini@redhat.com \
--cc=pmladek@suse.com \
--cc=rostedt@goodmis.org \
--cc=sergey.senozhatsky@gmail.com \
--cc=tixxdz@gmail.com \
--cc=tj@kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=tycho@docker.com \
--cc=tytso@mit.edu \
--cc=wilal.deacon@arm.com \
--cc=william.c.roberts@intel.com \
--cc=xiaolong.ye@intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.