Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/x86-64/mm/mmap.c |
| 3 | * |
| 4 | * flexible mmap layout support |
| 5 | * |
| 6 | * Based on code by Ingo Molnar and Andi Kleen, copyrighted |
| 7 | * as follows: |
| 8 | * |
| 9 | * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina. |
| 10 | * All Rights Reserved. |
| 11 | * Copyright 2005 Andi Kleen, SUSE Labs. |
| 12 | * Copyright 2007 Jiri Kosina, SUSE Labs. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2 of the License, or |
| 17 | * (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 27 | * |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 28 | */ |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 29 | |
| 30 | #include <linux/personality.h> |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 31 | #include <linux/mm.h> |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 32 | #include <linux/random.h> |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 33 | #include <linux/limits.h> |
| 34 | #include <linux/sched.h> |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 35 | #include <asm/ia32.h> |
| 36 | |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 37 | /* |
| 38 | * Top of mmap area (just below the process stack). |
| 39 | * |
| 40 | * Leave an at least ~128 MB hole. |
| 41 | */ |
| 42 | #define MIN_GAP (128*1024*1024) |
| 43 | #define MAX_GAP (TASK_SIZE/6*5) |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 44 | |
Andrew Morton | 954683a | 2008-01-30 13:31:07 +0100 | [diff] [blame^] | 45 | static unsigned long mmap_base(void) |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 46 | { |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 47 | unsigned long gap = current->signal->rlim[RLIMIT_STACK].rlim_cur; |
Thomas Gleixner | f8eeae6 | 2008-01-30 13:30:25 +0100 | [diff] [blame] | 48 | |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 49 | if (gap < MIN_GAP) |
| 50 | gap = MIN_GAP; |
| 51 | else if (gap > MAX_GAP) |
| 52 | gap = MAX_GAP; |
| 53 | |
| 54 | return TASK_SIZE - (gap & PAGE_MASK); |
Andi Kleen | 8817210 | 2006-01-17 07:03:38 +0100 | [diff] [blame] | 55 | } |
| 56 | |
Andrew Morton | 954683a | 2008-01-30 13:31:07 +0100 | [diff] [blame^] | 57 | static int mmap_is_32(void) |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 58 | { |
| 59 | #ifdef CONFIG_IA32_EMULATION |
| 60 | if (test_thread_flag(TIF_IA32)) |
| 61 | return 1; |
| 62 | #endif |
| 63 | return 0; |
| 64 | } |
| 65 | |
Andrew Morton | 954683a | 2008-01-30 13:31:07 +0100 | [diff] [blame^] | 66 | static int mmap_is_legacy(void) |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 67 | { |
| 68 | if (current->personality & ADDR_COMPAT_LAYOUT) |
| 69 | return 1; |
| 70 | |
| 71 | if (current->signal->rlim[RLIMIT_STACK].rlim_cur == RLIM_INFINITY) |
| 72 | return 1; |
| 73 | |
| 74 | return sysctl_legacy_va_layout; |
| 75 | } |
| 76 | |
| 77 | /* |
| 78 | * This function, called very early during the creation of a new |
| 79 | * process VM image, sets up which VM layout function to use: |
| 80 | */ |
| 81 | void arch_pick_mmap_layout(struct mm_struct *mm) |
| 82 | { |
| 83 | int rnd = 0; |
| 84 | if (current->flags & PF_RANDOMIZE) { |
| 85 | /* |
| 86 | * Add 28bit randomness which is about 40bits of address space |
| 87 | * because mmap base has to be page aligned. |
| 88 | * or ~1/128 of the total user VM |
| 89 | * (total user address space is 47bits) |
| 90 | */ |
| 91 | rnd = get_random_int() & 0xfffffff; |
| 92 | } |
| 93 | |
| 94 | /* |
| 95 | * Fall back to the standard layout if the personality |
| 96 | * bit is set, or if the expected stack growth is unlimited: |
| 97 | */ |
| 98 | if (mmap_is_32()) { |
| 99 | #ifdef CONFIG_IA32_EMULATION |
| 100 | /* ia32_pick_mmap_layout has its own. */ |
| 101 | return ia32_pick_mmap_layout(mm); |
| 102 | #endif |
Andrew Morton | bb1ad82 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 103 | } else if (mmap_is_legacy()) { |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 104 | mm->mmap_base = TASK_UNMAPPED_BASE; |
| 105 | mm->get_unmapped_area = arch_get_unmapped_area; |
| 106 | mm->unmap_area = arch_unmap_area; |
| 107 | } else { |
| 108 | mm->mmap_base = mmap_base(); |
| 109 | mm->get_unmapped_area = arch_get_unmapped_area_topdown; |
| 110 | mm->unmap_area = arch_unmap_area_topdown; |
| 111 | if (current->flags & PF_RANDOMIZE) |
| 112 | rnd = -rnd; |
| 113 | } |
Andrew Morton | bb1ad82 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 114 | if (current->flags & PF_RANDOMIZE) |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 115 | mm->mmap_base += ((long)rnd) << PAGE_SHIFT; |
Jiri Kosina | cc503c1 | 2008-01-30 13:31:07 +0100 | [diff] [blame] | 116 | } |