blob: bd27db6b992b80c4c39d84b83d910996357727fd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/mprotect.c
3 *
4 * (C) Copyright 1994 Linus Torvalds
5 * (C) Copyright 2002 Christoph Hellwig
6 *
Alan Cox046c6882009-01-05 14:06:29 +00007 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * (C) Copyright 2002 Red Hat Inc, All Rights Reserved
9 */
10
11#include <linux/mm.h>
12#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/shm.h>
14#include <linux/mman.h>
15#include <linux/fs.h>
16#include <linux/highmem.h>
17#include <linux/security.h>
18#include <linux/mempolicy.h>
19#include <linux/personality.h>
20#include <linux/syscalls.h>
Christoph Lameter06972122006-06-23 02:03:35 -070021#include <linux/swap.h>
22#include <linux/swapops.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070023#include <linux/mmu_notifier.h>
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080024#include <linux/migrate.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020025#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/uaccess.h>
27#include <asm/pgtable.h>
28#include <asm/cacheflush.h>
29#include <asm/tlbflush.h>
30
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -070031#ifndef pgprot_modify
32static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
33{
34 return newprot;
35}
36#endif
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static void change_pte_range(struct mm_struct *mm, pmd_t *pmd,
Peter Zijlstrac1e60982006-09-25 23:30:59 -070039 unsigned long addr, unsigned long end, pgprot_t newprot,
40 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Christoph Lameter06972122006-06-23 02:03:35 -070042 pte_t *pte, oldpte;
Hugh Dickins705e87c2005-10-29 18:16:27 -070043 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Hugh Dickins705e87c2005-10-29 18:16:27 -070045 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070046 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 do {
Christoph Lameter06972122006-06-23 02:03:35 -070048 oldpte = *pte;
49 if (pte_present(oldpte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 pte_t ptent;
51
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070052 ptent = ptep_modify_prot_start(mm, addr, pte);
Peter Zijlstrac1e60982006-09-25 23:30:59 -070053 ptent = pte_modify(ptent, newprot);
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070054
Peter Zijlstrac1e60982006-09-25 23:30:59 -070055 /*
56 * Avoid taking write faults for pages we know to be
57 * dirty.
58 */
59 if (dirty_accountable && pte_dirty(ptent))
60 ptent = pte_mkwrite(ptent);
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070061
62 ptep_modify_prot_commit(mm, addr, pte, ptent);
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080063 } else if (PAGE_MIGRATION && !pte_file(oldpte)) {
Christoph Lameter06972122006-06-23 02:03:35 -070064 swp_entry_t entry = pte_to_swp_entry(oldpte);
65
66 if (is_write_migration_entry(entry)) {
67 /*
68 * A protection check is difficult so
69 * just be safe and disable write
70 */
71 make_migration_entry_read(&entry);
72 set_pte_at(mm, addr, pte,
73 swp_entry_to_pte(entry));
74 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070077 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -070078 pte_unmap_unlock(pte - 1, ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81static inline void change_pmd_range(struct mm_struct *mm, pud_t *pud,
Peter Zijlstrac1e60982006-09-25 23:30:59 -070082 unsigned long addr, unsigned long end, pgprot_t newprot,
83 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 pmd_t *pmd;
86 unsigned long next;
87
88 pmd = pmd_offset(pud, addr);
89 do {
90 next = pmd_addr_end(addr, end);
Andrea Arcangelibae9c192011-01-13 15:46:46 -080091 split_huge_page_pmd(mm, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (pmd_none_or_clear_bad(pmd))
93 continue;
Peter Zijlstrac1e60982006-09-25 23:30:59 -070094 change_pte_range(mm, pmd, addr, next, newprot, dirty_accountable);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 } while (pmd++, addr = next, addr != end);
96}
97
98static inline void change_pud_range(struct mm_struct *mm, pgd_t *pgd,
Peter Zijlstrac1e60982006-09-25 23:30:59 -070099 unsigned long addr, unsigned long end, pgprot_t newprot,
100 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 pud_t *pud;
103 unsigned long next;
104
105 pud = pud_offset(pgd, addr);
106 do {
107 next = pud_addr_end(addr, end);
108 if (pud_none_or_clear_bad(pud))
109 continue;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700110 change_pmd_range(mm, pud, addr, next, newprot, dirty_accountable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 } while (pud++, addr = next, addr != end);
112}
113
114static void change_protection(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700115 unsigned long addr, unsigned long end, pgprot_t newprot,
116 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct mm_struct *mm = vma->vm_mm;
119 pgd_t *pgd;
120 unsigned long next;
121 unsigned long start = addr;
122
123 BUG_ON(addr >= end);
124 pgd = pgd_offset(mm, addr);
125 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 do {
127 next = pgd_addr_end(addr, end);
128 if (pgd_none_or_clear_bad(pgd))
129 continue;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700130 change_pud_range(mm, pgd, addr, next, newprot, dirty_accountable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 } while (pgd++, addr = next, addr != end);
132 flush_tlb_range(vma, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700135int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
137 unsigned long start, unsigned long end, unsigned long newflags)
138{
139 struct mm_struct *mm = vma->vm_mm;
140 unsigned long oldflags = vma->vm_flags;
141 long nrpages = (end - start) >> PAGE_SHIFT;
142 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 pgoff_t pgoff;
144 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700145 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 if (newflags == oldflags) {
148 *pprev = vma;
149 return 0;
150 }
151
152 /*
153 * If we make a private mapping writable we increase our commit;
154 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000155 * make it unwritable again. hugetlb mapping were accounted for
156 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
158 if (newflags & VM_WRITE) {
Mel Gorman5a6fe122009-02-10 14:02:27 +0000159 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700160 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 charged = nrpages;
162 if (security_vm_enough_memory(charged))
163 return -ENOMEM;
164 newflags |= VM_ACCOUNT;
165 }
166 }
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 /*
169 * First try to merge with previous and/or next vma.
170 */
171 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
172 *pprev = vma_merge(mm, *pprev, start, end, newflags,
173 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
174 if (*pprev) {
175 vma = *pprev;
176 goto success;
177 }
178
179 *pprev = vma;
180
181 if (start != vma->vm_start) {
182 error = split_vma(mm, vma, start, 1);
183 if (error)
184 goto fail;
185 }
186
187 if (end != vma->vm_end) {
188 error = split_vma(mm, vma, end, 0);
189 if (error)
190 goto fail;
191 }
192
193success:
194 /*
195 * vm_flags and vm_page_prot are protected by the mmap_sem
196 * held in write mode.
197 */
198 vma->vm_flags = newflags;
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700199 vma->vm_page_prot = pgprot_modify(vma->vm_page_prot,
200 vm_get_page_prot(newflags));
201
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700202 if (vma_wants_writenotify(vma)) {
Hugh Dickins1ddd4392007-10-22 20:45:12 -0700203 vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700204 dirty_accountable = 1;
205 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700206
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700207 mmu_notifier_invalidate_range_start(mm, start, end);
Zhang, Yanmin8f860592006-03-22 00:08:50 -0800208 if (is_vm_hugetlb_page(vma))
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700209 hugetlb_change_protection(vma, start, end, vma->vm_page_prot);
Zhang, Yanmin8f860592006-03-22 00:08:50 -0800210 else
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700211 change_protection(vma, start, end, vma->vm_page_prot, dirty_accountable);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700212 mmu_notifier_invalidate_range_end(mm, start, end);
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700213 vm_stat_account(mm, oldflags, vma->vm_file, -nrpages);
214 vm_stat_account(mm, newflags, vma->vm_file, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200215 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
217
218fail:
219 vm_unacct_memory(charged);
220 return error;
221}
222
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100223SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
224 unsigned long, prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 unsigned long vm_flags, nstart, end, tmp, reqprot;
227 struct vm_area_struct *vma, *prev;
228 int error = -EINVAL;
229 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
230 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
231 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
232 return -EINVAL;
233
234 if (start & ~PAGE_MASK)
235 return -EINVAL;
236 if (!len)
237 return 0;
238 len = PAGE_ALIGN(len);
239 end = start + len;
240 if (end <= start)
241 return -ENOMEM;
Dave Kleikampb845f312008-07-08 00:28:51 +1000242 if (!arch_validate_prot(prot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return -EINVAL;
244
245 reqprot = prot;
246 /*
247 * Does the application expect PROT_READ to imply PROT_EXEC:
248 */
Hua Zhongb344e052006-06-23 02:03:23 -0700249 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 prot |= PROT_EXEC;
251
252 vm_flags = calc_vm_prot_bits(prot);
253
254 down_write(&current->mm->mmap_sem);
255
256 vma = find_vma_prev(current->mm, start, &prev);
257 error = -ENOMEM;
258 if (!vma)
259 goto out;
260 if (unlikely(grows & PROT_GROWSDOWN)) {
261 if (vma->vm_start >= end)
262 goto out;
263 start = vma->vm_start;
264 error = -EINVAL;
265 if (!(vma->vm_flags & VM_GROWSDOWN))
266 goto out;
267 }
268 else {
269 if (vma->vm_start > start)
270 goto out;
271 if (unlikely(grows & PROT_GROWSUP)) {
272 end = vma->vm_end;
273 error = -EINVAL;
274 if (!(vma->vm_flags & VM_GROWSUP))
275 goto out;
276 }
277 }
278 if (start > vma->vm_start)
279 prev = vma;
280
281 for (nstart = start ; ; ) {
282 unsigned long newflags;
283
284 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 newflags = vm_flags | (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC));
287
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700288 /* newflags >> 4 shift VM_MAY% in place of VM_% */
289 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 error = -EACCES;
291 goto out;
292 }
293
294 error = security_file_mprotect(vma, reqprot, prot);
295 if (error)
296 goto out;
297
298 tmp = vma->vm_end;
299 if (tmp > end)
300 tmp = end;
301 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
302 if (error)
303 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 nstart = tmp;
305
306 if (nstart < prev->vm_end)
307 nstart = prev->vm_end;
308 if (nstart >= end)
309 goto out;
310
311 vma = prev->vm_next;
312 if (!vma || vma->vm_start != nstart) {
313 error = -ENOMEM;
314 goto out;
315 }
316 }
317out:
318 up_write(&current->mm->mmap_sem);
319 return error;
320}