kaslr.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /*
  2. * Copyright (C) 2016 Linaro Ltd <ard.biesheuvel@linaro.org>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include <linux/crc32.h>
  9. #include <linux/init.h>
  10. #include <linux/libfdt.h>
  11. #include <linux/mm_types.h>
  12. #include <linux/sched.h>
  13. #include <linux/types.h>
  14. #include <asm/fixmap.h>
  15. #include <asm/kernel-pgtable.h>
  16. #include <asm/memory.h>
  17. #include <asm/mmu.h>
  18. #include <asm/pgtable.h>
  19. #include <asm/sections.h>
  20. u64 __read_mostly module_alloc_base;
  21. u16 __initdata memstart_offset_seed;
  22. static __init u64 get_kaslr_seed(void *fdt)
  23. {
  24. int node, len;
  25. u64 *prop;
  26. u64 ret;
  27. node = fdt_path_offset(fdt, "/chosen");
  28. if (node < 0)
  29. return 0;
  30. prop = fdt_getprop_w(fdt, node, "kaslr-seed", &len);
  31. if (!prop || len != sizeof(u64))
  32. return 0;
  33. ret = fdt64_to_cpu(*prop);
  34. *prop = 0;
  35. return ret;
  36. }
  37. static __init const u8 *get_cmdline(void *fdt)
  38. {
  39. static __initconst const u8 default_cmdline[] = CONFIG_CMDLINE;
  40. if (!IS_ENABLED(CONFIG_CMDLINE_FORCE)) {
  41. int node;
  42. const u8 *prop;
  43. node = fdt_path_offset(fdt, "/chosen");
  44. if (node < 0)
  45. goto out;
  46. prop = fdt_getprop(fdt, node, "bootargs", NULL);
  47. if (!prop)
  48. goto out;
  49. return prop;
  50. }
  51. out:
  52. return default_cmdline;
  53. }
  54. extern void *__init __fixmap_remap_fdt(phys_addr_t dt_phys, int *size,
  55. pgprot_t prot);
  56. /*
  57. * This routine will be executed with the kernel mapped at its default virtual
  58. * address, and if it returns successfully, the kernel will be remapped, and
  59. * start_kernel() will be executed from a randomized virtual offset. The
  60. * relocation will result in all absolute references (e.g., static variables
  61. * containing function pointers) to be reinitialized, and zero-initialized
  62. * .bss variables will be reset to 0.
  63. */
  64. u64 __init kaslr_early_init(u64 dt_phys, u64 modulo_offset)
  65. {
  66. void *fdt;
  67. u64 seed, offset, mask, module_range;
  68. const u8 *cmdline, *str;
  69. int size;
  70. /*
  71. * Set a reasonable default for module_alloc_base in case
  72. * we end up running with module randomization disabled.
  73. */
  74. module_alloc_base = (u64)_etext - MODULES_VSIZE;
  75. /*
  76. * Try to map the FDT early. If this fails, we simply bail,
  77. * and proceed with KASLR disabled. We will make another
  78. * attempt at mapping the FDT in setup_machine()
  79. */
  80. early_fixmap_init();
  81. fdt = __fixmap_remap_fdt(dt_phys, &size, PAGE_KERNEL);
  82. if (!fdt)
  83. return 0;
  84. /*
  85. * Retrieve (and wipe) the seed from the FDT
  86. */
  87. seed = get_kaslr_seed(fdt);
  88. if (!seed)
  89. return 0;
  90. /*
  91. * Check if 'nokaslr' appears on the command line, and
  92. * return 0 if that is the case.
  93. */
  94. cmdline = get_cmdline(fdt);
  95. str = strstr(cmdline, "nokaslr");
  96. if (str == cmdline || (str > cmdline && *(str - 1) == ' '))
  97. return 0;
  98. /*
  99. * OK, so we are proceeding with KASLR enabled. Calculate a suitable
  100. * kernel image offset from the seed. Let's place the kernel in the
  101. * lower half of the VMALLOC area (VA_BITS - 2).
  102. * Even if we could randomize at page granularity for 16k and 64k pages,
  103. * let's always round to 2 MB so we don't interfere with the ability to
  104. * map using contiguous PTEs
  105. */
  106. mask = ((1UL << (VA_BITS - 2)) - 1) & ~(SZ_2M - 1);
  107. offset = seed & mask;
  108. /* use the top 16 bits to randomize the linear region */
  109. memstart_offset_seed = seed >> 48;
  110. /*
  111. * The kernel Image should not extend across a 1GB/32MB/512MB alignment
  112. * boundary (for 4KB/16KB/64KB granule kernels, respectively). If this
  113. * happens, increase the KASLR offset by the size of the kernel image.
  114. */
  115. if ((((u64)_text + offset + modulo_offset) >> SWAPPER_TABLE_SHIFT) !=
  116. (((u64)_end + offset + modulo_offset) >> SWAPPER_TABLE_SHIFT))
  117. offset = (offset + (u64)(_end - _text)) & mask;
  118. if (IS_ENABLED(CONFIG_KASAN))
  119. /*
  120. * KASAN does not expect the module region to intersect the
  121. * vmalloc region, since shadow memory is allocated for each
  122. * module at load time, whereas the vmalloc region is shadowed
  123. * by KASAN zero pages. So keep modules out of the vmalloc
  124. * region if KASAN is enabled.
  125. */
  126. return offset;
  127. if (IS_ENABLED(CONFIG_RANDOMIZE_MODULE_REGION_FULL)) {
  128. /*
  129. * Randomize the module region independently from the core
  130. * kernel. This prevents modules from leaking any information
  131. * about the address of the kernel itself, but results in
  132. * branches between modules and the core kernel that are
  133. * resolved via PLTs. (Branches between modules will be
  134. * resolved normally.)
  135. */
  136. module_range = VMALLOC_END - VMALLOC_START - MODULES_VSIZE;
  137. module_alloc_base = VMALLOC_START;
  138. } else {
  139. /*
  140. * Randomize the module region by setting module_alloc_base to
  141. * a PAGE_SIZE multiple in the range [_etext - MODULES_VSIZE,
  142. * _stext) . This guarantees that the resulting region still
  143. * covers [_stext, _etext], and that all relative branches can
  144. * be resolved without veneers.
  145. */
  146. module_range = MODULES_VSIZE - (u64)(_etext - _stext);
  147. module_alloc_base = (u64)_etext + offset - MODULES_VSIZE;
  148. }
  149. /* use the lower 21 bits to randomize the base of the module region */
  150. module_alloc_base += (module_range * (seed & ((1 << 21) - 1))) >> 21;
  151. module_alloc_base &= PAGE_MASK;
  152. return offset;
  153. }