blob: 7c3628a8b486bce275c8370802eebb8bdfb23d56 [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
Ingo Molnar1233d582012-11-19 03:14:24 +0100156 /* Only flush the TLB if we actually modified any entries: */
157 if (pages)
158 flush_tlb_range(vma, start, end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100159
160 return pages;
161}
162
163unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
164 unsigned long end, pgprot_t newprot,
165 int dirty_accountable)
166{
167 struct mm_struct *mm = vma->vm_mm;
168 unsigned long pages;
169
170 mmu_notifier_invalidate_range_start(mm, start, end);
171 if (is_vm_hugetlb_page(vma))
172 pages = hugetlb_change_protection(vma, start, end, newprot);
173 else
174 pages = change_protection_range(vma, start, end, newprot, dirty_accountable);
175 mmu_notifier_invalidate_range_end(mm, start, end);
176
177 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700180int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
182 unsigned long start, unsigned long end, unsigned long newflags)
183{
184 struct mm_struct *mm = vma->vm_mm;
185 unsigned long oldflags = vma->vm_flags;
186 long nrpages = (end - start) >> PAGE_SHIFT;
187 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 pgoff_t pgoff;
189 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700190 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (newflags == oldflags) {
193 *pprev = vma;
194 return 0;
195 }
196
197 /*
198 * If we make a private mapping writable we increase our commit;
199 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000200 * make it unwritable again. hugetlb mapping were accounted for
201 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
203 if (newflags & VM_WRITE) {
Mel Gorman5a6fe122009-02-10 14:02:27 +0000204 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700205 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000207 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return -ENOMEM;
209 newflags |= VM_ACCOUNT;
210 }
211 }
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /*
214 * First try to merge with previous and/or next vma.
215 */
216 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
217 *pprev = vma_merge(mm, *pprev, start, end, newflags,
218 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma));
219 if (*pprev) {
220 vma = *pprev;
221 goto success;
222 }
223
224 *pprev = vma;
225
226 if (start != vma->vm_start) {
227 error = split_vma(mm, vma, start, 1);
228 if (error)
229 goto fail;
230 }
231
232 if (end != vma->vm_end) {
233 error = split_vma(mm, vma, end, 0);
234 if (error)
235 goto fail;
236 }
237
238success:
239 /*
240 * vm_flags and vm_page_prot are protected by the mmap_sem
241 * held in write mode.
242 */
243 vma->vm_flags = newflags;
Venki Pallipadi1c12c4c2008-05-14 16:05:51 -0700244 vma->vm_page_prot = pgprot_modify(vma->vm_page_prot,
245 vm_get_page_prot(newflags));
246
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700247 if (vma_wants_writenotify(vma)) {
Hugh Dickins1ddd4392007-10-22 20:45:12 -0700248 vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700249 dirty_accountable = 1;
250 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700251
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100252 change_protection(vma, start, end, vma->vm_page_prot, dirty_accountable);
253
Hugh Dickinsab50b8e2005-10-29 18:15:56 -0700254 vm_stat_account(mm, oldflags, vma->vm_file, -nrpages);
255 vm_stat_account(mm, newflags, vma->vm_file, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200256 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
258
259fail:
260 vm_unacct_memory(charged);
261 return error;
262}
263
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100264SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
265 unsigned long, prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 unsigned long vm_flags, nstart, end, tmp, reqprot;
268 struct vm_area_struct *vma, *prev;
269 int error = -EINVAL;
270 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
271 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
272 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
273 return -EINVAL;
274
275 if (start & ~PAGE_MASK)
276 return -EINVAL;
277 if (!len)
278 return 0;
279 len = PAGE_ALIGN(len);
280 end = start + len;
281 if (end <= start)
282 return -ENOMEM;
Dave Kleikampb845f312008-07-08 00:28:51 +1000283 if (!arch_validate_prot(prot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return -EINVAL;
285
286 reqprot = prot;
287 /*
288 * Does the application expect PROT_READ to imply PROT_EXEC:
289 */
Hua Zhongb344e052006-06-23 02:03:23 -0700290 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 prot |= PROT_EXEC;
292
293 vm_flags = calc_vm_prot_bits(prot);
294
295 down_write(&current->mm->mmap_sem);
296
Linus Torvalds097d5912012-03-06 18:23:36 -0800297 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 error = -ENOMEM;
299 if (!vma)
300 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800301 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (unlikely(grows & PROT_GROWSDOWN)) {
303 if (vma->vm_start >= end)
304 goto out;
305 start = vma->vm_start;
306 error = -EINVAL;
307 if (!(vma->vm_flags & VM_GROWSDOWN))
308 goto out;
309 }
310 else {
311 if (vma->vm_start > start)
312 goto out;
313 if (unlikely(grows & PROT_GROWSUP)) {
314 end = vma->vm_end;
315 error = -EINVAL;
316 if (!(vma->vm_flags & VM_GROWSUP))
317 goto out;
318 }
319 }
320 if (start > vma->vm_start)
321 prev = vma;
322
323 for (nstart = start ; ; ) {
324 unsigned long newflags;
325
326 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 newflags = vm_flags | (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC));
329
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700330 /* newflags >> 4 shift VM_MAY% in place of VM_% */
331 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 error = -EACCES;
333 goto out;
334 }
335
336 error = security_file_mprotect(vma, reqprot, prot);
337 if (error)
338 goto out;
339
340 tmp = vma->vm_end;
341 if (tmp > end)
342 tmp = end;
343 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
344 if (error)
345 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 nstart = tmp;
347
348 if (nstart < prev->vm_end)
349 nstart = prev->vm_end;
350 if (nstart >= end)
351 goto out;
352
353 vma = prev->vm_next;
354 if (!vma || vma->vm_start != nstart) {
355 error = -ENOMEM;
356 goto out;
357 }
358 }
359out:
360 up_write(&current->mm->mmap_sem);
361 return error;
362}