mmap.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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/signal.h>
  31. #include <linux/sched/mm.h>
  32. #include <linux/compat.h>
  33. #include <asm/elf.h>
  34. struct va_alignment __read_mostly va_align = {
  35. .flags = -1,
  36. };
  37. unsigned long tasksize_32bit(void)
  38. {
  39. return IA32_PAGE_OFFSET;
  40. }
  41. unsigned long tasksize_64bit(void)
  42. {
  43. return TASK_SIZE_MAX;
  44. }
  45. static unsigned long stack_maxrandom_size(unsigned long task_size)
  46. {
  47. unsigned long max = 0;
  48. if ((current->flags & PF_RANDOMIZE) &&
  49. !(current->personality & ADDR_NO_RANDOMIZE)) {
  50. max = (-1UL) & __STACK_RND_MASK(task_size == tasksize_32bit());
  51. max <<= PAGE_SHIFT;
  52. }
  53. return max;
  54. }
  55. #ifdef CONFIG_COMPAT
  56. # define mmap32_rnd_bits mmap_rnd_compat_bits
  57. # define mmap64_rnd_bits mmap_rnd_bits
  58. #else
  59. # define mmap32_rnd_bits mmap_rnd_bits
  60. # define mmap64_rnd_bits mmap_rnd_bits
  61. #endif
  62. #define SIZE_128M (128 * 1024 * 1024UL)
  63. static int mmap_is_legacy(void)
  64. {
  65. if (current->personality & ADDR_COMPAT_LAYOUT)
  66. return 1;
  67. if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
  68. return 1;
  69. return sysctl_legacy_va_layout;
  70. }
  71. static unsigned long arch_rnd(unsigned int rndbits)
  72. {
  73. return (get_random_long() & ((1UL << rndbits) - 1)) << PAGE_SHIFT;
  74. }
  75. unsigned long arch_mmap_rnd(void)
  76. {
  77. if (!(current->flags & PF_RANDOMIZE))
  78. return 0;
  79. return arch_rnd(mmap_is_ia32() ? mmap32_rnd_bits : mmap64_rnd_bits);
  80. }
  81. static unsigned long mmap_base(unsigned long rnd, unsigned long task_size)
  82. {
  83. unsigned long gap = rlimit(RLIMIT_STACK);
  84. unsigned long gap_min, gap_max;
  85. /*
  86. * Top of mmap area (just below the process stack).
  87. * Leave an at least ~128 MB hole with possible stack randomization.
  88. */
  89. gap_min = SIZE_128M + stack_maxrandom_size(task_size);
  90. gap_max = (task_size / 6) * 5;
  91. if (gap < gap_min)
  92. gap = gap_min;
  93. else if (gap > gap_max)
  94. gap = gap_max;
  95. return PAGE_ALIGN(task_size - gap - rnd);
  96. }
  97. static unsigned long mmap_legacy_base(unsigned long rnd,
  98. unsigned long task_size)
  99. {
  100. return __TASK_UNMAPPED_BASE(task_size) + rnd;
  101. }
  102. /*
  103. * This function, called very early during the creation of a new
  104. * process VM image, sets up which VM layout function to use:
  105. */
  106. static void arch_pick_mmap_base(unsigned long *base, unsigned long *legacy_base,
  107. unsigned long random_factor, unsigned long task_size)
  108. {
  109. *legacy_base = mmap_legacy_base(random_factor, task_size);
  110. if (mmap_is_legacy())
  111. *base = *legacy_base;
  112. else
  113. *base = mmap_base(random_factor, task_size);
  114. }
  115. void arch_pick_mmap_layout(struct mm_struct *mm)
  116. {
  117. if (mmap_is_legacy())
  118. mm->get_unmapped_area = arch_get_unmapped_area;
  119. else
  120. mm->get_unmapped_area = arch_get_unmapped_area_topdown;
  121. arch_pick_mmap_base(&mm->mmap_base, &mm->mmap_legacy_base,
  122. arch_rnd(mmap64_rnd_bits), tasksize_64bit());
  123. #ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
  124. /*
  125. * The mmap syscall mapping base decision depends solely on the
  126. * syscall type (64-bit or compat). This applies for 64bit
  127. * applications and 32bit applications. The 64bit syscall uses
  128. * mmap_base, the compat syscall uses mmap_compat_base.
  129. */
  130. arch_pick_mmap_base(&mm->mmap_compat_base, &mm->mmap_compat_legacy_base,
  131. arch_rnd(mmap32_rnd_bits), tasksize_32bit());
  132. #endif
  133. }
  134. unsigned long get_mmap_base(int is_legacy)
  135. {
  136. struct mm_struct *mm = current->mm;
  137. #ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
  138. if (in_compat_syscall()) {
  139. return is_legacy ? mm->mmap_compat_legacy_base
  140. : mm->mmap_compat_base;
  141. }
  142. #endif
  143. return is_legacy ? mm->mmap_legacy_base : mm->mmap_base;
  144. }
  145. const char *arch_vma_name(struct vm_area_struct *vma)
  146. {
  147. if (vma->vm_flags & VM_MPX)
  148. return "[mpx]";
  149. return NULL;
  150. }