blob: 56c02beb60414129b898416a244f8404cc546e9a [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>
Mike Rapoportca5999f2020-06-08 21:32:38 -070031#include <linux/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070052 * Can be called with only the mmap_lock for reading by
Andrea Arcangeli175ad4f2017-02-22 15:44:12 -080053 * 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
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -070062 * from under us even if the mmap_lock is only hold for
Andrea Arcangeli175ad4f2017-02-22 15:44:12 -080063 * 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++;
Peter Xuf45ec5f2020-04-06 20:06:01 -0700142 } else if (is_swap_pte(oldpte)) {
Christoph Lameter06972122006-06-23 02:03:35 -0700143 swp_entry_t entry = pte_to_swp_entry(oldpte);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700144 pte_t newpte;
Christoph Lameter06972122006-06-23 02:03:35 -0700145
146 if (is_write_migration_entry(entry)) {
147 /*
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);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700155 if (pte_swp_uffd_wp(oldpte))
156 newpte = pte_swp_mkuffd_wp(newpte);
157 } else if (is_write_device_private_entry(entry)) {
Jérôme Glisse5042db42017-09-08 16:11:43 -0700158 /*
159 * We do not preserve soft-dirtiness. See
160 * copy_one_pte() for explanation.
161 */
162 make_device_private_entry_read(&entry);
163 newpte = swp_entry_to_pte(entry);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700164 if (pte_swp_uffd_wp(oldpte))
165 newpte = pte_swp_mkuffd_wp(newpte);
166 } else {
167 newpte = oldpte;
168 }
Jérôme Glisse5042db42017-09-08 16:11:43 -0700169
Peter Xuf45ec5f2020-04-06 20:06:01 -0700170 if (uffd_wp)
171 newpte = pte_swp_mkuffd_wp(newpte);
172 else if (uffd_wp_resolve)
173 newpte = pte_swp_clear_uffd_wp(newpte);
174
175 if (!pte_same(oldpte, newpte)) {
176 set_pte_at(vma->vm_mm, addr, pte, newpte);
Jérôme Glisse5042db42017-09-08 16:11:43 -0700177 pages++;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700181 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -0700182 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100183
184 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Mel Gorman8b272b32020-03-05 22:28:26 -0800187/*
188 * Used when setting automatic NUMA hinting protection where it is
189 * critical that a numa hinting PMD is not confused with a bad PMD.
190 */
191static inline int pmd_none_or_clear_bad_unless_trans_huge(pmd_t *pmd)
192{
193 pmd_t pmdval = pmd_read_atomic(pmd);
194
195 /* See pmd_none_or_trans_huge_or_clear_bad for info on barrier */
196#ifdef CONFIG_TRANSPARENT_HUGEPAGE
197 barrier();
198#endif
199
200 if (pmd_none(pmdval))
201 return 1;
202 if (pmd_trans_huge(pmdval))
203 return 0;
204 if (unlikely(pmd_bad(pmdval))) {
205 pmd_clear_bad(pmd);
206 return 1;
207 }
208
209 return 0;
210}
211
Andrew Morton7d12efa2012-12-18 14:23:17 -0800212static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
213 pud_t *pud, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700214 pgprot_t newprot, unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 pmd_t *pmd;
217 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100218 unsigned long pages = 0;
Mel Gorman72403b42013-11-12 15:08:32 -0800219 unsigned long nr_huge_updates = 0;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800220 struct mmu_notifier_range range;
221
222 range.start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 pmd = pmd_offset(pud, addr);
225 do {
Mel Gorman25cbbef2013-10-07 11:29:14 +0100226 unsigned long this_pages;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 next = pmd_addr_end(addr, end);
Mel Gorman8b272b32020-03-05 22:28:26 -0800229
230 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700231 * Automatic NUMA balancing walks the tables with mmap_lock
Mel Gorman8b272b32020-03-05 22:28:26 -0800232 * held for read. It's possible a parallel update to occur
233 * between pmd_trans_huge() and a pmd_none_or_clear_bad()
234 * check leading to a false positive and clearing.
235 * Hence, it's necessary to atomically read the PMD value
236 * for all the checks.
237 */
238 if (!is_swap_pmd(*pmd) && !pmd_devmap(*pmd) &&
239 pmd_none_or_clear_bad_unless_trans_huge(pmd))
Anshuman Khandual4991c092018-01-04 16:17:52 -0800240 goto next;
Rik van Riela5338092014-04-07 15:36:57 -0700241
242 /* invoke the mmu notifier if the pmd is populated */
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800243 if (!range.start) {
Jérôme Glisse7269f992019-05-13 17:20:53 -0700244 mmu_notifier_range_init(&range,
245 MMU_NOTIFY_PROTECTION_VMA, 0,
246 vma, vma->vm_mm, addr, end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800247 mmu_notifier_invalidate_range_start(&range);
Rik van Riela5338092014-04-07 15:36:57 -0700248 }
249
Zi Yan84c3fc42017-09-08 16:11:01 -0700250 if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) {
Kirill A. Shutemov6b9116a2016-02-11 16:13:03 -0800251 if (next - addr != HPAGE_PMD_SIZE) {
David Rientjesfd607752016-12-12 16:42:20 -0800252 __split_huge_pmd(vma, pmd, addr, false, NULL);
Kirill A. Shutemov6b9116a2016-02-11 16:13:03 -0800253 } else {
Mel Gormanf123d742013-10-07 11:28:49 +0100254 int nr_ptes = change_huge_pmd(vma, pmd, addr,
Peter Xu58705442020-04-06 20:05:45 -0700255 newprot, cp_flags);
Mel Gormanf123d742013-10-07 11:28:49 +0100256
257 if (nr_ptes) {
Mel Gorman72403b42013-11-12 15:08:32 -0800258 if (nr_ptes == HPAGE_PMD_NR) {
259 pages += HPAGE_PMD_NR;
260 nr_huge_updates++;
261 }
Mel Gorman1ad9f622014-04-07 15:36:56 -0700262
263 /* huge pmd was handled */
Anshuman Khandual4991c092018-01-04 16:17:52 -0800264 goto next;
Mel Gormanf123d742013-10-07 11:28:49 +0100265 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100266 }
Rik van Riel88a9ab62014-04-07 15:36:55 -0700267 /* fall through, the trans huge pmd just split */
Johannes Weinercd7548a2011-01-13 15:47:04 -0800268 }
Mel Gorman25cbbef2013-10-07 11:29:14 +0100269 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700270 cp_flags);
Mel Gorman25cbbef2013-10-07 11:29:14 +0100271 pages += this_pages;
Anshuman Khandual4991c092018-01-04 16:17:52 -0800272next:
273 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100275
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800276 if (range.start)
277 mmu_notifier_invalidate_range_end(&range);
Rik van Riela5338092014-04-07 15:36:57 -0700278
Mel Gorman72403b42013-11-12 15:08:32 -0800279 if (nr_huge_updates)
280 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100281 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Andrew Morton7d12efa2012-12-18 14:23:17 -0800284static inline unsigned long change_pud_range(struct vm_area_struct *vma,
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300285 p4d_t *p4d, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700286 pgprot_t newprot, unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 pud_t *pud;
289 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100290 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300292 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 do {
294 next = pud_addr_end(addr, end);
295 if (pud_none_or_clear_bad(pud))
296 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100297 pages += change_pmd_range(vma, pud, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700298 cp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100300
301 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300304static inline unsigned long change_p4d_range(struct vm_area_struct *vma,
305 pgd_t *pgd, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700306 pgprot_t newprot, unsigned long cp_flags)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300307{
308 p4d_t *p4d;
309 unsigned long next;
310 unsigned long pages = 0;
311
312 p4d = p4d_offset(pgd, addr);
313 do {
314 next = p4d_addr_end(addr, end);
315 if (p4d_none_or_clear_bad(p4d))
316 continue;
317 pages += change_pud_range(vma, p4d, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700318 cp_flags);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300319 } while (p4d++, addr = next, addr != end);
320
321 return pages;
322}
323
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100324static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700325 unsigned long addr, unsigned long end, pgprot_t newprot,
Peter Xu58705442020-04-06 20:05:45 -0700326 unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct mm_struct *mm = vma->vm_mm;
329 pgd_t *pgd;
330 unsigned long next;
331 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100332 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 BUG_ON(addr >= end);
335 pgd = pgd_offset(mm, addr);
336 flush_cache_range(vma, addr, end);
Nadav Amit16af97d2017-08-10 15:23:56 -0700337 inc_tlb_flush_pending(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 do {
339 next = pgd_addr_end(addr, end);
340 if (pgd_none_or_clear_bad(pgd))
341 continue;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300342 pages += change_p4d_range(vma, pgd, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700343 cp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100345
Ingo Molnar1233d582012-11-19 03:14:24 +0100346 /* Only flush the TLB if we actually modified any entries: */
347 if (pages)
348 flush_tlb_range(vma, start, end);
Nadav Amit16af97d2017-08-10 15:23:56 -0700349 dec_tlb_flush_pending(mm);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100350
351 return pages;
352}
353
354unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
355 unsigned long end, pgprot_t newprot,
Peter Xu58705442020-04-06 20:05:45 -0700356 unsigned long cp_flags)
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100357{
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100358 unsigned long pages;
359
Peter Xu292924b2020-04-06 20:05:49 -0700360 BUG_ON((cp_flags & MM_CP_UFFD_WP_ALL) == MM_CP_UFFD_WP_ALL);
361
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100362 if (is_vm_hugetlb_page(vma))
363 pages = hugetlb_change_protection(vma, start, end, newprot);
364 else
Peter Xu58705442020-04-06 20:05:45 -0700365 pages = change_protection_range(vma, start, end, newprot,
366 cp_flags);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100367
368 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Andi Kleen42e40892018-06-13 15:48:27 -0700371static int prot_none_pte_entry(pte_t *pte, unsigned long addr,
372 unsigned long next, struct mm_walk *walk)
373{
374 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
375 0 : -EACCES;
376}
377
378static int prot_none_hugetlb_entry(pte_t *pte, unsigned long hmask,
379 unsigned long addr, unsigned long next,
380 struct mm_walk *walk)
381{
382 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
383 0 : -EACCES;
384}
385
386static int prot_none_test(unsigned long addr, unsigned long next,
387 struct mm_walk *walk)
388{
389 return 0;
390}
391
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200392static const struct mm_walk_ops prot_none_walk_ops = {
393 .pte_entry = prot_none_pte_entry,
394 .hugetlb_entry = prot_none_hugetlb_entry,
395 .test_walk = prot_none_test,
396};
Andi Kleen42e40892018-06-13 15:48:27 -0700397
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700398int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
400 unsigned long start, unsigned long end, unsigned long newflags)
401{
402 struct mm_struct *mm = vma->vm_mm;
403 unsigned long oldflags = vma->vm_flags;
404 long nrpages = (end - start) >> PAGE_SHIFT;
405 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 pgoff_t pgoff;
407 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700408 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (newflags == oldflags) {
411 *pprev = vma;
412 return 0;
413 }
414
415 /*
Andi Kleen42e40892018-06-13 15:48:27 -0700416 * Do PROT_NONE PFN permission checks here when we can still
417 * bail out without undoing a lot of state. This is a rather
418 * uncommon case, so doesn't need to be very optimized.
419 */
420 if (arch_has_pfn_modify_check() &&
421 (vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
Anshuman Khandual6cb4d9a2020-04-10 14:33:09 -0700422 (newflags & VM_ACCESS_FLAGS) == 0) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200423 pgprot_t new_pgprot = vm_get_page_prot(newflags);
424
425 error = walk_page_range(current->mm, start, end,
426 &prot_none_walk_ops, &new_pgprot);
Andi Kleen42e40892018-06-13 15:48:27 -0700427 if (error)
428 return error;
429 }
430
431 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * If we make a private mapping writable we increase our commit;
433 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000434 * make it unwritable again. hugetlb mapping were accounted for
435 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
437 if (newflags & VM_WRITE) {
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800438 /* Check space limits when area turns into data. */
439 if (!may_expand_vm(mm, newflags, nrpages) &&
440 may_expand_vm(mm, oldflags, nrpages))
441 return -ENOMEM;
Mel Gorman5a6fe122009-02-10 14:02:27 +0000442 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700443 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000445 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return -ENOMEM;
447 newflags |= VM_ACCOUNT;
448 }
449 }
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /*
452 * First try to merge with previous and/or next vma.
453 */
454 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
455 *pprev = vma_merge(mm, *pprev, start, end, newflags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700456 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
457 vma->vm_userfaultfd_ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (*pprev) {
459 vma = *pprev;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700460 VM_WARN_ON((vma->vm_flags ^ newflags) & ~VM_SOFTDIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 goto success;
462 }
463
464 *pprev = vma;
465
466 if (start != vma->vm_start) {
467 error = split_vma(mm, vma, start, 1);
468 if (error)
469 goto fail;
470 }
471
472 if (end != vma->vm_end) {
473 error = split_vma(mm, vma, end, 0);
474 if (error)
475 goto fail;
476 }
477
478success:
479 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700480 * vm_flags and vm_page_prot are protected by the mmap_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * held in write mode.
482 */
483 vma->vm_flags = newflags;
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700484 dirty_accountable = vma_wants_writenotify(vma, vma->vm_page_prot);
Peter Feiner64e455072014-10-13 15:55:46 -0700485 vma_set_page_prot(vma);
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700486
Andrew Morton7d12efa2012-12-18 14:23:17 -0800487 change_protection(vma, start, end, vma->vm_page_prot,
Peter Xu58705442020-04-06 20:05:45 -0700488 dirty_accountable ? MM_CP_DIRTY_ACCT : 0);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100489
Kirill A. Shutemov36f88182015-06-24 16:56:10 -0700490 /*
491 * Private VM_LOCKED VMA becoming writable: trigger COW to avoid major
492 * fault on access.
493 */
494 if ((oldflags & (VM_WRITE | VM_SHARED | VM_LOCKED)) == VM_LOCKED &&
495 (newflags & VM_WRITE)) {
496 populate_vma_page_range(vma, start, end, NULL);
497 }
498
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800499 vm_stat_account(mm, oldflags, -nrpages);
500 vm_stat_account(mm, newflags, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200501 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return 0;
503
504fail:
505 vm_unacct_memory(charged);
506 return error;
507}
508
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700509/*
510 * pkey==-1 when doing a legacy mprotect()
511 */
512static int do_mprotect_pkey(unsigned long start, size_t len,
513 unsigned long prot, int pkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Dave Hansen62b5f7d2016-02-12 13:02:40 -0800515 unsigned long nstart, end, tmp, reqprot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct vm_area_struct *vma, *prev;
517 int error = -EINVAL;
518 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700519 const bool rier = (current->personality & READ_IMPLIES_EXEC) &&
520 (prot & PROT_READ);
521
Andrey Konovalov057d33892019-09-25 16:48:30 -0700522 start = untagged_addr(start);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
525 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
526 return -EINVAL;
527
528 if (start & ~PAGE_MASK)
529 return -EINVAL;
530 if (!len)
531 return 0;
532 len = PAGE_ALIGN(len);
533 end = start + len;
534 if (end <= start)
535 return -ENOMEM;
Khalid Aziz9035cf92018-02-21 10:15:49 -0700536 if (!arch_validate_prot(prot, start))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return -EINVAL;
538
539 reqprot = prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700541 if (mmap_write_lock_killable(current->mm))
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700542 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Dave Hansene8c24d32016-07-29 09:30:15 -0700544 /*
545 * If userspace did not allocate the pkey, do not let
546 * them use it here.
547 */
548 error = -EINVAL;
549 if ((pkey != -1) && !mm_pkey_is_allocated(current->mm, pkey))
550 goto out;
551
Linus Torvalds097d5912012-03-06 18:23:36 -0800552 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 error = -ENOMEM;
554 if (!vma)
555 goto out;
Linus Torvalds097d5912012-03-06 18:23:36 -0800556 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (unlikely(grows & PROT_GROWSDOWN)) {
558 if (vma->vm_start >= end)
559 goto out;
560 start = vma->vm_start;
561 error = -EINVAL;
562 if (!(vma->vm_flags & VM_GROWSDOWN))
563 goto out;
Andrew Morton7d12efa2012-12-18 14:23:17 -0800564 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (vma->vm_start > start)
566 goto out;
567 if (unlikely(grows & PROT_GROWSUP)) {
568 end = vma->vm_end;
569 error = -EINVAL;
570 if (!(vma->vm_flags & VM_GROWSUP))
571 goto out;
572 }
573 }
574 if (start > vma->vm_start)
575 prev = vma;
576
577 for (nstart = start ; ; ) {
Dave Hansena8502b62016-07-29 09:30:13 -0700578 unsigned long mask_off_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 unsigned long newflags;
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700580 int new_vma_pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Andrew Morton7d12efa2012-12-18 14:23:17 -0800582 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700584 /* Does the application expect PROT_READ to imply PROT_EXEC */
585 if (rier && (vma->vm_flags & VM_MAYEXEC))
586 prot |= PROT_EXEC;
587
Dave Hansena8502b62016-07-29 09:30:13 -0700588 /*
589 * Each mprotect() call explicitly passes r/w/x permissions.
590 * If a permission is not passed to mprotect(), it must be
591 * cleared from the VMA.
592 */
593 mask_off_old_flags = VM_READ | VM_WRITE | VM_EXEC |
Khalid Aziz2c2d57b52018-02-21 10:15:50 -0700594 VM_FLAGS_CLEAR;
Dave Hansena8502b62016-07-29 09:30:13 -0700595
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700596 new_vma_pkey = arch_override_mprotect_pkey(vma, prot, pkey);
597 newflags = calc_vm_prot_bits(prot, new_vma_pkey);
Dave Hansena8502b62016-07-29 09:30:13 -0700598 newflags |= (vma->vm_flags & ~mask_off_old_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700600 /* newflags >> 4 shift VM_MAY% in place of VM_% */
Anshuman Khandual6cb4d9a2020-04-10 14:33:09 -0700601 if ((newflags & ~(newflags >> 4)) & VM_ACCESS_FLAGS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 error = -EACCES;
603 goto out;
604 }
605
Catalin Marinasc462ac22019-11-25 17:27:06 +0000606 /* Allow architectures to sanity-check the new flags */
607 if (!arch_validate_flags(newflags)) {
608 error = -EINVAL;
609 goto out;
610 }
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 error = security_file_mprotect(vma, reqprot, prot);
613 if (error)
614 goto out;
615
616 tmp = vma->vm_end;
617 if (tmp > end)
618 tmp = end;
619 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
620 if (error)
621 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 nstart = tmp;
623
624 if (nstart < prev->vm_end)
625 nstart = prev->vm_end;
626 if (nstart >= end)
627 goto out;
628
629 vma = prev->vm_next;
630 if (!vma || vma->vm_start != nstart) {
631 error = -ENOMEM;
632 goto out;
633 }
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700634 prot = reqprot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700637 mmap_write_unlock(current->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return error;
639}
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700640
641SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
642 unsigned long, prot)
643{
644 return do_mprotect_pkey(start, len, prot, -1);
645}
646
Heiko Carstensc7142ae2016-12-12 16:43:09 -0800647#ifdef CONFIG_ARCH_HAS_PKEYS
648
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700649SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len,
650 unsigned long, prot, int, pkey)
651{
652 return do_mprotect_pkey(start, len, prot, pkey);
653}
Dave Hansene8c24d32016-07-29 09:30:15 -0700654
655SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val)
656{
657 int pkey;
658 int ret;
659
660 /* No flags supported yet. */
661 if (flags)
662 return -EINVAL;
663 /* check for unsupported init values */
664 if (init_val & ~PKEY_ACCESS_MASK)
665 return -EINVAL;
666
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700667 mmap_write_lock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700668 pkey = mm_pkey_alloc(current->mm);
669
670 ret = -ENOSPC;
671 if (pkey == -1)
672 goto out;
673
674 ret = arch_set_user_pkey_access(current, pkey, init_val);
675 if (ret) {
676 mm_pkey_free(current->mm, pkey);
677 goto out;
678 }
679 ret = pkey;
680out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700681 mmap_write_unlock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700682 return ret;
683}
684
685SYSCALL_DEFINE1(pkey_free, int, pkey)
686{
687 int ret;
688
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700689 mmap_write_lock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700690 ret = mm_pkey_free(current->mm, pkey);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700691 mmap_write_unlock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700692
693 /*
694 * We could provie warnings or errors if any VMA still
695 * has the pkey set here.
696 */
697 return ret;
698}
Heiko Carstensc7142ae2016-12-12 16:43:09 -0800699
700#endif /* CONFIG_ARCH_HAS_PKEYS */