kaslr.c 5.2 KB

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