mmap.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. static unsigned int stack_maxrandom_size(void)
  33. {
  34. unsigned int max = 0;
  35. if ((current->flags & PF_RANDOMIZE) &&
  36. !(current->personality & ADDR_NO_RANDOMIZE)) {
  37. max = ((-1U) & STACK_RND_MASK) << PAGE_SHIFT;
  38. }
  39. return max;
  40. }
  41. /*
  42. * Top of mmap area (just below the process stack).
  43. *
  44. * Leave an at least ~128 MB hole with possible stack randomization.
  45. */
  46. #define MIN_GAP (128*1024*1024UL + stack_maxrandom_size())
  47. #define MAX_GAP (TASK_SIZE/6*5)
  48. /*
  49. * True on X86_32 or when emulating IA32 on X86_64
  50. */
  51. static int mmap_is_ia32(void)
  52. {
  53. #ifdef CONFIG_X86_32
  54. return 1;
  55. #endif
  56. #ifdef CONFIG_IA32_EMULATION
  57. if (test_thread_flag(TIF_IA32))
  58. return 1;
  59. #endif
  60. return 0;
  61. }
  62. static int mmap_is_legacy(void)
  63. {
  64. if (current->personality & ADDR_COMPAT_LAYOUT)
  65. return 1;
  66. if (rlimit(RLIMIT_STACK) == RLIM_INFINITY)
  67. return 1;
  68. return sysctl_legacy_va_layout;
  69. }
  70. static unsigned long mmap_rnd(void)
  71. {
  72. unsigned long rnd = 0;
  73. /*
  74. * 8 bits of randomness in 32bit mmaps, 20 address space bits
  75. * 28 bits of randomness in 64bit mmaps, 40 address space bits
  76. */
  77. if (current->flags & PF_RANDOMIZE) {
  78. if (mmap_is_ia32())
  79. rnd = get_random_int() % (1<<8);
  80. else
  81. rnd = get_random_int() % (1<<28);
  82. }
  83. return rnd << PAGE_SHIFT;
  84. }
  85. static unsigned long mmap_base(void)
  86. {
  87. unsigned long gap = rlimit(RLIMIT_STACK);
  88. if (gap < MIN_GAP)
  89. gap = MIN_GAP;
  90. else if (gap > MAX_GAP)
  91. gap = MAX_GAP;
  92. return PAGE_ALIGN(TASK_SIZE - gap - mmap_rnd());
  93. }
  94. /*
  95. * Bottom-up (legacy) layout on X86_32 did not support randomization, X86_64
  96. * does, but not when emulating X86_32
  97. */
  98. static unsigned long mmap_legacy_base(void)
  99. {
  100. if (mmap_is_ia32())
  101. return TASK_UNMAPPED_BASE;
  102. else
  103. return TASK_UNMAPPED_BASE + mmap_rnd();
  104. }
  105. /*
  106. * This function, called very early during the creation of a new
  107. * process VM image, sets up which VM layout function to use:
  108. */
  109. void arch_pick_mmap_layout(struct mm_struct *mm)
  110. {
  111. if (mmap_is_legacy()) {
  112. mm->mmap_base = mmap_legacy_base();
  113. mm->get_unmapped_area = arch_get_unmapped_area;
  114. mm->unmap_area = arch_unmap_area;
  115. } else {
  116. mm->mmap_base = mmap_base();
  117. mm->get_unmapped_area = arch_get_unmapped_area_topdown;
  118. mm->unmap_area = arch_unmap_area_topdown;
  119. }
  120. }