tools/vm/page_owner: ignore page_owner_sort binary
[linux-2.6-block.git] / mm / mprotect.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * mm/mprotect.c
4 *
5 * (C) Copyright 1994 Linus Torvalds
6 * (C) Copyright 2002 Christoph Hellwig
7 *
046c6884 8 * Address space accounting code <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
9 * (C) Copyright 2002 Red Hat Inc, All Rights Reserved
10 */
11
a520110e 12#include <linux/pagewalk.h>
1da177e4 13#include <linux/hugetlb.h>
1da177e4
LT
14#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>
0697212a
CL
22#include <linux/swap.h>
23#include <linux/swapops.h>
cddb8a5c 24#include <linux/mmu_notifier.h>
64cdd548 25#include <linux/migrate.h>
cdd6c482 26#include <linux/perf_event.h>
e8c24d3a 27#include <linux/pkeys.h>
64a9a34e 28#include <linux/ksm.h>
7c0f6ba6 29#include <linux/uaccess.h>
09a913a7 30#include <linux/mm_inline.h>
ca5999fd 31#include <linux/pgtable.h>
a1a3a2fc 32#include <linux/sched/sysctl.h>
fe2567eb 33#include <linux/userfaultfd_k.h>
467b171a 34#include <linux/memory-tiers.h>
1da177e4 35#include <asm/cacheflush.h>
e8c24d3a 36#include <asm/mmu_context.h>
1da177e4 37#include <asm/tlbflush.h>
4a18419f 38#include <asm/tlb.h>
1da177e4 39
36f88188
KS
40#include "internal.h"
41
64fe24a3
DH
42static inline bool can_change_pte_writable(struct vm_area_struct *vma,
43 unsigned long addr, pte_t pte)
44{
45 struct page *page;
46
47 VM_BUG_ON(!(vma->vm_flags & VM_WRITE) || pte_write(pte));
48
49 if (pte_protnone(pte) || !pte_dirty(pte))
50 return false;
51
52 /* Do we need write faults for softdirty tracking? */
76aefad6 53 if (vma_soft_dirty_enabled(vma) && !pte_soft_dirty(pte))
64fe24a3
DH
54 return false;
55
56 /* Do we need write faults for uffd-wp tracking? */
57 if (userfaultfd_pte_wp(vma, pte))
58 return false;
59
60 if (!(vma->vm_flags & VM_SHARED)) {
61 /*
62 * We can only special-case on exclusive anonymous pages,
63 * because we know that our write-fault handler similarly would
64 * map them writable without any additional checks while holding
65 * the PT lock.
66 */
67 page = vm_normal_page(vma, addr, pte);
68 if (!page || !PageAnon(page) || !PageAnonExclusive(page))
69 return false;
70 }
71
72 return true;
73}
74
4a18419f
NA
75static unsigned long change_pte_range(struct mmu_gather *tlb,
76 struct vm_area_struct *vma, pmd_t *pmd, unsigned long addr,
77 unsigned long end, pgprot_t newprot, unsigned long cp_flags)
1da177e4 78{
0697212a 79 pte_t *pte, oldpte;
705e87c0 80 spinlock_t *ptl;
7da4d641 81 unsigned long pages = 0;
3e321587 82 int target_node = NUMA_NO_NODE;
58705444 83 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
292924b2
PX
84 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
85 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
1da177e4 86
4a18419f
NA
87 tlb_change_page_size(tlb, PAGE_SIZE);
88
175ad4f1 89 /*
c1e8d7c6 90 * Can be called with only the mmap_lock for reading by
175ad4f1
AA
91 * prot_numa so we must check the pmd isn't constantly
92 * changing from under us from pmd_none to pmd_trans_huge
93 * and/or the other way around.
94 */
95 if (pmd_trans_unstable(pmd))
96 return 0;
97
98 /*
99 * The pmd points to a regular pte so the pmd can't change
c1e8d7c6 100 * from under us even if the mmap_lock is only hold for
175ad4f1
AA
101 * reading.
102 */
103 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
1ad9f620 104
3e321587
AK
105 /* Get target node for single threaded private VMAs */
106 if (prot_numa && !(vma->vm_flags & VM_SHARED) &&
107 atomic_read(&vma->vm_mm->mm_users) == 1)
108 target_node = numa_node_id();
109
3ea27719 110 flush_tlb_batched_pending(vma->vm_mm);
6606c3e0 111 arch_enter_lazy_mmu_mode();
1da177e4 112 do {
0697212a
CL
113 oldpte = *pte;
114 if (pte_present(oldpte)) {
1da177e4 115 pte_t ptent;
b191f9b1 116 bool preserve_write = prot_numa && pte_write(oldpte);
1da177e4 117
e944fd67
MG
118 /*
119 * Avoid trapping faults against the zero or KSM
120 * pages. See similar comment in change_huge_pmd.
121 */
122 if (prot_numa) {
123 struct page *page;
a1a3a2fc 124 int nid;
33024536 125 bool toptier;
e944fd67 126
a818f536
HY
127 /* Avoid TLB flush if possible */
128 if (pte_protnone(oldpte))
129 continue;
130
e944fd67 131 page = vm_normal_page(vma, addr, oldpte);
3218f871 132 if (!page || is_zone_device_page(page) || PageKsm(page))
e944fd67 133 continue;
10c1045f 134
859d4adc
HW
135 /* Also skip shared copy-on-write pages */
136 if (is_cow_mapping(vma->vm_flags) &&
80d47f5d 137 page_count(page) != 1)
859d4adc
HW
138 continue;
139
09a913a7
MG
140 /*
141 * While migration can move some dirty pages,
142 * it cannot move them all from MIGRATE_ASYNC
143 * context.
144 */
9de4f22a 145 if (page_is_file_lru(page) && PageDirty(page))
09a913a7
MG
146 continue;
147
3e321587
AK
148 /*
149 * Don't mess with PTEs if page is already on the node
150 * a single-threaded process is running on.
151 */
a1a3a2fc
HY
152 nid = page_to_nid(page);
153 if (target_node == nid)
154 continue;
33024536 155 toptier = node_is_toptier(nid);
a1a3a2fc
HY
156
157 /*
158 * Skip scanning top tier node if normal numa
159 * balancing is disabled
160 */
161 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_NORMAL) &&
33024536 162 toptier)
3e321587 163 continue;
33024536
HY
164 if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING &&
165 !toptier)
166 xchg_page_access_time(page,
167 jiffies_to_msecs(jiffies));
e944fd67
MG
168 }
169
04a86453
AK
170 oldpte = ptep_modify_prot_start(vma, addr, pte);
171 ptent = pte_modify(oldpte, newprot);
b191f9b1 172 if (preserve_write)
288bc549 173 ptent = pte_mk_savedwrite(ptent);
4b10e7d5 174
292924b2
PX
175 if (uffd_wp) {
176 ptent = pte_wrprotect(ptent);
177 ptent = pte_mkuffd_wp(ptent);
178 } else if (uffd_wp_resolve) {
292924b2
PX
179 ptent = pte_clear_uffd_wp(ptent);
180 }
181
64fe24a3
DH
182 /*
183 * In some writable, shared mappings, we might want
184 * to catch actual write access -- see
185 * vma_wants_writenotify().
186 *
187 * In all writable, private mappings, we have to
188 * properly handle COW.
189 *
190 * In both cases, we can sometimes still change PTEs
191 * writable and avoid the write-fault handler, for
192 * example, if a PTE is already dirty and no other
193 * COW or special handling is required.
194 */
195 if ((cp_flags & MM_CP_TRY_CHANGE_WRITABLE) &&
196 !pte_write(ptent) &&
197 can_change_pte_writable(vma, addr, ptent))
8a0516ed 198 ptent = pte_mkwrite(ptent);
64fe24a3 199
04a86453 200 ptep_modify_prot_commit(vma, addr, pte, oldpte, ptent);
c9fe6656
NA
201 if (pte_needs_flush(oldpte, ptent))
202 tlb_flush_pte_range(tlb, addr, PAGE_SIZE);
8a0516ed 203 pages++;
f45ec5ff 204 } else if (is_swap_pte(oldpte)) {
0697212a 205 swp_entry_t entry = pte_to_swp_entry(oldpte);
f45ec5ff 206 pte_t newpte;
0697212a 207
4dd845b5 208 if (is_writable_migration_entry(entry)) {
3d2f78f0
PX
209 struct page *page = pfn_swap_entry_to_page(entry);
210
0697212a
CL
211 /*
212 * A protection check is difficult so
213 * just be safe and disable write
214 */
6c287605
DH
215 if (PageAnon(page))
216 entry = make_readable_exclusive_migration_entry(
217 swp_offset(entry));
218 else
219 entry = make_readable_migration_entry(swp_offset(entry));
c3d16e16
CG
220 newpte = swp_entry_to_pte(entry);
221 if (pte_swp_soft_dirty(oldpte))
222 newpte = pte_swp_mksoft_dirty(newpte);
f45ec5ff
PX
223 if (pte_swp_uffd_wp(oldpte))
224 newpte = pte_swp_mkuffd_wp(newpte);
4dd845b5 225 } else if (is_writable_device_private_entry(entry)) {
5042db43
JG
226 /*
227 * We do not preserve soft-dirtiness. See
228 * copy_one_pte() for explanation.
229 */
4dd845b5
AP
230 entry = make_readable_device_private_entry(
231 swp_offset(entry));
5042db43 232 newpte = swp_entry_to_pte(entry);
f45ec5ff
PX
233 if (pte_swp_uffd_wp(oldpte))
234 newpte = pte_swp_mkuffd_wp(newpte);
b756a3b5
AP
235 } else if (is_writable_device_exclusive_entry(entry)) {
236 entry = make_readable_device_exclusive_entry(
237 swp_offset(entry));
238 newpte = swp_entry_to_pte(entry);
239 if (pte_swp_soft_dirty(oldpte))
240 newpte = pte_swp_mksoft_dirty(newpte);
241 if (pte_swp_uffd_wp(oldpte))
242 newpte = pte_swp_mkuffd_wp(newpte);
fe2567eb
PX
243 } else if (pte_marker_entry_uffd_wp(entry)) {
244 /*
245 * If this is uffd-wp pte marker and we'd like
246 * to unprotect it, drop it; the next page
247 * fault will trigger without uffd trapping.
248 */
249 if (uffd_wp_resolve) {
250 pte_clear(vma->vm_mm, addr, pte);
251 pages++;
252 }
5c041f5d 253 continue;
f45ec5ff
PX
254 } else {
255 newpte = oldpte;
256 }
5042db43 257
f45ec5ff
PX
258 if (uffd_wp)
259 newpte = pte_swp_mkuffd_wp(newpte);
260 else if (uffd_wp_resolve)
261 newpte = pte_swp_clear_uffd_wp(newpte);
262
263 if (!pte_same(oldpte, newpte)) {
264 set_pte_at(vma->vm_mm, addr, pte, newpte);
5042db43
JG
265 pages++;
266 }
fe2567eb
PX
267 } else {
268 /* It must be an none page, or what else?.. */
269 WARN_ON_ONCE(!pte_none(oldpte));
270 if (unlikely(uffd_wp && !vma_is_anonymous(vma))) {
271 /*
272 * For file-backed mem, we need to be able to
273 * wr-protect a none pte, because even if the
274 * pte is none, the page/swap cache could
275 * exist. Doing that by install a marker.
276 */
277 set_pte_at(vma->vm_mm, addr, pte,
278 make_pte_marker(PTE_MARKER_UFFD_WP));
279 pages++;
280 }
1da177e4
LT
281 }
282 } while (pte++, addr += PAGE_SIZE, addr != end);
6606c3e0 283 arch_leave_lazy_mmu_mode();
705e87c0 284 pte_unmap_unlock(pte - 1, ptl);
7da4d641
PZ
285
286 return pages;
1da177e4
LT
287}
288
8b272b3c
MG
289/*
290 * Used when setting automatic NUMA hinting protection where it is
291 * critical that a numa hinting PMD is not confused with a bad PMD.
292 */
293static inline int pmd_none_or_clear_bad_unless_trans_huge(pmd_t *pmd)
294{
295 pmd_t pmdval = pmd_read_atomic(pmd);
296
297 /* See pmd_none_or_trans_huge_or_clear_bad for info on barrier */
298#ifdef CONFIG_TRANSPARENT_HUGEPAGE
299 barrier();
300#endif
301
302 if (pmd_none(pmdval))
303 return 1;
304 if (pmd_trans_huge(pmdval))
305 return 0;
306 if (unlikely(pmd_bad(pmdval))) {
307 pmd_clear_bad(pmd);
308 return 1;
309 }
310
311 return 0;
312}
313
fe2567eb
PX
314/* Return true if we're uffd wr-protecting file-backed memory, or false */
315static inline bool
316uffd_wp_protect_file(struct vm_area_struct *vma, unsigned long cp_flags)
317{
318 return (cp_flags & MM_CP_UFFD_WP) && !vma_is_anonymous(vma);
319}
320
321/*
322 * If wr-protecting the range for file-backed, populate pgtable for the case
323 * when pgtable is empty but page cache exists. When {pte|pmd|...}_alloc()
324 * failed it means no memory, we don't have a better option but stop.
325 */
326#define change_pmd_prepare(vma, pmd, cp_flags) \
327 do { \
328 if (unlikely(uffd_wp_protect_file(vma, cp_flags))) { \
329 if (WARN_ON_ONCE(pte_alloc(vma->vm_mm, pmd))) \
330 break; \
331 } \
332 } while (0)
333/*
334 * This is the general pud/p4d/pgd version of change_pmd_prepare(). We need to
335 * have separate change_pmd_prepare() because pte_alloc() returns 0 on success,
336 * while {pmd|pud|p4d}_alloc() returns the valid pointer on success.
337 */
338#define change_prepare(vma, high, low, addr, cp_flags) \
339 do { \
340 if (unlikely(uffd_wp_protect_file(vma, cp_flags))) { \
341 low##_t *p = low##_alloc(vma->vm_mm, high, addr); \
342 if (WARN_ON_ONCE(p == NULL)) \
343 break; \
344 } \
345 } while (0)
346
4a18419f
NA
347static inline unsigned long change_pmd_range(struct mmu_gather *tlb,
348 struct vm_area_struct *vma, pud_t *pud, unsigned long addr,
349 unsigned long end, pgprot_t newprot, unsigned long cp_flags)
1da177e4
LT
350{
351 pmd_t *pmd;
352 unsigned long next;
7da4d641 353 unsigned long pages = 0;
72403b4a 354 unsigned long nr_huge_updates = 0;
ac46d4f3
JG
355 struct mmu_notifier_range range;
356
357 range.start = 0;
1da177e4
LT
358
359 pmd = pmd_offset(pud, addr);
360 do {
25cbbef1
MG
361 unsigned long this_pages;
362
1da177e4 363 next = pmd_addr_end(addr, end);
8b272b3c 364
fe2567eb 365 change_pmd_prepare(vma, pmd, cp_flags);
8b272b3c 366 /*
c1e8d7c6 367 * Automatic NUMA balancing walks the tables with mmap_lock
8b272b3c
MG
368 * held for read. It's possible a parallel update to occur
369 * between pmd_trans_huge() and a pmd_none_or_clear_bad()
370 * check leading to a false positive and clearing.
371 * Hence, it's necessary to atomically read the PMD value
372 * for all the checks.
373 */
374 if (!is_swap_pmd(*pmd) && !pmd_devmap(*pmd) &&
375 pmd_none_or_clear_bad_unless_trans_huge(pmd))
4991c09c 376 goto next;
a5338093
RR
377
378 /* invoke the mmu notifier if the pmd is populated */
ac46d4f3 379 if (!range.start) {
7269f999
JG
380 mmu_notifier_range_init(&range,
381 MMU_NOTIFY_PROTECTION_VMA, 0,
382 vma, vma->vm_mm, addr, end);
ac46d4f3 383 mmu_notifier_invalidate_range_start(&range);
a5338093
RR
384 }
385
84c3fc4e 386 if (is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) || pmd_devmap(*pmd)) {
019c2d8b
PX
387 if ((next - addr != HPAGE_PMD_SIZE) ||
388 uffd_wp_protect_file(vma, cp_flags)) {
fd60775a 389 __split_huge_pmd(vma, pmd, addr, false, NULL);
019c2d8b
PX
390 /*
391 * For file-backed, the pmd could have been
392 * cleared; make sure pmd populated if
393 * necessary, then fall-through to pte level.
394 */
395 change_pmd_prepare(vma, pmd, cp_flags);
6b9116a6 396 } else {
4a18419f
NA
397 /*
398 * change_huge_pmd() does not defer TLB flushes,
399 * so no need to propagate the tlb argument.
400 */
401 int nr_ptes = change_huge_pmd(tlb, vma, pmd,
402 addr, newprot, cp_flags);
f123d74a
MG
403
404 if (nr_ptes) {
72403b4a
MG
405 if (nr_ptes == HPAGE_PMD_NR) {
406 pages += HPAGE_PMD_NR;
407 nr_huge_updates++;
408 }
1ad9f620
MG
409
410 /* huge pmd was handled */
4991c09c 411 goto next;
f123d74a 412 }
7da4d641 413 }
88a9ab6e 414 /* fall through, the trans huge pmd just split */
cd7548ab 415 }
4a18419f
NA
416 this_pages = change_pte_range(tlb, vma, pmd, addr, next,
417 newprot, cp_flags);
25cbbef1 418 pages += this_pages;
4991c09c
AK
419next:
420 cond_resched();
1da177e4 421 } while (pmd++, addr = next, addr != end);
7da4d641 422
ac46d4f3
JG
423 if (range.start)
424 mmu_notifier_invalidate_range_end(&range);
a5338093 425
72403b4a
MG
426 if (nr_huge_updates)
427 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
7da4d641 428 return pages;
1da177e4
LT
429}
430
4a18419f
NA
431static inline unsigned long change_pud_range(struct mmu_gather *tlb,
432 struct vm_area_struct *vma, p4d_t *p4d, unsigned long addr,
433 unsigned long end, pgprot_t newprot, unsigned long cp_flags)
1da177e4
LT
434{
435 pud_t *pud;
436 unsigned long next;
7da4d641 437 unsigned long pages = 0;
1da177e4 438
c2febafc 439 pud = pud_offset(p4d, addr);
1da177e4
LT
440 do {
441 next = pud_addr_end(addr, end);
fe2567eb 442 change_prepare(vma, pud, pmd, addr, cp_flags);
1da177e4
LT
443 if (pud_none_or_clear_bad(pud))
444 continue;
4a18419f 445 pages += change_pmd_range(tlb, vma, pud, addr, next, newprot,
58705444 446 cp_flags);
1da177e4 447 } while (pud++, addr = next, addr != end);
7da4d641
PZ
448
449 return pages;
1da177e4
LT
450}
451
4a18419f
NA
452static inline unsigned long change_p4d_range(struct mmu_gather *tlb,
453 struct vm_area_struct *vma, pgd_t *pgd, unsigned long addr,
454 unsigned long end, pgprot_t newprot, unsigned long cp_flags)
c2febafc
KS
455{
456 p4d_t *p4d;
457 unsigned long next;
458 unsigned long pages = 0;
459
460 p4d = p4d_offset(pgd, addr);
461 do {
462 next = p4d_addr_end(addr, end);
fe2567eb 463 change_prepare(vma, p4d, pud, addr, cp_flags);
c2febafc
KS
464 if (p4d_none_or_clear_bad(p4d))
465 continue;
4a18419f 466 pages += change_pud_range(tlb, vma, p4d, addr, next, newprot,
58705444 467 cp_flags);
c2febafc
KS
468 } while (p4d++, addr = next, addr != end);
469
470 return pages;
471}
472
4a18419f
NA
473static unsigned long change_protection_range(struct mmu_gather *tlb,
474 struct vm_area_struct *vma, unsigned long addr,
475 unsigned long end, pgprot_t newprot, unsigned long cp_flags)
1da177e4
LT
476{
477 struct mm_struct *mm = vma->vm_mm;
478 pgd_t *pgd;
479 unsigned long next;
7da4d641 480 unsigned long pages = 0;
1da177e4
LT
481
482 BUG_ON(addr >= end);
483 pgd = pgd_offset(mm, addr);
4a18419f 484 tlb_start_vma(tlb, vma);
1da177e4
LT
485 do {
486 next = pgd_addr_end(addr, end);
fe2567eb 487 change_prepare(vma, pgd, p4d, addr, cp_flags);
1da177e4
LT
488 if (pgd_none_or_clear_bad(pgd))
489 continue;
4a18419f 490 pages += change_p4d_range(tlb, vma, pgd, addr, next, newprot,
58705444 491 cp_flags);
1da177e4 492 } while (pgd++, addr = next, addr != end);
7da4d641 493
4a18419f 494 tlb_end_vma(tlb, vma);
7da4d641
PZ
495
496 return pages;
497}
498
4a18419f
NA
499unsigned long change_protection(struct mmu_gather *tlb,
500 struct vm_area_struct *vma, unsigned long start,
7da4d641 501 unsigned long end, pgprot_t newprot,
58705444 502 unsigned long cp_flags)
7da4d641 503{
7da4d641
PZ
504 unsigned long pages;
505
292924b2
PX
506 BUG_ON((cp_flags & MM_CP_UFFD_WP_ALL) == MM_CP_UFFD_WP_ALL);
507
7da4d641 508 if (is_vm_hugetlb_page(vma))
5a90d5a1
PX
509 pages = hugetlb_change_protection(vma, start, end, newprot,
510 cp_flags);
7da4d641 511 else
4a18419f 512 pages = change_protection_range(tlb, vma, start, end, newprot,
58705444 513 cp_flags);
7da4d641
PZ
514
515 return pages;
1da177e4
LT
516}
517
42e4089c
AK
518static int prot_none_pte_entry(pte_t *pte, unsigned long addr,
519 unsigned long next, struct mm_walk *walk)
520{
521 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
522 0 : -EACCES;
523}
524
525static int prot_none_hugetlb_entry(pte_t *pte, unsigned long hmask,
526 unsigned long addr, unsigned long next,
527 struct mm_walk *walk)
528{
529 return pfn_modify_allowed(pte_pfn(*pte), *(pgprot_t *)(walk->private)) ?
530 0 : -EACCES;
531}
532
533static int prot_none_test(unsigned long addr, unsigned long next,
534 struct mm_walk *walk)
535{
536 return 0;
537}
538
7b86ac33
CH
539static const struct mm_walk_ops prot_none_walk_ops = {
540 .pte_entry = prot_none_pte_entry,
541 .hugetlb_entry = prot_none_hugetlb_entry,
542 .test_walk = prot_none_test,
543};
42e4089c 544
b6a2fea3 545int
4a18419f
NA
546mprotect_fixup(struct mmu_gather *tlb, struct vm_area_struct *vma,
547 struct vm_area_struct **pprev, unsigned long start,
548 unsigned long end, unsigned long newflags)
1da177e4
LT
549{
550 struct mm_struct *mm = vma->vm_mm;
551 unsigned long oldflags = vma->vm_flags;
552 long nrpages = (end - start) >> PAGE_SHIFT;
553 unsigned long charged = 0;
64fe24a3 554 bool try_change_writable;
1da177e4
LT
555 pgoff_t pgoff;
556 int error;
557
558 if (newflags == oldflags) {
559 *pprev = vma;
560 return 0;
561 }
562
42e4089c
AK
563 /*
564 * Do PROT_NONE PFN permission checks here when we can still
565 * bail out without undoing a lot of state. This is a rather
566 * uncommon case, so doesn't need to be very optimized.
567 */
568 if (arch_has_pfn_modify_check() &&
569 (vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
6cb4d9a2 570 (newflags & VM_ACCESS_FLAGS) == 0) {
7b86ac33
CH
571 pgprot_t new_pgprot = vm_get_page_prot(newflags);
572
573 error = walk_page_range(current->mm, start, end,
574 &prot_none_walk_ops, &new_pgprot);
42e4089c
AK
575 if (error)
576 return error;
577 }
578
1da177e4
LT
579 /*
580 * If we make a private mapping writable we increase our commit;
581 * but (without finer accounting) cannot reduce our commit if we
5a6fe125
MG
582 * make it unwritable again. hugetlb mapping were accounted for
583 * even if read-only so there is no need to account for them here
1da177e4
LT
584 */
585 if (newflags & VM_WRITE) {
84638335
KK
586 /* Check space limits when area turns into data. */
587 if (!may_expand_vm(mm, newflags, nrpages) &&
588 may_expand_vm(mm, oldflags, nrpages))
589 return -ENOMEM;
5a6fe125 590 if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
cdfd4325 591 VM_SHARED|VM_NORESERVE))) {
1da177e4 592 charged = nrpages;
191c5424 593 if (security_vm_enough_memory_mm(mm, charged))
1da177e4
LT
594 return -ENOMEM;
595 newflags |= VM_ACCOUNT;
596 }
597 }
598
1da177e4
LT
599 /*
600 * First try to merge with previous and/or next vma.
601 */
602 pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
603 *pprev = vma_merge(mm, *pprev, start, end, newflags,
19a809af 604 vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
5c26f6ac 605 vma->vm_userfaultfd_ctx, anon_vma_name(vma));
1da177e4
LT
606 if (*pprev) {
607 vma = *pprev;
e86f15ee 608 VM_WARN_ON((vma->vm_flags ^ newflags) & ~VM_SOFTDIRTY);
1da177e4
LT
609 goto success;
610 }
611
612 *pprev = vma;
613
614 if (start != vma->vm_start) {
615 error = split_vma(mm, vma, start, 1);
616 if (error)
617 goto fail;
618 }
619
620 if (end != vma->vm_end) {
621 error = split_vma(mm, vma, end, 0);
622 if (error)
623 goto fail;
624 }
625
626success:
627 /*
c1e8d7c6 628 * vm_flags and vm_page_prot are protected by the mmap_lock
1da177e4
LT
629 * held in write mode.
630 */
631 vma->vm_flags = newflags;
64fe24a3
DH
632 /*
633 * We want to check manually if we can change individual PTEs writable
634 * if we can't do that automatically for all PTEs in a mapping. For
635 * private mappings, that's always the case when we have write
636 * permissions as we properly have to handle COW.
637 */
638 if (vma->vm_flags & VM_SHARED)
639 try_change_writable = vma_wants_writenotify(vma, vma->vm_page_prot);
640 else
641 try_change_writable = !!(vma->vm_flags & VM_WRITE);
64e45507 642 vma_set_page_prot(vma);
d08b3851 643
4a18419f 644 change_protection(tlb, vma, start, end, vma->vm_page_prot,
64fe24a3 645 try_change_writable ? MM_CP_TRY_CHANGE_WRITABLE : 0);
7da4d641 646
36f88188
KS
647 /*
648 * Private VM_LOCKED VMA becoming writable: trigger COW to avoid major
649 * fault on access.
650 */
651 if ((oldflags & (VM_WRITE | VM_SHARED | VM_LOCKED)) == VM_LOCKED &&
652 (newflags & VM_WRITE)) {
653 populate_vma_page_range(vma, start, end, NULL);
654 }
655
84638335
KK
656 vm_stat_account(mm, oldflags, -nrpages);
657 vm_stat_account(mm, newflags, nrpages);
63bfd738 658 perf_event_mmap(vma);
1da177e4
LT
659 return 0;
660
661fail:
662 vm_unacct_memory(charged);
663 return error;
664}
665
7d06d9c9
DH
666/*
667 * pkey==-1 when doing a legacy mprotect()
668 */
669static int do_mprotect_pkey(unsigned long start, size_t len,
670 unsigned long prot, int pkey)
1da177e4 671{
62b5f7d0 672 unsigned long nstart, end, tmp, reqprot;
1da177e4 673 struct vm_area_struct *vma, *prev;
48725bbc 674 int error;
1da177e4 675 const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
f138556d
PK
676 const bool rier = (current->personality & READ_IMPLIES_EXEC) &&
677 (prot & PROT_READ);
4a18419f 678 struct mmu_gather tlb;
70821e0b 679 MA_STATE(mas, &current->mm->mm_mt, 0, 0);
f138556d 680
057d3389
AK
681 start = untagged_addr(start);
682
1da177e4
LT
683 prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
684 if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
685 return -EINVAL;
686
687 if (start & ~PAGE_MASK)
688 return -EINVAL;
689 if (!len)
690 return 0;
691 len = PAGE_ALIGN(len);
692 end = start + len;
693 if (end <= start)
694 return -ENOMEM;
9035cf9a 695 if (!arch_validate_prot(prot, start))
1da177e4
LT
696 return -EINVAL;
697
698 reqprot = prot;
1da177e4 699
d8ed45c5 700 if (mmap_write_lock_killable(current->mm))
dc0ef0df 701 return -EINTR;
1da177e4 702
e8c24d3a
DH
703 /*
704 * If userspace did not allocate the pkey, do not let
705 * them use it here.
706 */
707 error = -EINVAL;
708 if ((pkey != -1) && !mm_pkey_is_allocated(current->mm, pkey))
709 goto out;
710
70821e0b
LH
711 mas_set(&mas, start);
712 vma = mas_find(&mas, ULONG_MAX);
1da177e4
LT
713 error = -ENOMEM;
714 if (!vma)
715 goto out;
6af5fa0d 716
1da177e4
LT
717 if (unlikely(grows & PROT_GROWSDOWN)) {
718 if (vma->vm_start >= end)
719 goto out;
720 start = vma->vm_start;
721 error = -EINVAL;
722 if (!(vma->vm_flags & VM_GROWSDOWN))
723 goto out;
7d12efae 724 } else {
1da177e4
LT
725 if (vma->vm_start > start)
726 goto out;
727 if (unlikely(grows & PROT_GROWSUP)) {
728 end = vma->vm_end;
729 error = -EINVAL;
730 if (!(vma->vm_flags & VM_GROWSUP))
731 goto out;
732 }
733 }
6af5fa0d 734
1da177e4
LT
735 if (start > vma->vm_start)
736 prev = vma;
6af5fa0d 737 else
70821e0b 738 prev = mas_prev(&mas, 0);
1da177e4 739
4a18419f 740 tlb_gather_mmu(&tlb, current->mm);
1da177e4 741 for (nstart = start ; ; ) {
a8502b67 742 unsigned long mask_off_old_flags;
1da177e4 743 unsigned long newflags;
7d06d9c9 744 int new_vma_pkey;
1da177e4 745
7d12efae 746 /* Here we know that vma->vm_start <= nstart < vma->vm_end. */
1da177e4 747
f138556d
PK
748 /* Does the application expect PROT_READ to imply PROT_EXEC */
749 if (rier && (vma->vm_flags & VM_MAYEXEC))
750 prot |= PROT_EXEC;
751
a8502b67
DH
752 /*
753 * Each mprotect() call explicitly passes r/w/x permissions.
754 * If a permission is not passed to mprotect(), it must be
755 * cleared from the VMA.
756 */
e39ee675 757 mask_off_old_flags = VM_ACCESS_FLAGS | VM_FLAGS_CLEAR;
a8502b67 758
7d06d9c9
DH
759 new_vma_pkey = arch_override_mprotect_pkey(vma, prot, pkey);
760 newflags = calc_vm_prot_bits(prot, new_vma_pkey);
a8502b67 761 newflags |= (vma->vm_flags & ~mask_off_old_flags);
1da177e4 762
7e2cff42 763 /* newflags >> 4 shift VM_MAY% in place of VM_% */
6cb4d9a2 764 if ((newflags & ~(newflags >> 4)) & VM_ACCESS_FLAGS) {
1da177e4 765 error = -EACCES;
4a18419f 766 break;
1da177e4
LT
767 }
768
c462ac28
CM
769 /* Allow architectures to sanity-check the new flags */
770 if (!arch_validate_flags(newflags)) {
771 error = -EINVAL;
4a18419f 772 break;
c462ac28
CM
773 }
774
1da177e4
LT
775 error = security_file_mprotect(vma, reqprot, prot);
776 if (error)
4a18419f 777 break;
1da177e4
LT
778
779 tmp = vma->vm_end;
780 if (tmp > end)
781 tmp = end;
95bb7c42 782
dbf53f75 783 if (vma->vm_ops && vma->vm_ops->mprotect) {
95bb7c42 784 error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags);
dbf53f75 785 if (error)
4a18419f 786 break;
dbf53f75 787 }
95bb7c42 788
4a18419f 789 error = mprotect_fixup(&tlb, vma, &prev, nstart, tmp, newflags);
1da177e4 790 if (error)
4a18419f 791 break;
95bb7c42 792
1da177e4
LT
793 nstart = tmp;
794
795 if (nstart < prev->vm_end)
796 nstart = prev->vm_end;
797 if (nstart >= end)
4a18419f 798 break;
1da177e4 799
70821e0b 800 vma = find_vma(current->mm, prev->vm_end);
1da177e4
LT
801 if (!vma || vma->vm_start != nstart) {
802 error = -ENOMEM;
4a18419f 803 break;
1da177e4 804 }
f138556d 805 prot = reqprot;
1da177e4 806 }
4a18419f 807 tlb_finish_mmu(&tlb);
1da177e4 808out:
d8ed45c5 809 mmap_write_unlock(current->mm);
1da177e4
LT
810 return error;
811}
7d06d9c9
DH
812
813SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
814 unsigned long, prot)
815{
816 return do_mprotect_pkey(start, len, prot, -1);
817}
818
c7142aea
HC
819#ifdef CONFIG_ARCH_HAS_PKEYS
820
7d06d9c9
DH
821SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len,
822 unsigned long, prot, int, pkey)
823{
824 return do_mprotect_pkey(start, len, prot, pkey);
825}
e8c24d3a
DH
826
827SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val)
828{
829 int pkey;
830 int ret;
831
832 /* No flags supported yet. */
833 if (flags)
834 return -EINVAL;
835 /* check for unsupported init values */
836 if (init_val & ~PKEY_ACCESS_MASK)
837 return -EINVAL;
838
d8ed45c5 839 mmap_write_lock(current->mm);
e8c24d3a
DH
840 pkey = mm_pkey_alloc(current->mm);
841
842 ret = -ENOSPC;
843 if (pkey == -1)
844 goto out;
845
846 ret = arch_set_user_pkey_access(current, pkey, init_val);
847 if (ret) {
848 mm_pkey_free(current->mm, pkey);
849 goto out;
850 }
851 ret = pkey;
852out:
d8ed45c5 853 mmap_write_unlock(current->mm);
e8c24d3a
DH
854 return ret;
855}
856
857SYSCALL_DEFINE1(pkey_free, int, pkey)
858{
859 int ret;
860
d8ed45c5 861 mmap_write_lock(current->mm);
e8c24d3a 862 ret = mm_pkey_free(current->mm, pkey);
d8ed45c5 863 mmap_write_unlock(current->mm);
e8c24d3a
DH
864
865 /*
f0953a1b 866 * We could provide warnings or errors if any VMA still
e8c24d3a
DH
867 * has the pkey set here.
868 */
869 return ret;
870}
c7142aea
HC
871
872#endif /* CONFIG_ARCH_HAS_PKEYS */