blob: 26667971c824b08ca3dae7188a965e1e4efe0b79 [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
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070055 ptent = ptep_modify_prot_start(mm, addr, pte);
Mel Gorman4b10e7d2012-10-25 14:16:32 +020056 if (!prot_numa) {
57 ptent = pte_modify(ptent, newprot);
58 updated = true;
59 } else {
60 struct page *page;
61
62 page = vm_normal_page(vma, addr, oldpte);
63 if (page) {
Mel Gorman1bc115d2013-10-07 11:29:05 +010064 if (!pte_numa(oldpte)) {
Mel Gorman4b10e7d2012-10-25 14:16:32 +020065 ptent = pte_mknuma(ptent);
66 updated = true;
67 }
68 }
69 }
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070070
Peter Zijlstrac1e60982006-09-25 23:30:59 -070071 /*
72 * Avoid taking write faults for pages we know to be
73 * dirty.
74 */
Mel Gorman4b10e7d2012-10-25 14:16:32 +020075 if (dirty_accountable && pte_dirty(ptent)) {
Peter Zijlstrac1e60982006-09-25 23:30:59 -070076 ptent = pte_mkwrite(ptent);
Mel Gorman4b10e7d2012-10-25 14:16:32 +020077 updated = true;
78 }
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070079
Mel Gorman4b10e7d2012-10-25 14:16:32 +020080 if (updated)
81 pages++;
Jeremy Fitzhardinge1ea07042008-06-16 04:30:00 -070082 ptep_modify_prot_commit(mm, addr, pte, ptent);
Konstantin Khlebnikovce1744f2012-03-21 16:33:59 -070083 } else if (IS_ENABLED(CONFIG_MIGRATION) && !pte_file(oldpte)) {
Christoph Lameter06972122006-06-23 02:03:35 -070084 swp_entry_t entry = pte_to_swp_entry(oldpte);
85
86 if (is_write_migration_entry(entry)) {
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -070087 pte_t newpte;
Christoph Lameter06972122006-06-23 02:03:35 -070088 /*
89 * A protection check is difficult so
90 * just be safe and disable write
91 */
92 make_migration_entry_read(&entry);
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -070093 newpte = swp_entry_to_pte(entry);
94 if (pte_swp_soft_dirty(oldpte))
95 newpte = pte_swp_mksoft_dirty(newpte);
96 set_pte_at(mm, addr, pte, newpte);
Mel Gormane920e142013-10-07 11:28:48 +010097
98 pages++;
Christoph Lameter06972122006-06-23 02:03:35 -070099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700102 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -0700103 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100104
105 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Andrew Morton7d12efa2012-12-18 14:23:17 -0800108static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
109 pud_t *pud, unsigned long addr, unsigned long end,
110 pgprot_t newprot, int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 pmd_t *pmd;
113 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100114 unsigned long pages = 0;
Mel Gorman72403b42013-11-12 15:08:32 -0800115 unsigned long nr_huge_updates = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 pmd = pmd_offset(pud, addr);
118 do {
Mel Gorman25cbbef2013-10-07 11:29:14 +0100119 unsigned long this_pages;
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 next = pmd_addr_end(addr, end);
Johannes Weinercd7548a2011-01-13 15:47:04 -0800122 if (pmd_trans_huge(*pmd)) {
123 if (next - addr != HPAGE_PMD_SIZE)
Kirill A. Shutemove1803772012-12-12 13:50:59 -0800124 split_huge_page_pmd(vma, addr, pmd);
Mel Gormanf123d742013-10-07 11:28:49 +0100125 else {
126 int nr_ptes = change_huge_pmd(vma, pmd, addr,
127 newprot, prot_numa);
128
129 if (nr_ptes) {
Mel Gorman72403b42013-11-12 15:08:32 -0800130 if (nr_ptes == HPAGE_PMD_NR) {
131 pages += HPAGE_PMD_NR;
132 nr_huge_updates++;
133 }
Mel Gormanf123d742013-10-07 11:28:49 +0100134 continue;
135 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100136 }
Johannes Weinercd7548a2011-01-13 15:47:04 -0800137 /* fall through */
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (pmd_none_or_clear_bad(pmd))
140 continue;
Mel Gorman25cbbef2013-10-07 11:29:14 +0100141 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
Mel Gorman0f19c172013-10-07 11:29:25 +0100142 dirty_accountable, prot_numa);
Mel Gorman25cbbef2013-10-07 11:29:14 +0100143 pages += this_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100145
Mel Gorman72403b42013-11-12 15:08:32 -0800146 if (nr_huge_updates)
147 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100148 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Andrew Morton7d12efa2012-12-18 14:23:17 -0800151static inline unsigned long change_pud_range(struct vm_area_struct *vma,
152 pgd_t *pgd, unsigned long addr, unsigned long end,
153 pgprot_t newprot, int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 pud_t *pud;
156 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100157 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 pud = pud_offset(pgd, addr);
160 do {
161 next = pud_addr_end(addr, end);
162 if (pud_none_or_clear_bad(pud))
163 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100164 pages += change_pmd_range(vma, pud, addr, next, newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200165 dirty_accountable, prot_numa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100167
168 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100171static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700172 unsigned long addr, unsigned long end, pgprot_t newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200173 int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct mm_struct *mm = vma->vm_mm;
176 pgd_t *pgd;
177 unsigned long next;
178 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100179 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 BUG_ON(addr >= end);
182 pgd = pgd_offset(mm, addr);
183 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 do {
185 next = pgd_addr_end(addr, end);
186 if (pgd_none_or_clear_bad(pgd))
187 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100188 pages += change_pud_range(vma, pgd, addr, next, newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200189 dirty_accountable, prot_numa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100191
Ingo Molnar1233d582012-11-19 03:14:24 +0100192 /* Only flush the TLB if we actually modified any entries: */
193 if (pages)
194 flush_tlb_range(vma, start, end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100195
196 return pages;
197}
198
199unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
200 unsigned long end, pgprot_t newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200201 int dirty_accountable, int prot_numa)
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100202{
203 struct mm_struct *mm = vma->vm_mm;
204 unsigned long pages;
205
206 mmu_notifier_invalidate_range_start(mm, start, end);
207 if (is_vm_hugetlb_page(vma))
208 pages = hugetlb_change_protection(vma, start, end, newprot);
209 else
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200210 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100211 mmu_notifier_invalidate_range_end(mm, start, end);
212
213 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700216int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
218 unsigned long start, unsigned long end, unsigned long newflags)
219{
220 struct mm_struct *mm = vma->vm_mm;
221 unsigned long oldflags = vma->vm_flags;
222 long nrpages = (end - start) >> PAGE_SHIFT;
223 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 pgoff_t pgoff;
225 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700226 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 if (newflags == oldflags) {
229 *pprev = vma;
230 return 0;
231 }
232
233 /*
234 * If we make a private mapping writable we increase our commit;
235 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000236 * make it unwritable again. hugetlb mapping were accounted for
237 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
239 if (newflags & VM_WRITE) {
Mel Gorman5a6fe122009-02-10 14:02:27 +0000240 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700241 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000243 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -ENOMEM;
245 newflags |= VM_ACCOUNT;
246 }
247 }
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /*
250 * First try to merge with previous and/or next vma.
251 */
252 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
253 *pprev = vma_merge(mm, *pprev, start, end, newflags,
254 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
255 if (*pprev) {
256 vma = *pprev;
257 goto success;
258 }
259
260 *pprev = vma;
261
262 if (start != vma->vm_start) {
263 error = split_vma(mm, vma, start, 1);
264 if (error)
265 goto fail;
266 }
267
268 if (end != vma->vm_end) {
269 error = split_vma(mm, vma, end, 0);
270 if (error)
271 goto fail;
272 }
273
274success:
275 /*
276 * vm_flags and vm_page_prot are protected by the mmap_sem
277 * held in write mode.
278 */
279 vma->vm_flags = newflags;
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700280 vma->vm_page_prot = pgprot_modify(vma->vm_page_prot,
281 vm_get_page_prot(newflags));
282
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700283 if (vma_wants_writenotify(vma)) {
Hugh Dickins1ddd4392007-10-22 20:45:12 -0700284 vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700285 dirty_accountable = 1;
286 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700287
Andrew Morton7d12efa2012-12-18 14:23:17 -0800288 change_protection(vma, start, end, vma->vm_page_prot,
289 dirty_accountable, 0);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100290
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700291 vm_stat_account(mm, oldflags, vma->vm_file, -nrpages);
292 vm_stat_account(mm, newflags, vma->vm_file, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200293 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 0;
295
296fail:
297 vm_unacct_memory(charged);
298 return error;
299}
300
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100301SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
302 unsigned long, prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 unsigned long vm_flags, nstart, end, tmp, reqprot;
305 struct vm_area_struct *vma, *prev;
306 int error = -EINVAL;
307 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
308 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
309 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
310 return -EINVAL;
311
312 if (start & ~PAGE_MASK)
313 return -EINVAL;
314 if (!len)
315 return 0;
316 len = PAGE_ALIGN(len);
317 end = start + len;
318 if (end <= start)
319 return -ENOMEM;
Dave Kleikampb845f312008-07-08 00:28:51 +1000320 if (!arch_validate_prot(prot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -EINVAL;
322
323 reqprot = prot;
324 /*
325 * Does the application expect PROT_READ to imply PROT_EXEC:
326 */
Hua Zhongb344e052006-06-23 02:03:23 -0700327 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 prot |= PROT_EXEC;
329
330 vm_flags = calc_vm_prot_bits(prot);
331
332 down_write(&current->mm->mmap_sem);
333
Linus Torvalds097d5912012-03-06 18:23:36 -0800334 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 error = -ENOMEM;
336 if (!vma)
337 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800338 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (unlikely(grows & PROT_GROWSDOWN)) {
340 if (vma->vm_start >= end)
341 goto out;
342 start = vma->vm_start;
343 error = -EINVAL;
344 if (!(vma->vm_flags & VM_GROWSDOWN))
345 goto out;
Andrew Morton7d12efa2012-12-18 14:23:17 -0800346 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (vma->vm_start > start)
348 goto out;
349 if (unlikely(grows & PROT_GROWSUP)) {
350 end = vma->vm_end;
351 error = -EINVAL;
352 if (!(vma->vm_flags & VM_GROWSUP))
353 goto out;
354 }
355 }
356 if (start > vma->vm_start)
357 prev = vma;
358
359 for (nstart = start ; ; ) {
360 unsigned long newflags;
361
Andrew Morton7d12efa2012-12-18 14:23:17 -0800362 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Andrew Morton7d12efa2012-12-18 14:23:17 -0800364 newflags = vm_flags;
365 newflags |= (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700367 /* newflags >> 4 shift VM_MAY% in place of VM_% */
368 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 error = -EACCES;
370 goto out;
371 }
372
373 error = security_file_mprotect(vma, reqprot, prot);
374 if (error)
375 goto out;
376
377 tmp = vma->vm_end;
378 if (tmp > end)
379 tmp = end;
380 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
381 if (error)
382 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 nstart = tmp;
384
385 if (nstart < prev->vm_end)
386 nstart = prev->vm_end;
387 if (nstart >= end)
388 goto out;
389
390 vma = prev->vm_next;
391 if (!vma || vma->vm_start != nstart) {
392 error = -ENOMEM;
393 goto out;
394 }
395 }
396out:
397 up_write(&current->mm->mmap_sem);
398 return error;
399}