[S390] reduce miminum gap between stack and mmap_base
[pandora-kernel.git] / arch / s390 / mm / mmap.c
1 /*
2  *  linux/arch/s390/mm/mmap.c
3  *
4  *  flexible mmap layout support
5  *
6  * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
7  * All Rights Reserved.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  *
24  * Started by Ingo Molnar <mingo@elte.hu>
25  */
26
27 #include <linux/personality.h>
28 #include <linux/mm.h>
29 #include <linux/module.h>
30 #include <asm/pgalloc.h>
31 #include <asm/compat.h>
32
33 static unsigned long stack_maxrandom_size(void)
34 {
35         if (!(current->flags & PF_RANDOMIZE))
36                 return 0;
37         if (current->personality & ADDR_NO_RANDOMIZE)
38                 return 0;
39         return STACK_RND_MASK << PAGE_SHIFT;
40 }
41
42 /*
43  * Top of mmap area (just below the process stack).
44  *
45  * Leave at least a ~32 MB hole.
46  */
47 #define MIN_GAP (32*1024*1024)
48 #define MAX_GAP (STACK_TOP/6*5)
49
50 static inline unsigned long mmap_base(void)
51 {
52         unsigned long gap = rlimit(RLIMIT_STACK);
53
54         if (gap < MIN_GAP)
55                 gap = MIN_GAP;
56         else if (gap > MAX_GAP)
57                 gap = MAX_GAP;
58
59         return STACK_TOP - stack_maxrandom_size() - (gap & PAGE_MASK);
60 }
61
62 static inline int mmap_is_legacy(void)
63 {
64 #ifdef CONFIG_64BIT
65         /*
66          * Force standard allocation for 64 bit programs.
67          */
68         if (!is_compat_task())
69                 return 1;
70 #endif
71         return sysctl_legacy_va_layout ||
72             (current->personality & ADDR_COMPAT_LAYOUT) ||
73             rlimit(RLIMIT_STACK) == RLIM_INFINITY;
74 }
75
76 #ifndef CONFIG_64BIT
77
78 /*
79  * This function, called very early during the creation of a new
80  * process VM image, sets up which VM layout function to use:
81  */
82 void arch_pick_mmap_layout(struct mm_struct *mm)
83 {
84         /*
85          * Fall back to the standard layout if the personality
86          * bit is set, or if the expected stack growth is unlimited:
87          */
88         if (mmap_is_legacy()) {
89                 mm->mmap_base = TASK_UNMAPPED_BASE;
90                 mm->get_unmapped_area = arch_get_unmapped_area;
91                 mm->unmap_area = arch_unmap_area;
92         } else {
93                 mm->mmap_base = mmap_base();
94                 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
95                 mm->unmap_area = arch_unmap_area_topdown;
96         }
97 }
98 EXPORT_SYMBOL_GPL(arch_pick_mmap_layout);
99
100 #else
101
102 int s390_mmap_check(unsigned long addr, unsigned long len)
103 {
104         if (!is_compat_task() &&
105             len >= TASK_SIZE && TASK_SIZE < (1UL << 53))
106                 return crst_table_upgrade(current->mm, 1UL << 53);
107         return 0;
108 }
109
110 static unsigned long
111 s390_get_unmapped_area(struct file *filp, unsigned long addr,
112                 unsigned long len, unsigned long pgoff, unsigned long flags)
113 {
114         struct mm_struct *mm = current->mm;
115         unsigned long area;
116         int rc;
117
118         area = arch_get_unmapped_area(filp, addr, len, pgoff, flags);
119         if (!(area & ~PAGE_MASK))
120                 return area;
121         if (area == -ENOMEM && !is_compat_task() && TASK_SIZE < (1UL << 53)) {
122                 /* Upgrade the page table to 4 levels and retry. */
123                 rc = crst_table_upgrade(mm, 1UL << 53);
124                 if (rc)
125                         return (unsigned long) rc;
126                 area = arch_get_unmapped_area(filp, addr, len, pgoff, flags);
127         }
128         return area;
129 }
130
131 static unsigned long
132 s390_get_unmapped_area_topdown(struct file *filp, const unsigned long addr,
133                           const unsigned long len, const unsigned long pgoff,
134                           const unsigned long flags)
135 {
136         struct mm_struct *mm = current->mm;
137         unsigned long area;
138         int rc;
139
140         area = arch_get_unmapped_area_topdown(filp, addr, len, pgoff, flags);
141         if (!(area & ~PAGE_MASK))
142                 return area;
143         if (area == -ENOMEM && !is_compat_task() && TASK_SIZE < (1UL << 53)) {
144                 /* Upgrade the page table to 4 levels and retry. */
145                 rc = crst_table_upgrade(mm, 1UL << 53);
146                 if (rc)
147                         return (unsigned long) rc;
148                 area = arch_get_unmapped_area_topdown(filp, addr, len,
149                                                       pgoff, flags);
150         }
151         return area;
152 }
153 /*
154  * This function, called very early during the creation of a new
155  * process VM image, sets up which VM layout function to use:
156  */
157 void arch_pick_mmap_layout(struct mm_struct *mm)
158 {
159         /*
160          * Fall back to the standard layout if the personality
161          * bit is set, or if the expected stack growth is unlimited:
162          */
163         if (mmap_is_legacy()) {
164                 mm->mmap_base = TASK_UNMAPPED_BASE;
165                 mm->get_unmapped_area = s390_get_unmapped_area;
166                 mm->unmap_area = arch_unmap_area;
167         } else {
168                 mm->mmap_base = mmap_base();
169                 mm->get_unmapped_area = s390_get_unmapped_area_topdown;
170                 mm->unmap_area = arch_unmap_area_topdown;
171         }
172 }
173 EXPORT_SYMBOL_GPL(arch_pick_mmap_layout);
174
175 #endif