blob: 1291a053b167d7c8a2d7b321cd5b1ee84967f04b [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
Mel Gorman4b10e7d2012-10-25 14:16:32 +020038static unsigned long change_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
Peter Zijlstrac1e60982006-09-25 23:30:59 -070039 unsigned long addr, unsigned long end, pgprot_t newprot,
Mel Gorman0f19c172013-10-07 11:29:25 +010040 int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Mel Gorman4b10e7d2012-10-25 14:16:32 +020042 struct mm_struct *mm = vma->vm_mm;
Christoph Lameter06972122006-06-23 02:03:35 -070043 pte_t *pte, oldpte;
Hugh Dickins705e87c2005-10-29 18:16:27 -070044 spinlock_t *ptl;
Peter Zijlstra7da4d642012-11-19 03:14:23 +010045 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Hugh Dickins705e87c2005-10-29 18:16:27 -070047 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070048 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 do {
Christoph Lameter06972122006-06-23 02:03:35 -070050 oldpte = *pte;
51 if (pte_present(oldpte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 pte_t ptent;
Mel Gorman4b10e7d2012-10-25 14:16:32 +020053 bool updated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Mel Gorman4b10e7d2012-10-25 14:16:32 +020055 if (!prot_numa) {
Mel Gorman0c5f83c2013-12-18 17:08:37 -080056 ptent = ptep_modify_prot_start(mm, addr, pte);
Mel Gorman4b10e7d2012-10-25 14:16:32 +020057 ptent = pte_modify(ptent, newprot);
58 updated = true;
59 } else {
60 struct page *page;
61
Mel Gorman0c5f83c2013-12-18 17:08:37 -080062 ptent = *pte;
Mel Gorman4b10e7d2012-10-25 14:16:32 +020063 page = vm_normal_page(vma, addr, oldpte);
64 if (page) {
Mel Gorman1bc115d2013-10-07 11:29:05 +010065 if (!pte_numa(oldpte)) {
Mel Gorman4b10e7d2012-10-25 14:16:32 +020066 ptent = pte_mknuma(ptent);
Mel Gorman0c5f83c2013-12-18 17:08:37 -080067 set_pte_at(mm, addr, pte, ptent);
Mel Gorman4b10e7d2012-10-25 14:16:32 +020068 updated = true;
69 }
70 }
71 }
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070072
Peter Zijlstrac1e60982006-09-25 23:30:59 -070073 /*
74 * Avoid taking write faults for pages we know to be
75 * dirty.
76 */
Mel Gorman4b10e7d2012-10-25 14:16:32 +020077 if (dirty_accountable && pte_dirty(ptent)) {
Peter Zijlstrac1e60982006-09-25 23:30:59 -070078 ptent = pte_mkwrite(ptent);
Mel Gorman4b10e7d2012-10-25 14:16:32 +020079 updated = true;
80 }
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070081
Mel Gorman4b10e7d2012-10-25 14:16:32 +020082 if (updated)
83 pages++;
Mel Gorman0c5f83c2013-12-18 17:08:37 -080084
85 /* Only !prot_numa always clears the pte */
86 if (!prot_numa)
87 ptep_modify_prot_commit(mm, addr, pte, ptent);
Konstantin Khlebnikovce1744f2012-03-21 16:33:59 -070088 } else if (IS_ENABLED(CONFIG_MIGRATION) && !pte_file(oldpte)) {
Christoph Lameter06972122006-06-23 02:03:35 -070089 swp_entry_t entry = pte_to_swp_entry(oldpte);
90
91 if (is_write_migration_entry(entry)) {
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -070092 pte_t newpte;
Christoph Lameter06972122006-06-23 02:03:35 -070093 /*
94 * A protection check is difficult so
95 * just be safe and disable write
96 */
97 make_migration_entry_read(&entry);
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -070098 newpte = swp_entry_to_pte(entry);
99 if (pte_swp_soft_dirty(oldpte))
100 newpte = pte_swp_mksoft_dirty(newpte);
101 set_pte_at(mm, addr, pte, newpte);
Mel Gormane920e142013-10-07 11:28:48 +0100102
103 pages++;
Christoph Lameter06972122006-06-23 02:03:35 -0700104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700107 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -0700108 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100109
110 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Andrew Morton7d12efa2012-12-18 14:23:17 -0800113static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
114 pud_t *pud, unsigned long addr, unsigned long end,
115 pgprot_t newprot, int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 pmd_t *pmd;
118 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100119 unsigned long pages = 0;
Mel Gorman72403b42013-11-12 15:08:32 -0800120 unsigned long nr_huge_updates = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 pmd = pmd_offset(pud, addr);
123 do {
Mel Gorman25cbbef2013-10-07 11:29:14 +0100124 unsigned long this_pages;
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 next = pmd_addr_end(addr, end);
Johannes Weinercd7548a2011-01-13 15:47:04 -0800127 if (pmd_trans_huge(*pmd)) {
128 if (next - addr != HPAGE_PMD_SIZE)
Kirill A. Shutemove1803772012-12-12 13:50:59 -0800129 split_huge_page_pmd(vma, addr, pmd);
Mel Gormanf123d742013-10-07 11:28:49 +0100130 else {
131 int nr_ptes = change_huge_pmd(vma, pmd, addr,
132 newprot, prot_numa);
133
134 if (nr_ptes) {
Mel Gorman72403b42013-11-12 15:08:32 -0800135 if (nr_ptes == HPAGE_PMD_NR) {
136 pages += HPAGE_PMD_NR;
137 nr_huge_updates++;
138 }
Mel Gormanf123d742013-10-07 11:28:49 +0100139 continue;
140 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100141 }
Johannes Weinercd7548a2011-01-13 15:47:04 -0800142 /* fall through */
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (pmd_none_or_clear_bad(pmd))
145 continue;
Mel Gorman25cbbef2013-10-07 11:29:14 +0100146 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
Mel Gorman0f19c172013-10-07 11:29:25 +0100147 dirty_accountable, prot_numa);
Mel Gorman25cbbef2013-10-07 11:29:14 +0100148 pages += this_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100150
Mel Gorman72403b42013-11-12 15:08:32 -0800151 if (nr_huge_updates)
152 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100153 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Andrew Morton7d12efa2012-12-18 14:23:17 -0800156static inline unsigned long change_pud_range(struct vm_area_struct *vma,
157 pgd_t *pgd, unsigned long addr, unsigned long end,
158 pgprot_t newprot, int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 pud_t *pud;
161 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100162 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 pud = pud_offset(pgd, addr);
165 do {
166 next = pud_addr_end(addr, end);
167 if (pud_none_or_clear_bad(pud))
168 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100169 pages += change_pmd_range(vma, pud, addr, next, newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200170 dirty_accountable, prot_numa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100172
173 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100176static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700177 unsigned long addr, unsigned long end, pgprot_t newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200178 int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct mm_struct *mm = vma->vm_mm;
181 pgd_t *pgd;
182 unsigned long next;
183 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100184 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 BUG_ON(addr >= end);
187 pgd = pgd_offset(mm, addr);
188 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 do {
190 next = pgd_addr_end(addr, end);
191 if (pgd_none_or_clear_bad(pgd))
192 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100193 pages += change_pud_range(vma, pgd, addr, next, newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200194 dirty_accountable, prot_numa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100196
Ingo Molnar1233d582012-11-19 03:14:24 +0100197 /* Only flush the TLB if we actually modified any entries: */
198 if (pages)
199 flush_tlb_range(vma, start, end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100200
201 return pages;
202}
203
204unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
205 unsigned long end, pgprot_t newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200206 int dirty_accountable, int prot_numa)
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100207{
208 struct mm_struct *mm = vma->vm_mm;
209 unsigned long pages;
210
211 mmu_notifier_invalidate_range_start(mm, start, end);
212 if (is_vm_hugetlb_page(vma))
213 pages = hugetlb_change_protection(vma, start, end, newprot);
214 else
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200215 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100216 mmu_notifier_invalidate_range_end(mm, start, end);
217
218 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700221int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
223 unsigned long start, unsigned long end, unsigned long newflags)
224{
225 struct mm_struct *mm = vma->vm_mm;
226 unsigned long oldflags = vma->vm_flags;
227 long nrpages = (end - start) >> PAGE_SHIFT;
228 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 pgoff_t pgoff;
230 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700231 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 if (newflags == oldflags) {
234 *pprev = vma;
235 return 0;
236 }
237
238 /*
239 * If we make a private mapping writable we increase our commit;
240 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000241 * make it unwritable again. hugetlb mapping were accounted for
242 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
244 if (newflags & VM_WRITE) {
Mel Gorman5a6fe122009-02-10 14:02:27 +0000245 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700246 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000248 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return -ENOMEM;
250 newflags |= VM_ACCOUNT;
251 }
252 }
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /*
255 * First try to merge with previous and/or next vma.
256 */
257 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
258 *pprev = vma_merge(mm, *pprev, start, end, newflags,
259 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
260 if (*pprev) {
261 vma = *pprev;
262 goto success;
263 }
264
265 *pprev = vma;
266
267 if (start != vma->vm_start) {
268 error = split_vma(mm, vma, start, 1);
269 if (error)
270 goto fail;
271 }
272
273 if (end != vma->vm_end) {
274 error = split_vma(mm, vma, end, 0);
275 if (error)
276 goto fail;
277 }
278
279success:
280 /*
281 * vm_flags and vm_page_prot are protected by the mmap_sem
282 * held in write mode.
283 */
284 vma->vm_flags = newflags;
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700285 vma->vm_page_prot = pgprot_modify(vma->vm_page_prot,
286 vm_get_page_prot(newflags));
287
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700288 if (vma_wants_writenotify(vma)) {
Hugh Dickins1ddd4392007-10-22 20:45:12 -0700289 vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700290 dirty_accountable = 1;
291 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700292
Andrew Morton7d12efa2012-12-18 14:23:17 -0800293 change_protection(vma, start, end, vma->vm_page_prot,
294 dirty_accountable, 0);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100295
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700296 vm_stat_account(mm, oldflags, vma->vm_file, -nrpages);
297 vm_stat_account(mm, newflags, vma->vm_file, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200298 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300
301fail:
302 vm_unacct_memory(charged);
303 return error;
304}
305
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100306SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
307 unsigned long, prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 unsigned long vm_flags, nstart, end, tmp, reqprot;
310 struct vm_area_struct *vma, *prev;
311 int error = -EINVAL;
312 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
313 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
314 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
315 return -EINVAL;
316
317 if (start & ~PAGE_MASK)
318 return -EINVAL;
319 if (!len)
320 return 0;
321 len = PAGE_ALIGN(len);
322 end = start + len;
323 if (end <= start)
324 return -ENOMEM;
Dave Kleikampb845f312008-07-08 00:28:51 +1000325 if (!arch_validate_prot(prot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -EINVAL;
327
328 reqprot = prot;
329 /*
330 * Does the application expect PROT_READ to imply PROT_EXEC:
331 */
Hua Zhongb344e052006-06-23 02:03:23 -0700332 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 prot |= PROT_EXEC;
334
335 vm_flags = calc_vm_prot_bits(prot);
336
337 down_write(&current->mm->mmap_sem);
338
Linus Torvalds097d5912012-03-06 18:23:36 -0800339 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 error = -ENOMEM;
341 if (!vma)
342 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800343 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (unlikely(grows & PROT_GROWSDOWN)) {
345 if (vma->vm_start >= end)
346 goto out;
347 start = vma->vm_start;
348 error = -EINVAL;
349 if (!(vma->vm_flags & VM_GROWSDOWN))
350 goto out;
Andrew Morton7d12efa2012-12-18 14:23:17 -0800351 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (vma->vm_start > start)
353 goto out;
354 if (unlikely(grows & PROT_GROWSUP)) {
355 end = vma->vm_end;
356 error = -EINVAL;
357 if (!(vma->vm_flags & VM_GROWSUP))
358 goto out;
359 }
360 }
361 if (start > vma->vm_start)
362 prev = vma;
363
364 for (nstart = start ; ; ) {
365 unsigned long newflags;
366
Andrew Morton7d12efa2012-12-18 14:23:17 -0800367 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Andrew Morton7d12efa2012-12-18 14:23:17 -0800369 newflags = vm_flags;
370 newflags |= (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700372 /* newflags >> 4 shift VM_MAY% in place of VM_% */
373 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 error = -EACCES;
375 goto out;
376 }
377
378 error = security_file_mprotect(vma, reqprot, prot);
379 if (error)
380 goto out;
381
382 tmp = vma->vm_end;
383 if (tmp > end)
384 tmp = end;
385 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
386 if (error)
387 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 nstart = tmp;
389
390 if (nstart < prev->vm_end)
391 nstart = prev->vm_end;
392 if (nstart >= end)
393 goto out;
394
395 vma = prev->vm_next;
396 if (!vma || vma->vm_start != nstart) {
397 error = -ENOMEM;
398 goto out;
399 }
400 }
401out:
402 up_write(&current->mm->mmap_sem);
403 return error;
404}