From: "H. Peter Anvin" <hpa@zytor.com>
To: Borislav Petkov <bp@alien8.de>
Cc: Kees Cook <keescook@chromium.org>,
linux-kernel@vger.kernel.org,
kernel-hardening@lists.openwall.com,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>,
x86@kernel.org, Jarkko Sakkinen <jarkko.sakkinen@intel.com>,
Matthew Garrett <mjg@redhat.com>,
Matt Fleming <matt.fleming@intel.com>,
Eric Northup <digitaleric@google.com>,
Dan Rosenberg <drosenberg@vsecurity.com>,
Julien Tinnes <jln@google.com>, Will Drewry <wad@chromium.org>
Subject: [kernel-hardening] Re: [PATCH 6/6] x86: kaslr: report kernel offset on panic
Date: Fri, 26 Apr 2013 15:15:10 -0700 [thread overview]
Message-ID: <517AFC6E.4020800@zytor.com> (raw)
In-Reply-To: <20130426221301.GA26059@pd.tnic>
On 04/26/2013 03:13 PM, Borislav Petkov wrote:
> On Fri, Apr 26, 2013 at 12:03:25PM -0700, Kees Cook wrote:
>> When the system panics, include the kernel offset in the report to assist
>> in debugging.
>>
>> Signed-off-by: Kees Cook <keescook@chromium.org>
>> ---
>> arch/x86/kernel/setup.c | 24 ++++++++++++++++++++++++
>> 1 file changed, 24 insertions(+)
>>
>> diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
>> index fae9134..95a33b1 100644
>> --- a/arch/x86/kernel/setup.c
>> +++ b/arch/x86/kernel/setup.c
>> @@ -830,6 +830,18 @@ static void __init trim_low_memory_range(void)
>> }
>>
>> /*
>> + * Dump out kernel offset information on panic.
>> + */
>> +static int
>> +dump_kernel_offset(struct notifier_block *self, unsigned long v, void *p)
>> +{
>> + pr_emerg("Kernel Offset: 0x%lx\n",
>> + (unsigned long)&_text - __START_KERNEL);
>
> So what's wrong with subtracting the offset from the function addresses
> on the stack so that traces can show the addresses as they are in
> vmlinux, completely agnostic of any randomization?
>
That really makes it harder to figure out what the heck the register
content may mean...
-hpa
WARNING: multiple messages have this Message-ID (diff)
From: "H. Peter Anvin" <hpa@zytor.com>
To: Borislav Petkov <bp@alien8.de>
Cc: Kees Cook <keescook@chromium.org>,
linux-kernel@vger.kernel.org,
kernel-hardening@lists.openwall.com,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>,
x86@kernel.org, Jarkko Sakkinen <jarkko.sakkinen@intel.com>,
Matthew Garrett <mjg@redhat.com>,
Matt Fleming <matt.fleming@intel.com>,
Eric Northup <digitaleric@google.com>,
Dan Rosenberg <drosenberg@vsecurity.com>,
Julien Tinnes <jln@google.com>, Will Drewry <wad@chromium.org>
Subject: Re: [PATCH 6/6] x86: kaslr: report kernel offset on panic
Date: Fri, 26 Apr 2013 15:15:10 -0700 [thread overview]
Message-ID: <517AFC6E.4020800@zytor.com> (raw)
In-Reply-To: <20130426221301.GA26059@pd.tnic>
On 04/26/2013 03:13 PM, Borislav Petkov wrote:
> On Fri, Apr 26, 2013 at 12:03:25PM -0700, Kees Cook wrote:
>> When the system panics, include the kernel offset in the report to assist
>> in debugging.
>>
>> Signed-off-by: Kees Cook <keescook@chromium.org>
>> ---
>> arch/x86/kernel/setup.c | 24 ++++++++++++++++++++++++
>> 1 file changed, 24 insertions(+)
>>
>> diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
>> index fae9134..95a33b1 100644
>> --- a/arch/x86/kernel/setup.c
>> +++ b/arch/x86/kernel/setup.c
>> @@ -830,6 +830,18 @@ static void __init trim_low_memory_range(void)
>> }
>>
>> /*
>> + * Dump out kernel offset information on panic.
>> + */
>> +static int
>> +dump_kernel_offset(struct notifier_block *self, unsigned long v, void *p)
>> +{
>> + pr_emerg("Kernel Offset: 0x%lx\n",
>> + (unsigned long)&_text - __START_KERNEL);
>
> So what's wrong with subtracting the offset from the function addresses
> on the stack so that traces can show the addresses as they are in
> vmlinux, completely agnostic of any randomization?
>
That really makes it harder to figure out what the heck the register
content may mean...
-hpa
next prev parent reply other threads:[~2013-04-26 22:15 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-26 19:03 [kernel-hardening] [PATCH v4 0/6] kernel ASLR Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 19:03 ` [kernel-hardening] [PATCH 1/6] x86: kaslr: move ELF relocation handling to C Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 19:03 ` [kernel-hardening] [PATCH 2/6] x86: kaslr: move CPU flags out of cpucheck Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 21:47 ` [kernel-hardening] " H. Peter Anvin
2013-04-26 21:47 ` H. Peter Anvin
2013-04-26 22:14 ` [kernel-hardening] " H. Peter Anvin
2013-04-26 22:14 ` H. Peter Anvin
2013-04-29 17:49 ` [kernel-hardening] " Kees Cook
2013-04-29 17:49 ` Kees Cook
2013-04-29 17:52 ` [kernel-hardening] " Kees Cook
2013-04-29 17:52 ` Kees Cook
2013-04-26 19:03 ` [kernel-hardening] [PATCH 3/6] x86: kaslr: return location from decompress_kernel Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 21:47 ` [kernel-hardening] " H. Peter Anvin
2013-04-26 21:47 ` H. Peter Anvin
2013-04-29 1:25 ` [kernel-hardening] " James Morris
2013-04-29 17:43 ` Kees Cook
2013-04-26 19:03 ` [kernel-hardening] [PATCH 4/6] x86: kaslr: select random base offset Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 21:50 ` [kernel-hardening] " H. Peter Anvin
2013-04-26 21:50 ` H. Peter Anvin
2013-04-29 19:15 ` [kernel-hardening] " Kees Cook
2013-04-29 19:15 ` Kees Cook
2013-04-26 19:03 ` [kernel-hardening] [PATCH 5/6] x86: kaslr: select memory region from e820 maps Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 21:51 ` [kernel-hardening] " Yinghai Lu
2013-04-26 21:51 ` Yinghai Lu
2013-04-26 22:01 ` [kernel-hardening] " H. Peter Anvin
2013-04-26 22:01 ` H. Peter Anvin
2013-04-26 22:01 ` [kernel-hardening] " Kees Cook
2013-04-26 22:01 ` Kees Cook
2013-04-26 19:03 ` [kernel-hardening] [PATCH 6/6] x86: kaslr: report kernel offset on panic Kees Cook
2013-04-26 19:03 ` Kees Cook
2013-04-26 22:13 ` [kernel-hardening] " Borislav Petkov
2013-04-26 22:13 ` Borislav Petkov
2013-04-26 22:15 ` H. Peter Anvin [this message]
2013-04-26 22:15 ` H. Peter Anvin
2013-04-26 22:19 ` [kernel-hardening] " Borislav Petkov
2013-04-26 22:19 ` Borislav Petkov
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=517AFC6E.4020800@zytor.com \
--to=hpa@zytor.com \
--cc=bp@alien8.de \
--cc=digitaleric@google.com \
--cc=drosenberg@vsecurity.com \
--cc=jarkko.sakkinen@intel.com \
--cc=jln@google.com \
--cc=keescook@chromium.org \
--cc=kernel-hardening@lists.openwall.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matt.fleming@intel.com \
--cc=mingo@redhat.com \
--cc=mjg@redhat.com \
--cc=tglx@linutronix.de \
--cc=wad@chromium.org \
--cc=x86@kernel.org \
/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.