blob: e4fa41a24bec91daee6868d894ff6ea1d536d666 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * mm/mprotect.c
4 *
5 * (C) Copyright 1994 Linus Torvalds
6 * (C) Copyright 2002 Christoph Hellwig
7 *
Alan Cox046c6882009-01-05 14:06:29 +00008 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * (C) Copyright 2002 Red Hat Inc, All Rights Reserved
10 */
11
Christoph Hellwiga5201102019-08-28 16:19:53 +020012#include <linux/pagewalk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/shm.h>
15#include <linux/mman.h>
16#include <linux/fs.h>
17#include <linux/highmem.h>
18#include <linux/security.h>
19#include <linux/mempolicy.h>
20#include <linux/personality.h>
21#include <linux/syscalls.h>
Christoph Lameter06972122006-06-23 02:03:35 -070022#include <linux/swap.h>
23#include <linux/swapops.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070024#include <linux/mmu_notifier.h>
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080025#include <linux/migrate.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020026#include <linux/perf_event.h>
Dave Hansene8c24d32016-07-29 09:30:15 -070027#include <linux/pkeys.h>
Mel Gorman64a9a342014-01-21 15:51:02 -080028#include <linux/ksm.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080029#include <linux/uaccess.h>
Mel Gorman09a913a2018-04-10 16:29:20 -070030#include <linux/mm_inline.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/pgtable.h>
32#include <asm/cacheflush.h>
Dave Hansene8c24d32016-07-29 09:30:15 -070033#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/tlbflush.h>
35
Kirill A. Shutemov36f88182015-06-24 16:56:10 -070036#include "internal.h"
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,
Peter Xu58705442020-04-06 20:05:45 -070040 unsigned long cp_flags)
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;
Andi Kleen3e321582016-12-12 16:41:47 -080045 int target_node = NUMA_NO_NODE;
Peter Xu58705442020-04-06 20:05:45 -070046 bool dirty_accountable = cp_flags & MM_CP_DIRTY_ACCT;
47 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
Peter Xu292924b2020-04-06 20:05:49 -070048 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
49 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Andrea Arcangeli175ad4f2017-02-22 15:44:12 -080051 /*
52 * Can be called with only the mmap_sem for reading by
53 * prot_numa so we must check the pmd isn't constantly
54 * changing from under us from pmd_none to pmd_trans_huge
55 * and/or the other way around.
56 */
57 if (pmd_trans_unstable(pmd))
58 return 0;
59
60 /*
61 * The pmd points to a regular pte so the pmd can't change
62 * from under us even if the mmap_sem is only hold for
63 * reading.
64 */
65 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Mel Gorman1ad9f622014-04-07 15:36:56 -070066
Andi Kleen3e321582016-12-12 16:41:47 -080067 /* Get target node for single threaded private VMAs */
68 if (prot_numa && !(vma->vm_flags & VM_SHARED) &&
69 atomic_read(&vma->vm_mm->mm_users) == 1)
70 target_node = numa_node_id();
71
Mel Gorman3ea27712017-08-02 13:31:52 -070072 flush_tlb_batched_pending(vma->vm_mm);
Zachary Amsden6606c3e2006-09-30 23:29:33 -070073 arch_enter_lazy_mmu_mode();
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 do {
Christoph Lameter06972122006-06-23 02:03:35 -070075 oldpte = *pte;
76 if (pte_present(oldpte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 pte_t ptent;
Mel Gormanb191f9b2015-03-25 15:55:40 -070078 bool preserve_write = prot_numa && pte_write(oldpte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Mel Gormane944fd62015-02-12 14:58:35 -080080 /*
81 * Avoid trapping faults against the zero or KSM
82 * pages. See similar comment in change_huge_pmd.
83 */
84 if (prot_numa) {
85 struct page *page;
86
Huang Yinga818f532019-11-30 17:57:32 -080087 /* Avoid TLB flush if possible */
88 if (pte_protnone(oldpte))
89 continue;
90
Mel Gormane944fd62015-02-12 14:58:35 -080091 page = vm_normal_page(vma, addr, oldpte);
92 if (!page || PageKsm(page))
93 continue;
Mel Gorman10c10452015-02-12 14:58:44 -080094
Henry Willard859d4ad2018-01-31 16:21:07 -080095 /* Also skip shared copy-on-write pages */
96 if (is_cow_mapping(vma->vm_flags) &&
97 page_mapcount(page) != 1)
98 continue;
99
Mel Gorman09a913a2018-04-10 16:29:20 -0700100 /*
101 * While migration can move some dirty pages,
102 * it cannot move them all from MIGRATE_ASYNC
103 * context.
104 */
Huang Ying9de4f222020-04-06 20:04:41 -0700105 if (page_is_file_lru(page) && PageDirty(page))
Mel Gorman09a913a2018-04-10 16:29:20 -0700106 continue;
107
Andi Kleen3e321582016-12-12 16:41:47 -0800108 /*
109 * Don't mess with PTEs if page is already on the node
110 * a single-threaded process is running on.
111 */
112 if (target_node == page_to_nid(page))
113 continue;
Mel Gormane944fd62015-02-12 14:58:35 -0800114 }
115
Aneesh Kumar K.V04a86452019-03-05 15:46:29 -0800116 oldpte = ptep_modify_prot_start(vma, addr, pte);
117 ptent = pte_modify(oldpte, newprot);
Mel Gormanb191f9b2015-03-25 15:55:40 -0700118 if (preserve_write)
Aneesh Kumar K.V288bc542017-02-24 14:59:16 -0800119 ptent = pte_mk_savedwrite(ptent);
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200120
Peter Xu292924b2020-04-06 20:05:49 -0700121 if (uffd_wp) {
122 ptent = pte_wrprotect(ptent);
123 ptent = pte_mkuffd_wp(ptent);
124 } else if (uffd_wp_resolve) {
125 /*
126 * Leave the write bit to be handled
127 * by PF interrupt handler, then
128 * things like COW could be properly
129 * handled.
130 */
131 ptent = pte_clear_uffd_wp(ptent);
132 }
133
Mel Gorman8a0516e2015-02-12 14:58:22 -0800134 /* Avoid taking write faults for known dirty pages */
135 if (dirty_accountable && pte_dirty(ptent) &&
136 (pte_soft_dirty(ptent) ||
137 !(vma->vm_flags & VM_SOFTDIRTY))) {
138 ptent = pte_mkwrite(ptent);
Mel Gorman4b10e7d2012-10-25 14:16:32 +0200139 }
Aneesh Kumar K.V04a86452019-03-05 15:46:29 -0800140 ptep_modify_prot_commit(vma, addr, pte, oldpte, ptent);
Mel Gorman8a0516e2015-02-12 14:58:22 -0800141 pages++;
Kirill A. Shutemov0661a332015-02-10 14:10:04 -0800142 } else if (IS_ENABLED(CONFIG_MIGRATION)) {
Christoph Lameter06972122006-06-23 02:03:35 -0700143 swp_entry_t entry = pte_to_swp_entry(oldpte);
144
145 if (is_write_migration_entry(entry)) {
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700146 pte_t newpte;
Christoph Lameter06972122006-06-23 02:03:35 -0700147 /*
148 * A protection check is difficult so
149 * just be safe and disable write
150 */
151 make_migration_entry_read(&entry);
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700152 newpte = swp_entry_to_pte(entry);
153 if (pte_swp_soft_dirty(oldpte))
154 newpte = pte_swp_mksoft_dirty(newpte);
Mike Rapoport94393c72019-05-13 17:23:14 -0700155 set_pte_at(vma->vm_mm, addr, pte, newpte);
Mel Gormane920e142013-10-07 11:28:48 +0100156
157 pages++;
Christoph Lameter06972122006-06-23 02:03:35 -0700158 }
Jérôme Glisse5042db42017-09-08 16:11:43 -0700159
160 if (is_write_device_private_entry(entry)) {
161 pte_t newpte;
162
163 /*
164 * We do not preserve soft-dirtiness. See
165 * copy_one_pte() for explanation.
166 */
167 make_device_private_entry_read(&entry);
168 newpte = swp_entry_to_pte(entry);
Mike Rapoport94393c72019-05-13 17:23:14 -0700169 set_pte_at(vma->vm_mm, addr, pte, newpte);
Jérôme Glisse5042db42017-09-08 16:11:43 -0700170
171 pages++;
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700175 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -0700176 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100177
178 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Mel Gorman8b272b32020-03-05 22:28:26 -0800181/*
182 * Used when setting automatic NUMA hinting protection where it is
183 * critical that a numa hinting PMD is not confused with a bad PMD.
184 */
185static inline int pmd_none_or_clear_bad_unless_trans_huge(pmd_t *pmd)
186{
187 pmd_t pmdval = pmd_read_atomic(pmd);
188
189 /* See pmd_none_or_trans_huge_or_clear_bad for info on barrier */
190#ifdef CONFIG_TRANSPARENT_HUGEPAGE
191 barrier();
192#endif
193
194 if (pmd_none(pmdval))
195 return 1;
196 if (pmd_trans_huge(pmdval))
197 return 0;
198 if (unlikely(pmd_bad(pmdval))) {
199 pmd_clear_bad(pmd);
200 return 1;
201 }
202
203 return 0;
204}
205
Andrew Morton7d12efa2012-12-18 14:23:17 -0800206static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
207 pud_t *pud, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700208 pgprot_t newprot, unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 pmd_t *pmd;
211 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100212 unsigned long pages = 0;
Mel Gorman72403b42013-11-12 15:08:32 -0800213 unsigned long nr_huge_updates = 0;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800214 struct mmu_notifier_range range;
215
216 range.start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 pmd = pmd_offset(pud, addr);
219 do {
Mel Gorman25cbbef2013-10-07 11:29:14 +0100220 unsigned long this_pages;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 next = pmd_addr_end(addr, end);
Mel Gorman8b272b32020-03-05 22:28:26 -0800223
224 /*
225 * Automatic NUMA balancing walks the tables with mmap_sem
226 * held for read. It's possible a parallel update to occur
227 * between pmd_trans_huge() and a pmd_none_or_clear_bad()
228 * check leading to a false positive and clearing.
229 * Hence, it's necessary to atomically read the PMD value
230 * for all the checks.
231 */
232 if (!is_swap_pmd(*pmd) && !pmd_devmap(*pmd) &&
233 pmd_none_or_clear_bad_unless_trans_huge(pmd))
Anshuman Khandual4991c092018-01-04 16:17:52 -0800234 goto next;
Rik van Riela5338092014-04-07 15:36:57 -0700235
236 /* invoke the mmu notifier if the pmd is populated */
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800237 if (!range.start) {
Jérôme Glisse7269f992019-05-13 17:20:53 -0700238 mmu_notifier_range_init(&range,
239 MMU_NOTIFY_PROTECTION_VMA, 0,
240 vma, vma->vm_mm, addr, end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800241 mmu_notifier_invalidate_range_start(&range);
Rik van Riela5338092014-04-07 15:36:57 -0700242 }
243
Zi Yan84c3fc42017-09-08 16:11:01 -0700244 if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) {
Kirill A. Shutemov6b9116a2016-02-11 16:13:03 -0800245 if (next - addr != HPAGE_PMD_SIZE) {
David Rientjesfd607752016-12-12 16:42:20 -0800246 __split_huge_pmd(vma, pmd, addr, false, NULL);
Kirill A. Shutemov6b9116a2016-02-11 16:13:03 -0800247 } else {
Mel Gormanf123d742013-10-07 11:28:49 +0100248 int nr_ptes = change_huge_pmd(vma, pmd, addr,
Peter Xu58705442020-04-06 20:05:45 -0700249 newprot, cp_flags);
Mel Gormanf123d742013-10-07 11:28:49 +0100250
251 if (nr_ptes) {
Mel Gorman72403b42013-11-12 15:08:32 -0800252 if (nr_ptes == HPAGE_PMD_NR) {
253 pages += HPAGE_PMD_NR;
254 nr_huge_updates++;
255 }
Mel Gorman1ad9f622014-04-07 15:36:56 -0700256
257 /* huge pmd was handled */
Anshuman Khandual4991c092018-01-04 16:17:52 -0800258 goto next;
Mel Gormanf123d742013-10-07 11:28:49 +0100259 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100260 }
Rik van Riel88a9ab62014-04-07 15:36:55 -0700261 /* fall through, the trans huge pmd just split */
Johannes Weinercd7548a2011-01-13 15:47:04 -0800262 }
Mel Gorman25cbbef2013-10-07 11:29:14 +0100263 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700264 cp_flags);
Mel Gorman25cbbef2013-10-07 11:29:14 +0100265 pages += this_pages;
Anshuman Khandual4991c092018-01-04 16:17:52 -0800266next:
267 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100269
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800270 if (range.start)
271 mmu_notifier_invalidate_range_end(&range);
Rik van Riela5338092014-04-07 15:36:57 -0700272
Mel Gorman72403b42013-11-12 15:08:32 -0800273 if (nr_huge_updates)
274 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100275 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Andrew Morton7d12efa2012-12-18 14:23:17 -0800278static inline unsigned long change_pud_range(struct vm_area_struct *vma,
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300279 p4d_t *p4d, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700280 pgprot_t newprot, unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 pud_t *pud;
283 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100284 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300286 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 do {
288 next = pud_addr_end(addr, end);
289 if (pud_none_or_clear_bad(pud))
290 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100291 pages += change_pmd_range(vma, pud, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700292 cp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100294
295 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300298static inline unsigned long change_p4d_range(struct vm_area_struct *vma,
299 pgd_t *pgd, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700300 pgprot_t newprot, unsigned long cp_flags)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300301{
302 p4d_t *p4d;
303 unsigned long next;
304 unsigned long pages = 0;
305
306 p4d = p4d_offset(pgd, addr);
307 do {
308 next = p4d_addr_end(addr, end);
309 if (p4d_none_or_clear_bad(p4d))
310 continue;
311 pages += change_pud_range(vma, p4d, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700312 cp_flags);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300313 } while (p4d++, addr = next, addr != end);
314
315 return pages;
316}
317
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100318static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700319 unsigned long addr, unsigned long end, pgprot_t newprot,
Peter Xu58705442020-04-06 20:05:45 -0700320 unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 struct mm_struct *mm = vma->vm_mm;
323 pgd_t *pgd;
324 unsigned long next;
325 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100326 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 BUG_ON(addr >= end);
329 pgd = pgd_offset(mm, addr);
330 flush_cache_range(vma, addr, end);
Nadav Amit16af97d2017-08-10 15:23:56 -0700331 inc_tlb_flush_pending(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 do {
333 next = pgd_addr_end(addr, end);
334 if (pgd_none_or_clear_bad(pgd))
335 continue;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300336 pages += change_p4d_range(vma, pgd, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700337 cp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100339
Ingo Molnar1233d582012-11-19 03:14:24 +0100340 /* Only flush the TLB if we actually modified any entries: */
341 if (pages)
342 flush_tlb_range(vma, start, end);
Nadav Amit16af97d2017-08-10 15:23:56 -0700343 dec_tlb_flush_pending(mm);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100344
345 return pages;
346}
347
348unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
349 unsigned long end, pgprot_t newprot,
Peter Xu58705442020-04-06 20:05:45 -0700350 unsigned long cp_flags)
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100351{
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100352 unsigned long pages;
353
Peter Xu292924b2020-04-06 20:05:49 -0700354 BUG_ON((cp_flags & MM_CP_UFFD_WP_ALL) == MM_CP_UFFD_WP_ALL);
355
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100356 if (is_vm_hugetlb_page(vma))
357 pages = hugetlb_change_protection(vma, start, end, newprot);
358 else
Peter Xu58705442020-04-06 20:05:45 -0700359 pages = change_protection_range(vma, start, end, newprot,
360 cp_flags);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100361
362 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Andi Kleen42e40892018-06-13 15:48:27 -0700365static int prot_none_pte_entry(pte_t *pte, unsigned long addr,
366 unsigned long next, struct mm_walk *walk)
367{
368 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
369 0 : -EACCES;
370}
371
372static int prot_none_hugetlb_entry(pte_t *pte, unsigned long hmask,
373 unsigned long addr, unsigned long next,
374 struct mm_walk *walk)
375{
376 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
377 0 : -EACCES;
378}
379
380static int prot_none_test(unsigned long addr, unsigned long next,
381 struct mm_walk *walk)
382{
383 return 0;
384}
385
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200386static const struct mm_walk_ops prot_none_walk_ops = {
387 .pte_entry = prot_none_pte_entry,
388 .hugetlb_entry = prot_none_hugetlb_entry,
389 .test_walk = prot_none_test,
390};
Andi Kleen42e40892018-06-13 15:48:27 -0700391
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700392int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
394 unsigned long start, unsigned long end, unsigned long newflags)
395{
396 struct mm_struct *mm = vma->vm_mm;
397 unsigned long oldflags = vma->vm_flags;
398 long nrpages = (end - start) >> PAGE_SHIFT;
399 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 pgoff_t pgoff;
401 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700402 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 if (newflags == oldflags) {
405 *pprev = vma;
406 return 0;
407 }
408
409 /*
Andi Kleen42e40892018-06-13 15:48:27 -0700410 * Do PROT_NONE PFN permission checks here when we can still
411 * bail out without undoing a lot of state. This is a rather
412 * uncommon case, so doesn't need to be very optimized.
413 */
414 if (arch_has_pfn_modify_check() &&
415 (vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
416 (newflags & (VM_READ|VM_WRITE|VM_EXEC)) == 0) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200417 pgprot_t new_pgprot = vm_get_page_prot(newflags);
418
419 error = walk_page_range(current->mm, start, end,
420 &prot_none_walk_ops, &new_pgprot);
Andi Kleen42e40892018-06-13 15:48:27 -0700421 if (error)
422 return error;
423 }
424
425 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * If we make a private mapping writable we increase our commit;
427 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000428 * make it unwritable again. hugetlb mapping were accounted for
429 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
431 if (newflags & VM_WRITE) {
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800432 /* Check space limits when area turns into data. */
433 if (!may_expand_vm(mm, newflags, nrpages) &&
434 may_expand_vm(mm, oldflags, nrpages))
435 return -ENOMEM;
Mel Gorman5a6fe122009-02-10 14:02:27 +0000436 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700437 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000439 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -ENOMEM;
441 newflags |= VM_ACCOUNT;
442 }
443 }
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /*
446 * First try to merge with previous and/or next vma.
447 */
448 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
449 *pprev = vma_merge(mm, *pprev, start, end, newflags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700450 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
451 vma->vm_userfaultfd_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (*pprev) {
453 vma = *pprev;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700454 VM_WARN_ON((vma->vm_flags ^ newflags) & ~VM_SOFTDIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 goto success;
456 }
457
458 *pprev = vma;
459
460 if (start != vma->vm_start) {
461 error = split_vma(mm, vma, start, 1);
462 if (error)
463 goto fail;
464 }
465
466 if (end != vma->vm_end) {
467 error = split_vma(mm, vma, end, 0);
468 if (error)
469 goto fail;
470 }
471
472success:
473 /*
474 * vm_flags and vm_page_prot are protected by the mmap_sem
475 * held in write mode.
476 */
477 vma->vm_flags = newflags;
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700478 dirty_accountable = vma_wants_writenotify(vma, vma->vm_page_prot);
Peter Feiner64e455072014-10-13 15:55:46 -0700479 vma_set_page_prot(vma);
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700480
Andrew Morton7d12efa2012-12-18 14:23:17 -0800481 change_protection(vma, start, end, vma->vm_page_prot,
Peter Xu58705442020-04-06 20:05:45 -0700482 dirty_accountable ? MM_CP_DIRTY_ACCT : 0);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100483
Kirill A. Shutemov36f88182015-06-24 16:56:10 -0700484 /*
485 * Private VM_LOCKED VMA becoming writable: trigger COW to avoid major
486 * fault on access.
487 */
488 if ((oldflags & (VM_WRITE | VM_SHARED | VM_LOCKED)) == VM_LOCKED &&
489 (newflags & VM_WRITE)) {
490 populate_vma_page_range(vma, start, end, NULL);
491 }
492
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800493 vm_stat_account(mm, oldflags, -nrpages);
494 vm_stat_account(mm, newflags, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200495 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return 0;
497
498fail:
499 vm_unacct_memory(charged);
500 return error;
501}
502
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700503/*
504 * pkey==-1 when doing a legacy mprotect()
505 */
506static int do_mprotect_pkey(unsigned long start, size_t len,
507 unsigned long prot, int pkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Dave Hansen62b5f7d2016-02-12 13:02:40 -0800509 unsigned long nstart, end, tmp, reqprot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 struct vm_area_struct *vma, *prev;
511 int error = -EINVAL;
512 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700513 const bool rier = (current->personality & READ_IMPLIES_EXEC) &&
514 (prot & PROT_READ);
515
Andrey Konovalov057d33892019-09-25 16:48:30 -0700516 start = untagged_addr(start);
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
519 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
520 return -EINVAL;
521
522 if (start & ~PAGE_MASK)
523 return -EINVAL;
524 if (!len)
525 return 0;
526 len = PAGE_ALIGN(len);
527 end = start + len;
528 if (end <= start)
529 return -ENOMEM;
Khalid Aziz9035cf92018-02-21 10:15:49 -0700530 if (!arch_validate_prot(prot, start))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return -EINVAL;
532
533 reqprot = prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700535 if (down_write_killable(&current->mm->mmap_sem))
536 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dave Hansene8c24d32016-07-29 09:30:15 -0700538 /*
539 * If userspace did not allocate the pkey, do not let
540 * them use it here.
541 */
542 error = -EINVAL;
543 if ((pkey != -1) && !mm_pkey_is_allocated(current->mm, pkey))
544 goto out;
545
Linus Torvalds097d5912012-03-06 18:23:36 -0800546 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 error = -ENOMEM;
548 if (!vma)
549 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800550 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (unlikely(grows & PROT_GROWSDOWN)) {
552 if (vma->vm_start >= end)
553 goto out;
554 start = vma->vm_start;
555 error = -EINVAL;
556 if (!(vma->vm_flags & VM_GROWSDOWN))
557 goto out;
Andrew Morton7d12efa2012-12-18 14:23:17 -0800558 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (vma->vm_start > start)
560 goto out;
561 if (unlikely(grows & PROT_GROWSUP)) {
562 end = vma->vm_end;
563 error = -EINVAL;
564 if (!(vma->vm_flags & VM_GROWSUP))
565 goto out;
566 }
567 }
568 if (start > vma->vm_start)
569 prev = vma;
570
571 for (nstart = start ; ; ) {
Dave Hansena8502b62016-07-29 09:30:13 -0700572 unsigned long mask_off_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 unsigned long newflags;
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700574 int new_vma_pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Andrew Morton7d12efa2012-12-18 14:23:17 -0800576 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700578 /* Does the application expect PROT_READ to imply PROT_EXEC */
579 if (rier && (vma->vm_flags & VM_MAYEXEC))
580 prot |= PROT_EXEC;
581
Dave Hansena8502b62016-07-29 09:30:13 -0700582 /*
583 * Each mprotect() call explicitly passes r/w/x permissions.
584 * If a permission is not passed to mprotect(), it must be
585 * cleared from the VMA.
586 */
587 mask_off_old_flags = VM_READ | VM_WRITE | VM_EXEC |
Khalid Aziz2c2d57b52018-02-21 10:15:50 -0700588 VM_FLAGS_CLEAR;
Dave Hansena8502b62016-07-29 09:30:13 -0700589
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700590 new_vma_pkey = arch_override_mprotect_pkey(vma, prot, pkey);
591 newflags = calc_vm_prot_bits(prot, new_vma_pkey);
Dave Hansena8502b62016-07-29 09:30:13 -0700592 newflags |= (vma->vm_flags & ~mask_off_old_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700594 /* newflags >> 4 shift VM_MAY% in place of VM_% */
595 if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 error = -EACCES;
597 goto out;
598 }
599
600 error = security_file_mprotect(vma, reqprot, prot);
601 if (error)
602 goto out;
603
604 tmp = vma->vm_end;
605 if (tmp > end)
606 tmp = end;
607 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
608 if (error)
609 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 nstart = tmp;
611
612 if (nstart < prev->vm_end)
613 nstart = prev->vm_end;
614 if (nstart >= end)
615 goto out;
616
617 vma = prev->vm_next;
618 if (!vma || vma->vm_start != nstart) {
619 error = -ENOMEM;
620 goto out;
621 }
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700622 prot = reqprot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624out:
625 up_write(&current->mm->mmap_sem);
626 return error;
627}
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700628
629SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
630 unsigned long, prot)
631{
632 return do_mprotect_pkey(start, len, prot, -1);
633}
634
Heiko Carstensc7142ae2016-12-12 16:43:09 -0800635#ifdef CONFIG_ARCH_HAS_PKEYS
636
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700637SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len,
638 unsigned long, prot, int, pkey)
639{
640 return do_mprotect_pkey(start, len, prot, pkey);
641}
Dave Hansene8c24d32016-07-29 09:30:15 -0700642
643SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val)
644{
645 int pkey;
646 int ret;
647
648 /* No flags supported yet. */
649 if (flags)
650 return -EINVAL;
651 /* check for unsupported init values */
652 if (init_val & ~PKEY_ACCESS_MASK)
653 return -EINVAL;
654
655 down_write(&current->mm->mmap_sem);
656 pkey = mm_pkey_alloc(current->mm);
657
658 ret = -ENOSPC;
659 if (pkey == -1)
660 goto out;
661
662 ret = arch_set_user_pkey_access(current, pkey, init_val);
663 if (ret) {
664 mm_pkey_free(current->mm, pkey);
665 goto out;
666 }
667 ret = pkey;
668out:
669 up_write(&current->mm->mmap_sem);
670 return ret;
671}
672
673SYSCALL_DEFINE1(pkey_free, int, pkey)
674{
675 int ret;
676
677 down_write(&current->mm->mmap_sem);
678 ret = mm_pkey_free(current->mm, pkey);
679 up_write(&current->mm->mmap_sem);
680
681 /*
682 * We could provie warnings or errors if any VMA still
683 * has the pkey set here.
684 */
685 return ret;
686}
Heiko Carstensc7142ae2016-12-12 16:43:09 -0800687
688#endif /* CONFIG_ARCH_HAS_PKEYS */