From: Thomas Garnier <thgarnie@google.com>
To: "Herbert Xu" <herbert@gondor.apana.org.au>,
"David S . Miller" <davem@davemloft.net>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Ingo Molnar" <mingo@redhat.com>,
"H . Peter Anvin" <hpa@zytor.com>,
"Peter Zijlstra" <peterz@infradead.org>,
"Josh Poimboeuf" <jpoimboe@redhat.com>,
"Thomas Garnier" <thgarnie@google.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Matthias Kaehlcke" <mka@chromium.org>,
"Boris Ostrovsky" <boris.ostrovsky@oracle.com>,
"Juergen Gross" <jgross@suse.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Radim Krčmář" <rkrcmar@redhat.com>,
"Joerg Roedel" <joro@8bytes.org>,
"Andy Lutomirski" <luto@kernel.org>,
"Borislav Petkov" <bp@alien8.de>,
"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>,
"Brian Gerst" <brgerst@gmail.com>, "Borislav Petkov" <bp@suse.de>,
"Christian Borntraeger" <borntraeger@de.ibm.com>,
"Rafael J . Wysocki" <rjw@rjwysocki.net>,
"Len Brown" <len.brown@intel.com>, "Pavel Machek" <pavel@ucw.cz>,
"Tejun Heo" <tj@kernel.org>, "Christoph Lameter" <cl@linux.com>,
"Kees Cook" <keescook@chromium.org>,
"Paul Gortmaker" <paul.gortmaker@windriver.com>,
"Chris Metcalf" <cmetcalf@mellanox.com>,
"Paul E . McKenney" <paulmck@linux.vnet.ibm.com>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Christopher Li" <sparse@chrisli.org>,
"Dou Liyang" <douly.fnst@cn.fujitsu.com>,
"Masahiro Yamada" <yamada.masahiro@socionext.com>,
"Daniel Borkmann" <daniel@iogearbox.net>,
"Markus Trippelsdorf" <markus@trippelsdorf.de>,
"Peter Foley" <pefoley2@pefoley.com>,
"Steven Rostedt" <rostedt@goodmis.org>,
"Tim Chen" <tim.c.chen@linux.intel.com>,
"Ard Biesheuvel" <ard.biesheuvel@linaro.org>,
"Catalin Marinas" <catalin.marinas@arm.com>,
"Matthew Wilcox" <mawilcox@microsoft.com>,
"Michal Hocko" <mhocko@suse.com>, "Rob Landley" <rob@landley.net>,
"Jiri Kosina" <jkosina@suse.cz>,
"H . J . Lu" <hjl.tools@gmail.com>,
"Paul Bolle" <pebolle@tiscali.nl>, "Baoquan He" <bhe@redhat.com>,
"Daniel Micay" <danielmicay@gmail.com>
Cc: x86@kernel.org, linux-crypto@vger.kernel.org,
linux-kernel@vger.kernel.org, xen-devel@lists.xenproject.org,
kvm@vger.kernel.org, linux-pm@vger.kernel.org,
linux-arch@vger.kernel.org, linux-sparse@vger.kernel.org,
kernel-hardening@lists.openwall.com
Subject: [kernel-hardening] x86: PIE support and option to extend KASLR randomization
Date: Tue, 18 Jul 2017 15:33:11 -0700 [thread overview]
Message-ID: <20170718223333.110371-1-thgarnie@google.com> (raw)
These patches make the changes necessary to build the kernel as Position
Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below
the top 2G of the virtual address space. It allows to optionally extend the
KASLR randomization range from 1G to 3G.
Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler
changes, PIE support and KASLR in general.
The patches:
- 1-3, 5-15: Change in assembly code to be PIE compliant.
- 4: Add a new _ASM_GET_PTR macro to fetch a symbol address generically.
- 16: Adapt percpu design to work correctly when PIE is enabled.
- 17: Provide an option to default visibility to hidden except for key symbols.
It removes errors between compilation units.
- 18: Adapt relocation tool to handle PIE binary correctly.
- 19: Add the CONFIG_X86_PIE option (off by default)
- 20: Adapt relocation tool to generate a 64-bit relocation table.
- 21: Add options to build modules as mcmodel=large and dynamically create a
PLT for relative references out of range (adapted from arm64).
- 22: Add the CONFIG_RANDOMIZE_BASE_LARGE option to increase relocation range
from 1G to 3G (off by default).
Performance/Size impact:
Hackbench (50% and 1600% loads):
- PIE disabled: no significant change (-0.50% / +0.50%)
- PIE enabled: 7% to 8% on half load, 10% on heavy load.
These results are aligned with the different research on user-mode PIE
impact on cpu intensive benchmarks (around 10% on x86_64).
slab_test (average of 10 runs):
- PIE disabled: no significant change (-1% / +1%)
- PIE enabled: 3% to 4%
Kernbench (average of 10 Half and Optimal runs):
Elapsed Time:
- PIE disabled: no significant change (-0.22% / +0.06%)
- PIE enabled: around 0.50%
System Time:
- PIE disabled: no significant change (-0.99% / -1.28%)
- PIE enabled: 5% to 6%
Size of vmlinux (Ubuntu configuration):
File size:
- PIE disabled: 472928672 bytes (-0.000169% from baseline)
- PIE enabled: 216878461 bytes (-54.14% from baseline)
.text sections:
- PIE disabled: 9373572 bytes (+0.04% from baseline)
- PIE enabled: 9499138 bytes (+1.38% from baseline)
The big decrease in vmlinux file size is due to the lower number of
relocations appended to the file.
diffstat:
arch/x86/Kconfig | 37 +++++
arch/x86/Makefile | 17 ++
arch/x86/boot/boot.h | 2
arch/x86/boot/compressed/Makefile | 5
arch/x86/boot/compressed/misc.c | 10 +
arch/x86/crypto/aes-x86_64-asm_64.S | 45 +++---
arch/x86/crypto/aesni-intel_asm.S | 14 +
arch/x86/crypto/aesni-intel_avx-x86_64.S | 6
arch/x86/crypto/camellia-aesni-avx-asm_64.S | 42 ++---
arch/x86/crypto/camellia-aesni-avx2-asm_64.S | 44 +++---
arch/x86/crypto/camellia-x86_64-asm_64.S | 8 -
arch/x86/crypto/cast5-avx-x86_64-asm_64.S | 50 +++---
arch/x86/crypto/cast6-avx-x86_64-asm_64.S | 44 +++---
arch/x86/crypto/des3_ede-asm_64.S | 96 ++++++++-----
arch/x86/crypto/ghash-clmulni-intel_asm.S | 4
arch/x86/crypto/glue_helper-asm-avx.S | 4
arch/x86/crypto/glue_helper-asm-avx2.S | 6
arch/x86/entry/entry_64.S | 26 ++-
arch/x86/include/asm/asm.h | 13 +
arch/x86/include/asm/bug.h | 2
arch/x86/include/asm/jump_label.h | 8 -
arch/x86/include/asm/kvm_host.h | 6
arch/x86/include/asm/module.h | 16 ++
arch/x86/include/asm/page_64_types.h | 9 +
arch/x86/include/asm/paravirt_types.h | 12 +
arch/x86/include/asm/percpu.h | 25 ++-
arch/x86/include/asm/pm-trace.h | 2
arch/x86/include/asm/processor.h | 8 -
arch/x86/include/asm/setup.h | 2
arch/x86/kernel/Makefile | 2
arch/x86/kernel/acpi/wakeup_64.S | 31 ++--
arch/x86/kernel/cpu/common.c | 4
arch/x86/kernel/head64.c | 28 +++
arch/x86/kernel/head_64.S | 47 +++++-
arch/x86/kernel/kvm.c | 6
arch/x86/kernel/module-plts.c | 198 +++++++++++++++++++++++++++
arch/x86/kernel/module.c | 18 +-
arch/x86/kernel/module.lds | 4
arch/x86/kernel/relocate_kernel_64.S | 2
arch/x86/kernel/setup_percpu.c | 2
arch/x86/kernel/vmlinux.lds.S | 13 +
arch/x86/kvm/svm.c | 4
arch/x86/lib/cmpxchg16b_emu.S | 8 -
arch/x86/power/hibernate_asm_64.S | 4
arch/x86/tools/relocs.c | 134 +++++++++++++++---
arch/x86/tools/relocs.h | 4
arch/x86/tools/relocs_common.c | 15 +-
arch/x86/xen/xen-asm.S | 12 -
arch/x86/xen/xen-asm.h | 3
arch/x86/xen/xen-head.S | 9 -
include/asm-generic/sections.h | 6
include/linux/compiler.h | 8 +
init/Kconfig | 9 +
kernel/kallsyms.c | 16 +-
54 files changed, 868 insertions(+), 282 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Thomas Garnier <thgarnie@google.com>
To: "Herbert Xu" <herbert@gondor.apana.org.au>,
"David S . Miller" <davem@davemloft.net>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Ingo Molnar" <mingo@redhat.com>,
"H . Peter Anvin" <hpa@zytor.com>,
"Peter Zijlstra" <peterz@infradead.org>,
"Josh Poimboeuf" <jpoimboe@redhat.com>,
"Thomas Garnier" <thgarnie@google.com>,
"Arnd Bergmann" <arnd@arndb.de>,
"Matthias Kaehlcke" <mka@chromium.org>,
"Boris Ostrovsky" <boris.ostrovsky@oracle.com>,
"Juergen Gross" <jgross@suse.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Radim Krčmář" <rkrcmar@redhat.com>,
"Joerg Roedel" <joro@8bytes.org>,
"Andy Lutomirski" <luto@kernel.org>,
"Borislav Petkov" <bp@alien8.de>,
"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>,
"Brian Gerst" <brgerst@gmail.com>, "Borislav Petkov" <bp@suse.de>,
"Christian Borntraeger" <borntraeger@de.ibm.com>,
"Rafael J . Wysocki" <rjw@rjwysocki.net>
Cc: x86@kernel.org, linux-crypto@vger.kernel.org,
linux-kernel@vger.kernel.org, xen-devel@lists.xenproject.org,
kvm@vger.kernel.org, linux-pm@vger.kernel.org,
linux-arch@vger.kernel.org, linux-sparse@vger.kernel.org,
kernel-hardening@lists.openwall.com
Subject: x86: PIE support and option to extend KASLR randomization
Date: Tue, 18 Jul 2017 15:33:11 -0700 [thread overview]
Message-ID: <20170718223333.110371-1-thgarnie@google.com> (raw)
These patches make the changes necessary to build the kernel as Position
Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below
the top 2G of the virtual address space. It allows to optionally extend the
KASLR randomization range from 1G to 3G.
Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler
changes, PIE support and KASLR in general.
The patches:
- 1-3, 5-15: Change in assembly code to be PIE compliant.
- 4: Add a new _ASM_GET_PTR macro to fetch a symbol address generically.
- 16: Adapt percpu design to work correctly when PIE is enabled.
- 17: Provide an option to default visibility to hidden except for key symbols.
It removes errors between compilation units.
- 18: Adapt relocation tool to handle PIE binary correctly.
- 19: Add the CONFIG_X86_PIE option (off by default)
- 20: Adapt relocation tool to generate a 64-bit relocation table.
- 21: Add options to build modules as mcmodel=large and dynamically create a
PLT for relative references out of range (adapted from arm64).
- 22: Add the CONFIG_RANDOMIZE_BASE_LARGE option to increase relocation range
from 1G to 3G (off by default).
Performance/Size impact:
Hackbench (50% and 1600% loads):
- PIE disabled: no significant change (-0.50% / +0.50%)
- PIE enabled: 7% to 8% on half load, 10% on heavy load.
These results are aligned with the different research on user-mode PIE
impact on cpu intensive benchmarks (around 10% on x86_64).
slab_test (average of 10 runs):
- PIE disabled: no significant change (-1% / +1%)
- PIE enabled: 3% to 4%
Kernbench (average of 10 Half and Optimal runs):
Elapsed Time:
- PIE disabled: no significant change (-0.22% / +0.06%)
- PIE enabled: around 0.50%
System Time:
- PIE disabled: no significant change (-0.99% / -1.28%)
- PIE enabled: 5% to 6%
Size of vmlinux (Ubuntu configuration):
File size:
- PIE disabled: 472928672 bytes (-0.000169% from baseline)
- PIE enabled: 216878461 bytes (-54.14% from baseline)
.text sections:
- PIE disabled: 9373572 bytes (+0.04% from baseline)
- PIE enabled: 9499138 bytes (+1.38% from baseline)
The big decrease in vmlinux file size is due to the lower number of
relocations appended to the file.
diffstat:
arch/x86/Kconfig | 37 +++++
arch/x86/Makefile | 17 ++
arch/x86/boot/boot.h | 2
arch/x86/boot/compressed/Makefile | 5
arch/x86/boot/compressed/misc.c | 10 +
arch/x86/crypto/aes-x86_64-asm_64.S | 45 +++---
arch/x86/crypto/aesni-intel_asm.S | 14 +
arch/x86/crypto/aesni-intel_avx-x86_64.S | 6
arch/x86/crypto/camellia-aesni-avx-asm_64.S | 42 ++---
arch/x86/crypto/camellia-aesni-avx2-asm_64.S | 44 +++---
arch/x86/crypto/camellia-x86_64-asm_64.S | 8 -
arch/x86/crypto/cast5-avx-x86_64-asm_64.S | 50 +++---
arch/x86/crypto/cast6-avx-x86_64-asm_64.S | 44 +++---
arch/x86/crypto/des3_ede-asm_64.S | 96 ++++++++-----
arch/x86/crypto/ghash-clmulni-intel_asm.S | 4
arch/x86/crypto/glue_helper-asm-avx.S | 4
arch/x86/crypto/glue_helper-asm-avx2.S | 6
arch/x86/entry/entry_64.S | 26 ++-
arch/x86/include/asm/asm.h | 13 +
arch/x86/include/asm/bug.h | 2
arch/x86/include/asm/jump_label.h | 8 -
arch/x86/include/asm/kvm_host.h | 6
arch/x86/include/asm/module.h | 16 ++
arch/x86/include/asm/page_64_types.h | 9 +
arch/x86/include/asm/paravirt_types.h | 12 +
arch/x86/include/asm/percpu.h | 25 ++-
arch/x86/include/asm/pm-trace.h | 2
arch/x86/include/asm/processor.h | 8 -
arch/x86/include/asm/setup.h | 2
arch/x86/kernel/Makefile | 2
arch/x86/kernel/acpi/wakeup_64.S | 31 ++--
arch/x86/kernel/cpu/common.c | 4
arch/x86/kernel/head64.c | 28 +++
arch/x86/kernel/head_64.S | 47 +++++-
arch/x86/kernel/kvm.c | 6
arch/x86/kernel/module-plts.c | 198 +++++++++++++++++++++++++++
arch/x86/kernel/module.c | 18 +-
arch/x86/kernel/module.lds | 4
arch/x86/kernel/relocate_kernel_64.S | 2
arch/x86/kernel/setup_percpu.c | 2
arch/x86/kernel/vmlinux.lds.S | 13 +
arch/x86/kvm/svm.c | 4
arch/x86/lib/cmpxchg16b_emu.S | 8 -
arch/x86/power/hibernate_asm_64.S | 4
arch/x86/tools/relocs.c | 134 +++++++++++++++---
arch/x86/tools/relocs.h | 4
arch/x86/tools/relocs_common.c | 15 +-
arch/x86/xen/xen-asm.S | 12 -
arch/x86/xen/xen-asm.h | 3
arch/x86/xen/xen-head.S | 9 -
include/asm-generic/sections.h | 6
include/linux/compiler.h | 8 +
init/Kconfig | 9 +
kernel/kallsyms.c | 16 +-
54 files changed, 868 insertions(+), 282 deletions(-)
next reply other threads:[~2017-07-18 22:33 UTC|newest]
Thread overview: 153+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-18 22:33 Thomas Garnier [this message]
2017-07-18 22:33 ` x86: PIE support and option to extend KASLR randomization Thomas Garnier
2017-07-18 22:33 ` [RFC 01/22] x86/crypto: Adapt assembly for PIE support Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 02/22] x86: Use symbol name on bug table " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 03/22] x86: Use symbol name in jump " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 04/22] x86: Add macro to get symbol address " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 05/22] xen: Adapt assembly " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 06/22] kvm: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 2:49 ` [kernel-hardening] " Brian Gerst
2017-07-19 2:49 ` Brian Gerst
2017-07-19 15:40 ` Thomas Garnier
2017-07-19 15:40 ` [kernel-hardening] " Thomas Garnier
2017-07-19 15:40 ` Thomas Garnier
2017-07-19 22:27 ` [kernel-hardening] " H. Peter Anvin
2017-07-19 22:27 ` H. Peter Anvin
2017-07-19 22:44 ` Thomas Garnier
2017-07-19 22:44 ` [kernel-hardening] " Thomas Garnier
2017-07-19 22:44 ` Thomas Garnier
2017-07-19 22:58 ` [kernel-hardening] " Ard Biesheuvel
2017-07-19 22:58 ` Ard Biesheuvel
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 23:47 ` H. Peter Anvin
2017-07-19 22:58 ` Ard Biesheuvel
2017-07-19 22:27 ` H. Peter Anvin
2017-07-19 2:49 ` Brian Gerst
2017-07-18 22:33 ` [kernel-hardening] [RFC 07/22] x86: relocate_kernel - " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 22:58 ` [kernel-hardening] " H. Peter Anvin
2017-07-19 22:58 ` H. Peter Anvin
2017-07-19 23:23 ` [kernel-hardening] " Thomas Garnier
2017-07-19 23:23 ` Thomas Garnier
2017-07-19 23:23 ` Thomas Garnier
2017-07-19 22:58 ` H. Peter Anvin
2017-07-18 22:33 ` [kernel-hardening] [RFC 08/22] x86/entry/64: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 09/22] x86: pm-trace - " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 10/22] x86/CPU: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 11/22] x86/acpi: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 12/22] x86/boot/64: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 13/22] x86/power/64: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 18:41 ` Pavel Machek
2017-07-19 18:41 ` [kernel-hardening] " Pavel Machek
2017-07-19 18:41 ` Pavel Machek
2017-07-18 22:33 ` [kernel-hardening] [RFC 14/22] x86/paravirt: " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 15/22] x86/boot/64: Use _text in a global " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 16/22] x86/percpu: Adapt percpu " Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 3:08 ` Brian Gerst
2017-07-19 3:08 ` [kernel-hardening] " Brian Gerst
2017-07-19 3:08 ` Brian Gerst
2017-07-19 18:26 ` [kernel-hardening] " Thomas Garnier
2017-07-19 18:26 ` Thomas Garnier
2017-07-19 23:33 ` [kernel-hardening] " H. Peter Anvin
2017-07-19 23:33 ` H. Peter Anvin
2017-07-20 2:21 ` H. Peter Anvin
2017-07-20 2:21 ` [kernel-hardening] " H. Peter Anvin
2017-07-20 2:21 ` H. Peter Anvin
2017-07-20 3:03 ` [kernel-hardening] " H. Peter Anvin
2017-07-20 3:03 ` H. Peter Anvin
2017-07-20 3:03 ` H. Peter Anvin
2017-07-20 14:26 ` Thomas Garnier
2017-07-20 14:26 ` [kernel-hardening] " Thomas Garnier
2017-07-20 14:26 ` Thomas Garnier
2017-08-02 16:42 ` [kernel-hardening] " Thomas Garnier
2017-08-02 16:42 ` Thomas Garnier
2017-08-02 16:56 ` Kees Cook
2017-08-02 16:56 ` [kernel-hardening] " Kees Cook
2017-08-02 16:56 ` Kees Cook
2017-08-02 18:05 ` Thomas Garnier
2017-08-02 18:05 ` [kernel-hardening] " Thomas Garnier
2017-08-02 18:05 ` Thomas Garnier
2017-08-02 16:42 ` Thomas Garnier
2017-07-19 23:33 ` H. Peter Anvin
2017-07-19 18:26 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 17/22] compiler: Option to default to hidden symbols Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 18/22] x86/relocs: Handle DYN relocations for PIE support Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 19/22] x86/pie: Add option to build the kernel as PIE for x86_64 Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 20/22] x86/relocs: Add option to generate 64-bit relocations Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 22:33 ` H. Peter Anvin
2017-07-19 22:33 ` [kernel-hardening] " H. Peter Anvin
2017-07-19 22:33 ` H. Peter Anvin
2017-07-19 22:47 ` [kernel-hardening] " Thomas Garnier
2017-07-19 22:47 ` Thomas Garnier
2017-07-19 23:08 ` [kernel-hardening] " H. Peter Anvin
2017-07-19 23:08 ` H. Peter Anvin
2017-07-19 23:25 ` Thomas Garnier
2017-07-19 23:25 ` [kernel-hardening] " Thomas Garnier
2017-07-19 23:25 ` Thomas Garnier
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:45 ` H. Peter Anvin
2017-07-19 23:08 ` H. Peter Anvin
2017-07-19 22:47 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 21/22] x86/module: Add support for mcmodel large and PLTs Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 1:35 ` H. Peter Anvin
2017-07-19 1:35 ` [kernel-hardening] " H. Peter Anvin
2017-07-19 1:35 ` H. Peter Anvin
2017-07-19 3:59 ` Brian Gerst
2017-07-19 3:59 ` [kernel-hardening] " Brian Gerst
2017-07-19 3:59 ` Brian Gerst
2017-07-19 15:58 ` [kernel-hardening] " Thomas Garnier
2017-07-19 15:58 ` Thomas Garnier
2017-07-19 17:34 ` [kernel-hardening] " Brian Gerst
2017-07-19 17:34 ` Brian Gerst
2017-07-24 16:32 ` [kernel-hardening] " Thomas Garnier
2017-07-24 16:32 ` Thomas Garnier
2017-07-24 16:32 ` Thomas Garnier
2017-07-19 17:34 ` Brian Gerst
2017-07-19 15:58 ` Thomas Garnier
2017-07-18 22:33 ` [kernel-hardening] [RFC 22/22] x86/kaslr: Add option to extend KASLR range from 1GB to 3GB Thomas Garnier
2017-07-18 22:33 ` Thomas Garnier
2017-07-19 12:10 ` [kernel-hardening] " Baoquan He
2017-07-19 12:10 ` Baoquan He
2017-07-19 13:49 ` Baoquan He
2017-07-19 13:49 ` [kernel-hardening] " Baoquan He
2017-07-19 13:49 ` Baoquan He
2017-07-19 12:10 ` Baoquan He
2017-07-19 14:08 ` x86: PIE support and option to extend KASLR randomization Christopher Lameter
2017-07-19 14:08 ` [kernel-hardening] " Christopher Lameter
2017-07-19 14:08 ` Christopher Lameter
2017-07-19 19:21 ` [kernel-hardening] " Kees Cook
2017-07-19 19:21 ` Kees Cook
2017-07-19 19:21 ` [kernel-hardening] " Kees Cook
-- strict thread matches above, loose matches on Subject: below --
2017-08-10 17:25 [kernel-hardening] " Thomas Garnier
2017-10-04 21:19 Thomas Garnier
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=20170718223333.110371-1-thgarnie@google.com \
--to=thgarnie@google.com \
--cc=akpm@linux-foundation.org \
--cc=ard.biesheuvel@linaro.org \
--cc=arnd@arndb.de \
--cc=bhe@redhat.com \
--cc=boris.ostrovsky@oracle.com \
--cc=borntraeger@de.ibm.com \
--cc=bp@alien8.de \
--cc=bp@suse.de \
--cc=brgerst@gmail.com \
--cc=catalin.marinas@arm.com \
--cc=cl@linux.com \
--cc=cmetcalf@mellanox.com \
--cc=daniel@iogearbox.net \
--cc=danielmicay@gmail.com \
--cc=davem@davemloft.net \
--cc=douly.fnst@cn.fujitsu.com \
--cc=herbert@gondor.apana.org.au \
--cc=hjl.tools@gmail.com \
--cc=hpa@zytor.com \
--cc=jgross@suse.com \
--cc=jkosina@suse.cz \
--cc=joro@8bytes.org \
--cc=jpoimboe@redhat.com \
--cc=keescook@chromium.org \
--cc=kernel-hardening@lists.openwall.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=kvm@vger.kernel.org \
--cc=len.brown@intel.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-sparse@vger.kernel.org \
--cc=luto@kernel.org \
--cc=markus@trippelsdorf.de \
--cc=mawilcox@microsoft.com \
--cc=mhocko@suse.com \
--cc=mingo@redhat.com \
--cc=mka@chromium.org \
--cc=paul.gortmaker@windriver.com \
--cc=paulmck@linux.vnet.ibm.com \
--cc=pavel@ucw.cz \
--cc=pbonzini@redhat.com \
--cc=pebolle@tiscali.nl \
--cc=pefoley2@pefoley.com \
--cc=peterz@infradead.org \
--cc=rjw@rjwysocki.net \
--cc=rkrcmar@redhat.com \
--cc=rob@landley.net \
--cc=rostedt@goodmis.org \
--cc=sparse@chrisli.org \
--cc=tglx@linutronix.de \
--cc=tim.c.chen@linux.intel.com \
--cc=tj@kernel.org \
--cc=x86@kernel.org \
--cc=xen-devel@lists.xenproject.org \
--cc=yamada.masahiro@socionext.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.