|
@@ -1746,13 +1746,23 @@ config RANDOMIZE_BASE
|
|
config RANDOMIZE_BASE_MAX_OFFSET
|
|
config RANDOMIZE_BASE_MAX_OFFSET
|
|
hex "Maximum ASLR offset allowed"
|
|
hex "Maximum ASLR offset allowed"
|
|
depends on RANDOMIZE_BASE
|
|
depends on RANDOMIZE_BASE
|
|
- default "0x10000000"
|
|
|
|
- range 0x0 0x10000000
|
|
|
|
|
|
+ range 0x0 0x20000000 if X86_32
|
|
|
|
+ default "0x20000000" if X86_32
|
|
|
|
+ range 0x0 0x40000000 if X86_64
|
|
|
|
+ default "0x40000000" if X86_64
|
|
---help---
|
|
---help---
|
|
Determines the maximal offset in bytes that will be applied to the
|
|
Determines the maximal offset in bytes that will be applied to the
|
|
kernel when Address Space Layout Randomization (ASLR) is active.
|
|
kernel when Address Space Layout Randomization (ASLR) is active.
|
|
Must be less than or equal to the actual physical memory on the
|
|
Must be less than or equal to the actual physical memory on the
|
|
- system. This must be a power of two.
|
|
|
|
|
|
+ system. This must be a multiple of CONFIG_PHYSICAL_ALIGN.
|
|
|
|
+
|
|
|
|
+ On 32-bit this is limited to 512MiB.
|
|
|
|
+
|
|
|
|
+ On 64-bit this is limited by how the kernel fixmap page table is
|
|
|
|
+ positioned, so this cannot be larger that 1GiB currently. Normally
|
|
|
|
+ there is a 512MiB to 1.5GiB split between kernel and modules. When
|
|
|
|
+ this is raised above the 512MiB default, the modules area will
|
|
|
|
+ shrink to compensate, up to the current maximum 1GiB to 1GiB split.
|
|
|
|
|
|
# Relocation on x86 needs some additional build support
|
|
# Relocation on x86 needs some additional build support
|
|
config X86_NEED_RELOCS
|
|
config X86_NEED_RELOCS
|