mmap.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 <asm/elf.h>
  33. struct va_alignment __read_mostly va_align = {
  34. .flags = -1,
  35. };
  36. static unsigned long stack_maxrandom_size(void)
  37. {
  38. unsigned long max = 0;
  39. if ((current->flags & PF_RANDOMIZE) &&
  40. !(current->personality & ADDR_NO_RANDOMIZE)) {
  41. max = ((-1UL) & STACK_RND_MASK) << PAGE_SHIFT;
  42. }
  43. return max;
  44. }
  45. /*
  46. * Top of mmap area (just below the process stack).
  47. *
  48. * Leave an at least ~128 MB hole with possible stack randomization.
  49. */
  50. #define MIN_GAP (128*1024*1024UL + stack_maxrandom_size())
  51. #define MAX_GAP (TASK_SIZE/6*5)
  52. static int mmap_is_legacy(void)
  53. {
  54. if (current->personality & ADDR_COMPAT_LAYOUT)
  55. return 1;
  56. if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
  57. return 1;
  58. return sysctl_legacy_va_layout;
  59. }
  60. unsigned long arch_mmap_rnd(void)
  61. {
  62. unsigned long rnd;
  63. if (mmap_is_ia32())
  64. #ifdef CONFIG_COMPAT
  65. rnd = get_random_long() & ((1UL << mmap_rnd_compat_bits) - 1);
  66. #else
  67. rnd = get_random_long() & ((1UL << mmap_rnd_bits) - 1);
  68. #endif
  69. else
  70. rnd = get_random_long() & ((1UL << mmap_rnd_bits) - 1);
  71. return rnd << PAGE_SHIFT;
  72. }
  73. static unsigned long mmap_base(unsigned long rnd)
  74. {
  75. unsigned long gap = rlimit(RLIMIT_STACK);
  76. if (gap < MIN_GAP)
  77. gap = MIN_GAP;
  78. else if (gap > MAX_GAP)
  79. gap = MAX_GAP;
  80. return PAGE_ALIGN(TASK_SIZE - gap - rnd);
  81. }
  82. /*
  83. * This function, called very early during the creation of a new
  84. * process VM image, sets up which VM layout function to use:
  85. */
  86. void arch_pick_mmap_layout(struct mm_struct *mm)
  87. {
  88. unsigned long random_factor = 0UL;
  89. if (current->flags & PF_RANDOMIZE)
  90. random_factor = arch_mmap_rnd();
  91. mm->mmap_legacy_base = TASK_UNMAPPED_BASE + random_factor;
  92. if (mmap_is_legacy()) {
  93. mm->mmap_base = mm->mmap_legacy_base;
  94. mm->get_unmapped_area = arch_get_unmapped_area;
  95. } else {
  96. mm->mmap_base = mmap_base(random_factor);
  97. mm->get_unmapped_area = arch_get_unmapped_area_topdown;
  98. }
  99. }
  100. const char *arch_vma_name(struct vm_area_struct *vma)
  101. {
  102. if (vma->vm_flags & VM_MPX)
  103. return "[mpx]";
  104. return NULL;
  105. }