All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC v1 0/4] x86, boot: KASLR memory implementation (x86_64)
@ 2016-04-15 22:03 ` Thomas Garnier
  0 siblings, 0 replies; 38+ messages in thread
From: Thomas Garnier @ 2016-04-15 22:03 UTC (permalink / raw)
  To: H . Peter Anvin, Thomas Gleixner, Ingo Molnar, Borislav Petkov,
	Andy Lutomirski, Thomas Garnier, Dmitry Vyukov, Paolo Bonzini,
	Dan Williams, Kees Cook, Stephen Smalley, Seth Jennings,
	Kefeng Wang, Jonathan Corbet, Matt Fleming, Toshi Kani,
	Alexander Kuleshov, Alexander Popov, Joerg Roedel, Dave Young,
	Baoquan He, Dave Hansen, Mark Salter, Boris Ostrovsky
  Cc: x86, linux-kernel, linux-doc, gthelen, kernel-hardening

This is RFC v1 for KASLR memory implementation on x86_64. It was reviewed
early by Kees Cook.

***Background:
The current implementation of KASLR randomizes only the base address of
the kernel and its modules. Research was published showing that static
memory can be overwitten to elevate privileges bypassing KASLR.

In more details:

    The physical memory mapping holds most allocations from boot and heap
    allocators. Knowning the base address and physical memory size, an
    attacker can deduce the PDE virtual address for the vDSO memory page.
    This attack was demonstrated at CanSecWest 2016, in the "Getting
    Physical Extreme Abuse of Intel Based Paged Systems"
    https://goo.gl/ANpWdV (see second part of the presentation). Similar
    research was done at Google leading to this patch proposal. Variants
    exists to overwrite /proc or /sys objects ACLs leading to elevation of
    privileges.

This set of patches randomizes base address and padding of three
major memory sections (physical memory mapping, vmalloc & vmemmap).
It mitigates exploits relying on predictable kernel addresses. This
feature can be enabled with the CONFIG_RANDOMIZE_MEMORY option.

Padding for the memory hotplug support is managed by
CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING. The default value is 10
terabytes.

The patches were tested on qemu & physical machines. Xen compatibility was
also verified. Multiple reboots were used to verify entropy for each
memory section.

***Problems that needed solving:
 - The three target memory sections are never at the same place between
   boots.
 - The physical memory mapping can use a virtual address not aligned on
   the PGD page table.
 - Have good entropy early at boot before get_random_bytes is available.
 - Add optional padding for memory hotplug compatibility.

***Parts:
 - The first part prepares for the KASLR memory randomization by
   refactoring entropy functions used by the current implementation and
   support PUD level virtual addresses for physical mapping.
   (Patches 01-02)
 - The second part implements the KASLR memory randomization for all
   sections mentioned.
   (Patch 03)
 - The third part adds support for memory hotplug by adding an option to
   define the padding used between the physical memory mapping section
   and the others.
   (Patch 04)

Thanks!

Thomas

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2016-06-17  9:40 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-15 22:03 [RFC v1 0/4] x86, boot: KASLR memory implementation (x86_64) Thomas Garnier
2016-04-15 22:03 ` [kernel-hardening] " Thomas Garnier
2016-04-15 22:03 ` [RFC v1 1/4] x86, boot: Refactor KASLR entropy functions Thomas Garnier
2016-04-15 22:03   ` [kernel-hardening] " Thomas Garnier
2016-04-15 22:03 ` [RFC v1 2/4] x86, boot: PUD VA support for physical mapping (x86_64) Thomas Garnier
2016-04-15 22:03   ` [kernel-hardening] " Thomas Garnier
2016-04-15 22:03 ` [RFC v1 3/4] x86, boot: Implement ASLR for kernel memory sections (x86_64) Thomas Garnier
2016-04-15 22:03   ` [kernel-hardening] " Thomas Garnier
2016-04-18 14:46   ` Joerg Roedel
2016-04-18 14:46     ` [kernel-hardening] " Joerg Roedel
2016-04-18 14:56     ` Thomas Garnier
2016-04-18 14:56       ` [kernel-hardening] " Thomas Garnier
2016-04-18 19:01     ` H. Peter Anvin
2016-04-18 19:01       ` [kernel-hardening] " H. Peter Anvin
2016-04-19 14:27   ` Joerg Roedel
2016-04-19 14:27     ` [kernel-hardening] " Joerg Roedel
2016-04-19 15:49     ` Thomas Garnier
2016-04-19 15:49       ` [kernel-hardening] " Thomas Garnier
2016-04-21 13:30   ` Boris Ostrovsky
2016-04-21 13:30     ` [kernel-hardening] " Boris Ostrovsky
2016-04-21 15:11     ` Thomas Garnier
2016-04-21 15:11       ` [kernel-hardening] " Thomas Garnier
2016-04-21 15:46     ` H. Peter Anvin
2016-04-21 15:46       ` [kernel-hardening] " H. Peter Anvin
2016-04-21 15:52       ` Thomas Garnier
2016-04-21 15:52         ` [kernel-hardening] " Thomas Garnier
2016-04-21 20:15         ` H. Peter Anvin
2016-04-21 20:15           ` [kernel-hardening] " H. Peter Anvin
2016-04-21 20:18           ` Thomas Garnier
2016-04-21 20:18             ` [kernel-hardening] " Thomas Garnier
2016-06-17  9:07   ` Ingo Molnar
2016-06-17  9:07     ` [kernel-hardening] " Ingo Molnar
2016-06-17  9:35     ` Ingo Molnar
2016-06-17  9:35       ` [kernel-hardening] " Ingo Molnar
2016-06-17  9:40     ` Ingo Molnar
2016-06-17  9:40       ` [kernel-hardening] " Ingo Molnar
2016-04-15 22:03 ` [RFC v1 4/4] x86, boot: Memory hotplug support for KASLR memory randomization Thomas Garnier
2016-04-15 22:03   ` [kernel-hardening] " Thomas Garnier

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.