mmap.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * Flexible mmap layout support
  3. *
  4. * Based on code by Ingo Molnar and Andi Kleen, copyrighted
  5. * as follows:
  6. *
  7. * Copyright 2003-2009 Red Hat Inc.
  8. * All Rights Reserved.
  9. * Copyright 2005 Andi Kleen, SUSE Labs.
  10. * Copyright 2007 Jiri Kosina, SUSE Labs.
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. */
  26. #include <linux/personality.h>
  27. #include <linux/mm.h>
  28. #include <linux/random.h>
  29. #include <linux/limits.h>
  30. #include <linux/sched.h>
  31. #include <asm/elf.h>
  32. struct va_alignment __read_mostly va_align = {
  33. .flags = -1,
  34. };
  35. static unsigned long stack_maxrandom_size(void)
  36. {
  37. unsigned long max = 0;
  38. if ((current->flags & PF_RANDOMIZE) &&
  39. !(current->personality & ADDR_NO_RANDOMIZE)) {
  40. max = ((-1UL) & STACK_RND_MASK) << PAGE_SHIFT;
  41. }
  42. return max;
  43. }
  44. /*
  45. * Top of mmap area (just below the process stack).
  46. *
  47. * Leave an at least ~128 MB hole with possible stack randomization.
  48. */
  49. #define MIN_GAP (128*1024*1024UL + stack_maxrandom_size())
  50. #define MAX_GAP (TASK_SIZE/6*5)
  51. static int mmap_is_legacy(void)
  52. {
  53. if (current->personality & ADDR_COMPAT_LAYOUT)
  54. return 1;
  55. if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
  56. return 1;
  57. return sysctl_legacy_va_layout;
  58. }
  59. unsigned long arch_mmap_rnd(void)
  60. {
  61. unsigned long rnd;
  62. /*
  63. * 8 bits of randomness in 32bit mmaps, 20 address space bits
  64. * 28 bits of randomness in 64bit mmaps, 40 address space bits
  65. */
  66. if (mmap_is_ia32())
  67. rnd = (unsigned long)get_random_int() % (1<<8);
  68. else
  69. rnd = (unsigned long)get_random_int() % (1<<28);
  70. return rnd << PAGE_SHIFT;
  71. }
  72. static unsigned long mmap_base(unsigned long rnd)
  73. {
  74. unsigned long gap = rlimit(RLIMIT_STACK);
  75. if (gap < MIN_GAP)
  76. gap = MIN_GAP;
  77. else if (gap > MAX_GAP)
  78. gap = MAX_GAP;
  79. return PAGE_ALIGN(TASK_SIZE - gap - rnd);
  80. }
  81. /*
  82. * This function, called very early during the creation of a new
  83. * process VM image, sets up which VM layout function to use:
  84. */
  85. void arch_pick_mmap_layout(struct mm_struct *mm)
  86. {
  87. unsigned long random_factor = 0UL;
  88. if (current->flags & PF_RANDOMIZE)
  89. random_factor = arch_mmap_rnd();
  90. mm->mmap_legacy_base = TASK_UNMAPPED_BASE + random_factor;
  91. if (mmap_is_legacy()) {
  92. mm->mmap_base = mm->mmap_legacy_base;
  93. mm->get_unmapped_area = arch_get_unmapped_area;
  94. } else {
  95. mm->mmap_base = mmap_base(random_factor);
  96. mm->get_unmapped_area = arch_get_unmapped_area_topdown;
  97. }
  98. }
  99. const char *arch_vma_name(struct vm_area_struct *vma)
  100. {
  101. if (vma->vm_flags & VM_MPX)
  102. return "[mpx]";
  103. return NULL;
  104. }
  105. /*
  106. * Only allow root to set high MMIO mappings to PROT_NONE.
  107. * This prevents an unpriv. user to set them to PROT_NONE and invert
  108. * them, then pointing to valid memory for L1TF speculation.
  109. *
  110. * Note: for locked down kernels may want to disable the root override.
  111. */
  112. bool pfn_modify_allowed(unsigned long pfn, pgprot_t prot)
  113. {
  114. if (!boot_cpu_has_bug(X86_BUG_L1TF))
  115. return true;
  116. if (!__pte_needs_invert(pgprot_val(prot)))
  117. return true;
  118. /* If it's real memory always allow */
  119. if (pfn_valid(pfn))
  120. return true;
  121. if (pfn >= l1tf_pfn_limit() && !capable(CAP_SYS_ADMIN))
  122. return false;
  123. return true;
  124. }