Kees Cook | 7de828d | 2016-04-18 09:42:14 -0700 | [diff] [blame] | 1 | /* |
| 2 | * kaslr.c |
| 3 | * |
| 4 | * This contains the routines needed to generate a reasonable level of |
| 5 | * entropy to choose a randomized kernel base address offset in support |
| 6 | * of Kernel Address Space Layout Randomization (KASLR). Additionally |
| 7 | * handles walking the physical memory maps (and tracking memory regions |
| 8 | * to avoid) in order to select a physical memory location that can |
| 9 | * contain the entire properly aligned running kernel image. |
| 10 | * |
| 11 | */ |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 12 | #include "misc.h" |
Kees Cook | dc425a6 | 2016-05-02 15:51:00 -0700 | [diff] [blame] | 13 | #include "error.h" |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 14 | |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 15 | #include <asm/msr.h> |
| 16 | #include <asm/archrandom.h> |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 17 | #include <asm/e820.h> |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 18 | |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 19 | #include <generated/compile.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/uts.h> |
| 22 | #include <linux/utsname.h> |
| 23 | #include <generated/utsrelease.h> |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 24 | |
| 25 | /* Simplified build-specific string for starting entropy. */ |
Kees Cook | 327f7d7 | 2013-11-12 08:56:07 -0800 | [diff] [blame] | 26 | static const char build_str[] = UTS_RELEASE " (" LINUX_COMPILE_BY "@" |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 27 | LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION; |
| 28 | |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 29 | #define I8254_PORT_CONTROL 0x43 |
| 30 | #define I8254_PORT_COUNTER0 0x40 |
| 31 | #define I8254_CMD_READBACK 0xC0 |
| 32 | #define I8254_SELECT_COUNTER0 0x02 |
| 33 | #define I8254_STATUS_NOTREADY 0x40 |
| 34 | static inline u16 i8254(void) |
| 35 | { |
| 36 | u16 status, timer; |
| 37 | |
| 38 | do { |
| 39 | outb(I8254_PORT_CONTROL, |
| 40 | I8254_CMD_READBACK | I8254_SELECT_COUNTER0); |
| 41 | status = inb(I8254_PORT_COUNTER0); |
| 42 | timer = inb(I8254_PORT_COUNTER0); |
| 43 | timer |= inb(I8254_PORT_COUNTER0) << 8; |
| 44 | } while (status & I8254_STATUS_NOTREADY); |
| 45 | |
| 46 | return timer; |
| 47 | } |
| 48 | |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 49 | static unsigned long rotate_xor(unsigned long hash, const void *area, |
| 50 | size_t size) |
| 51 | { |
| 52 | size_t i; |
| 53 | unsigned long *ptr = (unsigned long *)area; |
| 54 | |
| 55 | for (i = 0; i < size / sizeof(hash); i++) { |
| 56 | /* Rotate by odd number of bits and XOR. */ |
| 57 | hash = (hash << ((sizeof(hash) * 8) - 7)) | (hash >> 7); |
| 58 | hash ^= ptr[i]; |
| 59 | } |
| 60 | |
| 61 | return hash; |
| 62 | } |
| 63 | |
| 64 | /* Attempt to create a simple but unpredictable starting entropy. */ |
| 65 | static unsigned long get_random_boot(void) |
| 66 | { |
| 67 | unsigned long hash = 0; |
| 68 | |
| 69 | hash = rotate_xor(hash, build_str, sizeof(build_str)); |
Kees Cook | 6655e0a | 2016-04-18 09:42:12 -0700 | [diff] [blame] | 70 | hash = rotate_xor(hash, boot_params, sizeof(*boot_params)); |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 71 | |
| 72 | return hash; |
| 73 | } |
| 74 | |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 75 | static unsigned long get_random_long(void) |
| 76 | { |
H. Peter Anvin | e8236c4 | 2013-11-11 22:45:20 -0800 | [diff] [blame] | 77 | #ifdef CONFIG_X86_64 |
| 78 | const unsigned long mix_const = 0x5d6008cbf3848dd3UL; |
| 79 | #else |
| 80 | const unsigned long mix_const = 0x3f39e593UL; |
| 81 | #endif |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 82 | unsigned long raw, random = get_random_boot(); |
| 83 | bool use_i8254 = true; |
| 84 | |
| 85 | debug_putstr("KASLR using"); |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 86 | |
| 87 | if (has_cpuflag(X86_FEATURE_RDRAND)) { |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 88 | debug_putstr(" RDRAND"); |
| 89 | if (rdrand_long(&raw)) { |
| 90 | random ^= raw; |
| 91 | use_i8254 = false; |
| 92 | } |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | if (has_cpuflag(X86_FEATURE_TSC)) { |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 96 | debug_putstr(" RDTSC"); |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 97 | raw = rdtsc(); |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 98 | |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 99 | random ^= raw; |
| 100 | use_i8254 = false; |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 103 | if (use_i8254) { |
| 104 | debug_putstr(" i8254"); |
| 105 | random ^= i8254(); |
| 106 | } |
| 107 | |
H. Peter Anvin | e8236c4 | 2013-11-11 22:45:20 -0800 | [diff] [blame] | 108 | /* Circular multiply for better bit diffusion */ |
| 109 | asm("mul %3" |
| 110 | : "=a" (random), "=d" (raw) |
| 111 | : "a" (random), "rm" (mix_const)); |
| 112 | random += raw; |
| 113 | |
Kees Cook | a653f35 | 2013-11-11 14:28:39 -0800 | [diff] [blame] | 114 | debug_putstr("...\n"); |
| 115 | |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 116 | return random; |
| 117 | } |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 118 | |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 119 | struct mem_vector { |
| 120 | unsigned long start; |
| 121 | unsigned long size; |
| 122 | }; |
| 123 | |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 124 | #define MEM_AVOID_MAX 4 |
Kees Cook | e290e8c | 2014-02-09 13:56:44 -0800 | [diff] [blame] | 125 | static struct mem_vector mem_avoid[MEM_AVOID_MAX]; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 126 | |
| 127 | static bool mem_contains(struct mem_vector *region, struct mem_vector *item) |
| 128 | { |
| 129 | /* Item at least partially before region. */ |
| 130 | if (item->start < region->start) |
| 131 | return false; |
| 132 | /* Item at least partially after region. */ |
| 133 | if (item->start + item->size > region->start + region->size) |
| 134 | return false; |
| 135 | return true; |
| 136 | } |
| 137 | |
| 138 | static bool mem_overlaps(struct mem_vector *one, struct mem_vector *two) |
| 139 | { |
| 140 | /* Item one is entirely before item two. */ |
| 141 | if (one->start + one->size <= two->start) |
| 142 | return false; |
| 143 | /* Item one is entirely after item two. */ |
| 144 | if (one->start >= two->start + two->size) |
| 145 | return false; |
| 146 | return true; |
| 147 | } |
| 148 | |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 149 | /* |
| 150 | * In theroy, KASLR can put the kernel anywhere in area of [16M, 64T). The |
| 151 | * mem_avoid array is used to store the ranges that need to be avoided when |
| 152 | * KASLR searches for a an appropriate random address. We must avoid any |
| 153 | * regions that are unsafe to overlap with during decompression, and other |
| 154 | * things like the initrd, cmdline and boot_params. |
| 155 | * |
| 156 | * How to calculate the unsafe areas is detailed here, and is informed by |
| 157 | * the decompression calculations in header.S, and the diagram in misc.c. |
| 158 | * |
| 159 | * The compressed vmlinux (ZO) plus relocs and the run space of ZO can't be |
| 160 | * overwritten by decompression output. |
| 161 | * |
| 162 | * ZO sits against the end of the decompression buffer, so we can calculate |
| 163 | * where text, data, bss, etc of ZO are positioned. |
| 164 | * |
| 165 | * The follow are already enforced by the code: |
| 166 | * - init_size >= kernel_total_size |
| 167 | * - input + input_len >= output + output_len |
| 168 | * - kernel_total_size could be >= or < output_len |
| 169 | * |
| 170 | * From this, we can make several observations, illustrated by a diagram: |
| 171 | * - init_size >= kernel_total_size |
| 172 | * - input + input_len > output + output_len |
| 173 | * - kernel_total_size >= output_len |
| 174 | * |
| 175 | * 0 output input input+input_len output+init_size |
| 176 | * | | | | | |
| 177 | * | | | | | |
| 178 | * |-----|--------|--------|------------------|----|------------|----------| |
| 179 | * | | | |
| 180 | * | | | |
| 181 | * output+init_size-ZO_INIT_SIZE output+output_len output+kernel_total_size |
| 182 | * |
| 183 | * [output, output+init_size) is for the buffer for decompressing the |
| 184 | * compressed kernel (ZO). |
| 185 | * |
| 186 | * [output, output+kernel_total_size) is for the uncompressed kernel (VO) |
| 187 | * and its bss, brk, etc. |
| 188 | * [output, output+output_len) is VO plus relocs |
| 189 | * |
| 190 | * [output+init_size-ZO_INIT_SIZE, output+init_size) is the copied ZO. |
| 191 | * [input, input+input_len) is the copied compressed (VO (vmlinux after |
| 192 | * objcopy) plus relocs), not the ZO. |
| 193 | * |
| 194 | * [input+input_len, output+init_size) is [_text, _end) for ZO. That was the |
| 195 | * first range in mem_avoid, which included ZO's heap and stack. Also |
| 196 | * [input, input+input_size) need be put in mem_avoid array, but since it |
| 197 | * is adjacent to the first entry, they can be merged. This is how we get |
| 198 | * the first entry in mem_avoid[]. |
| 199 | */ |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 200 | static void mem_avoid_init(unsigned long input, unsigned long input_size, |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 201 | unsigned long output) |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 202 | { |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 203 | unsigned long init_size = boot_params->hdr.init_size; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 204 | u64 initrd_start, initrd_size; |
| 205 | u64 cmd_line, cmd_line_size; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 206 | char *ptr; |
| 207 | |
| 208 | /* |
| 209 | * Avoid the region that is unsafe to overlap during |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 210 | * decompression. |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 211 | */ |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 212 | mem_avoid[0].start = input; |
| 213 | mem_avoid[0].size = (output + init_size) - input; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 214 | |
| 215 | /* Avoid initrd. */ |
Kees Cook | 6655e0a | 2016-04-18 09:42:12 -0700 | [diff] [blame] | 216 | initrd_start = (u64)boot_params->ext_ramdisk_image << 32; |
| 217 | initrd_start |= boot_params->hdr.ramdisk_image; |
| 218 | initrd_size = (u64)boot_params->ext_ramdisk_size << 32; |
| 219 | initrd_size |= boot_params->hdr.ramdisk_size; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 220 | mem_avoid[1].start = initrd_start; |
| 221 | mem_avoid[1].size = initrd_size; |
| 222 | |
| 223 | /* Avoid kernel command line. */ |
Kees Cook | 6655e0a | 2016-04-18 09:42:12 -0700 | [diff] [blame] | 224 | cmd_line = (u64)boot_params->ext_cmd_line_ptr << 32; |
| 225 | cmd_line |= boot_params->hdr.cmd_line_ptr; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 226 | /* Calculate size of cmd_line. */ |
| 227 | ptr = (char *)(unsigned long)cmd_line; |
| 228 | for (cmd_line_size = 0; ptr[cmd_line_size++]; ) |
| 229 | ; |
| 230 | mem_avoid[2].start = cmd_line; |
| 231 | mem_avoid[2].size = cmd_line_size; |
| 232 | |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 233 | /* Avoid params */ |
| 234 | mem_avoid[3].start = (unsigned long)boot_params; |
| 235 | mem_avoid[3].size = sizeof(*boot_params); |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* Does this memory vector overlap a known avoided area? */ |
Kees Cook | e290e8c | 2014-02-09 13:56:44 -0800 | [diff] [blame] | 239 | static bool mem_avoid_overlap(struct mem_vector *img) |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 240 | { |
| 241 | int i; |
Kees Cook | 0cacbfb | 2014-09-11 09:19:31 -0700 | [diff] [blame] | 242 | struct setup_data *ptr; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 243 | |
| 244 | for (i = 0; i < MEM_AVOID_MAX; i++) { |
| 245 | if (mem_overlaps(img, &mem_avoid[i])) |
| 246 | return true; |
| 247 | } |
| 248 | |
Kees Cook | 0cacbfb | 2014-09-11 09:19:31 -0700 | [diff] [blame] | 249 | /* Avoid all entries in the setup_data linked list. */ |
Kees Cook | 6655e0a | 2016-04-18 09:42:12 -0700 | [diff] [blame] | 250 | ptr = (struct setup_data *)(unsigned long)boot_params->hdr.setup_data; |
Kees Cook | 0cacbfb | 2014-09-11 09:19:31 -0700 | [diff] [blame] | 251 | while (ptr) { |
| 252 | struct mem_vector avoid; |
| 253 | |
Kees Cook | 20cc288 | 2014-10-01 11:36:32 -0700 | [diff] [blame] | 254 | avoid.start = (unsigned long)ptr; |
Kees Cook | 0cacbfb | 2014-09-11 09:19:31 -0700 | [diff] [blame] | 255 | avoid.size = sizeof(*ptr) + ptr->len; |
| 256 | |
| 257 | if (mem_overlaps(img, &avoid)) |
| 258 | return true; |
| 259 | |
| 260 | ptr = (struct setup_data *)(unsigned long)ptr->next; |
| 261 | } |
| 262 | |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 263 | return false; |
| 264 | } |
| 265 | |
Baoquan He | e8581e3 | 2016-04-20 13:55:43 -0700 | [diff] [blame] | 266 | static unsigned long slots[KERNEL_IMAGE_SIZE / CONFIG_PHYSICAL_ALIGN]; |
Kees Cook | e290e8c | 2014-02-09 13:56:44 -0800 | [diff] [blame] | 267 | static unsigned long slot_max; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 268 | |
| 269 | static void slots_append(unsigned long addr) |
| 270 | { |
| 271 | /* Overflowing the slots list should be impossible. */ |
Baoquan He | e8581e3 | 2016-04-20 13:55:43 -0700 | [diff] [blame] | 272 | if (slot_max >= KERNEL_IMAGE_SIZE / CONFIG_PHYSICAL_ALIGN) |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 273 | return; |
| 274 | |
| 275 | slots[slot_max++] = addr; |
| 276 | } |
| 277 | |
| 278 | static unsigned long slots_fetch_random(void) |
| 279 | { |
| 280 | /* Handle case of no slots stored. */ |
| 281 | if (slot_max == 0) |
| 282 | return 0; |
| 283 | |
| 284 | return slots[get_random_long() % slot_max]; |
| 285 | } |
| 286 | |
| 287 | static void process_e820_entry(struct e820entry *entry, |
| 288 | unsigned long minimum, |
| 289 | unsigned long image_size) |
| 290 | { |
| 291 | struct mem_vector region, img; |
| 292 | |
| 293 | /* Skip non-RAM entries. */ |
| 294 | if (entry->type != E820_RAM) |
| 295 | return; |
| 296 | |
| 297 | /* Ignore entries entirely above our maximum. */ |
Baoquan He | e8581e3 | 2016-04-20 13:55:43 -0700 | [diff] [blame] | 298 | if (entry->addr >= KERNEL_IMAGE_SIZE) |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 299 | return; |
| 300 | |
| 301 | /* Ignore entries entirely below our minimum. */ |
| 302 | if (entry->addr + entry->size < minimum) |
| 303 | return; |
| 304 | |
| 305 | region.start = entry->addr; |
| 306 | region.size = entry->size; |
| 307 | |
| 308 | /* Potentially raise address to minimum location. */ |
| 309 | if (region.start < minimum) |
| 310 | region.start = minimum; |
| 311 | |
| 312 | /* Potentially raise address to meet alignment requirements. */ |
| 313 | region.start = ALIGN(region.start, CONFIG_PHYSICAL_ALIGN); |
| 314 | |
| 315 | /* Did we raise the address above the bounds of this e820 region? */ |
| 316 | if (region.start > entry->addr + entry->size) |
| 317 | return; |
| 318 | |
| 319 | /* Reduce size by any delta from the original address. */ |
| 320 | region.size -= region.start - entry->addr; |
| 321 | |
| 322 | /* Reduce maximum size to fit end of image within maximum limit. */ |
Baoquan He | e8581e3 | 2016-04-20 13:55:43 -0700 | [diff] [blame] | 323 | if (region.start + region.size > KERNEL_IMAGE_SIZE) |
| 324 | region.size = KERNEL_IMAGE_SIZE - region.start; |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 325 | |
| 326 | /* Walk each aligned slot and check for avoided areas. */ |
| 327 | for (img.start = region.start, img.size = image_size ; |
| 328 | mem_contains(®ion, &img) ; |
| 329 | img.start += CONFIG_PHYSICAL_ALIGN) { |
| 330 | if (mem_avoid_overlap(&img)) |
| 331 | continue; |
| 332 | slots_append(img.start); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | static unsigned long find_random_addr(unsigned long minimum, |
| 337 | unsigned long size) |
| 338 | { |
| 339 | int i; |
| 340 | unsigned long addr; |
| 341 | |
| 342 | /* Make sure minimum is aligned. */ |
| 343 | minimum = ALIGN(minimum, CONFIG_PHYSICAL_ALIGN); |
| 344 | |
| 345 | /* Verify potential e820 positions, appending to slots list. */ |
Kees Cook | 6655e0a | 2016-04-18 09:42:12 -0700 | [diff] [blame] | 346 | for (i = 0; i < boot_params->e820_entries; i++) { |
| 347 | process_e820_entry(&boot_params->e820_map[i], minimum, size); |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | return slots_fetch_random(); |
| 351 | } |
| 352 | |
Borislav Petkov | 549f90d | 2016-05-06 13:50:15 +0200 | [diff] [blame^] | 353 | /* |
| 354 | * Since this function examines addresses much more numerically, |
| 355 | * it takes the input and output pointers as 'unsigned long'. |
| 356 | */ |
| 357 | unsigned char *choose_random_location(unsigned long input, |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 358 | unsigned long input_size, |
Borislav Petkov | 549f90d | 2016-05-06 13:50:15 +0200 | [diff] [blame^] | 359 | unsigned long output, |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 360 | unsigned long output_size) |
| 361 | { |
Kees Cook | 2bc1cd3 | 2016-05-05 15:13:46 -0700 | [diff] [blame] | 362 | unsigned long choice = output; |
Kees Cook | 9016875 | 2016-04-18 09:42:15 -0700 | [diff] [blame] | 363 | unsigned long random_addr; |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 364 | |
Kees Cook | 24f2e02 | 2014-06-13 13:30:36 -0700 | [diff] [blame] | 365 | #ifdef CONFIG_HIBERNATION |
| 366 | if (!cmdline_find_option_bool("kaslr")) { |
Kees Cook | 0f8ede1b | 2016-04-20 13:55:46 -0700 | [diff] [blame] | 367 | warn("KASLR disabled: 'kaslr' not on cmdline (hibernation selected)."); |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 368 | goto out; |
| 369 | } |
Kees Cook | 24f2e02 | 2014-06-13 13:30:36 -0700 | [diff] [blame] | 370 | #else |
| 371 | if (cmdline_find_option_bool("nokaslr")) { |
Kees Cook | 0f8ede1b | 2016-04-20 13:55:46 -0700 | [diff] [blame] | 372 | warn("KASLR disabled: 'nokaslr' on cmdline."); |
Kees Cook | 24f2e02 | 2014-06-13 13:30:36 -0700 | [diff] [blame] | 373 | goto out; |
| 374 | } |
| 375 | #endif |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 376 | |
Kees Cook | 6655e0a | 2016-04-18 09:42:12 -0700 | [diff] [blame] | 377 | boot_params->hdr.loadflags |= KASLR_FLAG; |
Borislav Petkov | 78cac48 | 2015-04-01 12:49:52 +0200 | [diff] [blame] | 378 | |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 379 | /* Record the various known unsafe memory ranges. */ |
Yinghai Lu | 9dc1969 | 2016-05-05 15:13:47 -0700 | [diff] [blame] | 380 | mem_avoid_init(input, input_size, output); |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 381 | |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 382 | /* Walk e820 and find a random address. */ |
Kees Cook | 2bc1cd3 | 2016-05-05 15:13:46 -0700 | [diff] [blame] | 383 | random_addr = find_random_addr(output, output_size); |
Kees Cook | 9016875 | 2016-04-18 09:42:15 -0700 | [diff] [blame] | 384 | if (!random_addr) { |
Kees Cook | 0f8ede1b | 2016-04-20 13:55:46 -0700 | [diff] [blame] | 385 | warn("KASLR disabled: could not find suitable E820 region!"); |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 386 | goto out; |
| 387 | } |
| 388 | |
| 389 | /* Always enforce the minimum. */ |
Kees Cook | 9016875 | 2016-04-18 09:42:15 -0700 | [diff] [blame] | 390 | if (random_addr < choice) |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 391 | goto out; |
| 392 | |
Kees Cook | 9016875 | 2016-04-18 09:42:15 -0700 | [diff] [blame] | 393 | choice = random_addr; |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 394 | out: |
| 395 | return (unsigned char *)choice; |
| 396 | } |