mm: larger stack guard gap, between vmas
[pandora-kernel.git] / arch / arm / mm / mmap.c
1 /*
2  *  linux/arch/arm/mm/mmap.c
3  */
4 #include <linux/fs.h>
5 #include <linux/mm.h>
6 #include <linux/mman.h>
7 #include <linux/shm.h>
8 #include <linux/sched.h>
9 #include <linux/io.h>
10 #include <linux/personality.h>
11 #include <linux/random.h>
12 #include <asm/cachetype.h>
13
14 #define COLOUR_ALIGN(addr,pgoff)                \
15         ((((addr)+SHMLBA-1)&~(SHMLBA-1)) +      \
16          (((pgoff)<<PAGE_SHIFT) & (SHMLBA-1)))
17
18 /*
19  * We need to ensure that shared mappings are correctly aligned to
20  * avoid aliasing issues with VIPT caches.  We need to ensure that
21  * a specific page of an object is always mapped at a multiple of
22  * SHMLBA bytes.
23  *
24  * We unconditionally provide this function for all cases, however
25  * in the VIVT case, we optimise out the alignment rules.
26  */
27 unsigned long
28 arch_get_unmapped_area(struct file *filp, unsigned long addr,
29                 unsigned long len, unsigned long pgoff, unsigned long flags)
30 {
31         struct mm_struct *mm = current->mm;
32         struct vm_area_struct *vma;
33         unsigned long start_addr, vm_start;
34         int do_align = 0;
35         int aliasing = cache_is_vipt_aliasing();
36
37         /*
38          * We only need to do colour alignment if either the I or D
39          * caches alias.
40          */
41         if (aliasing)
42                 do_align = filp || (flags & MAP_SHARED);
43
44         /*
45          * We enforce the MAP_FIXED case.
46          */
47         if (flags & MAP_FIXED) {
48                 if (aliasing && flags & MAP_SHARED &&
49                     (addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1))
50                         return -EINVAL;
51                 return addr;
52         }
53
54         if (len > TASK_SIZE)
55                 return -ENOMEM;
56
57         if (addr) {
58                 if (do_align)
59                         addr = COLOUR_ALIGN(addr, pgoff);
60                 else
61                         addr = PAGE_ALIGN(addr);
62
63                 vma = find_vma(mm, addr);
64                 if (TASK_SIZE - len >= addr &&
65                     (!vma || addr + len <= vm_start_gap(vma)))
66                         return addr;
67         }
68         if (len > mm->cached_hole_size) {
69                 start_addr = addr = mm->free_area_cache;
70         } else {
71                 start_addr = addr = TASK_UNMAPPED_BASE;
72                 mm->cached_hole_size = 0;
73         }
74         /* 8 bits of randomness in 20 address space bits */
75         if ((current->flags & PF_RANDOMIZE) &&
76             !(current->personality & ADDR_NO_RANDOMIZE))
77                 addr += (get_random_int() % (1 << 8)) << PAGE_SHIFT;
78
79 full_search:
80         if (do_align)
81                 addr = COLOUR_ALIGN(addr, pgoff);
82         else
83                 addr = PAGE_ALIGN(addr);
84
85         for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
86                 /* At this point:  (!vma || addr < vma->vm_end). */
87                 if (TASK_SIZE - len < addr) {
88                         /*
89                          * Start a new search - just in case we missed
90                          * some holes.
91                          */
92                         if (start_addr != TASK_UNMAPPED_BASE) {
93                                 start_addr = addr = TASK_UNMAPPED_BASE;
94                                 mm->cached_hole_size = 0;
95                                 goto full_search;
96                         }
97                         return -ENOMEM;
98                 }
99                 if (vma)
100                         vm_start = vm_start_gap(vma);
101                 if (!vma || addr + len <= vm_start) {
102                         /*
103                          * Remember the place where we stopped the search:
104                          */
105                         mm->free_area_cache = addr + len;
106                         return addr;
107                 }
108                 if (addr + mm->cached_hole_size < vm_start)
109                         mm->cached_hole_size = vm_start - addr;
110                 addr = vma->vm_end;
111                 if (do_align)
112                         addr = COLOUR_ALIGN(addr, pgoff);
113         }
114 }
115
116
117 /*
118  * You really shouldn't be using read() or write() on /dev/mem.  This
119  * might go away in the future.
120  */
121 int valid_phys_addr_range(unsigned long addr, size_t size)
122 {
123         if (addr < PHYS_OFFSET)
124                 return 0;
125         if (addr + size > __pa(high_memory - 1) + 1)
126                 return 0;
127
128         return 1;
129 }
130
131 /*
132  * We don't use supersection mappings for mmap() on /dev/mem, which
133  * means that we can't map the memory area above the 4G barrier into
134  * userspace.
135  */
136 int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
137 {
138         return !(pfn + (size >> PAGE_SHIFT) > 0x00100000);
139 }
140
141 #ifdef CONFIG_STRICT_DEVMEM
142
143 #include <linux/ioport.h>
144
145 /*
146  * devmem_is_allowed() checks to see if /dev/mem access to a certain
147  * address is valid. The argument is a physical page number.
148  * We mimic x86 here by disallowing access to system RAM as well as
149  * device-exclusive MMIO regions. This effectively disable read()/write()
150  * on /dev/mem.
151  */
152 int devmem_is_allowed(unsigned long pfn)
153 {
154         if (iomem_is_exclusive(pfn << PAGE_SHIFT))
155                 return 0;
156         if (!page_is_ram(pfn))
157                 return 1;
158         return 0;
159 }
160
161 #endif