blob: 0138dfcdb1d804bb718eb5e067b402a42e32b115 [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
Alistair Popple4dd845b2021-06-30 18:54:09 -0700146 if (is_writable_migration_entry(entry)) {
Christoph Lameter06972122006-06-23 02:03:35 -0700147 /*
148 * A protection check is difficult so
149 * just be safe and disable write
150 */
Alistair Popple4dd845b2021-06-30 18:54:09 -0700151 entry = make_readable_migration_entry(
152 swp_offset(entry));
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700153 newpte = swp_entry_to_pte(entry);
154 if (pte_swp_soft_dirty(oldpte))
155 newpte = pte_swp_mksoft_dirty(newpte);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700156 if (pte_swp_uffd_wp(oldpte))
157 newpte = pte_swp_mkuffd_wp(newpte);
Alistair Popple4dd845b2021-06-30 18:54:09 -0700158 } else if (is_writable_device_private_entry(entry)) {
Jérôme Glisse5042db42017-09-08 16:11:43 -0700159 /*
160 * We do not preserve soft-dirtiness. See
161 * copy_one_pte() for explanation.
162 */
Alistair Popple4dd845b2021-06-30 18:54:09 -0700163 entry = make_readable_device_private_entry(
164 swp_offset(entry));
Jérôme Glisse5042db42017-09-08 16:11:43 -0700165 newpte = swp_entry_to_pte(entry);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700166 if (pte_swp_uffd_wp(oldpte))
167 newpte = pte_swp_mkuffd_wp(newpte);
Alistair Poppleb756a3b2021-06-30 18:54:25 -0700168 } else if (is_writable_device_exclusive_entry(entry)) {
169 entry = make_readable_device_exclusive_entry(
170 swp_offset(entry));
171 newpte = swp_entry_to_pte(entry);
172 if (pte_swp_soft_dirty(oldpte))
173 newpte = pte_swp_mksoft_dirty(newpte);
174 if (pte_swp_uffd_wp(oldpte))
175 newpte = pte_swp_mkuffd_wp(newpte);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700176 } else {
177 newpte = oldpte;
178 }
Jérôme Glisse5042db42017-09-08 16:11:43 -0700179
Peter Xuf45ec5f2020-04-06 20:06:01 -0700180 if (uffd_wp)
181 newpte = pte_swp_mkuffd_wp(newpte);
182 else if (uffd_wp_resolve)
183 newpte = pte_swp_clear_uffd_wp(newpte);
184
185 if (!pte_same(oldpte, newpte)) {
186 set_pte_at(vma->vm_mm, addr, pte, newpte);
Jérôme Glisse5042db42017-09-08 16:11:43 -0700187 pages++;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190 } while (pte++, addr += PAGE_SIZE, addr != end);
Zachary Amsden6606c3e2006-09-30 23:29:33 -0700191 arch_leave_lazy_mmu_mode();
Hugh Dickins705e87c2005-10-29 18:16:27 -0700192 pte_unmap_unlock(pte - 1, ptl);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100193
194 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Mel Gorman8b272b32020-03-05 22:28:26 -0800197/*
198 * Used when setting automatic NUMA hinting protection where it is
199 * critical that a numa hinting PMD is not confused with a bad PMD.
200 */
201static inline int pmd_none_or_clear_bad_unless_trans_huge(pmd_t *pmd)
202{
203 pmd_t pmdval = pmd_read_atomic(pmd);
204
205 /* See pmd_none_or_trans_huge_or_clear_bad for info on barrier */
206#ifdef CONFIG_TRANSPARENT_HUGEPAGE
207 barrier();
208#endif
209
210 if (pmd_none(pmdval))
211 return 1;
212 if (pmd_trans_huge(pmdval))
213 return 0;
214 if (unlikely(pmd_bad(pmdval))) {
215 pmd_clear_bad(pmd);
216 return 1;
217 }
218
219 return 0;
220}
221
Andrew Morton7d12efa2012-12-18 14:23:17 -0800222static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
223 pud_t *pud, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700224 pgprot_t newprot, unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 pmd_t *pmd;
227 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100228 unsigned long pages = 0;
Mel Gorman72403b42013-11-12 15:08:32 -0800229 unsigned long nr_huge_updates = 0;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800230 struct mmu_notifier_range range;
231
232 range.start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 pmd = pmd_offset(pud, addr);
235 do {
Mel Gorman25cbbef2013-10-07 11:29:14 +0100236 unsigned long this_pages;
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 next = pmd_addr_end(addr, end);
Mel Gorman8b272b32020-03-05 22:28:26 -0800239
240 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700241 * Automatic NUMA balancing walks the tables with mmap_lock
Mel Gorman8b272b32020-03-05 22:28:26 -0800242 * held for read. It's possible a parallel update to occur
243 * between pmd_trans_huge() and a pmd_none_or_clear_bad()
244 * check leading to a false positive and clearing.
245 * Hence, it's necessary to atomically read the PMD value
246 * for all the checks.
247 */
248 if (!is_swap_pmd(*pmd) && !pmd_devmap(*pmd) &&
249 pmd_none_or_clear_bad_unless_trans_huge(pmd))
Anshuman Khandual4991c092018-01-04 16:17:52 -0800250 goto next;
Rik van Riela5338092014-04-07 15:36:57 -0700251
252 /* invoke the mmu notifier if the pmd is populated */
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800253 if (!range.start) {
Jérôme Glisse7269f992019-05-13 17:20:53 -0700254 mmu_notifier_range_init(&range,
255 MMU_NOTIFY_PROTECTION_VMA, 0,
256 vma, vma->vm_mm, addr, end);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800257 mmu_notifier_invalidate_range_start(&range);
Rik van Riela5338092014-04-07 15:36:57 -0700258 }
259
Zi Yan84c3fc42017-09-08 16:11:01 -0700260 if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) {
Kirill A. Shutemov6b9116a2016-02-11 16:13:03 -0800261 if (next - addr != HPAGE_PMD_SIZE) {
David Rientjesfd607752016-12-12 16:42:20 -0800262 __split_huge_pmd(vma, pmd, addr, false, NULL);
Kirill A. Shutemov6b9116a2016-02-11 16:13:03 -0800263 } else {
Mel Gormanf123d742013-10-07 11:28:49 +0100264 int nr_ptes = change_huge_pmd(vma, pmd, addr,
Peter Xu58705442020-04-06 20:05:45 -0700265 newprot, cp_flags);
Mel Gormanf123d742013-10-07 11:28:49 +0100266
267 if (nr_ptes) {
Mel Gorman72403b42013-11-12 15:08:32 -0800268 if (nr_ptes == HPAGE_PMD_NR) {
269 pages += HPAGE_PMD_NR;
270 nr_huge_updates++;
271 }
Mel Gorman1ad9f622014-04-07 15:36:56 -0700272
273 /* huge pmd was handled */
Anshuman Khandual4991c092018-01-04 16:17:52 -0800274 goto next;
Mel Gormanf123d742013-10-07 11:28:49 +0100275 }
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100276 }
Rik van Riel88a9ab62014-04-07 15:36:55 -0700277 /* fall through, the trans huge pmd just split */
Johannes Weinercd7548a2011-01-13 15:47:04 -0800278 }
Mel Gorman25cbbef2013-10-07 11:29:14 +0100279 this_pages = change_pte_range(vma, pmd, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700280 cp_flags);
Mel Gorman25cbbef2013-10-07 11:29:14 +0100281 pages += this_pages;
Anshuman Khandual4991c092018-01-04 16:17:52 -0800282next:
283 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 } while (pmd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100285
Jérôme Glisseac46d4f2018-12-28 00:38:09 -0800286 if (range.start)
287 mmu_notifier_invalidate_range_end(&range);
Rik van Riela5338092014-04-07 15:36:57 -0700288
Mel Gorman72403b42013-11-12 15:08:32 -0800289 if (nr_huge_updates)
290 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100291 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Andrew Morton7d12efa2012-12-18 14:23:17 -0800294static inline unsigned long change_pud_range(struct vm_area_struct *vma,
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300295 p4d_t *p4d, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700296 pgprot_t newprot, unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 pud_t *pud;
299 unsigned long next;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100300 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300302 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 do {
304 next = pud_addr_end(addr, end);
305 if (pud_none_or_clear_bad(pud))
306 continue;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100307 pages += change_pmd_range(vma, pud, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700308 cp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } while (pud++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100310
311 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300314static inline unsigned long change_p4d_range(struct vm_area_struct *vma,
315 pgd_t *pgd, unsigned long addr, unsigned long end,
Peter Xu58705442020-04-06 20:05:45 -0700316 pgprot_t newprot, unsigned long cp_flags)
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300317{
318 p4d_t *p4d;
319 unsigned long next;
320 unsigned long pages = 0;
321
322 p4d = p4d_offset(pgd, addr);
323 do {
324 next = p4d_addr_end(addr, end);
325 if (p4d_none_or_clear_bad(p4d))
326 continue;
327 pages += change_pud_range(vma, p4d, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700328 cp_flags);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300329 } while (p4d++, addr = next, addr != end);
330
331 return pages;
332}
333
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100334static unsigned long change_protection_range(struct vm_area_struct *vma,
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700335 unsigned long addr, unsigned long end, pgprot_t newprot,
Peter Xu58705442020-04-06 20:05:45 -0700336 unsigned long cp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct mm_struct *mm = vma->vm_mm;
339 pgd_t *pgd;
340 unsigned long next;
341 unsigned long start = addr;
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100342 unsigned long pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 BUG_ON(addr >= end);
345 pgd = pgd_offset(mm, addr);
346 flush_cache_range(vma, addr, end);
Nadav Amit16af97d2017-08-10 15:23:56 -0700347 inc_tlb_flush_pending(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 do {
349 next = pgd_addr_end(addr, end);
350 if (pgd_none_or_clear_bad(pgd))
351 continue;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300352 pages += change_p4d_range(vma, pgd, addr, next, newprot,
Peter Xu58705442020-04-06 20:05:45 -0700353 cp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 } while (pgd++, addr = next, addr != end);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100355
Ingo Molnar1233d582012-11-19 03:14:24 +0100356 /* Only flush the TLB if we actually modified any entries: */
357 if (pages)
358 flush_tlb_range(vma, start, end);
Nadav Amit16af97d2017-08-10 15:23:56 -0700359 dec_tlb_flush_pending(mm);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100360
361 return pages;
362}
363
364unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
365 unsigned long end, pgprot_t newprot,
Peter Xu58705442020-04-06 20:05:45 -0700366 unsigned long cp_flags)
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100367{
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100368 unsigned long pages;
369
Peter Xu292924b2020-04-06 20:05:49 -0700370 BUG_ON((cp_flags & MM_CP_UFFD_WP_ALL) == MM_CP_UFFD_WP_ALL);
371
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100372 if (is_vm_hugetlb_page(vma))
373 pages = hugetlb_change_protection(vma, start, end, newprot);
374 else
Peter Xu58705442020-04-06 20:05:45 -0700375 pages = change_protection_range(vma, start, end, newprot,
376 cp_flags);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100377
378 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Andi Kleen42e40892018-06-13 15:48:27 -0700381static int prot_none_pte_entry(pte_t *pte, unsigned long addr,
382 unsigned long next, struct mm_walk *walk)
383{
384 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
385 0 : -EACCES;
386}
387
388static int prot_none_hugetlb_entry(pte_t *pte, unsigned long hmask,
389 unsigned long addr, unsigned long next,
390 struct mm_walk *walk)
391{
392 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
393 0 : -EACCES;
394}
395
396static int prot_none_test(unsigned long addr, unsigned long next,
397 struct mm_walk *walk)
398{
399 return 0;
400}
401
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200402static const struct mm_walk_ops prot_none_walk_ops = {
403 .pte_entry = prot_none_pte_entry,
404 .hugetlb_entry = prot_none_hugetlb_entry,
405 .test_walk = prot_none_test,
406};
Andi Kleen42e40892018-06-13 15:48:27 -0700407
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700408int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
410 unsigned long start, unsigned long end, unsigned long newflags)
411{
412 struct mm_struct *mm = vma->vm_mm;
413 unsigned long oldflags = vma->vm_flags;
414 long nrpages = (end - start) >> PAGE_SHIFT;
415 unsigned long charged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 pgoff_t pgoff;
417 int error;
Peter Zijlstrac1e60982006-09-25 23:30:59 -0700418 int dirty_accountable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 if (newflags == oldflags) {
421 *pprev = vma;
422 return 0;
423 }
424
425 /*
Andi Kleen42e40892018-06-13 15:48:27 -0700426 * Do PROT_NONE PFN permission checks here when we can still
427 * bail out without undoing a lot of state. This is a rather
428 * uncommon case, so doesn't need to be very optimized.
429 */
430 if (arch_has_pfn_modify_check() &&
431 (vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
Anshuman Khandual6cb4d9a2020-04-10 14:33:09 -0700432 (newflags & VM_ACCESS_FLAGS) == 0) {
Christoph Hellwig7b86ac32019-08-28 16:19:54 +0200433 pgprot_t new_pgprot = vm_get_page_prot(newflags);
434
435 error = walk_page_range(current->mm, start, end,
436 &prot_none_walk_ops, &new_pgprot);
Andi Kleen42e40892018-06-13 15:48:27 -0700437 if (error)
438 return error;
439 }
440
441 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * If we make a private mapping writable we increase our commit;
443 * but (without finer accounting) cannot reduce our commit if we
Mel Gorman5a6fe122009-02-10 14:02:27 +0000444 * make it unwritable again. hugetlb mapping were accounted for
445 * even if read-only so there is no need to account for them here
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
447 if (newflags & VM_WRITE) {
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800448 /* Check space limits when area turns into data. */
449 if (!may_expand_vm(mm, newflags, nrpages) &&
450 may_expand_vm(mm, oldflags, nrpages))
451 return -ENOMEM;
Mel Gorman5a6fe122009-02-10 14:02:27 +0000452 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
Andy Whitcroftcdfd4322008-07-23 21:27:28 -0700453 VM_SHARED|VM_NORESERVE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 charged = nrpages;
Al Viro191c5422012-02-13 03:58:52 +0000455 if (security_vm_enough_memory_mm(mm, charged))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return -ENOMEM;
457 newflags |= VM_ACCOUNT;
458 }
459 }
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /*
462 * First try to merge with previous and/or next vma.
463 */
464 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
465 *pprev = vma_merge(mm, *pprev, start, end, newflags,
Andrea Arcangeli19a809a2015-09-04 15:46:24 -0700466 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
Colin Cross9a100642022-01-14 14:05:59 -0800467 vma->vm_userfaultfd_ctx, vma_anon_name(vma));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (*pprev) {
469 vma = *pprev;
Andrea Arcangelie86f15e2016-10-07 17:01:28 -0700470 VM_WARN_ON((vma->vm_flags ^ newflags) & ~VM_SOFTDIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 goto success;
472 }
473
474 *pprev = vma;
475
476 if (start != vma->vm_start) {
477 error = split_vma(mm, vma, start, 1);
478 if (error)
479 goto fail;
480 }
481
482 if (end != vma->vm_end) {
483 error = split_vma(mm, vma, end, 0);
484 if (error)
485 goto fail;
486 }
487
488success:
489 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700490 * vm_flags and vm_page_prot are protected by the mmap_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 * held in write mode.
492 */
493 vma->vm_flags = newflags;
Andrea Arcangeli6d2329f2016-10-07 17:01:22 -0700494 dirty_accountable = vma_wants_writenotify(vma, vma->vm_page_prot);
Peter Feiner64e455072014-10-13 15:55:46 -0700495 vma_set_page_prot(vma);
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700496
Andrew Morton7d12efa2012-12-18 14:23:17 -0800497 change_protection(vma, start, end, vma->vm_page_prot,
Peter Xu58705442020-04-06 20:05:45 -0700498 dirty_accountable ? MM_CP_DIRTY_ACCT : 0);
Peter Zijlstra7da4d642012-11-19 03:14:23 +0100499
Kirill A. Shutemov36f88182015-06-24 16:56:10 -0700500 /*
501 * Private VM_LOCKED VMA becoming writable: trigger COW to avoid major
502 * fault on access.
503 */
504 if ((oldflags & (VM_WRITE | VM_SHARED | VM_LOCKED)) == VM_LOCKED &&
505 (newflags & VM_WRITE)) {
506 populate_vma_page_range(vma, start, end, NULL);
507 }
508
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800509 vm_stat_account(mm, oldflags, -nrpages);
510 vm_stat_account(mm, newflags, nrpages);
Pekka Enberg63bfd732010-11-08 21:29:07 +0200511 perf_event_mmap(vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return 0;
513
514fail:
515 vm_unacct_memory(charged);
516 return error;
517}
518
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700519/*
520 * pkey==-1 when doing a legacy mprotect()
521 */
522static int do_mprotect_pkey(unsigned long start, size_t len,
523 unsigned long prot, int pkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Dave Hansen62b5f7d2016-02-12 13:02:40 -0800525 unsigned long nstart, end, tmp, reqprot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct vm_area_struct *vma, *prev;
527 int error = -EINVAL;
528 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700529 const bool rier = (current->personality & READ_IMPLIES_EXEC) &&
530 (prot & PROT_READ);
531
Andrey Konovalov057d33892019-09-25 16:48:30 -0700532 start = untagged_addr(start);
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
535 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
536 return -EINVAL;
537
538 if (start & ~PAGE_MASK)
539 return -EINVAL;
540 if (!len)
541 return 0;
542 len = PAGE_ALIGN(len);
543 end = start + len;
544 if (end <= start)
545 return -ENOMEM;
Khalid Aziz9035cf92018-02-21 10:15:49 -0700546 if (!arch_validate_prot(prot, start))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -EINVAL;
548
549 reqprot = prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700551 if (mmap_write_lock_killable(current->mm))
Michal Hockodc0ef0d2016-05-23 16:25:27 -0700552 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Dave Hansene8c24d32016-07-29 09:30:15 -0700554 /*
555 * If userspace did not allocate the pkey, do not let
556 * them use it here.
557 */
558 error = -EINVAL;
559 if ((pkey != -1) && !mm_pkey_is_allocated(current->mm, pkey))
560 goto out;
561
Linus Torvalds097d5912012-03-06 18:23:36 -0800562 vma = find_vma(current->mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 error = -ENOMEM;
564 if (!vma)
565 goto out;
Liu Song6af5fa02021-11-05 13:39:03 -0700566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (unlikely(grows & PROT_GROWSDOWN)) {
568 if (vma->vm_start >= end)
569 goto out;
570 start = vma->vm_start;
571 error = -EINVAL;
572 if (!(vma->vm_flags & VM_GROWSDOWN))
573 goto out;
Andrew Morton7d12efa2012-12-18 14:23:17 -0800574 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (vma->vm_start > start)
576 goto out;
577 if (unlikely(grows & PROT_GROWSUP)) {
578 end = vma->vm_end;
579 error = -EINVAL;
580 if (!(vma->vm_flags & VM_GROWSUP))
581 goto out;
582 }
583 }
Liu Song6af5fa02021-11-05 13:39:03 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (start > vma->vm_start)
586 prev = vma;
Liu Song6af5fa02021-11-05 13:39:03 -0700587 else
588 prev = vma->vm_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 for (nstart = start ; ; ) {
Dave Hansena8502b62016-07-29 09:30:13 -0700591 unsigned long mask_off_old_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 unsigned long newflags;
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700593 int new_vma_pkey;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Andrew Morton7d12efa2012-12-18 14:23:17 -0800595 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700597 /* Does the application expect PROT_READ to imply PROT_EXEC */
598 if (rier && (vma->vm_flags & VM_MAYEXEC))
599 prot |= PROT_EXEC;
600
Dave Hansena8502b62016-07-29 09:30:13 -0700601 /*
602 * Each mprotect() call explicitly passes r/w/x permissions.
603 * If a permission is not passed to mprotect(), it must be
604 * cleared from the VMA.
605 */
606 mask_off_old_flags = VM_READ | VM_WRITE | VM_EXEC |
Khalid Aziz2c2d57b2018-02-21 10:15:50 -0700607 VM_FLAGS_CLEAR;
Dave Hansena8502b62016-07-29 09:30:13 -0700608
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700609 new_vma_pkey = arch_override_mprotect_pkey(vma, prot, pkey);
610 newflags = calc_vm_prot_bits(prot, new_vma_pkey);
Dave Hansena8502b62016-07-29 09:30:13 -0700611 newflags |= (vma->vm_flags & ~mask_off_old_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Paolo 'Blaisorblade' Giarrusso7e2cff42005-09-21 09:55:39 -0700613 /* newflags >> 4 shift VM_MAY% in place of VM_% */
Anshuman Khandual6cb4d9a2020-04-10 14:33:09 -0700614 if ((newflags & ~(newflags >> 4)) & VM_ACCESS_FLAGS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 error = -EACCES;
616 goto out;
617 }
618
Catalin Marinasc462ac22019-11-25 17:27:06 +0000619 /* Allow architectures to sanity-check the new flags */
620 if (!arch_validate_flags(newflags)) {
621 error = -EINVAL;
622 goto out;
623 }
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 error = security_file_mprotect(vma, reqprot, prot);
626 if (error)
627 goto out;
628
629 tmp = vma->vm_end;
630 if (tmp > end)
631 tmp = end;
Sean Christopherson95bb7c42020-11-13 00:01:21 +0200632
Tianjia Zhangdbf53f72021-02-24 12:04:46 -0800633 if (vma->vm_ops && vma->vm_ops->mprotect) {
Sean Christopherson95bb7c42020-11-13 00:01:21 +0200634 error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags);
Tianjia Zhangdbf53f72021-02-24 12:04:46 -0800635 if (error)
636 goto out;
637 }
Sean Christopherson95bb7c42020-11-13 00:01:21 +0200638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
640 if (error)
641 goto out;
Sean Christopherson95bb7c42020-11-13 00:01:21 +0200642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 nstart = tmp;
644
645 if (nstart < prev->vm_end)
646 nstart = prev->vm_end;
647 if (nstart >= end)
648 goto out;
649
650 vma = prev->vm_next;
651 if (!vma || vma->vm_start != nstart) {
652 error = -ENOMEM;
653 goto out;
654 }
Piotr Kwapulinskif1385562016-03-22 14:27:51 -0700655 prot = reqprot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700658 mmap_write_unlock(current->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return error;
660}
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700661
662SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
663 unsigned long, prot)
664{
665 return do_mprotect_pkey(start, len, prot, -1);
666}
667
Heiko Carstensc7142ae2016-12-12 16:43:09 -0800668#ifdef CONFIG_ARCH_HAS_PKEYS
669
Dave Hansen7d06d9c2016-07-29 09:30:12 -0700670SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len,
671 unsigned long, prot, int, pkey)
672{
673 return do_mprotect_pkey(start, len, prot, pkey);
674}
Dave Hansene8c24d32016-07-29 09:30:15 -0700675
676SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val)
677{
678 int pkey;
679 int ret;
680
681 /* No flags supported yet. */
682 if (flags)
683 return -EINVAL;
684 /* check for unsupported init values */
685 if (init_val & ~PKEY_ACCESS_MASK)
686 return -EINVAL;
687
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700688 mmap_write_lock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700689 pkey = mm_pkey_alloc(current->mm);
690
691 ret = -ENOSPC;
692 if (pkey == -1)
693 goto out;
694
695 ret = arch_set_user_pkey_access(current, pkey, init_val);
696 if (ret) {
697 mm_pkey_free(current->mm, pkey);
698 goto out;
699 }
700 ret = pkey;
701out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700702 mmap_write_unlock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700703 return ret;
704}
705
706SYSCALL_DEFINE1(pkey_free, int, pkey)
707{
708 int ret;
709
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700710 mmap_write_lock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700711 ret = mm_pkey_free(current->mm, pkey);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700712 mmap_write_unlock(current->mm);
Dave Hansene8c24d32016-07-29 09:30:15 -0700713
714 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -0700715 * We could provide warnings or errors if any VMA still
Dave Hansene8c24d32016-07-29 09:30:15 -0700716 * has the pkey set here.
717 */
718 return ret;
719}
Heiko Carstensc7142ae2016-12-12 16:43:09 -0800720
721#endif /* CONFIG_ARCH_HAS_PKEYS */