Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * mm/mprotect.c |
| 3 | * |
| 4 | * (C) Copyright 1994 Linus Torvalds |
| 5 | * (C) Copyright 2002 Christoph Hellwig |
| 6 | * |
Alan Cox | 046c688 | 2009-01-05 14:06:29 +0000 | [diff] [blame] | 7 | * Address space accounting code <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * (C) Copyright 2002 Red Hat Inc, All Rights Reserved |
| 9 | */ |
| 10 | |
| 11 | #include <linux/mm.h> |
| 12 | #include <linux/hugetlb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #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 Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 21 | #include <linux/swap.h> |
| 22 | #include <linux/swapops.h> |
Andrea Arcangeli | cddb8a5 | 2008-07-28 15:46:29 -0700 | [diff] [blame] | 23 | #include <linux/mmu_notifier.h> |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 24 | #include <linux/migrate.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 25 | #include <linux/perf_event.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/uaccess.h> |
| 27 | #include <asm/pgtable.h> |
| 28 | #include <asm/cacheflush.h> |
| 29 | #include <asm/tlbflush.h> |
| 30 | |
Venki Pallipadi | 1c12c4c | 2008-05-14 16:05:51 -0700 | [diff] [blame] | 31 | #ifndef pgprot_modify |
| 32 | static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) |
| 33 | { |
| 34 | return newprot; |
| 35 | } |
| 36 | #endif |
| 37 | |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 38 | static unsigned long change_pte_range(struct vm_area_struct *vma, pmd_t *pmd, |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 39 | unsigned long addr, unsigned long end, pgprot_t newprot, |
Mel Gorman | 0f19c17 | 2013-10-07 11:29:25 +0100 | [diff] [blame^] | 40 | int dirty_accountable, int prot_numa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 42 | struct mm_struct *mm = vma->vm_mm; |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 43 | pte_t *pte, oldpte; |
Hugh Dickins | 705e87c | 2005-10-29 18:16:27 -0700 | [diff] [blame] | 44 | spinlock_t *ptl; |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 45 | unsigned long pages = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Hugh Dickins | 705e87c | 2005-10-29 18:16:27 -0700 | [diff] [blame] | 47 | pte = pte_offset_map_lock(mm, pmd, addr, &ptl); |
Zachary Amsden | 6606c3e | 2006-09-30 23:29:33 -0700 | [diff] [blame] | 48 | arch_enter_lazy_mmu_mode(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | do { |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 50 | oldpte = *pte; |
| 51 | if (pte_present(oldpte)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | pte_t ptent; |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 53 | bool updated = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Jeremy Fitzhardinge | 1ea0704 | 2008-06-16 04:30:00 -0700 | [diff] [blame] | 55 | ptent = ptep_modify_prot_start(mm, addr, pte); |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 56 | 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 Gorman | 1bc115d | 2013-10-07 11:29:05 +0100 | [diff] [blame] | 64 | if (!pte_numa(oldpte)) { |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 65 | ptent = pte_mknuma(ptent); |
| 66 | updated = true; |
| 67 | } |
| 68 | } |
| 69 | } |
Jeremy Fitzhardinge | 1ea0704 | 2008-06-16 04:30:00 -0700 | [diff] [blame] | 70 | |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 71 | /* |
| 72 | * Avoid taking write faults for pages we know to be |
| 73 | * dirty. |
| 74 | */ |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 75 | if (dirty_accountable && pte_dirty(ptent)) { |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 76 | ptent = pte_mkwrite(ptent); |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 77 | updated = true; |
| 78 | } |
Jeremy Fitzhardinge | 1ea0704 | 2008-06-16 04:30:00 -0700 | [diff] [blame] | 79 | |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 80 | if (updated) |
| 81 | pages++; |
Jeremy Fitzhardinge | 1ea0704 | 2008-06-16 04:30:00 -0700 | [diff] [blame] | 82 | ptep_modify_prot_commit(mm, addr, pte, ptent); |
Konstantin Khlebnikov | ce1744f | 2012-03-21 16:33:59 -0700 | [diff] [blame] | 83 | } else if (IS_ENABLED(CONFIG_MIGRATION) && !pte_file(oldpte)) { |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 84 | 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 Gorman | e920e14 | 2013-10-07 11:28:48 +0100 | [diff] [blame] | 94 | |
| 95 | pages++; |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 96 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | } while (pte++, addr += PAGE_SIZE, addr != end); |
Zachary Amsden | 6606c3e | 2006-09-30 23:29:33 -0700 | [diff] [blame] | 99 | arch_leave_lazy_mmu_mode(); |
Hugh Dickins | 705e87c | 2005-10-29 18:16:27 -0700 | [diff] [blame] | 100 | pte_unmap_unlock(pte - 1, ptl); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 101 | |
| 102 | return pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Andrew Morton | 7d12efa | 2012-12-18 14:23:17 -0800 | [diff] [blame] | 105 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
| 109 | pmd_t *pmd; |
| 110 | unsigned long next; |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 111 | unsigned long pages = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | pmd = pmd_offset(pud, addr); |
| 114 | do { |
Mel Gorman | 25cbbef | 2013-10-07 11:29:14 +0100 | [diff] [blame] | 115 | unsigned long this_pages; |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | next = pmd_addr_end(addr, end); |
Johannes Weiner | cd7548a | 2011-01-13 15:47:04 -0800 | [diff] [blame] | 118 | if (pmd_trans_huge(*pmd)) { |
| 119 | if (next - addr != HPAGE_PMD_SIZE) |
Kirill A. Shutemov | e180377 | 2012-12-12 13:50:59 -0800 | [diff] [blame] | 120 | split_huge_page_pmd(vma, addr, pmd); |
Mel Gorman | f123d74 | 2013-10-07 11:28:49 +0100 | [diff] [blame] | 121 | 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 Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 131 | } |
Johannes Weiner | cd7548a | 2011-01-13 15:47:04 -0800 | [diff] [blame] | 132 | /* fall through */ |
| 133 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | if (pmd_none_or_clear_bad(pmd)) |
| 135 | continue; |
Mel Gorman | 25cbbef | 2013-10-07 11:29:14 +0100 | [diff] [blame] | 136 | this_pages = change_pte_range(vma, pmd, addr, next, newprot, |
Mel Gorman | 0f19c17 | 2013-10-07 11:29:25 +0100 | [diff] [blame^] | 137 | dirty_accountable, prot_numa); |
Mel Gorman | 25cbbef | 2013-10-07 11:29:14 +0100 | [diff] [blame] | 138 | pages += this_pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } while (pmd++, addr = next, addr != end); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 140 | |
| 141 | return pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Andrew Morton | 7d12efa | 2012-12-18 14:23:17 -0800 | [diff] [blame] | 144 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
| 148 | pud_t *pud; |
| 149 | unsigned long next; |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 150 | unsigned long pages = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 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 Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 157 | pages += change_pmd_range(vma, pud, addr, next, newprot, |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 158 | dirty_accountable, prot_numa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } while (pud++, addr = next, addr != end); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 160 | |
| 161 | return pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 164 | static unsigned long change_protection_range(struct vm_area_struct *vma, |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 165 | unsigned long addr, unsigned long end, pgprot_t newprot, |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 166 | int dirty_accountable, int prot_numa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | struct mm_struct *mm = vma->vm_mm; |
| 169 | pgd_t *pgd; |
| 170 | unsigned long next; |
| 171 | unsigned long start = addr; |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 172 | unsigned long pages = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | BUG_ON(addr >= end); |
| 175 | pgd = pgd_offset(mm, addr); |
| 176 | flush_cache_range(vma, addr, end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | do { |
| 178 | next = pgd_addr_end(addr, end); |
| 179 | if (pgd_none_or_clear_bad(pgd)) |
| 180 | continue; |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 181 | pages += change_pud_range(vma, pgd, addr, next, newprot, |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 182 | dirty_accountable, prot_numa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } while (pgd++, addr = next, addr != end); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 184 | |
Ingo Molnar | 1233d58 | 2012-11-19 03:14:24 +0100 | [diff] [blame] | 185 | /* Only flush the TLB if we actually modified any entries: */ |
| 186 | if (pages) |
| 187 | flush_tlb_range(vma, start, end); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 188 | |
| 189 | return pages; |
| 190 | } |
| 191 | |
| 192 | unsigned long change_protection(struct vm_area_struct *vma, unsigned long start, |
| 193 | unsigned long end, pgprot_t newprot, |
Mel Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 194 | int dirty_accountable, int prot_numa) |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 195 | { |
| 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 Gorman | 4b10e7d | 2012-10-25 14:16:32 +0200 | [diff] [blame] | 203 | pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 204 | mmu_notifier_invalidate_range_end(mm, start, end); |
| 205 | |
| 206 | return pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Ollie Wild | b6a2fea | 2007-07-19 01:48:16 -0700 | [diff] [blame] | 209 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | mprotect_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | pgoff_t pgoff; |
| 218 | int error; |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 219 | int dirty_accountable = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 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 Gorman | 5a6fe12 | 2009-02-10 14:02:27 +0000 | [diff] [blame] | 229 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | */ |
| 232 | if (newflags & VM_WRITE) { |
Mel Gorman | 5a6fe12 | 2009-02-10 14:02:27 +0000 | [diff] [blame] | 233 | if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB| |
Andy Whitcroft | cdfd432 | 2008-07-23 21:27:28 -0700 | [diff] [blame] | 234 | VM_SHARED|VM_NORESERVE))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | charged = nrpages; |
Al Viro | 191c542 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 236 | if (security_vm_enough_memory_mm(mm, charged)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return -ENOMEM; |
| 238 | newflags |= VM_ACCOUNT; |
| 239 | } |
| 240 | } |
| 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | /* |
| 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 | |
| 267 | success: |
| 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 Pallipadi | 1c12c4c | 2008-05-14 16:05:51 -0700 | [diff] [blame] | 273 | vma->vm_page_prot = pgprot_modify(vma->vm_page_prot, |
| 274 | vm_get_page_prot(newflags)); |
| 275 | |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 276 | if (vma_wants_writenotify(vma)) { |
Hugh Dickins | 1ddd439 | 2007-10-22 20:45:12 -0700 | [diff] [blame] | 277 | vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED); |
Peter Zijlstra | c1e6098 | 2006-09-25 23:30:59 -0700 | [diff] [blame] | 278 | dirty_accountable = 1; |
| 279 | } |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 280 | |
Andrew Morton | 7d12efa | 2012-12-18 14:23:17 -0800 | [diff] [blame] | 281 | change_protection(vma, start, end, vma->vm_page_prot, |
| 282 | dirty_accountable, 0); |
Peter Zijlstra | 7da4d64 | 2012-11-19 03:14:23 +0100 | [diff] [blame] | 283 | |
Hugh Dickins | ab50b8e | 2005-10-29 18:15:56 -0700 | [diff] [blame] | 284 | vm_stat_account(mm, oldflags, vma->vm_file, -nrpages); |
| 285 | vm_stat_account(mm, newflags, vma->vm_file, nrpages); |
Pekka Enberg | 63bfd73 | 2010-11-08 21:29:07 +0200 | [diff] [blame] | 286 | perf_event_mmap(vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | return 0; |
| 288 | |
| 289 | fail: |
| 290 | vm_unacct_memory(charged); |
| 291 | return error; |
| 292 | } |
| 293 | |
Heiko Carstens | 6a6160a | 2009-01-14 14:14:15 +0100 | [diff] [blame] | 294 | SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len, |
| 295 | unsigned long, prot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | { |
| 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 Kleikamp | b845f31 | 2008-07-08 00:28:51 +1000 | [diff] [blame] | 313 | if (!arch_validate_prot(prot)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | return -EINVAL; |
| 315 | |
| 316 | reqprot = prot; |
| 317 | /* |
| 318 | * Does the application expect PROT_READ to imply PROT_EXEC: |
| 319 | */ |
Hua Zhong | b344e05 | 2006-06-23 02:03:23 -0700 | [diff] [blame] | 320 | if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | prot |= PROT_EXEC; |
| 322 | |
| 323 | vm_flags = calc_vm_prot_bits(prot); |
| 324 | |
| 325 | down_write(¤t->mm->mmap_sem); |
| 326 | |
Linus Torvalds | 097d591 | 2012-03-06 18:23:36 -0800 | [diff] [blame] | 327 | vma = find_vma(current->mm, start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | error = -ENOMEM; |
| 329 | if (!vma) |
| 330 | goto out; |
Linus Torvalds | 097d591 | 2012-03-06 18:23:36 -0800 | [diff] [blame] | 331 | prev = vma->vm_prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | 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 Morton | 7d12efa | 2012-12-18 14:23:17 -0800 | [diff] [blame] | 339 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | 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 Morton | 7d12efa | 2012-12-18 14:23:17 -0800 | [diff] [blame] | 355 | /* Here we know that vma->vm_start <= nstart < vma->vm_end. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Andrew Morton | 7d12efa | 2012-12-18 14:23:17 -0800 | [diff] [blame] | 357 | newflags = vm_flags; |
| 358 | newflags |= (vma->vm_flags & ~(VM_READ | VM_WRITE | VM_EXEC)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Paolo 'Blaisorblade' Giarrusso | 7e2cff4 | 2005-09-21 09:55:39 -0700 | [diff] [blame] | 360 | /* newflags >> 4 shift VM_MAY% in place of VM_% */ |
| 361 | if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | 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 | } |
| 389 | out: |
| 390 | up_write(¤t->mm->mmap_sem); |
| 391 | return error; |
| 392 | } |