• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  mm/mprotect.c
4  *
5  *  (C) Copyright 1994 Linus Torvalds
6  *  (C) Copyright 2002 Christoph Hellwig
7  *
8  *  Address space accounting code	<alan@lxorguk.ukuu.org.uk>
9  *  (C) Copyright 2002 Red Hat Inc, All Rights Reserved
10  */
11 
12 #include <linux/pagewalk.h>
13 #include <linux/hugetlb.h>
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/page_size_compat.h>
21 #include <linux/pgsize_migration.h>
22 #include <linux/personality.h>
23 #include <linux/syscalls.h>
24 #include <linux/swap.h>
25 #include <linux/swapops.h>
26 #include <linux/mmu_notifier.h>
27 #include <linux/migrate.h>
28 #include <linux/perf_event.h>
29 #include <linux/pkeys.h>
30 #include <linux/ksm.h>
31 #include <linux/uaccess.h>
32 #include <linux/mm_inline.h>
33 #include <linux/pgtable.h>
34 #include <linux/sched/sysctl.h>
35 #include <linux/userfaultfd_k.h>
36 #include <linux/memory-tiers.h>
37 #include <uapi/linux/mman.h>
38 #include <asm/cacheflush.h>
39 #include <asm/mmu_context.h>
40 #include <asm/tlbflush.h>
41 #include <asm/tlb.h>
42 
43 #include "internal.h"
44 
can_change_pte_writable(struct vm_area_struct * vma,unsigned long addr,pte_t pte)45 bool can_change_pte_writable(struct vm_area_struct *vma, unsigned long addr,
46 			     pte_t pte)
47 {
48 	struct page *page;
49 
50 	if (WARN_ON_ONCE(!(vma->vm_flags & VM_WRITE)))
51 		return false;
52 
53 	/* Don't touch entries that are not even readable. */
54 	if (pte_protnone(pte))
55 		return false;
56 
57 	/* Do we need write faults for softdirty tracking? */
58 	if (pte_needs_soft_dirty_wp(vma, pte))
59 		return false;
60 
61 	/* Do we need write faults for uffd-wp tracking? */
62 	if (userfaultfd_pte_wp(vma, pte))
63 		return false;
64 
65 	if (!(vma->vm_flags & VM_SHARED)) {
66 		/*
67 		 * Writable MAP_PRIVATE mapping: We can only special-case on
68 		 * exclusive anonymous pages, because we know that our
69 		 * write-fault handler similarly would map them writable without
70 		 * any additional checks while holding the PT lock.
71 		 */
72 		page = vm_normal_page(vma, addr, pte);
73 		return page && PageAnon(page) && PageAnonExclusive(page);
74 	}
75 
76 	/*
77 	 * Writable MAP_SHARED mapping: "clean" might indicate that the FS still
78 	 * needs a real write-fault for writenotify
79 	 * (see vma_wants_writenotify()). If "dirty", the assumption is that the
80 	 * FS was already notified and we can simply mark the PTE writable
81 	 * just like the write-fault handler would do.
82 	 */
83 	return pte_dirty(pte);
84 }
85 
change_pte_range(struct mmu_gather * tlb,struct vm_area_struct * vma,pmd_t * pmd,unsigned long addr,unsigned long end,pgprot_t newprot,unsigned long cp_flags)86 static long change_pte_range(struct mmu_gather *tlb,
87 		struct vm_area_struct *vma, pmd_t *pmd, unsigned long addr,
88 		unsigned long end, pgprot_t newprot, unsigned long cp_flags)
89 {
90 	pte_t *pte, oldpte;
91 	spinlock_t *ptl;
92 	long pages = 0;
93 	int target_node = NUMA_NO_NODE;
94 	bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
95 	bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
96 	bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
97 
98 	tlb_change_page_size(tlb, PAGE_SIZE);
99 	pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
100 	if (!pte)
101 		return -EAGAIN;
102 
103 	/* Get target node for single threaded private VMAs */
104 	if (prot_numa && !(vma->vm_flags & VM_SHARED) &&
105 	    atomic_read(&vma->vm_mm->mm_users) == 1)
106 		target_node = numa_node_id();
107 
108 	flush_tlb_batched_pending(vma->vm_mm);
109 	arch_enter_lazy_mmu_mode();
110 	do {
111 		oldpte = ptep_get(pte);
112 		if (pte_present(oldpte)) {
113 			pte_t ptent;
114 
115 			/*
116 			 * Avoid trapping faults against the zero or KSM
117 			 * pages. See similar comment in change_huge_pmd.
118 			 */
119 			if (prot_numa) {
120 				struct page *page;
121 				int nid;
122 				bool toptier;
123 
124 				/* Avoid TLB flush if possible */
125 				if (pte_protnone(oldpte))
126 					continue;
127 
128 				page = vm_normal_page(vma, addr, oldpte);
129 				if (!page || is_zone_device_page(page) || PageKsm(page))
130 					continue;
131 
132 				/* Also skip shared copy-on-write pages */
133 				if (is_cow_mapping(vma->vm_flags) &&
134 				    page_count(page) != 1)
135 					continue;
136 
137 				/*
138 				 * While migration can move some dirty pages,
139 				 * it cannot move them all from MIGRATE_ASYNC
140 				 * context.
141 				 */
142 				if (page_is_file_lru(page) && PageDirty(page))
143 					continue;
144 
145 				/*
146 				 * Don't mess with PTEs if page is already on the node
147 				 * a single-threaded process is running on.
148 				 */
149 				nid = page_to_nid(page);
150 				if (target_node == nid)
151 					continue;
152 				toptier = node_is_toptier(nid);
153 
154 				/*
155 				 * Skip scanning top tier node if normal numa
156 				 * balancing is disabled
157 				 */
158 				if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_NORMAL) &&
159 				    toptier)
160 					continue;
161 				if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING &&
162 				    !toptier)
163 					xchg_page_access_time(page,
164 						jiffies_to_msecs(jiffies));
165 			}
166 
167 			oldpte = ptep_modify_prot_start(vma, addr, pte);
168 			ptent = pte_modify(oldpte, newprot);
169 
170 			if (uffd_wp)
171 				ptent = pte_mkuffd_wp(ptent);
172 			else if (uffd_wp_resolve)
173 				ptent = pte_clear_uffd_wp(ptent);
174 
175 			/*
176 			 * In some writable, shared mappings, we might want
177 			 * to catch actual write access -- see
178 			 * vma_wants_writenotify().
179 			 *
180 			 * In all writable, private mappings, we have to
181 			 * properly handle COW.
182 			 *
183 			 * In both cases, we can sometimes still change PTEs
184 			 * writable and avoid the write-fault handler, for
185 			 * example, if a PTE is already dirty and no other
186 			 * COW or special handling is required.
187 			 */
188 			if ((cp_flags & MM_CP_TRY_CHANGE_WRITABLE) &&
189 			    !pte_write(ptent) &&
190 			    can_change_pte_writable(vma, addr, ptent))
191 				ptent = pte_mkwrite(ptent, vma);
192 
193 			ptep_modify_prot_commit(vma, addr, pte, oldpte, ptent);
194 			if (pte_needs_flush(oldpte, ptent))
195 				tlb_flush_pte_range(tlb, addr, PAGE_SIZE);
196 			pages++;
197 		} else if (is_swap_pte(oldpte)) {
198 			swp_entry_t entry = pte_to_swp_entry(oldpte);
199 			pte_t newpte;
200 
201 			if (is_writable_migration_entry(entry)) {
202 				struct folio *folio = pfn_swap_entry_folio(entry);
203 
204 				/*
205 				 * A protection check is difficult so
206 				 * just be safe and disable write
207 				 */
208 				if (folio_test_anon(folio))
209 					entry = make_readable_exclusive_migration_entry(
210 							     swp_offset(entry));
211 				else
212 					entry = make_readable_migration_entry(swp_offset(entry));
213 				newpte = swp_entry_to_pte(entry);
214 				if (pte_swp_soft_dirty(oldpte))
215 					newpte = pte_swp_mksoft_dirty(newpte);
216 			} else if (is_writable_device_private_entry(entry)) {
217 				/*
218 				 * We do not preserve soft-dirtiness. See
219 				 * copy_nonpresent_pte() for explanation.
220 				 */
221 				entry = make_readable_device_private_entry(
222 							swp_offset(entry));
223 				newpte = swp_entry_to_pte(entry);
224 				if (pte_swp_uffd_wp(oldpte))
225 					newpte = pte_swp_mkuffd_wp(newpte);
226 			} else if (is_writable_device_exclusive_entry(entry)) {
227 				entry = make_readable_device_exclusive_entry(
228 							swp_offset(entry));
229 				newpte = swp_entry_to_pte(entry);
230 				if (pte_swp_soft_dirty(oldpte))
231 					newpte = pte_swp_mksoft_dirty(newpte);
232 				if (pte_swp_uffd_wp(oldpte))
233 					newpte = pte_swp_mkuffd_wp(newpte);
234 			} else if (is_pte_marker_entry(entry)) {
235 				/*
236 				 * Ignore error swap entries unconditionally,
237 				 * because any access should sigbus anyway.
238 				 */
239 				if (is_poisoned_swp_entry(entry))
240 					continue;
241 				/*
242 				 * If this is uffd-wp pte marker and we'd like
243 				 * to unprotect it, drop it; the next page
244 				 * fault will trigger without uffd trapping.
245 				 */
246 				if (uffd_wp_resolve) {
247 					pte_clear(vma->vm_mm, addr, pte);
248 					pages++;
249 				}
250 				continue;
251 			} else {
252 				newpte = oldpte;
253 			}
254 
255 			if (uffd_wp)
256 				newpte = pte_swp_mkuffd_wp(newpte);
257 			else if (uffd_wp_resolve)
258 				newpte = pte_swp_clear_uffd_wp(newpte);
259 
260 			if (!pte_same(oldpte, newpte)) {
261 				set_pte_at(vma->vm_mm, addr, pte, newpte);
262 				pages++;
263 			}
264 		} else {
265 			/* It must be an none page, or what else?.. */
266 			WARN_ON_ONCE(!pte_none(oldpte));
267 
268 			/*
269 			 * Nobody plays with any none ptes besides
270 			 * userfaultfd when applying the protections.
271 			 */
272 			if (likely(!uffd_wp))
273 				continue;
274 
275 			if (userfaultfd_wp_use_markers(vma)) {
276 				/*
277 				 * For file-backed mem, we need to be able to
278 				 * wr-protect a none pte, because even if the
279 				 * pte is none, the page/swap cache could
280 				 * exist.  Doing that by install a marker.
281 				 */
282 				set_pte_at(vma->vm_mm, addr, pte,
283 					   make_pte_marker(PTE_MARKER_UFFD_WP));
284 				pages++;
285 			}
286 		}
287 	} while (pte++, addr += PAGE_SIZE, addr != end);
288 	arch_leave_lazy_mmu_mode();
289 	pte_unmap_unlock(pte - 1, ptl);
290 
291 	return pages;
292 }
293 
294 /*
295  * Return true if we want to split THPs into PTE mappings in change
296  * protection procedure, false otherwise.
297  */
298 static inline bool
pgtable_split_needed(struct vm_area_struct * vma,unsigned long cp_flags)299 pgtable_split_needed(struct vm_area_struct *vma, unsigned long cp_flags)
300 {
301 	/*
302 	 * pte markers only resides in pte level, if we need pte markers,
303 	 * we need to split.  We cannot wr-protect shmem thp because file
304 	 * thp is handled differently when split by erasing the pmd so far.
305 	 */
306 	return (cp_flags & MM_CP_UFFD_WP) && !vma_is_anonymous(vma);
307 }
308 
309 /*
310  * Return true if we want to populate pgtables in change protection
311  * procedure, false otherwise
312  */
313 static inline bool
pgtable_populate_needed(struct vm_area_struct * vma,unsigned long cp_flags)314 pgtable_populate_needed(struct vm_area_struct *vma, unsigned long cp_flags)
315 {
316 	/* If not within ioctl(UFFDIO_WRITEPROTECT), then don't bother */
317 	if (!(cp_flags & MM_CP_UFFD_WP))
318 		return false;
319 
320 	/* Populate if the userfaultfd mode requires pte markers */
321 	return userfaultfd_wp_use_markers(vma);
322 }
323 
324 /*
325  * Populate the pgtable underneath for whatever reason if requested.
326  * When {pte|pmd|...}_alloc() failed we treat it the same way as pgtable
327  * allocation failures during page faults by kicking OOM and returning
328  * error.
329  */
330 #define  change_pmd_prepare(vma, pmd, cp_flags)				\
331 	({								\
332 		long err = 0;						\
333 		if (unlikely(pgtable_populate_needed(vma, cp_flags))) {	\
334 			if (pte_alloc(vma->vm_mm, pmd))			\
335 				err = -ENOMEM;				\
336 		}							\
337 		err;							\
338 	})
339 
340 /*
341  * This is the general pud/p4d/pgd version of change_pmd_prepare(). We need to
342  * have separate change_pmd_prepare() because pte_alloc() returns 0 on success,
343  * while {pmd|pud|p4d}_alloc() returns the valid pointer on success.
344  */
345 #define  change_prepare(vma, high, low, addr, cp_flags)			\
346 	  ({								\
347 		long err = 0;						\
348 		if (unlikely(pgtable_populate_needed(vma, cp_flags))) {	\
349 			low##_t *p = low##_alloc(vma->vm_mm, high, addr); \
350 			if (p == NULL)					\
351 				err = -ENOMEM;				\
352 		}							\
353 		err;							\
354 	})
355 
change_pmd_range(struct mmu_gather * tlb,struct vm_area_struct * vma,pud_t * pud,unsigned long addr,unsigned long end,pgprot_t newprot,unsigned long cp_flags)356 static inline long change_pmd_range(struct mmu_gather *tlb,
357 		struct vm_area_struct *vma, pud_t *pud, unsigned long addr,
358 		unsigned long end, pgprot_t newprot, unsigned long cp_flags)
359 {
360 	pmd_t *pmd;
361 	unsigned long next;
362 	long pages = 0;
363 	unsigned long nr_huge_updates = 0;
364 	struct mmu_notifier_range range;
365 
366 	range.start = 0;
367 
368 	pmd = pmd_offset(pud, addr);
369 	do {
370 		long ret;
371 		pmd_t _pmd;
372 again:
373 		next = pmd_addr_end(addr, end);
374 
375 		ret = change_pmd_prepare(vma, pmd, cp_flags);
376 		if (ret) {
377 			pages = ret;
378 			break;
379 		}
380 
381 		if (pmd_none(*pmd))
382 			goto next;
383 
384 		/* invoke the mmu notifier if the pmd is populated */
385 		if (!range.start) {
386 			mmu_notifier_range_init(&range,
387 				MMU_NOTIFY_PROTECTION_VMA, 0,
388 				vma->vm_mm, addr, end);
389 			mmu_notifier_invalidate_range_start(&range);
390 		}
391 
392 		_pmd = pmdp_get_lockless(pmd);
393 		if (is_swap_pmd(_pmd) || pmd_trans_huge(_pmd) || pmd_devmap(_pmd)) {
394 			if ((next - addr != HPAGE_PMD_SIZE) ||
395 			    pgtable_split_needed(vma, cp_flags)) {
396 				__split_huge_pmd(vma, pmd, addr, false, NULL);
397 				/*
398 				 * For file-backed, the pmd could have been
399 				 * cleared; make sure pmd populated if
400 				 * necessary, then fall-through to pte level.
401 				 */
402 				ret = change_pmd_prepare(vma, pmd, cp_flags);
403 				if (ret) {
404 					pages = ret;
405 					break;
406 				}
407 			} else {
408 				ret = change_huge_pmd(tlb, vma, pmd,
409 						addr, newprot, cp_flags);
410 				if (ret) {
411 					if (ret == HPAGE_PMD_NR) {
412 						pages += HPAGE_PMD_NR;
413 						nr_huge_updates++;
414 					}
415 
416 					/* huge pmd was handled */
417 					goto next;
418 				}
419 			}
420 			/* fall through, the trans huge pmd just split */
421 		}
422 
423 		ret = change_pte_range(tlb, vma, pmd, addr, next, newprot,
424 				       cp_flags);
425 		if (ret < 0)
426 			goto again;
427 		pages += ret;
428 next:
429 		cond_resched();
430 	} while (pmd++, addr = next, addr != end);
431 
432 	if (range.start)
433 		mmu_notifier_invalidate_range_end(&range);
434 
435 	if (nr_huge_updates)
436 		count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
437 	return pages;
438 }
439 
change_pud_range(struct mmu_gather * tlb,struct vm_area_struct * vma,p4d_t * p4d,unsigned long addr,unsigned long end,pgprot_t newprot,unsigned long cp_flags)440 static inline long change_pud_range(struct mmu_gather *tlb,
441 		struct vm_area_struct *vma, p4d_t *p4d, unsigned long addr,
442 		unsigned long end, pgprot_t newprot, unsigned long cp_flags)
443 {
444 	pud_t *pud;
445 	unsigned long next;
446 	long pages = 0, ret;
447 
448 	pud = pud_offset(p4d, addr);
449 	do {
450 		next = pud_addr_end(addr, end);
451 		ret = change_prepare(vma, pud, pmd, addr, cp_flags);
452 		if (ret)
453 			return ret;
454 		if (pud_none_or_clear_bad(pud))
455 			continue;
456 		pages += change_pmd_range(tlb, vma, pud, addr, next, newprot,
457 					  cp_flags);
458 	} while (pud++, addr = next, addr != end);
459 
460 	return pages;
461 }
462 
change_p4d_range(struct mmu_gather * tlb,struct vm_area_struct * vma,pgd_t * pgd,unsigned long addr,unsigned long end,pgprot_t newprot,unsigned long cp_flags)463 static inline long change_p4d_range(struct mmu_gather *tlb,
464 		struct vm_area_struct *vma, pgd_t *pgd, unsigned long addr,
465 		unsigned long end, pgprot_t newprot, unsigned long cp_flags)
466 {
467 	p4d_t *p4d;
468 	unsigned long next;
469 	long pages = 0, ret;
470 
471 	p4d = p4d_offset(pgd, addr);
472 	do {
473 		next = p4d_addr_end(addr, end);
474 		ret = change_prepare(vma, p4d, pud, addr, cp_flags);
475 		if (ret)
476 			return ret;
477 		if (p4d_none_or_clear_bad(p4d))
478 			continue;
479 		pages += change_pud_range(tlb, vma, p4d, addr, next, newprot,
480 					  cp_flags);
481 	} while (p4d++, addr = next, addr != end);
482 
483 	return pages;
484 }
485 
change_protection_range(struct mmu_gather * tlb,struct vm_area_struct * vma,unsigned long addr,unsigned long end,pgprot_t newprot,unsigned long cp_flags)486 static long change_protection_range(struct mmu_gather *tlb,
487 		struct vm_area_struct *vma, unsigned long addr,
488 		unsigned long end, pgprot_t newprot, unsigned long cp_flags)
489 {
490 	struct mm_struct *mm = vma->vm_mm;
491 	pgd_t *pgd;
492 	unsigned long next;
493 	long pages = 0, ret;
494 
495 	BUG_ON(addr >= end);
496 	pgd = pgd_offset(mm, addr);
497 	tlb_start_vma(tlb, vma);
498 	do {
499 		next = pgd_addr_end(addr, end);
500 		ret = change_prepare(vma, pgd, p4d, addr, cp_flags);
501 		if (ret) {
502 			pages = ret;
503 			break;
504 		}
505 		if (pgd_none_or_clear_bad(pgd))
506 			continue;
507 		pages += change_p4d_range(tlb, vma, pgd, addr, next, newprot,
508 					  cp_flags);
509 	} while (pgd++, addr = next, addr != end);
510 
511 	tlb_end_vma(tlb, vma);
512 
513 	return pages;
514 }
515 
change_protection(struct mmu_gather * tlb,struct vm_area_struct * vma,unsigned long start,unsigned long end,unsigned long cp_flags)516 long change_protection(struct mmu_gather *tlb,
517 		       struct vm_area_struct *vma, unsigned long start,
518 		       unsigned long end, unsigned long cp_flags)
519 {
520 	pgprot_t newprot = vma->vm_page_prot;
521 	long pages;
522 
523 	BUG_ON((cp_flags & MM_CP_UFFD_WP_ALL) == MM_CP_UFFD_WP_ALL);
524 
525 #ifdef CONFIG_NUMA_BALANCING
526 	/*
527 	 * Ordinary protection updates (mprotect, uffd-wp, softdirty tracking)
528 	 * are expected to reflect their requirements via VMA flags such that
529 	 * vma_set_page_prot() will adjust vma->vm_page_prot accordingly.
530 	 */
531 	if (cp_flags & MM_CP_PROT_NUMA)
532 		newprot = PAGE_NONE;
533 #else
534 	WARN_ON_ONCE(cp_flags & MM_CP_PROT_NUMA);
535 #endif
536 
537 	if (is_vm_hugetlb_page(vma))
538 		pages = hugetlb_change_protection(vma, start, end, newprot,
539 						  cp_flags);
540 	else
541 		pages = change_protection_range(tlb, vma, start, end, newprot,
542 						cp_flags);
543 
544 	return pages;
545 }
546 
prot_none_pte_entry(pte_t * pte,unsigned long addr,unsigned long next,struct mm_walk * walk)547 static int prot_none_pte_entry(pte_t *pte, unsigned long addr,
548 			       unsigned long next, struct mm_walk *walk)
549 {
550 	return pfn_modify_allowed(pte_pfn(ptep_get(pte)),
551 				  *(pgprot_t *)(walk->private)) ?
552 		0 : -EACCES;
553 }
554 
prot_none_hugetlb_entry(pte_t * pte,unsigned long hmask,unsigned long addr,unsigned long next,struct mm_walk * walk)555 static int prot_none_hugetlb_entry(pte_t *pte, unsigned long hmask,
556 				   unsigned long addr, unsigned long next,
557 				   struct mm_walk *walk)
558 {
559 	return pfn_modify_allowed(pte_pfn(ptep_get(pte)),
560 				  *(pgprot_t *)(walk->private)) ?
561 		0 : -EACCES;
562 }
563 
prot_none_test(unsigned long addr,unsigned long next,struct mm_walk * walk)564 static int prot_none_test(unsigned long addr, unsigned long next,
565 			  struct mm_walk *walk)
566 {
567 	return 0;
568 }
569 
570 static const struct mm_walk_ops prot_none_walk_ops = {
571 	.pte_entry		= prot_none_pte_entry,
572 	.hugetlb_entry		= prot_none_hugetlb_entry,
573 	.test_walk		= prot_none_test,
574 	.walk_lock		= PGWALK_WRLOCK,
575 };
576 
577 int
mprotect_fixup(struct vma_iterator * vmi,struct mmu_gather * tlb,struct vm_area_struct * vma,struct vm_area_struct ** pprev,unsigned long start,unsigned long end,unsigned long newflags)578 mprotect_fixup(struct vma_iterator *vmi, struct mmu_gather *tlb,
579 	       struct vm_area_struct *vma, struct vm_area_struct **pprev,
580 	       unsigned long start, unsigned long end, unsigned long newflags)
581 {
582 	struct mm_struct *mm = vma->vm_mm;
583 	unsigned long oldflags = vma->vm_flags;
584 	long nrpages = (end - start) >> PAGE_SHIFT;
585 	unsigned int mm_cp_flags = 0;
586 	unsigned long charged = 0;
587 	pgoff_t pgoff;
588 	int error;
589 
590 	if (newflags == oldflags) {
591 		*pprev = vma;
592 		return 0;
593 	}
594 
595 	/*
596 	 * Do PROT_NONE PFN permission checks here when we can still
597 	 * bail out without undoing a lot of state. This is a rather
598 	 * uncommon case, so doesn't need to be very optimized.
599 	 */
600 	if (arch_has_pfn_modify_check() &&
601 	    (vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
602 	    (newflags & VM_ACCESS_FLAGS) == 0) {
603 		pgprot_t new_pgprot = vm_get_page_prot(newflags);
604 
605 		error = walk_page_range(current->mm, start, end,
606 				&prot_none_walk_ops, &new_pgprot);
607 		if (error)
608 			return error;
609 	}
610 
611 	/*
612 	 * If we make a private mapping writable we increase our commit;
613 	 * but (without finer accounting) cannot reduce our commit if we
614 	 * make it unwritable again. hugetlb mapping were accounted for
615 	 * even if read-only so there is no need to account for them here
616 	 */
617 	if (newflags & VM_WRITE) {
618 		/* Check space limits when area turns into data. */
619 		if (!may_expand_vm(mm, newflags, nrpages) &&
620 				may_expand_vm(mm, oldflags, nrpages))
621 			return -ENOMEM;
622 		if (!(oldflags & (VM_ACCOUNT|VM_WRITE|VM_HUGETLB|
623 						VM_SHARED|VM_NORESERVE))) {
624 			charged = nrpages;
625 			if (security_vm_enough_memory_mm(mm, charged))
626 				return -ENOMEM;
627 			newflags |= VM_ACCOUNT;
628 		}
629 	}
630 
631 	/*
632 	 * First try to merge with previous and/or next vma.
633 	 */
634 	pgoff = vma->vm_pgoff + ((start - vma->vm_start) >> PAGE_SHIFT);
635 	*pprev = vma_merge(vmi, mm, *pprev, start, end, newflags,
636 			   vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
637 			   vma->vm_userfaultfd_ctx, anon_vma_name(vma));
638 	if (*pprev) {
639 		vma = *pprev;
640 		VM_WARN_ON((vma->vm_flags ^ newflags) & ~VM_SOFTDIRTY);
641 		goto success;
642 	}
643 
644 	*pprev = vma;
645 
646 	if (start != vma->vm_start) {
647 		error = split_vma(vmi, vma, start, 1);
648 		if (error)
649 			goto fail;
650 	}
651 
652 	if (end != vma->vm_end) {
653 		error = split_vma(vmi, vma, end, 0);
654 		if (error)
655 			goto fail;
656 	}
657 
658 success:
659 	/*
660 	 * vm_flags and vm_page_prot are protected by the mmap_lock
661 	 * held in write mode.
662 	 */
663 	vma_start_write(vma);
664 	vm_flags_reset(vma, vma_pad_fixup_flags(vma, newflags));
665 	if (vma_wants_manual_pte_write_upgrade(vma))
666 		mm_cp_flags |= MM_CP_TRY_CHANGE_WRITABLE;
667 	vma_set_page_prot(vma);
668 
669 	change_protection(tlb, vma, start, end, mm_cp_flags);
670 
671 	/*
672 	 * Private VM_LOCKED VMA becoming writable: trigger COW to avoid major
673 	 * fault on access.
674 	 */
675 	if ((oldflags & (VM_WRITE | VM_SHARED | VM_LOCKED)) == VM_LOCKED &&
676 			(newflags & VM_WRITE)) {
677 		populate_vma_page_range(vma, start, end, NULL);
678 	}
679 
680 	vm_stat_account(mm, oldflags, -nrpages);
681 	vm_stat_account(mm, newflags, nrpages);
682 	perf_event_mmap(vma);
683 	return 0;
684 
685 fail:
686 	vm_unacct_memory(charged);
687 	return error;
688 }
689 
690 /*
691  * pkey==-1 when doing a legacy mprotect()
692  */
do_mprotect_pkey(unsigned long start,size_t len,unsigned long prot,int pkey)693 static int do_mprotect_pkey(unsigned long start, size_t len,
694 		unsigned long prot, int pkey)
695 {
696 	unsigned long nstart, end, tmp, reqprot;
697 	struct vm_area_struct *vma, *prev;
698 	int error;
699 	const int grows = prot & (PROT_GROWSDOWN|PROT_GROWSUP);
700 	const bool rier = (current->personality & READ_IMPLIES_EXEC) &&
701 				(prot & PROT_READ);
702 	struct mmu_gather tlb;
703 	struct vma_iterator vmi;
704 
705 	start = untagged_addr(start);
706 
707 	prot &= ~(PROT_GROWSDOWN|PROT_GROWSUP);
708 	if (grows == (PROT_GROWSDOWN|PROT_GROWSUP)) /* can't be both */
709 		return -EINVAL;
710 
711 	if (!__PAGE_ALIGNED(start))
712 		return -EINVAL;
713 	if (!len)
714 		return 0;
715 	len = __PAGE_ALIGN(len);
716 	end = start + len;
717 	if (end <= start)
718 		return -ENOMEM;
719 	if (!arch_validate_prot(prot, start))
720 		return -EINVAL;
721 
722 	reqprot = prot;
723 
724 	if (mmap_write_lock_killable(current->mm))
725 		return -EINTR;
726 
727 	/*
728 	 * If userspace did not allocate the pkey, do not let
729 	 * them use it here.
730 	 */
731 	error = -EINVAL;
732 	if ((pkey != -1) && !mm_pkey_is_allocated(current->mm, pkey))
733 		goto out;
734 
735 	vma_iter_init(&vmi, current->mm, start);
736 	vma = vma_find(&vmi, end);
737 	error = -ENOMEM;
738 	if (!vma)
739 		goto out;
740 
741 	if (unlikely(grows & PROT_GROWSDOWN)) {
742 		if (vma->vm_start >= end)
743 			goto out;
744 		start = vma->vm_start;
745 		error = -EINVAL;
746 		if (!(vma->vm_flags & VM_GROWSDOWN))
747 			goto out;
748 	} else {
749 		if (vma->vm_start > start)
750 			goto out;
751 		if (unlikely(grows & PROT_GROWSUP)) {
752 			end = vma->vm_end;
753 			error = -EINVAL;
754 			if (!(vma->vm_flags & VM_GROWSUP))
755 				goto out;
756 		}
757 	}
758 
759 	/*
760 	 * checking if memory is sealed.
761 	 * can_modify_mm assumes we have acquired the lock on MM.
762 	 */
763 	if (unlikely(!can_modify_mm(current->mm, start, end))) {
764 		error = -EPERM;
765 		goto out;
766 	}
767 
768 	prev = vma_prev(&vmi);
769 	if (start > vma->vm_start)
770 		prev = vma;
771 
772 	tlb_gather_mmu(&tlb, current->mm);
773 	nstart = start;
774 	tmp = vma->vm_start;
775 	for_each_vma_range(vmi, vma, end) {
776 		unsigned long mask_off_old_flags;
777 		unsigned long newflags;
778 		int new_vma_pkey;
779 
780 		if (vma->vm_start != tmp) {
781 			error = -ENOMEM;
782 			break;
783 		}
784 
785 		/* Does the application expect PROT_READ to imply PROT_EXEC */
786 		if (rier && (vma->vm_flags & VM_MAYEXEC))
787 			prot |= PROT_EXEC;
788 
789 		/*
790 		 * Each mprotect() call explicitly passes r/w/x permissions.
791 		 * If a permission is not passed to mprotect(), it must be
792 		 * cleared from the VMA.
793 		 */
794 		mask_off_old_flags = VM_ACCESS_FLAGS | VM_FLAGS_CLEAR;
795 
796 		new_vma_pkey = arch_override_mprotect_pkey(vma, prot, pkey);
797 		newflags = calc_vm_prot_bits(prot, new_vma_pkey);
798 		newflags |= (vma->vm_flags & ~mask_off_old_flags);
799 
800 		/* newflags >> 4 shift VM_MAY% in place of VM_% */
801 		if ((newflags & ~(newflags >> 4)) & VM_ACCESS_FLAGS) {
802 			error = -EACCES;
803 			break;
804 		}
805 
806 		if (map_deny_write_exec(vma, newflags)) {
807 			error = -EACCES;
808 			break;
809 		}
810 
811 		/* Allow architectures to sanity-check the new flags */
812 		if (!arch_validate_flags(newflags)) {
813 			error = -EINVAL;
814 			break;
815 		}
816 
817 		error = security_file_mprotect(vma, reqprot, prot);
818 		if (error)
819 			break;
820 
821 		tmp = vma->vm_end;
822 		if (tmp > end)
823 			tmp = end;
824 
825 		if (vma->vm_ops && vma->vm_ops->mprotect) {
826 			error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags);
827 			if (error)
828 				break;
829 		}
830 
831 		error = mprotect_fixup(&vmi, &tlb, vma, &prev, nstart, tmp, newflags);
832 		if (error)
833 			break;
834 
835 		tmp = vma_iter_end(&vmi);
836 		nstart = tmp;
837 		prot = reqprot;
838 	}
839 	tlb_finish_mmu(&tlb);
840 
841 	if (!error && tmp < end)
842 		error = -ENOMEM;
843 
844 out:
845 	mmap_write_unlock(current->mm);
846 	return error;
847 }
848 
SYSCALL_DEFINE3(mprotect,unsigned long,start,size_t,len,unsigned long,prot)849 SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
850 		unsigned long, prot)
851 {
852 	return do_mprotect_pkey(start, len, prot, -1);
853 }
854 
855 #ifdef CONFIG_ARCH_HAS_PKEYS
856 
SYSCALL_DEFINE4(pkey_mprotect,unsigned long,start,size_t,len,unsigned long,prot,int,pkey)857 SYSCALL_DEFINE4(pkey_mprotect, unsigned long, start, size_t, len,
858 		unsigned long, prot, int, pkey)
859 {
860 	return do_mprotect_pkey(start, len, prot, pkey);
861 }
862 
SYSCALL_DEFINE2(pkey_alloc,unsigned long,flags,unsigned long,init_val)863 SYSCALL_DEFINE2(pkey_alloc, unsigned long, flags, unsigned long, init_val)
864 {
865 	int pkey;
866 	int ret;
867 
868 	/* No flags supported yet. */
869 	if (flags)
870 		return -EINVAL;
871 	/* check for unsupported init values */
872 	if (init_val & ~PKEY_ACCESS_MASK)
873 		return -EINVAL;
874 
875 	mmap_write_lock(current->mm);
876 	pkey = mm_pkey_alloc(current->mm);
877 
878 	ret = -ENOSPC;
879 	if (pkey == -1)
880 		goto out;
881 
882 	ret = arch_set_user_pkey_access(current, pkey, init_val);
883 	if (ret) {
884 		mm_pkey_free(current->mm, pkey);
885 		goto out;
886 	}
887 	ret = pkey;
888 out:
889 	mmap_write_unlock(current->mm);
890 	return ret;
891 }
892 
SYSCALL_DEFINE1(pkey_free,int,pkey)893 SYSCALL_DEFINE1(pkey_free, int, pkey)
894 {
895 	int ret;
896 
897 	mmap_write_lock(current->mm);
898 	ret = mm_pkey_free(current->mm, pkey);
899 	mmap_write_unlock(current->mm);
900 
901 	/*
902 	 * We could provide warnings or errors if any VMA still
903 	 * has the pkey set here.
904 	 */
905 	return ret;
906 }
907 
908 #endif /* CONFIG_ARCH_HAS_PKEYS */
909