blob: a0302ac0be985393256a99070becec949f92ae46 [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)) {
87 /*
88 * A protection check is difficult so
89 * just be safe and disable write
90 */
91 make_migration_entry_read(&entry);
92 set_pte_at(mm, addr, pte,
93 swp_entry_to_pte(entry));
Mel Gormane920e142013-10-07 11:28:48 +010094
95 pages++;
Christoph Lameter06972122006-06-23 02:03:35 -070096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070099 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -0700100 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100101
102 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Andrew Morton7d12efa2012-12-18 14:23:17 -0800105static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
106 pud_t *pud, unsigned long addr, unsigned long end,
107 pgprot_t newprot, int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 pmd_t *pmd;
110 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100111 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 pmd = pmd_offset(pud, addr);
114 do {
Mel Gorman25cbbef2013-10-07 11:29:14 +0100115 unsigned long this_pages;
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 next = pmd_addr_end(addr, end);
Johannes Weinercd7548a2011-01-13 15:47:04 -0800118 if (pmd_trans_huge(*pmd)) {
119 if (next - addr != HPAGE_PMD_SIZE)
Kirill A. Shutemove1803772012-12-12 13:50:59 -0800120 split_huge_page_pmd(vma, addr, pmd);
Mel Gormanf123d742013-10-07 11:28:49 +0100121 else {
122 int nr_ptes = change_huge_pmd(vma, pmd, addr,
123 newprot, prot_numa);
124
125 if (nr_ptes) {
126 if (nr_ptes == HPAGE_PMD_NR)
127 pages++;
128
129 continue;
130 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100131 }
Johannes Weinercd7548a2011-01-13 15:47:04 -0800132 /* fall through */
133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (pmd_none_or_clear_bad(pmd))
135 continue;
Mel Gorman25cbbef2013-10-07 11:29:14 +0100136 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
Mel Gorman0f19c172013-10-07 11:29:25 +0100137 dirty_accountable, prot_numa);
Mel Gorman25cbbef2013-10-07 11:29:14 +0100138 pages += this_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100140
141 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Andrew Morton7d12efa2012-12-18 14:23:17 -0800144static inline unsigned long change_pud_range(struct vm_area_struct *vma,
145 pgd_t *pgd, unsigned long addr, unsigned long end,
146 pgprot_t newprot, int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 pud_t *pud;
149 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100150 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 pud = pud_offset(pgd, addr);
153 do {
154 next = pud_addr_end(addr, end);
155 if (pud_none_or_clear_bad(pud))
156 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100157 pages += change_pmd_range(vma, pud, addr, next, newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200158 dirty_accountable, prot_numa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100160
161 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100164static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700165 unsigned long addr, unsigned long end, pgprot_t newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200166 int dirty_accountable, int prot_numa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct mm_struct *mm = vma->vm_mm;
169 pgd_t *pgd;
170 unsigned long next;
171 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100172 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 BUG_ON(addr >= end);
175 pgd = pgd_offset(mm, addr);
176 flush_cache_range(vma, addr, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 do {
178 next = pgd_addr_end(addr, end);
179 if (pgd_none_or_clear_bad(pgd))
180 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100181 pages += change_pud_range(vma, pgd, addr, next, newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200182 dirty_accountable, prot_numa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100184
Ingo Molnar1233d582012-11-19 03:14:24 +0100185 /* Only flush the TLB if we actually modified any entries: */
186 if (pages)
187 flush_tlb_range(vma, start, end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100188
189 return pages;
190}
191
192unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
193 unsigned long end, pgprot_t newprot,
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200194 int dirty_accountable, int prot_numa)
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100195{
196 struct mm_struct *mm = vma->vm_mm;
197 unsigned long pages;
198
199 mmu_notifier_invalidate_range_start(mm, start, end);
200 if (is_vm_hugetlb_page(vma))
201 pages = hugetlb_change_protection(vma, start, end, newprot);
202 else
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200203 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100204 mmu_notifier_invalidate_range_end(mm, start, end);
205
206 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700209int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
211 unsigned long start, unsigned long end, unsigned long newflags)
212{
213 struct mm_struct *mm = vma->vm_mm;
214 unsigned long oldflags = vma->vm_flags;
215 long nrpages = (end - start) >> PAGE_SHIFT;
216 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 pgoff_t pgoff;
218 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700219 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 if (newflags == oldflags) {
222 *pprev = vma;
223 return 0;
224 }
225
226 /*
227 * If we make a private mapping writable we increase our commit;
228 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000229 * make it unwritable again. hugetlb mapping were accounted for
230 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
232 if (newflags & VM_WRITE) {
Mel Gorman5a6fe122009-02-10 14:02:27 +0000233 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700234 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000236 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return -ENOMEM;
238 newflags |= VM_ACCOUNT;
239 }
240 }
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /*
243 * First try to merge with previous and/or next vma.
244 */
245 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
246 *pprev = vma_merge(mm, *pprev, start, end, newflags,
247 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
248 if (*pprev) {
249 vma = *pprev;
250 goto success;
251 }
252
253 *pprev = vma;
254
255 if (start != vma->vm_start) {
256 error = split_vma(mm, vma, start, 1);
257 if (error)
258 goto fail;
259 }
260
261 if (end != vma->vm_end) {
262 error = split_vma(mm, vma, end, 0);
263 if (error)
264 goto fail;
265 }
266
267success:
268 /*
269 * vm_flags and vm_page_prot are protected by the mmap_sem
270 * held in write mode.
271 */
272 vma->vm_flags = newflags;
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700273 vma->vm_page_prot = pgprot_modify(vma->vm_page_prot,
274 vm_get_page_prot(newflags));
275
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700276 if (vma_wants_writenotify(vma)) {
Hugh Dickins1ddd4392007-10-22 20:45:12 -0700277 vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700278 dirty_accountable = 1;
279 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700280
Andrew Morton7d12efa2012-12-18 14:23:17 -0800281 change_protection(vma, start, end, vma->vm_page_prot,
282 dirty_accountable, 0);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100283
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700284 vm_stat_account(mm, oldflags, vma->vm_file, -nrpages);
285 vm_stat_account(mm, newflags, vma->vm_file, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200286 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288
289fail:
290 vm_unacct_memory(charged);
291 return error;
292}
293
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100294SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
295 unsigned long, prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 unsigned long vm_flags, nstart, end, tmp, reqprot;
298 struct vm_area_struct *vma, *prev;
299 int error = -EINVAL;
300 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
301 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
302 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
303 return -EINVAL;
304
305 if (start & ~PAGE_MASK)
306 return -EINVAL;
307 if (!len)
308 return 0;
309 len = PAGE_ALIGN(len);
310 end = start + len;
311 if (end <= start)
312 return -ENOMEM;
Dave Kleikampb845f312008-07-08 00:28:51 +1000313 if (!arch_validate_prot(prot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -EINVAL;
315
316 reqprot = prot;
317 /*
318 * Does the application expect PROT_READ to imply PROT_EXEC:
319 */
Hua Zhongb344e052006-06-23 02:03:23 -0700320 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 prot |= PROT_EXEC;
322
323 vm_flags = calc_vm_prot_bits(prot);
324
325 down_write(&current->mm->mmap_sem);
326
Linus Torvalds097d5912012-03-06 18:23:36 -0800327 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 error = -ENOMEM;
329 if (!vma)
330 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800331 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (unlikely(grows & PROT_GROWSDOWN)) {
333 if (vma->vm_start >= end)
334 goto out;
335 start = vma->vm_start;
336 error = -EINVAL;
337 if (!(vma->vm_flags & VM_GROWSDOWN))
338 goto out;
Andrew Morton7d12efa2012-12-18 14:23:17 -0800339 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (vma->vm_start > start)
341 goto out;
342 if (unlikely(grows & PROT_GROWSUP)) {
343 end = vma->vm_end;
344 error = -EINVAL;
345 if (!(vma->vm_flags & VM_GROWSUP))
346 goto out;
347 }
348 }
349 if (start > vma->vm_start)
350 prev = vma;
351
352 for (nstart = start ; ; ) {
353 unsigned long newflags;
354
Andrew Morton7d12efa2012-12-18 14:23:17 -0800355 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Andrew Morton7d12efa2012-12-18 14:23:17 -0800357 newflags = vm_flags;
358 newflags |= (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700360 /* newflags >> 4 shift VM_MAY% in place of VM_% */
361 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 error = -EACCES;
363 goto out;
364 }
365
366 error = security_file_mprotect(vma, reqprot, prot);
367 if (error)
368 goto out;
369
370 tmp = vma->vm_end;
371 if (tmp > end)
372 tmp = end;
373 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
374 if (error)
375 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 nstart = tmp;
377
378 if (nstart < prev->vm_end)
379 nstart = prev->vm_end;
380 if (nstart >= end)
381 goto out;
382
383 vma = prev->vm_next;
384 if (!vma || vma->vm_start != nstart) {
385 error = -ENOMEM;
386 goto out;
387 }
388 }
389out:
390 up_write(&current->mm->mmap_sem);
391 return error;
392}