1 // SPDX-License-Identifier: GPL-2.0+
3 * flexible mmap layout support
5 * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
11 #include <linux/elf-randomize.h>
12 #include <linux/personality.h>
14 #include <linux/mman.h>
15 #include <linux/sched/signal.h>
16 #include <linux/sched/mm.h>
17 #include <linux/random.h>
18 #include <linux/compat.h>
19 #include <linux/security.h>
22 static unsigned long stack_maxrandom_size(void)
24 if (!(current->flags & PF_RANDOMIZE))
26 return STACK_RND_MASK << PAGE_SHIFT;
29 static inline int mmap_is_legacy(struct rlimit *rlim_stack)
31 if (current->personality & ADDR_COMPAT_LAYOUT)
33 if (rlim_stack->rlim_cur == RLIM_INFINITY)
35 return sysctl_legacy_va_layout;
38 unsigned long arch_mmap_rnd(void)
40 return (get_random_u32() & MMAP_RND_MASK) << PAGE_SHIFT;
43 static unsigned long mmap_base_legacy(unsigned long rnd)
45 return TASK_UNMAPPED_BASE + rnd;
48 static inline unsigned long mmap_base(unsigned long rnd,
49 struct rlimit *rlim_stack)
51 unsigned long gap = rlim_stack->rlim_cur;
52 unsigned long pad = stack_maxrandom_size() + stack_guard_gap;
53 unsigned long gap_min, gap_max;
55 /* Values close to RLIM_INFINITY can overflow. */
60 * Top of mmap area (just below the process stack).
61 * Leave at least a ~128 MB hole.
64 gap_max = (STACK_TOP / 6) * 5;
68 else if (gap > gap_max)
71 return PAGE_ALIGN(STACK_TOP - gap - rnd);
74 static int get_align_mask(struct file *filp, unsigned long flags)
76 if (!(current->flags & PF_RANDOMIZE))
78 if (filp || (flags & MAP_SHARED))
79 return MMAP_ALIGN_MASK << PAGE_SHIFT;
83 unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr,
84 unsigned long len, unsigned long pgoff,
87 struct mm_struct *mm = current->mm;
88 struct vm_area_struct *vma;
89 struct vm_unmapped_area_info info;
91 if (len > TASK_SIZE - mmap_min_addr)
94 if (flags & MAP_FIXED)
95 goto check_asce_limit;
98 addr = PAGE_ALIGN(addr);
99 vma = find_vma(mm, addr);
100 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
101 (!vma || addr + len <= vm_start_gap(vma)))
102 goto check_asce_limit;
107 info.low_limit = mm->mmap_base;
108 info.high_limit = TASK_SIZE;
109 info.align_mask = get_align_mask(filp, flags);
110 info.align_offset = pgoff << PAGE_SHIFT;
111 addr = vm_unmapped_area(&info);
112 if (offset_in_page(addr))
116 return check_asce_limit(mm, addr, len);
119 unsigned long arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
120 unsigned long len, unsigned long pgoff,
123 struct vm_area_struct *vma;
124 struct mm_struct *mm = current->mm;
125 struct vm_unmapped_area_info info;
127 /* requested length too big for entire address space */
128 if (len > TASK_SIZE - mmap_min_addr)
131 if (flags & MAP_FIXED)
132 goto check_asce_limit;
134 /* requesting a specific address */
136 addr = PAGE_ALIGN(addr);
137 vma = find_vma(mm, addr);
138 if (TASK_SIZE - len >= addr && addr >= mmap_min_addr &&
139 (!vma || addr + len <= vm_start_gap(vma)))
140 goto check_asce_limit;
143 info.flags = VM_UNMAPPED_AREA_TOPDOWN;
145 info.low_limit = PAGE_SIZE;
146 info.high_limit = mm->mmap_base;
147 info.align_mask = get_align_mask(filp, flags);
148 info.align_offset = pgoff << PAGE_SHIFT;
149 addr = vm_unmapped_area(&info);
152 * A failed mmap() very likely causes application failure,
153 * so fall back to the bottom-up function here. This scenario
154 * can happen with large stack limits and large mmap()
157 if (offset_in_page(addr)) {
158 VM_BUG_ON(addr != -ENOMEM);
160 info.low_limit = TASK_UNMAPPED_BASE;
161 info.high_limit = TASK_SIZE;
162 addr = vm_unmapped_area(&info);
163 if (offset_in_page(addr))
168 return check_asce_limit(mm, addr, len);
172 * This function, called very early during the creation of a new
173 * process VM image, sets up which VM layout function to use:
175 void arch_pick_mmap_layout(struct mm_struct *mm, struct rlimit *rlim_stack)
177 unsigned long random_factor = 0UL;
179 if (current->flags & PF_RANDOMIZE)
180 random_factor = arch_mmap_rnd();
183 * Fall back to the standard layout if the personality
184 * bit is set, or if the expected stack growth is unlimited:
186 if (mmap_is_legacy(rlim_stack)) {
187 mm->mmap_base = mmap_base_legacy(random_factor);
188 mm->get_unmapped_area = arch_get_unmapped_area;
190 mm->mmap_base = mmap_base(random_factor, rlim_stack);
191 mm->get_unmapped_area = arch_get_unmapped_area_topdown;
195 static const pgprot_t protection_map[16] = {
196 [VM_NONE] = PAGE_NONE,
198 [VM_WRITE] = PAGE_RO,
199 [VM_WRITE | VM_READ] = PAGE_RO,
201 [VM_EXEC | VM_READ] = PAGE_RX,
202 [VM_EXEC | VM_WRITE] = PAGE_RX,
203 [VM_EXEC | VM_WRITE | VM_READ] = PAGE_RX,
204 [VM_SHARED] = PAGE_NONE,
205 [VM_SHARED | VM_READ] = PAGE_RO,
206 [VM_SHARED | VM_WRITE] = PAGE_RW,
207 [VM_SHARED | VM_WRITE | VM_READ] = PAGE_RW,
208 [VM_SHARED | VM_EXEC] = PAGE_RX,
209 [VM_SHARED | VM_EXEC | VM_READ] = PAGE_RX,
210 [VM_SHARED | VM_EXEC | VM_WRITE] = PAGE_RWX,
211 [VM_SHARED | VM_EXEC | VM_WRITE | VM_READ] = PAGE_RWX
213 DECLARE_VM_GET_PAGE_PROT