blob: 1e265be25f85bee19d10ca8764473005cf143eb7 [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
Peter Zijlstra7da4d642012-11-19 03:14:23 +010038static unsigned long 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;
Peter Zijlstra7da4d642012-11-19 03:14:23 +010044 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Hugh Dickins705e87c2005-10-29 18:16:27 -070046 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070047 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 do {
Christoph Lameter06972122006-06-23 02:03:35 -070049 oldpte = *pte;
50 if (pte_present(oldpte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 pte_t ptent;
52
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070053 ptent = ptep_modify_prot_start(mm, addr, pte);
Peter Zijlstrac1e60982006-09-25 23:30:59 -070054 ptent = pte_modify(ptent, newprot);
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070055
Peter Zijlstrac1e60982006-09-25 23:30:59 -070056 /*
57 * Avoid taking write faults for pages we know to be
58 * dirty.
59 */
60 if (dirty_accountable && pte_dirty(ptent))
61 ptent = pte_mkwrite(ptent);
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070062
63 ptep_modify_prot_commit(mm, addr, pte, ptent);
Peter Zijlstra7da4d642012-11-19 03:14:23 +010064 pages++;
Konstantin Khlebnikovce1744f2012-03-21 16:33:59 -070065 } else if (IS_ENABLED(CONFIG_MIGRATION) && !pte_file(oldpte)) {
Christoph Lameter06972122006-06-23 02:03:35 -070066 swp_entry_t entry = pte_to_swp_entry(oldpte);
67
68 if (is_write_migration_entry(entry)) {
69 /*
70 * A protection check is difficult so
71 * just be safe and disable write
72 */
73 make_migration_entry_read(&entry);
74 set_pte_at(mm, addr, pte,
75 swp_entry_to_pte(entry));
76 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +010077 pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070080 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -070081 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +010082
83 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Peter Zijlstra7da4d642012-11-19 03:14:23 +010086static inline unsigned long change_pmd_range(struct vm_area_struct *vma, pud_t *pud,
Peter Zijlstrac1e60982006-09-25 23:30:59 -070087 unsigned long addr, unsigned long end, pgprot_t newprot,
88 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 pmd_t *pmd;
91 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +010092 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 pmd = pmd_offset(pud, addr);
95 do {
96 next = pmd_addr_end(addr, end);
Johannes Weinercd7548a2011-01-13 15:47:04 -080097 if (pmd_trans_huge(*pmd)) {
98 if (next - addr != HPAGE_PMD_SIZE)
99 split_huge_page_pmd(vma->vm_mm, pmd);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100100 else if (change_huge_pmd(vma, pmd, addr, newprot)) {
101 pages += HPAGE_PMD_NR;
Johannes Weinercd7548a2011-01-13 15:47:04 -0800102 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100103 }
Johannes Weinercd7548a2011-01-13 15:47:04 -0800104 /* fall through */
105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (pmd_none_or_clear_bad(pmd))
107 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100108 pages += change_pte_range(vma->vm_mm, pmd, addr, next, newprot,
Johannes Weinerb36f5b02011-01-13 15:47:03 -0800109 dirty_accountable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100111
112 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100115static inline unsigned long change_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700116 unsigned long addr, unsigned long end, pgprot_t newprot,
117 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 pud_t *pud;
120 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100121 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 pud = pud_offset(pgd, addr);
124 do {
125 next = pud_addr_end(addr, end);
126 if (pud_none_or_clear_bad(pud))
127 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100128 pages += change_pmd_range(vma, pud, addr, next, newprot,
Johannes Weinerb36f5b02011-01-13 15:47:03 -0800129 dirty_accountable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100131
132 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100135static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700136 unsigned long addr, unsigned long end, pgprot_t newprot,
137 int dirty_accountable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 struct mm_struct *mm = vma->vm_mm;
140 pgd_t *pgd;
141 unsigned long next;
142 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100143 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 BUG_ON(addr >= end);
146 pgd = pgd_offset(mm, addr);
147 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 do {
149 next = pgd_addr_end(addr, end);
150 if (pgd_none_or_clear_bad(pgd))
151 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100152 pages += change_pud_range(vma, pgd, addr, next, newprot,
Johannes Weinerb36f5b02011-01-13 15:47:03 -0800153 dirty_accountable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 flush_tlb_range(vma, start, end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100157
158 return pages;
159}
160
161unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
162 unsigned long end, pgprot_t newprot,
163 int dirty_accountable)
164{
165 struct mm_struct *mm = vma->vm_mm;
166 unsigned long pages;
167
168 mmu_notifier_invalidate_range_start(mm, start, end);
169 if (is_vm_hugetlb_page(vma))
170 pages = hugetlb_change_protection(vma, start, end, newprot);
171 else
172 pages = change_protection_range(vma, start, end, newprot, dirty_accountable);
173 mmu_notifier_invalidate_range_end(mm, start, end);
174
175 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700178int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
180 unsigned long start, unsigned long end, unsigned long newflags)
181{
182 struct mm_struct *mm = vma->vm_mm;
183 unsigned long oldflags = vma->vm_flags;
184 long nrpages = (end - start) >> PAGE_SHIFT;
185 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 pgoff_t pgoff;
187 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700188 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 if (newflags == oldflags) {
191 *pprev = vma;
192 return 0;
193 }
194
195 /*
196 * If we make a private mapping writable we increase our commit;
197 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000198 * make it unwritable again. hugetlb mapping were accounted for
199 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
201 if (newflags & VM_WRITE) {
Mel Gorman5a6fe122009-02-10 14:02:27 +0000202 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700203 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000205 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -ENOMEM;
207 newflags |= VM_ACCOUNT;
208 }
209 }
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /*
212 * First try to merge with previous and/or next vma.
213 */
214 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
215 *pprev = vma_merge(mm, *pprev, start, end, newflags,
216 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
217 if (*pprev) {
218 vma = *pprev;
219 goto success;
220 }
221
222 *pprev = vma;
223
224 if (start != vma->vm_start) {
225 error = split_vma(mm, vma, start, 1);
226 if (error)
227 goto fail;
228 }
229
230 if (end != vma->vm_end) {
231 error = split_vma(mm, vma, end, 0);
232 if (error)
233 goto fail;
234 }
235
236success:
237 /*
238 * vm_flags and vm_page_prot are protected by the mmap_sem
239 * held in write mode.
240 */
241 vma->vm_flags = newflags;
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700242 vma->vm_page_prot = pgprot_modify(vma->vm_page_prot,
243 vm_get_page_prot(newflags));
244
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700245 if (vma_wants_writenotify(vma)) {
Hugh Dickins1ddd4392007-10-22 20:45:12 -0700246 vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700247 dirty_accountable = 1;
248 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700249
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100250 change_protection(vma, start, end, vma->vm_page_prot, dirty_accountable);
251
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700252 vm_stat_account(mm, oldflags, vma->vm_file, -nrpages);
253 vm_stat_account(mm, newflags, vma->vm_file, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200254 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return 0;
256
257fail:
258 vm_unacct_memory(charged);
259 return error;
260}
261
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100262SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
263 unsigned long, prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 unsigned long vm_flags, nstart, end, tmp, reqprot;
266 struct vm_area_struct *vma, *prev;
267 int error = -EINVAL;
268 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
269 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
270 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
271 return -EINVAL;
272
273 if (start & ~PAGE_MASK)
274 return -EINVAL;
275 if (!len)
276 return 0;
277 len = PAGE_ALIGN(len);
278 end = start + len;
279 if (end <= start)
280 return -ENOMEM;
Dave Kleikampb845f312008-07-08 00:28:51 +1000281 if (!arch_validate_prot(prot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return -EINVAL;
283
284 reqprot = prot;
285 /*
286 * Does the application expect PROT_READ to imply PROT_EXEC:
287 */
Hua Zhongb344e052006-06-23 02:03:23 -0700288 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 prot |= PROT_EXEC;
290
291 vm_flags = calc_vm_prot_bits(prot);
292
293 down_write(&current->mm->mmap_sem);
294
Linus Torvalds097d5912012-03-06 18:23:36 -0800295 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 error = -ENOMEM;
297 if (!vma)
298 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800299 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (unlikely(grows & PROT_GROWSDOWN)) {
301 if (vma->vm_start >= end)
302 goto out;
303 start = vma->vm_start;
304 error = -EINVAL;
305 if (!(vma->vm_flags & VM_GROWSDOWN))
306 goto out;
307 }
308 else {
309 if (vma->vm_start > start)
310 goto out;
311 if (unlikely(grows & PROT_GROWSUP)) {
312 end = vma->vm_end;
313 error = -EINVAL;
314 if (!(vma->vm_flags & VM_GROWSUP))
315 goto out;
316 }
317 }
318 if (start > vma->vm_start)
319 prev = vma;
320
321 for (nstart = start ; ; ) {
322 unsigned long newflags;
323
324 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 newflags = vm_flags | (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC));
327
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700328 /* newflags >> 4 shift VM_MAY% in place of VM_% */
329 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 error = -EACCES;
331 goto out;
332 }
333
334 error = security_file_mprotect(vma, reqprot, prot);
335 if (error)
336 goto out;
337
338 tmp = vma->vm_end;
339 if (tmp > end)
340 tmp = end;
341 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
342 if (error)
343 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 nstart = tmp;
345
346 if (nstart < prev->vm_end)
347 nstart = prev->vm_end;
348 if (nstart >= end)
349 goto out;
350
351 vma = prev->vm_next;
352 if (!vma || vma->vm_start != nstart) {
353 error = -ENOMEM;
354 goto out;
355 }
356 }
357out:
358 up_write(&current->mm->mmap_sem);
359 return error;
360}