xref: /linux/mm/huge_memory.c (revision 69062f234a2837d2302a41c2ba125521630deea8)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *  Copyright (C) 2009  Red Hat, Inc.
4  */
5 
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7 
8 #include <linux/mm.h>
9 #include <linux/sched.h>
10 #include <linux/sched/mm.h>
11 #include <linux/sched/numa_balancing.h>
12 #include <linux/highmem.h>
13 #include <linux/hugetlb.h>
14 #include <linux/mmu_notifier.h>
15 #include <linux/rmap.h>
16 #include <linux/swap.h>
17 #include <linux/shrinker.h>
18 #include <linux/mm_inline.h>
19 #include <linux/swapops.h>
20 #include <linux/backing-dev.h>
21 #include <linux/dax.h>
22 #include <linux/mm_types.h>
23 #include <linux/khugepaged.h>
24 #include <linux/freezer.h>
25 #include <linux/mman.h>
26 #include <linux/memremap.h>
27 #include <linux/pagemap.h>
28 #include <linux/debugfs.h>
29 #include <linux/migrate.h>
30 #include <linux/hashtable.h>
31 #include <linux/userfaultfd_k.h>
32 #include <linux/page_idle.h>
33 #include <linux/shmem_fs.h>
34 #include <linux/oom.h>
35 #include <linux/numa.h>
36 #include <linux/page_owner.h>
37 #include <linux/sched/sysctl.h>
38 #include <linux/memory-tiers.h>
39 #include <linux/compat.h>
40 #include <linux/pgalloc.h>
41 #include <linux/pgalloc_tag.h>
42 #include <linux/pagewalk.h>
43 
44 #include <asm/tlb.h>
45 #include "internal.h"
46 #include "swap.h"
47 
48 #define CREATE_TRACE_POINTS
49 #include <trace/events/thp.h>
50 
51 /*
52  * By default, transparent hugepage support is disabled in order to avoid
53  * risking an increased memory footprint for applications that are not
54  * guaranteed to benefit from it. When transparent hugepage support is
55  * enabled, it is for all mappings, and khugepaged scans all mappings.
56  * Defrag is invoked by khugepaged hugepage allocations and by page faults
57  * for all hugepage allocations.
58  */
59 unsigned long transparent_hugepage_flags __read_mostly =
60 #ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
61 	(1<<TRANSPARENT_HUGEPAGE_FLAG)|
62 #endif
63 #ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
64 	(1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
65 #endif
66 	(1<<TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG)|
67 	(1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
68 	(1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
69 
70 static struct shrinker *deferred_split_shrinker;
71 static unsigned long deferred_split_count(struct shrinker *shrink,
72 					  struct shrink_control *sc);
73 static unsigned long deferred_split_scan(struct shrinker *shrink,
74 					 struct shrink_control *sc);
75 static bool split_underused_thp = true;
76 
77 static atomic_t huge_zero_refcount;
78 struct folio *huge_zero_folio __read_mostly;
79 unsigned long huge_zero_pfn __read_mostly = ~0UL;
80 unsigned long huge_anon_orders_always __read_mostly;
81 unsigned long huge_anon_orders_madvise __read_mostly;
82 unsigned long huge_anon_orders_inherit __read_mostly;
83 static bool anon_orders_configured __initdata;
84 
file_thp_enabled(struct vm_area_struct * vma)85 static inline bool file_thp_enabled(struct vm_area_struct *vma)
86 {
87 	struct inode *inode;
88 
89 	if (!IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS))
90 		return false;
91 
92 	if (!vma->vm_file)
93 		return false;
94 
95 	inode = file_inode(vma->vm_file);
96 
97 	if (IS_ANON_FILE(inode))
98 		return false;
99 
100 	return !inode_is_open_for_write(inode) && S_ISREG(inode->i_mode);
101 }
102 
__thp_vma_allowable_orders(struct vm_area_struct * vma,vm_flags_t vm_flags,enum tva_type type,unsigned long orders)103 unsigned long __thp_vma_allowable_orders(struct vm_area_struct *vma,
104 					 vm_flags_t vm_flags,
105 					 enum tva_type type,
106 					 unsigned long orders)
107 {
108 	const bool smaps = type == TVA_SMAPS;
109 	const bool in_pf = type == TVA_PAGEFAULT;
110 	const bool forced_collapse = type == TVA_FORCED_COLLAPSE;
111 	unsigned long supported_orders;
112 
113 	/* Check the intersection of requested and supported orders. */
114 	if (vma_is_anonymous(vma))
115 		supported_orders = THP_ORDERS_ALL_ANON;
116 	else if (vma_is_special_huge(vma))
117 		supported_orders = THP_ORDERS_ALL_SPECIAL;
118 	else
119 		supported_orders = THP_ORDERS_ALL_FILE_DEFAULT;
120 
121 	orders &= supported_orders;
122 	if (!orders)
123 		return 0;
124 
125 	if (!vma->vm_mm)		/* vdso */
126 		return 0;
127 
128 	if (thp_disabled_by_hw() || vma_thp_disabled(vma, vm_flags, forced_collapse))
129 		return 0;
130 
131 	/* khugepaged doesn't collapse DAX vma, but page fault is fine. */
132 	if (vma_is_dax(vma))
133 		return in_pf ? orders : 0;
134 
135 	/*
136 	 * khugepaged special VMA and hugetlb VMA.
137 	 * Must be checked after dax since some dax mappings may have
138 	 * VM_MIXEDMAP set.
139 	 */
140 	if (!in_pf && !smaps && (vm_flags & VM_NO_KHUGEPAGED))
141 		return 0;
142 
143 	/*
144 	 * Check alignment for file vma and size for both file and anon vma by
145 	 * filtering out the unsuitable orders.
146 	 *
147 	 * Skip the check for page fault. Huge fault does the check in fault
148 	 * handlers.
149 	 */
150 	if (!in_pf) {
151 		int order = highest_order(orders);
152 		unsigned long addr;
153 
154 		while (orders) {
155 			addr = vma->vm_end - (PAGE_SIZE << order);
156 			if (thp_vma_suitable_order(vma, addr, order))
157 				break;
158 			order = next_order(&orders, order);
159 		}
160 
161 		if (!orders)
162 			return 0;
163 	}
164 
165 	/*
166 	 * Enabled via shmem mount options or sysfs settings.
167 	 * Must be done before hugepage flags check since shmem has its
168 	 * own flags.
169 	 */
170 	if (!in_pf && shmem_file(vma->vm_file))
171 		return orders & shmem_allowable_huge_orders(file_inode(vma->vm_file),
172 						   vma, vma->vm_pgoff, 0,
173 						   forced_collapse);
174 
175 	if (!vma_is_anonymous(vma)) {
176 		/*
177 		 * Enforce THP collapse requirements as necessary. Anonymous vmas
178 		 * were already handled in thp_vma_allowable_orders().
179 		 */
180 		if (!forced_collapse &&
181 		    (!hugepage_global_enabled() || (!(vm_flags & VM_HUGEPAGE) &&
182 						    !hugepage_global_always())))
183 			return 0;
184 
185 		/*
186 		 * Trust that ->huge_fault() handlers know what they are doing
187 		 * in fault path.
188 		 */
189 		if (((in_pf || smaps)) && vma->vm_ops->huge_fault)
190 			return orders;
191 		/* Only regular file is valid in collapse path */
192 		if (((!in_pf || smaps)) && file_thp_enabled(vma))
193 			return orders;
194 		return 0;
195 	}
196 
197 	if (vma_is_temporary_stack(vma))
198 		return 0;
199 
200 	/*
201 	 * THPeligible bit of smaps should show 1 for proper VMAs even
202 	 * though anon_vma is not initialized yet.
203 	 *
204 	 * Allow page fault since anon_vma may be not initialized until
205 	 * the first page fault.
206 	 */
207 	if (!vma->anon_vma)
208 		return (smaps || in_pf) ? orders : 0;
209 
210 	return orders;
211 }
212 
get_huge_zero_folio(void)213 static bool get_huge_zero_folio(void)
214 {
215 	struct folio *zero_folio;
216 retry:
217 	if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
218 		return true;
219 
220 	zero_folio = folio_alloc((GFP_TRANSHUGE | __GFP_ZERO | __GFP_ZEROTAGS) &
221 				 ~__GFP_MOVABLE,
222 			HPAGE_PMD_ORDER);
223 	if (!zero_folio) {
224 		count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
225 		return false;
226 	}
227 	/* Ensure zero folio won't have large_rmappable flag set. */
228 	folio_clear_large_rmappable(zero_folio);
229 	preempt_disable();
230 	if (cmpxchg(&huge_zero_folio, NULL, zero_folio)) {
231 		preempt_enable();
232 		folio_put(zero_folio);
233 		goto retry;
234 	}
235 	WRITE_ONCE(huge_zero_pfn, folio_pfn(zero_folio));
236 
237 	/* We take additional reference here. It will be put back by shrinker */
238 	atomic_set(&huge_zero_refcount, 2);
239 	preempt_enable();
240 	count_vm_event(THP_ZERO_PAGE_ALLOC);
241 	return true;
242 }
243 
put_huge_zero_folio(void)244 static void put_huge_zero_folio(void)
245 {
246 	/*
247 	 * Counter should never go to zero here. Only shrinker can put
248 	 * last reference.
249 	 */
250 	BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
251 }
252 
mm_get_huge_zero_folio(struct mm_struct * mm)253 struct folio *mm_get_huge_zero_folio(struct mm_struct *mm)
254 {
255 	if (IS_ENABLED(CONFIG_PERSISTENT_HUGE_ZERO_FOLIO))
256 		return huge_zero_folio;
257 
258 	if (mm_flags_test(MMF_HUGE_ZERO_FOLIO, mm))
259 		return READ_ONCE(huge_zero_folio);
260 
261 	if (!get_huge_zero_folio())
262 		return NULL;
263 
264 	if (mm_flags_test_and_set(MMF_HUGE_ZERO_FOLIO, mm))
265 		put_huge_zero_folio();
266 
267 	return READ_ONCE(huge_zero_folio);
268 }
269 
mm_put_huge_zero_folio(struct mm_struct * mm)270 void mm_put_huge_zero_folio(struct mm_struct *mm)
271 {
272 	if (IS_ENABLED(CONFIG_PERSISTENT_HUGE_ZERO_FOLIO))
273 		return;
274 
275 	if (mm_flags_test(MMF_HUGE_ZERO_FOLIO, mm))
276 		put_huge_zero_folio();
277 }
278 
shrink_huge_zero_folio_count(struct shrinker * shrink,struct shrink_control * sc)279 static unsigned long shrink_huge_zero_folio_count(struct shrinker *shrink,
280 						  struct shrink_control *sc)
281 {
282 	/* we can free zero page only if last reference remains */
283 	return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
284 }
285 
shrink_huge_zero_folio_scan(struct shrinker * shrink,struct shrink_control * sc)286 static unsigned long shrink_huge_zero_folio_scan(struct shrinker *shrink,
287 						 struct shrink_control *sc)
288 {
289 	if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
290 		struct folio *zero_folio = xchg(&huge_zero_folio, NULL);
291 		BUG_ON(zero_folio == NULL);
292 		WRITE_ONCE(huge_zero_pfn, ~0UL);
293 		folio_put(zero_folio);
294 		return HPAGE_PMD_NR;
295 	}
296 
297 	return 0;
298 }
299 
300 static struct shrinker *huge_zero_folio_shrinker;
301 
302 #ifdef CONFIG_SYSFS
enabled_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf)303 static ssize_t enabled_show(struct kobject *kobj,
304 			    struct kobj_attribute *attr, char *buf)
305 {
306 	const char *output;
307 
308 	if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags))
309 		output = "[always] madvise never";
310 	else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
311 			  &transparent_hugepage_flags))
312 		output = "always [madvise] never";
313 	else
314 		output = "always madvise [never]";
315 
316 	return sysfs_emit(buf, "%s\n", output);
317 }
318 
enabled_store(struct kobject * kobj,struct kobj_attribute * attr,const char * buf,size_t count)319 static ssize_t enabled_store(struct kobject *kobj,
320 			     struct kobj_attribute *attr,
321 			     const char *buf, size_t count)
322 {
323 	ssize_t ret = count;
324 
325 	if (sysfs_streq(buf, "always")) {
326 		clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
327 		set_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
328 	} else if (sysfs_streq(buf, "madvise")) {
329 		clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
330 		set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
331 	} else if (sysfs_streq(buf, "never")) {
332 		clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
333 		clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
334 	} else
335 		ret = -EINVAL;
336 
337 	if (ret > 0) {
338 		int err = start_stop_khugepaged();
339 		if (err)
340 			ret = err;
341 	}
342 	return ret;
343 }
344 
345 static struct kobj_attribute enabled_attr = __ATTR_RW(enabled);
346 
single_hugepage_flag_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf,enum transparent_hugepage_flag flag)347 ssize_t single_hugepage_flag_show(struct kobject *kobj,
348 				  struct kobj_attribute *attr, char *buf,
349 				  enum transparent_hugepage_flag flag)
350 {
351 	return sysfs_emit(buf, "%d\n",
352 			  !!test_bit(flag, &transparent_hugepage_flags));
353 }
354 
single_hugepage_flag_store(struct kobject * kobj,struct kobj_attribute * attr,const char * buf,size_t count,enum transparent_hugepage_flag flag)355 ssize_t single_hugepage_flag_store(struct kobject *kobj,
356 				 struct kobj_attribute *attr,
357 				 const char *buf, size_t count,
358 				 enum transparent_hugepage_flag flag)
359 {
360 	unsigned long value;
361 	int ret;
362 
363 	ret = kstrtoul(buf, 10, &value);
364 	if (ret < 0)
365 		return ret;
366 	if (value > 1)
367 		return -EINVAL;
368 
369 	if (value)
370 		set_bit(flag, &transparent_hugepage_flags);
371 	else
372 		clear_bit(flag, &transparent_hugepage_flags);
373 
374 	return count;
375 }
376 
defrag_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf)377 static ssize_t defrag_show(struct kobject *kobj,
378 			   struct kobj_attribute *attr, char *buf)
379 {
380 	const char *output;
381 
382 	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG,
383 		     &transparent_hugepage_flags))
384 		output = "[always] defer defer+madvise madvise never";
385 	else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG,
386 			  &transparent_hugepage_flags))
387 		output = "always [defer] defer+madvise madvise never";
388 	else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG,
389 			  &transparent_hugepage_flags))
390 		output = "always defer [defer+madvise] madvise never";
391 	else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG,
392 			  &transparent_hugepage_flags))
393 		output = "always defer defer+madvise [madvise] never";
394 	else
395 		output = "always defer defer+madvise madvise [never]";
396 
397 	return sysfs_emit(buf, "%s\n", output);
398 }
399 
defrag_store(struct kobject * kobj,struct kobj_attribute * attr,const char * buf,size_t count)400 static ssize_t defrag_store(struct kobject *kobj,
401 			    struct kobj_attribute *attr,
402 			    const char *buf, size_t count)
403 {
404 	if (sysfs_streq(buf, "always")) {
405 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
406 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
407 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
408 		set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
409 	} else if (sysfs_streq(buf, "defer+madvise")) {
410 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
411 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
412 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
413 		set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
414 	} else if (sysfs_streq(buf, "defer")) {
415 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
416 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
417 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
418 		set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
419 	} else if (sysfs_streq(buf, "madvise")) {
420 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
421 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
422 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
423 		set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
424 	} else if (sysfs_streq(buf, "never")) {
425 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
426 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
427 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
428 		clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
429 	} else
430 		return -EINVAL;
431 
432 	return count;
433 }
434 static struct kobj_attribute defrag_attr = __ATTR_RW(defrag);
435 
use_zero_page_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf)436 static ssize_t use_zero_page_show(struct kobject *kobj,
437 				  struct kobj_attribute *attr, char *buf)
438 {
439 	return single_hugepage_flag_show(kobj, attr, buf,
440 					 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
441 }
use_zero_page_store(struct kobject * kobj,struct kobj_attribute * attr,const char * buf,size_t count)442 static ssize_t use_zero_page_store(struct kobject *kobj,
443 		struct kobj_attribute *attr, const char *buf, size_t count)
444 {
445 	return single_hugepage_flag_store(kobj, attr, buf, count,
446 				 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
447 }
448 static struct kobj_attribute use_zero_page_attr = __ATTR_RW(use_zero_page);
449 
hpage_pmd_size_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf)450 static ssize_t hpage_pmd_size_show(struct kobject *kobj,
451 				   struct kobj_attribute *attr, char *buf)
452 {
453 	return sysfs_emit(buf, "%lu\n", HPAGE_PMD_SIZE);
454 }
455 static struct kobj_attribute hpage_pmd_size_attr =
456 	__ATTR_RO(hpage_pmd_size);
457 
split_underused_thp_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf)458 static ssize_t split_underused_thp_show(struct kobject *kobj,
459 			    struct kobj_attribute *attr, char *buf)
460 {
461 	return sysfs_emit(buf, "%d\n", split_underused_thp);
462 }
463 
split_underused_thp_store(struct kobject * kobj,struct kobj_attribute * attr,const char * buf,size_t count)464 static ssize_t split_underused_thp_store(struct kobject *kobj,
465 			     struct kobj_attribute *attr,
466 			     const char *buf, size_t count)
467 {
468 	int err = kstrtobool(buf, &split_underused_thp);
469 
470 	if (err < 0)
471 		return err;
472 
473 	return count;
474 }
475 
476 static struct kobj_attribute split_underused_thp_attr = __ATTR(
477 	shrink_underused, 0644, split_underused_thp_show, split_underused_thp_store);
478 
479 static struct attribute *hugepage_attr[] = {
480 	&enabled_attr.attr,
481 	&defrag_attr.attr,
482 	&use_zero_page_attr.attr,
483 	&hpage_pmd_size_attr.attr,
484 #ifdef CONFIG_SHMEM
485 	&shmem_enabled_attr.attr,
486 #endif
487 	&split_underused_thp_attr.attr,
488 	NULL,
489 };
490 
491 static const struct attribute_group hugepage_attr_group = {
492 	.attrs = hugepage_attr,
493 };
494 
495 static void hugepage_exit_sysfs(struct kobject *hugepage_kobj);
496 static void thpsize_release(struct kobject *kobj);
497 static DEFINE_SPINLOCK(huge_anon_orders_lock);
498 static LIST_HEAD(thpsize_list);
499 
anon_enabled_show(struct kobject * kobj,struct kobj_attribute * attr,char * buf)500 static ssize_t anon_enabled_show(struct kobject *kobj,
501 				 struct kobj_attribute *attr, char *buf)
502 {
503 	int order = to_thpsize(kobj)->order;
504 	const char *output;
505 
506 	if (test_bit(order, &huge_anon_orders_always))
507 		output = "[always] inherit madvise never";
508 	else if (test_bit(order, &huge_anon_orders_inherit))
509 		output = "always [inherit] madvise never";
510 	else if (test_bit(order, &huge_anon_orders_madvise))
511 		output = "always inherit [madvise] never";
512 	else
513 		output = "always inherit madvise [never]";
514 
515 	return sysfs_emit(buf, "%s\n", output);
516 }
517 
anon_enabled_store(struct kobject * kobj,struct kobj_attribute * attr,const char * buf,size_t count)518 static ssize_t anon_enabled_store(struct kobject *kobj,
519 				  struct kobj_attribute *attr,
520 				  const char *buf, size_t count)
521 {
522 	int order = to_thpsize(kobj)->order;
523 	ssize_t ret = count;
524 
525 	if (sysfs_streq(buf, "always")) {
526 		spin_lock(&huge_anon_orders_lock);
527 		clear_bit(order, &huge_anon_orders_inherit);
528 		clear_bit(order, &huge_anon_orders_madvise);
529 		set_bit(order, &huge_anon_orders_always);
530 		spin_unlock(&huge_anon_orders_lock);
531 	} else if (sysfs_streq(buf, "inherit")) {
532 		spin_lock(&huge_anon_orders_lock);
533 		clear_bit(order, &huge_anon_orders_always);
534 		clear_bit(order, &huge_anon_orders_madvise);
535 		set_bit(order, &huge_anon_orders_inherit);
536 		spin_unlock(&huge_anon_orders_lock);
537 	} else if (sysfs_streq(buf, "madvise")) {
538 		spin_lock(&huge_anon_orders_lock);
539 		clear_bit(order, &huge_anon_orders_always);
540 		clear_bit(order, &huge_anon_orders_inherit);
541 		set_bit(order, &huge_anon_orders_madvise);
542 		spin_unlock(&huge_anon_orders_lock);
543 	} else if (sysfs_streq(buf, "never")) {
544 		spin_lock(&huge_anon_orders_lock);
545 		clear_bit(order, &huge_anon_orders_always);
546 		clear_bit(order, &huge_anon_orders_inherit);
547 		clear_bit(order, &huge_anon_orders_madvise);
548 		spin_unlock(&huge_anon_orders_lock);
549 	} else
550 		ret = -EINVAL;
551 
552 	if (ret > 0) {
553 		int err;
554 
555 		err = start_stop_khugepaged();
556 		if (err)
557 			ret = err;
558 	}
559 	return ret;
560 }
561 
562 static struct kobj_attribute anon_enabled_attr =
563 	__ATTR(enabled, 0644, anon_enabled_show, anon_enabled_store);
564 
565 static struct attribute *anon_ctrl_attrs[] = {
566 	&anon_enabled_attr.attr,
567 	NULL,
568 };
569 
570 static const struct attribute_group anon_ctrl_attr_grp = {
571 	.attrs = anon_ctrl_attrs,
572 };
573 
574 static struct attribute *file_ctrl_attrs[] = {
575 #ifdef CONFIG_SHMEM
576 	&thpsize_shmem_enabled_attr.attr,
577 #endif
578 	NULL,
579 };
580 
581 static const struct attribute_group file_ctrl_attr_grp = {
582 	.attrs = file_ctrl_attrs,
583 };
584 
585 static struct attribute *any_ctrl_attrs[] = {
586 	NULL,
587 };
588 
589 static const struct attribute_group any_ctrl_attr_grp = {
590 	.attrs = any_ctrl_attrs,
591 };
592 
593 static const struct kobj_type thpsize_ktype = {
594 	.release = &thpsize_release,
595 	.sysfs_ops = &kobj_sysfs_ops,
596 };
597 
598 DEFINE_PER_CPU(struct mthp_stat, mthp_stats) = {{{0}}};
599 
sum_mthp_stat(int order,enum mthp_stat_item item)600 static unsigned long sum_mthp_stat(int order, enum mthp_stat_item item)
601 {
602 	unsigned long sum = 0;
603 	int cpu;
604 
605 	for_each_possible_cpu(cpu) {
606 		struct mthp_stat *this = &per_cpu(mthp_stats, cpu);
607 
608 		sum += this->stats[order][item];
609 	}
610 
611 	return sum;
612 }
613 
614 #define DEFINE_MTHP_STAT_ATTR(_name, _index)				\
615 static ssize_t _name##_show(struct kobject *kobj,			\
616 			struct kobj_attribute *attr, char *buf)		\
617 {									\
618 	int order = to_thpsize(kobj)->order;				\
619 									\
620 	return sysfs_emit(buf, "%lu\n", sum_mthp_stat(order, _index));	\
621 }									\
622 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
623 
624 DEFINE_MTHP_STAT_ATTR(anon_fault_alloc, MTHP_STAT_ANON_FAULT_ALLOC);
625 DEFINE_MTHP_STAT_ATTR(anon_fault_fallback, MTHP_STAT_ANON_FAULT_FALLBACK);
626 DEFINE_MTHP_STAT_ATTR(anon_fault_fallback_charge, MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE);
627 DEFINE_MTHP_STAT_ATTR(zswpout, MTHP_STAT_ZSWPOUT);
628 DEFINE_MTHP_STAT_ATTR(swpin, MTHP_STAT_SWPIN);
629 DEFINE_MTHP_STAT_ATTR(swpin_fallback, MTHP_STAT_SWPIN_FALLBACK);
630 DEFINE_MTHP_STAT_ATTR(swpin_fallback_charge, MTHP_STAT_SWPIN_FALLBACK_CHARGE);
631 DEFINE_MTHP_STAT_ATTR(swpout, MTHP_STAT_SWPOUT);
632 DEFINE_MTHP_STAT_ATTR(swpout_fallback, MTHP_STAT_SWPOUT_FALLBACK);
633 #ifdef CONFIG_SHMEM
634 DEFINE_MTHP_STAT_ATTR(shmem_alloc, MTHP_STAT_SHMEM_ALLOC);
635 DEFINE_MTHP_STAT_ATTR(shmem_fallback, MTHP_STAT_SHMEM_FALLBACK);
636 DEFINE_MTHP_STAT_ATTR(shmem_fallback_charge, MTHP_STAT_SHMEM_FALLBACK_CHARGE);
637 #endif
638 DEFINE_MTHP_STAT_ATTR(split, MTHP_STAT_SPLIT);
639 DEFINE_MTHP_STAT_ATTR(split_failed, MTHP_STAT_SPLIT_FAILED);
640 DEFINE_MTHP_STAT_ATTR(split_deferred, MTHP_STAT_SPLIT_DEFERRED);
641 DEFINE_MTHP_STAT_ATTR(nr_anon, MTHP_STAT_NR_ANON);
642 DEFINE_MTHP_STAT_ATTR(nr_anon_partially_mapped, MTHP_STAT_NR_ANON_PARTIALLY_MAPPED);
643 
644 static struct attribute *anon_stats_attrs[] = {
645 	&anon_fault_alloc_attr.attr,
646 	&anon_fault_fallback_attr.attr,
647 	&anon_fault_fallback_charge_attr.attr,
648 #ifndef CONFIG_SHMEM
649 	&zswpout_attr.attr,
650 	&swpin_attr.attr,
651 	&swpin_fallback_attr.attr,
652 	&swpin_fallback_charge_attr.attr,
653 	&swpout_attr.attr,
654 	&swpout_fallback_attr.attr,
655 #endif
656 	&split_deferred_attr.attr,
657 	&nr_anon_attr.attr,
658 	&nr_anon_partially_mapped_attr.attr,
659 	NULL,
660 };
661 
662 static struct attribute_group anon_stats_attr_grp = {
663 	.name = "stats",
664 	.attrs = anon_stats_attrs,
665 };
666 
667 static struct attribute *file_stats_attrs[] = {
668 #ifdef CONFIG_SHMEM
669 	&shmem_alloc_attr.attr,
670 	&shmem_fallback_attr.attr,
671 	&shmem_fallback_charge_attr.attr,
672 #endif
673 	NULL,
674 };
675 
676 static struct attribute_group file_stats_attr_grp = {
677 	.name = "stats",
678 	.attrs = file_stats_attrs,
679 };
680 
681 static struct attribute *any_stats_attrs[] = {
682 #ifdef CONFIG_SHMEM
683 	&zswpout_attr.attr,
684 	&swpin_attr.attr,
685 	&swpin_fallback_attr.attr,
686 	&swpin_fallback_charge_attr.attr,
687 	&swpout_attr.attr,
688 	&swpout_fallback_attr.attr,
689 #endif
690 	&split_attr.attr,
691 	&split_failed_attr.attr,
692 	NULL,
693 };
694 
695 static struct attribute_group any_stats_attr_grp = {
696 	.name = "stats",
697 	.attrs = any_stats_attrs,
698 };
699 
sysfs_add_group(struct kobject * kobj,const struct attribute_group * grp)700 static int sysfs_add_group(struct kobject *kobj,
701 			   const struct attribute_group *grp)
702 {
703 	int ret = -ENOENT;
704 
705 	/*
706 	 * If the group is named, try to merge first, assuming the subdirectory
707 	 * was already created. This avoids the warning emitted by
708 	 * sysfs_create_group() if the directory already exists.
709 	 */
710 	if (grp->name)
711 		ret = sysfs_merge_group(kobj, grp);
712 	if (ret)
713 		ret = sysfs_create_group(kobj, grp);
714 
715 	return ret;
716 }
717 
thpsize_create(int order,struct kobject * parent)718 static struct thpsize *thpsize_create(int order, struct kobject *parent)
719 {
720 	unsigned long size = (PAGE_SIZE << order) / SZ_1K;
721 	struct thpsize *thpsize;
722 	int ret = -ENOMEM;
723 
724 	thpsize = kzalloc_obj(*thpsize);
725 	if (!thpsize)
726 		goto err;
727 
728 	thpsize->order = order;
729 
730 	ret = kobject_init_and_add(&thpsize->kobj, &thpsize_ktype, parent,
731 				   "hugepages-%lukB", size);
732 	if (ret) {
733 		kfree(thpsize);
734 		goto err;
735 	}
736 
737 
738 	ret = sysfs_add_group(&thpsize->kobj, &any_ctrl_attr_grp);
739 	if (ret)
740 		goto err_put;
741 
742 	ret = sysfs_add_group(&thpsize->kobj, &any_stats_attr_grp);
743 	if (ret)
744 		goto err_put;
745 
746 	if (BIT(order) & THP_ORDERS_ALL_ANON) {
747 		ret = sysfs_add_group(&thpsize->kobj, &anon_ctrl_attr_grp);
748 		if (ret)
749 			goto err_put;
750 
751 		ret = sysfs_add_group(&thpsize->kobj, &anon_stats_attr_grp);
752 		if (ret)
753 			goto err_put;
754 	}
755 
756 	if (BIT(order) & THP_ORDERS_ALL_FILE_DEFAULT) {
757 		ret = sysfs_add_group(&thpsize->kobj, &file_ctrl_attr_grp);
758 		if (ret)
759 			goto err_put;
760 
761 		ret = sysfs_add_group(&thpsize->kobj, &file_stats_attr_grp);
762 		if (ret)
763 			goto err_put;
764 	}
765 
766 	return thpsize;
767 err_put:
768 	kobject_put(&thpsize->kobj);
769 err:
770 	return ERR_PTR(ret);
771 }
772 
thpsize_release(struct kobject * kobj)773 static void thpsize_release(struct kobject *kobj)
774 {
775 	kfree(to_thpsize(kobj));
776 }
777 
hugepage_init_sysfs(struct kobject ** hugepage_kobj)778 static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
779 {
780 	int err;
781 	struct thpsize *thpsize;
782 	unsigned long orders;
783 	int order;
784 
785 	/*
786 	 * Default to setting PMD-sized THP to inherit the global setting and
787 	 * disable all other sizes. powerpc's PMD_ORDER isn't a compile-time
788 	 * constant so we have to do this here.
789 	 */
790 	if (!anon_orders_configured)
791 		huge_anon_orders_inherit = BIT(PMD_ORDER);
792 
793 	*hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
794 	if (unlikely(!*hugepage_kobj)) {
795 		pr_err("failed to create transparent hugepage kobject\n");
796 		return -ENOMEM;
797 	}
798 
799 	err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
800 	if (err) {
801 		pr_err("failed to register transparent hugepage group\n");
802 		goto delete_obj;
803 	}
804 
805 	err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
806 	if (err) {
807 		pr_err("failed to register transparent hugepage group\n");
808 		goto remove_hp_group;
809 	}
810 
811 	orders = THP_ORDERS_ALL_ANON | THP_ORDERS_ALL_FILE_DEFAULT;
812 	order = highest_order(orders);
813 	while (orders) {
814 		thpsize = thpsize_create(order, *hugepage_kobj);
815 		if (IS_ERR(thpsize)) {
816 			pr_err("failed to create thpsize for order %d\n", order);
817 			err = PTR_ERR(thpsize);
818 			goto remove_all;
819 		}
820 		list_add(&thpsize->node, &thpsize_list);
821 		order = next_order(&orders, order);
822 	}
823 
824 	return 0;
825 
826 remove_all:
827 	hugepage_exit_sysfs(*hugepage_kobj);
828 	return err;
829 remove_hp_group:
830 	sysfs_remove_group(*hugepage_kobj, &hugepage_attr_group);
831 delete_obj:
832 	kobject_put(*hugepage_kobj);
833 	return err;
834 }
835 
hugepage_exit_sysfs(struct kobject * hugepage_kobj)836 static void __init hugepage_exit_sysfs(struct kobject *hugepage_kobj)
837 {
838 	struct thpsize *thpsize, *tmp;
839 
840 	list_for_each_entry_safe(thpsize, tmp, &thpsize_list, node) {
841 		list_del(&thpsize->node);
842 		kobject_put(&thpsize->kobj);
843 	}
844 
845 	sysfs_remove_group(hugepage_kobj, &khugepaged_attr_group);
846 	sysfs_remove_group(hugepage_kobj, &hugepage_attr_group);
847 	kobject_put(hugepage_kobj);
848 }
849 #else
hugepage_init_sysfs(struct kobject ** hugepage_kobj)850 static inline int hugepage_init_sysfs(struct kobject **hugepage_kobj)
851 {
852 	return 0;
853 }
854 
hugepage_exit_sysfs(struct kobject * hugepage_kobj)855 static inline void hugepage_exit_sysfs(struct kobject *hugepage_kobj)
856 {
857 }
858 #endif /* CONFIG_SYSFS */
859 
thp_shrinker_init(void)860 static int __init thp_shrinker_init(void)
861 {
862 	deferred_split_shrinker = shrinker_alloc(SHRINKER_NUMA_AWARE |
863 						 SHRINKER_MEMCG_AWARE |
864 						 SHRINKER_NONSLAB,
865 						 "thp-deferred_split");
866 	if (!deferred_split_shrinker)
867 		return -ENOMEM;
868 
869 	deferred_split_shrinker->count_objects = deferred_split_count;
870 	deferred_split_shrinker->scan_objects = deferred_split_scan;
871 	shrinker_register(deferred_split_shrinker);
872 
873 	if (IS_ENABLED(CONFIG_PERSISTENT_HUGE_ZERO_FOLIO)) {
874 		/*
875 		 * Bump the reference of the huge_zero_folio and do not
876 		 * initialize the shrinker.
877 		 *
878 		 * huge_zero_folio will always be NULL on failure. We assume
879 		 * that get_huge_zero_folio() will most likely not fail as
880 		 * thp_shrinker_init() is invoked early on during boot.
881 		 */
882 		if (!get_huge_zero_folio())
883 			pr_warn("Allocating persistent huge zero folio failed\n");
884 		return 0;
885 	}
886 
887 	huge_zero_folio_shrinker = shrinker_alloc(0, "thp-zero");
888 	if (!huge_zero_folio_shrinker) {
889 		shrinker_free(deferred_split_shrinker);
890 		return -ENOMEM;
891 	}
892 
893 	huge_zero_folio_shrinker->count_objects = shrink_huge_zero_folio_count;
894 	huge_zero_folio_shrinker->scan_objects = shrink_huge_zero_folio_scan;
895 	shrinker_register(huge_zero_folio_shrinker);
896 
897 	return 0;
898 }
899 
thp_shrinker_exit(void)900 static void __init thp_shrinker_exit(void)
901 {
902 	shrinker_free(huge_zero_folio_shrinker);
903 	shrinker_free(deferred_split_shrinker);
904 }
905 
hugepage_init(void)906 static int __init hugepage_init(void)
907 {
908 	int err;
909 	struct kobject *hugepage_kobj;
910 
911 	if (!has_transparent_hugepage()) {
912 		transparent_hugepage_flags = 1 << TRANSPARENT_HUGEPAGE_UNSUPPORTED;
913 		return -EINVAL;
914 	}
915 
916 	/*
917 	 * hugepages can't be allocated by the buddy allocator
918 	 */
919 	MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER > MAX_PAGE_ORDER);
920 
921 	err = hugepage_init_sysfs(&hugepage_kobj);
922 	if (err)
923 		goto err_sysfs;
924 
925 	err = khugepaged_init();
926 	if (err)
927 		goto err_slab;
928 
929 	err = thp_shrinker_init();
930 	if (err)
931 		goto err_shrinker;
932 
933 	/*
934 	 * By default disable transparent hugepages on smaller systems,
935 	 * where the extra memory used could hurt more than TLB overhead
936 	 * is likely to save.  The admin can still enable it through /sys.
937 	 */
938 	if (totalram_pages() < MB_TO_PAGES(512)) {
939 		transparent_hugepage_flags = 0;
940 		return 0;
941 	}
942 
943 	err = start_stop_khugepaged();
944 	if (err)
945 		goto err_khugepaged;
946 
947 	return 0;
948 err_khugepaged:
949 	thp_shrinker_exit();
950 err_shrinker:
951 	khugepaged_destroy();
952 err_slab:
953 	hugepage_exit_sysfs(hugepage_kobj);
954 err_sysfs:
955 	return err;
956 }
957 subsys_initcall(hugepage_init);
958 
setup_transparent_hugepage(char * str)959 static int __init setup_transparent_hugepage(char *str)
960 {
961 	int ret = 0;
962 	if (!str)
963 		goto out;
964 	if (!strcmp(str, "always")) {
965 		set_bit(TRANSPARENT_HUGEPAGE_FLAG,
966 			&transparent_hugepage_flags);
967 		clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
968 			  &transparent_hugepage_flags);
969 		ret = 1;
970 	} else if (!strcmp(str, "madvise")) {
971 		clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
972 			  &transparent_hugepage_flags);
973 		set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
974 			&transparent_hugepage_flags);
975 		ret = 1;
976 	} else if (!strcmp(str, "never")) {
977 		clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
978 			  &transparent_hugepage_flags);
979 		clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
980 			  &transparent_hugepage_flags);
981 		ret = 1;
982 	}
983 out:
984 	if (!ret)
985 		pr_warn("transparent_hugepage= cannot parse, ignored\n");
986 	return ret;
987 }
988 __setup("transparent_hugepage=", setup_transparent_hugepage);
989 
990 static char str_dup[PAGE_SIZE] __initdata;
setup_thp_anon(char * str)991 static int __init setup_thp_anon(char *str)
992 {
993 	char *token, *range, *policy, *subtoken;
994 	unsigned long always, inherit, madvise;
995 	char *start_size, *end_size;
996 	int start, end, nr;
997 	char *p;
998 
999 	if (!str || strlen(str) + 1 > PAGE_SIZE)
1000 		goto err;
1001 	strscpy(str_dup, str);
1002 
1003 	always = huge_anon_orders_always;
1004 	madvise = huge_anon_orders_madvise;
1005 	inherit = huge_anon_orders_inherit;
1006 	p = str_dup;
1007 	while ((token = strsep(&p, ";")) != NULL) {
1008 		range = strsep(&token, ":");
1009 		policy = token;
1010 
1011 		if (!policy)
1012 			goto err;
1013 
1014 		while ((subtoken = strsep(&range, ",")) != NULL) {
1015 			if (strchr(subtoken, '-')) {
1016 				start_size = strsep(&subtoken, "-");
1017 				end_size = subtoken;
1018 
1019 				start = get_order_from_str(start_size, THP_ORDERS_ALL_ANON);
1020 				end = get_order_from_str(end_size, THP_ORDERS_ALL_ANON);
1021 			} else {
1022 				start_size = end_size = subtoken;
1023 				start = end = get_order_from_str(subtoken,
1024 								 THP_ORDERS_ALL_ANON);
1025 			}
1026 
1027 			if (start == -EINVAL) {
1028 				pr_err("invalid size %s in thp_anon boot parameter\n", start_size);
1029 				goto err;
1030 			}
1031 
1032 			if (end == -EINVAL) {
1033 				pr_err("invalid size %s in thp_anon boot parameter\n", end_size);
1034 				goto err;
1035 			}
1036 
1037 			if (start < 0 || end < 0 || start > end)
1038 				goto err;
1039 
1040 			nr = end - start + 1;
1041 			if (!strcmp(policy, "always")) {
1042 				bitmap_set(&always, start, nr);
1043 				bitmap_clear(&inherit, start, nr);
1044 				bitmap_clear(&madvise, start, nr);
1045 			} else if (!strcmp(policy, "madvise")) {
1046 				bitmap_set(&madvise, start, nr);
1047 				bitmap_clear(&inherit, start, nr);
1048 				bitmap_clear(&always, start, nr);
1049 			} else if (!strcmp(policy, "inherit")) {
1050 				bitmap_set(&inherit, start, nr);
1051 				bitmap_clear(&madvise, start, nr);
1052 				bitmap_clear(&always, start, nr);
1053 			} else if (!strcmp(policy, "never")) {
1054 				bitmap_clear(&inherit, start, nr);
1055 				bitmap_clear(&madvise, start, nr);
1056 				bitmap_clear(&always, start, nr);
1057 			} else {
1058 				pr_err("invalid policy %s in thp_anon boot parameter\n", policy);
1059 				goto err;
1060 			}
1061 		}
1062 	}
1063 
1064 	huge_anon_orders_always = always;
1065 	huge_anon_orders_madvise = madvise;
1066 	huge_anon_orders_inherit = inherit;
1067 	anon_orders_configured = true;
1068 	return 1;
1069 
1070 err:
1071 	pr_warn("thp_anon=%s: error parsing string, ignoring setting\n", str);
1072 	return 0;
1073 }
1074 __setup("thp_anon=", setup_thp_anon);
1075 
maybe_pmd_mkwrite(pmd_t pmd,struct vm_area_struct * vma)1076 pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
1077 {
1078 	if (likely(vma->vm_flags & VM_WRITE))
1079 		pmd = pmd_mkwrite(pmd, vma);
1080 	return pmd;
1081 }
1082 
split_queue_node(int nid)1083 static struct deferred_split *split_queue_node(int nid)
1084 {
1085 	struct pglist_data *pgdata = NODE_DATA(nid);
1086 
1087 	return &pgdata->deferred_split_queue;
1088 }
1089 
1090 #ifdef CONFIG_MEMCG
1091 static inline
folio_split_queue_memcg(struct folio * folio,struct deferred_split * queue)1092 struct mem_cgroup *folio_split_queue_memcg(struct folio *folio,
1093 					   struct deferred_split *queue)
1094 {
1095 	if (mem_cgroup_disabled())
1096 		return NULL;
1097 	if (split_queue_node(folio_nid(folio)) == queue)
1098 		return NULL;
1099 	return container_of(queue, struct mem_cgroup, deferred_split_queue);
1100 }
1101 
memcg_split_queue(int nid,struct mem_cgroup * memcg)1102 static struct deferred_split *memcg_split_queue(int nid, struct mem_cgroup *memcg)
1103 {
1104 	return memcg ? &memcg->deferred_split_queue : split_queue_node(nid);
1105 }
1106 #else
1107 static inline
folio_split_queue_memcg(struct folio * folio,struct deferred_split * queue)1108 struct mem_cgroup *folio_split_queue_memcg(struct folio *folio,
1109 					   struct deferred_split *queue)
1110 {
1111 	return NULL;
1112 }
1113 
memcg_split_queue(int nid,struct mem_cgroup * memcg)1114 static struct deferred_split *memcg_split_queue(int nid, struct mem_cgroup *memcg)
1115 {
1116 	return split_queue_node(nid);
1117 }
1118 #endif
1119 
split_queue_lock(int nid,struct mem_cgroup * memcg)1120 static struct deferred_split *split_queue_lock(int nid, struct mem_cgroup *memcg)
1121 {
1122 	struct deferred_split *queue;
1123 
1124 retry:
1125 	queue = memcg_split_queue(nid, memcg);
1126 	spin_lock(&queue->split_queue_lock);
1127 	/*
1128 	 * There is a period between setting memcg to dying and reparenting
1129 	 * deferred split queue, and during this period the THPs in the deferred
1130 	 * split queue will be hidden from the shrinker side.
1131 	 */
1132 	if (unlikely(memcg_is_dying(memcg))) {
1133 		spin_unlock(&queue->split_queue_lock);
1134 		memcg = parent_mem_cgroup(memcg);
1135 		goto retry;
1136 	}
1137 
1138 	return queue;
1139 }
1140 
1141 static struct deferred_split *
split_queue_lock_irqsave(int nid,struct mem_cgroup * memcg,unsigned long * flags)1142 split_queue_lock_irqsave(int nid, struct mem_cgroup *memcg, unsigned long *flags)
1143 {
1144 	struct deferred_split *queue;
1145 
1146 retry:
1147 	queue = memcg_split_queue(nid, memcg);
1148 	spin_lock_irqsave(&queue->split_queue_lock, *flags);
1149 	if (unlikely(memcg_is_dying(memcg))) {
1150 		spin_unlock_irqrestore(&queue->split_queue_lock, *flags);
1151 		memcg = parent_mem_cgroup(memcg);
1152 		goto retry;
1153 	}
1154 
1155 	return queue;
1156 }
1157 
folio_split_queue_lock(struct folio * folio)1158 static struct deferred_split *folio_split_queue_lock(struct folio *folio)
1159 {
1160 	return split_queue_lock(folio_nid(folio), folio_memcg(folio));
1161 }
1162 
1163 static struct deferred_split *
folio_split_queue_lock_irqsave(struct folio * folio,unsigned long * flags)1164 folio_split_queue_lock_irqsave(struct folio *folio, unsigned long *flags)
1165 {
1166 	return split_queue_lock_irqsave(folio_nid(folio), folio_memcg(folio), flags);
1167 }
1168 
split_queue_unlock(struct deferred_split * queue)1169 static inline void split_queue_unlock(struct deferred_split *queue)
1170 {
1171 	spin_unlock(&queue->split_queue_lock);
1172 }
1173 
split_queue_unlock_irqrestore(struct deferred_split * queue,unsigned long flags)1174 static inline void split_queue_unlock_irqrestore(struct deferred_split *queue,
1175 						 unsigned long flags)
1176 {
1177 	spin_unlock_irqrestore(&queue->split_queue_lock, flags);
1178 }
1179 
is_transparent_hugepage(const struct folio * folio)1180 static inline bool is_transparent_hugepage(const struct folio *folio)
1181 {
1182 	if (!folio_test_large(folio))
1183 		return false;
1184 
1185 	return is_huge_zero_folio(folio) ||
1186 		folio_test_large_rmappable(folio);
1187 }
1188 
__thp_get_unmapped_area(struct file * filp,unsigned long addr,unsigned long len,loff_t off,unsigned long flags,unsigned long size,vm_flags_t vm_flags)1189 static unsigned long __thp_get_unmapped_area(struct file *filp,
1190 		unsigned long addr, unsigned long len,
1191 		loff_t off, unsigned long flags, unsigned long size,
1192 		vm_flags_t vm_flags)
1193 {
1194 	loff_t off_end = off + len;
1195 	loff_t off_align = round_up(off, size);
1196 	unsigned long len_pad, ret, off_sub;
1197 
1198 	if (!IS_ENABLED(CONFIG_64BIT) || in_compat_syscall())
1199 		return 0;
1200 
1201 	if (off_end <= off_align || (off_end - off_align) < size)
1202 		return 0;
1203 
1204 	len_pad = len + size;
1205 	if (len_pad < len || (off + len_pad) < off)
1206 		return 0;
1207 
1208 	ret = mm_get_unmapped_area_vmflags(filp, addr, len_pad,
1209 					   off >> PAGE_SHIFT, flags, vm_flags);
1210 
1211 	/*
1212 	 * The failure might be due to length padding. The caller will retry
1213 	 * without the padding.
1214 	 */
1215 	if (IS_ERR_VALUE(ret))
1216 		return 0;
1217 
1218 	/*
1219 	 * Do not try to align to THP boundary if allocation at the address
1220 	 * hint succeeds.
1221 	 */
1222 	if (ret == addr)
1223 		return addr;
1224 
1225 	off_sub = (off - ret) & (size - 1);
1226 
1227 	if (mm_flags_test(MMF_TOPDOWN, current->mm) && !off_sub)
1228 		return ret + size;
1229 
1230 	ret += off_sub;
1231 	return ret;
1232 }
1233 
thp_get_unmapped_area_vmflags(struct file * filp,unsigned long addr,unsigned long len,unsigned long pgoff,unsigned long flags,vm_flags_t vm_flags)1234 unsigned long thp_get_unmapped_area_vmflags(struct file *filp, unsigned long addr,
1235 		unsigned long len, unsigned long pgoff, unsigned long flags,
1236 		vm_flags_t vm_flags)
1237 {
1238 	unsigned long ret;
1239 	loff_t off = (loff_t)pgoff << PAGE_SHIFT;
1240 
1241 	ret = __thp_get_unmapped_area(filp, addr, len, off, flags, PMD_SIZE, vm_flags);
1242 	if (ret)
1243 		return ret;
1244 
1245 	return mm_get_unmapped_area_vmflags(filp, addr, len, pgoff, flags,
1246 					    vm_flags);
1247 }
1248 
thp_get_unmapped_area(struct file * filp,unsigned long addr,unsigned long len,unsigned long pgoff,unsigned long flags)1249 unsigned long thp_get_unmapped_area(struct file *filp, unsigned long addr,
1250 		unsigned long len, unsigned long pgoff, unsigned long flags)
1251 {
1252 	return thp_get_unmapped_area_vmflags(filp, addr, len, pgoff, flags, 0);
1253 }
1254 EXPORT_SYMBOL_GPL(thp_get_unmapped_area);
1255 
vma_alloc_anon_folio_pmd(struct vm_area_struct * vma,unsigned long addr)1256 static struct folio *vma_alloc_anon_folio_pmd(struct vm_area_struct *vma,
1257 		unsigned long addr)
1258 {
1259 	gfp_t gfp = vma_thp_gfp_mask(vma);
1260 	const int order = HPAGE_PMD_ORDER;
1261 	struct folio *folio;
1262 
1263 	folio = vma_alloc_folio(gfp, order, vma, addr & HPAGE_PMD_MASK);
1264 
1265 	if (unlikely(!folio)) {
1266 		count_vm_event(THP_FAULT_FALLBACK);
1267 		count_mthp_stat(order, MTHP_STAT_ANON_FAULT_FALLBACK);
1268 		return NULL;
1269 	}
1270 
1271 	VM_BUG_ON_FOLIO(!folio_test_large(folio), folio);
1272 	if (mem_cgroup_charge(folio, vma->vm_mm, gfp)) {
1273 		folio_put(folio);
1274 		count_vm_event(THP_FAULT_FALLBACK);
1275 		count_vm_event(THP_FAULT_FALLBACK_CHARGE);
1276 		count_mthp_stat(order, MTHP_STAT_ANON_FAULT_FALLBACK);
1277 		count_mthp_stat(order, MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE);
1278 		return NULL;
1279 	}
1280 	folio_throttle_swaprate(folio, gfp);
1281 
1282        /*
1283 	* When a folio is not zeroed during allocation (__GFP_ZERO not used)
1284 	* or user folios require special handling, folio_zero_user() is used to
1285 	* make sure that the page corresponding to the faulting address will be
1286 	* hot in the cache after zeroing.
1287 	*/
1288 	if (user_alloc_needs_zeroing())
1289 		folio_zero_user(folio, addr);
1290 	/*
1291 	 * The memory barrier inside __folio_mark_uptodate makes sure that
1292 	 * folio_zero_user writes become visible before the set_pmd_at()
1293 	 * write.
1294 	 */
1295 	__folio_mark_uptodate(folio);
1296 	return folio;
1297 }
1298 
map_anon_folio_pmd_nopf(struct folio * folio,pmd_t * pmd,struct vm_area_struct * vma,unsigned long haddr)1299 void map_anon_folio_pmd_nopf(struct folio *folio, pmd_t *pmd,
1300 		struct vm_area_struct *vma, unsigned long haddr)
1301 {
1302 	pmd_t entry;
1303 
1304 	entry = folio_mk_pmd(folio, vma->vm_page_prot);
1305 	entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
1306 	folio_add_new_anon_rmap(folio, vma, haddr, RMAP_EXCLUSIVE);
1307 	folio_add_lru_vma(folio, vma);
1308 	set_pmd_at(vma->vm_mm, haddr, pmd, entry);
1309 	update_mmu_cache_pmd(vma, haddr, pmd);
1310 	deferred_split_folio(folio, false);
1311 }
1312 
map_anon_folio_pmd_pf(struct folio * folio,pmd_t * pmd,struct vm_area_struct * vma,unsigned long haddr)1313 static void map_anon_folio_pmd_pf(struct folio *folio, pmd_t *pmd,
1314 		struct vm_area_struct *vma, unsigned long haddr)
1315 {
1316 	map_anon_folio_pmd_nopf(folio, pmd, vma, haddr);
1317 	add_mm_counter(vma->vm_mm, MM_ANONPAGES, HPAGE_PMD_NR);
1318 	count_vm_event(THP_FAULT_ALLOC);
1319 	count_mthp_stat(HPAGE_PMD_ORDER, MTHP_STAT_ANON_FAULT_ALLOC);
1320 	count_memcg_event_mm(vma->vm_mm, THP_FAULT_ALLOC);
1321 }
1322 
__do_huge_pmd_anonymous_page(struct vm_fault * vmf)1323 static vm_fault_t __do_huge_pmd_anonymous_page(struct vm_fault *vmf)
1324 {
1325 	unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
1326 	struct vm_area_struct *vma = vmf->vma;
1327 	struct folio *folio;
1328 	pgtable_t pgtable;
1329 	vm_fault_t ret = 0;
1330 
1331 	folio = vma_alloc_anon_folio_pmd(vma, vmf->address);
1332 	if (unlikely(!folio))
1333 		return VM_FAULT_FALLBACK;
1334 
1335 	pgtable = pte_alloc_one(vma->vm_mm);
1336 	if (unlikely(!pgtable)) {
1337 		ret = VM_FAULT_OOM;
1338 		goto release;
1339 	}
1340 
1341 	vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1342 	if (unlikely(!pmd_none(*vmf->pmd))) {
1343 		goto unlock_release;
1344 	} else {
1345 		ret = check_stable_address_space(vma->vm_mm);
1346 		if (ret)
1347 			goto unlock_release;
1348 
1349 		/* Deliver the page fault to userland */
1350 		if (userfaultfd_missing(vma)) {
1351 			spin_unlock(vmf->ptl);
1352 			folio_put(folio);
1353 			pte_free(vma->vm_mm, pgtable);
1354 			ret = handle_userfault(vmf, VM_UFFD_MISSING);
1355 			VM_BUG_ON(ret & VM_FAULT_FALLBACK);
1356 			return ret;
1357 		}
1358 		pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, pgtable);
1359 		map_anon_folio_pmd_pf(folio, vmf->pmd, vma, haddr);
1360 		mm_inc_nr_ptes(vma->vm_mm);
1361 		spin_unlock(vmf->ptl);
1362 	}
1363 
1364 	return 0;
1365 unlock_release:
1366 	spin_unlock(vmf->ptl);
1367 release:
1368 	if (pgtable)
1369 		pte_free(vma->vm_mm, pgtable);
1370 	folio_put(folio);
1371 	return ret;
1372 
1373 }
1374 
do_huge_pmd_device_private(struct vm_fault * vmf)1375 vm_fault_t do_huge_pmd_device_private(struct vm_fault *vmf)
1376 {
1377 	struct vm_area_struct *vma = vmf->vma;
1378 	vm_fault_t ret = 0;
1379 	spinlock_t *ptl;
1380 	softleaf_t entry;
1381 	struct page *page;
1382 	struct folio *folio;
1383 
1384 	if (vmf->flags & FAULT_FLAG_VMA_LOCK) {
1385 		vma_end_read(vma);
1386 		return VM_FAULT_RETRY;
1387 	}
1388 
1389 	ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1390 	if (unlikely(!pmd_same(*vmf->pmd, vmf->orig_pmd))) {
1391 		spin_unlock(ptl);
1392 		return 0;
1393 	}
1394 
1395 	entry = softleaf_from_pmd(vmf->orig_pmd);
1396 	page = softleaf_to_page(entry);
1397 	folio = page_folio(page);
1398 	vmf->page = page;
1399 	vmf->pte = NULL;
1400 	if (folio_trylock(folio)) {
1401 		folio_get(folio);
1402 		spin_unlock(ptl);
1403 		ret = page_pgmap(page)->ops->migrate_to_ram(vmf);
1404 		folio_unlock(folio);
1405 		folio_put(folio);
1406 	} else {
1407 		spin_unlock(ptl);
1408 	}
1409 
1410 	return ret;
1411 }
1412 
1413 /*
1414  * always: directly stall for all thp allocations
1415  * defer: wake kswapd and fail if not immediately available
1416  * defer+madvise: wake kswapd and directly stall for MADV_HUGEPAGE, otherwise
1417  *		  fail if not immediately available
1418  * madvise: directly stall for MADV_HUGEPAGE, otherwise fail if not immediately
1419  *	    available
1420  * never: never stall for any thp allocation
1421  */
vma_thp_gfp_mask(struct vm_area_struct * vma)1422 gfp_t vma_thp_gfp_mask(struct vm_area_struct *vma)
1423 {
1424 	const bool vma_madvised = vma && (vma->vm_flags & VM_HUGEPAGE);
1425 
1426 	/* Always do synchronous compaction */
1427 	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
1428 		return GFP_TRANSHUGE | (vma_madvised ? 0 : __GFP_NORETRY);
1429 
1430 	/* Kick kcompactd and fail quickly */
1431 	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
1432 		return GFP_TRANSHUGE_LIGHT | __GFP_KSWAPD_RECLAIM;
1433 
1434 	/* Synchronous compaction if madvised, otherwise kick kcompactd */
1435 	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags))
1436 		return GFP_TRANSHUGE_LIGHT |
1437 			(vma_madvised ? __GFP_DIRECT_RECLAIM :
1438 					__GFP_KSWAPD_RECLAIM);
1439 
1440 	/* Only do synchronous compaction if madvised */
1441 	if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags))
1442 		return GFP_TRANSHUGE_LIGHT |
1443 		       (vma_madvised ? __GFP_DIRECT_RECLAIM : 0);
1444 
1445 	return GFP_TRANSHUGE_LIGHT;
1446 }
1447 
1448 /* Caller must hold page table lock. */
set_huge_zero_folio(pgtable_t pgtable,struct mm_struct * mm,struct vm_area_struct * vma,unsigned long haddr,pmd_t * pmd,struct folio * zero_folio)1449 static void set_huge_zero_folio(pgtable_t pgtable, struct mm_struct *mm,
1450 		struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
1451 		struct folio *zero_folio)
1452 {
1453 	pmd_t entry;
1454 	entry = folio_mk_pmd(zero_folio, vma->vm_page_prot);
1455 	entry = pmd_mkspecial(entry);
1456 	pgtable_trans_huge_deposit(mm, pmd, pgtable);
1457 	set_pmd_at(mm, haddr, pmd, entry);
1458 	mm_inc_nr_ptes(mm);
1459 }
1460 
do_huge_pmd_anonymous_page(struct vm_fault * vmf)1461 vm_fault_t do_huge_pmd_anonymous_page(struct vm_fault *vmf)
1462 {
1463 	struct vm_area_struct *vma = vmf->vma;
1464 	unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
1465 	vm_fault_t ret;
1466 
1467 	if (!thp_vma_suitable_order(vma, haddr, PMD_ORDER))
1468 		return VM_FAULT_FALLBACK;
1469 	ret = vmf_anon_prepare(vmf);
1470 	if (ret)
1471 		return ret;
1472 	khugepaged_enter_vma(vma, vma->vm_flags);
1473 
1474 	if (!(vmf->flags & FAULT_FLAG_WRITE) &&
1475 			!mm_forbids_zeropage(vma->vm_mm) &&
1476 			transparent_hugepage_use_zero_page()) {
1477 		pgtable_t pgtable;
1478 		struct folio *zero_folio;
1479 		vm_fault_t ret;
1480 
1481 		pgtable = pte_alloc_one(vma->vm_mm);
1482 		if (unlikely(!pgtable))
1483 			return VM_FAULT_OOM;
1484 		zero_folio = mm_get_huge_zero_folio(vma->vm_mm);
1485 		if (unlikely(!zero_folio)) {
1486 			pte_free(vma->vm_mm, pgtable);
1487 			count_vm_event(THP_FAULT_FALLBACK);
1488 			return VM_FAULT_FALLBACK;
1489 		}
1490 		vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1491 		ret = 0;
1492 		if (pmd_none(*vmf->pmd)) {
1493 			ret = check_stable_address_space(vma->vm_mm);
1494 			if (ret) {
1495 				spin_unlock(vmf->ptl);
1496 				pte_free(vma->vm_mm, pgtable);
1497 			} else if (userfaultfd_missing(vma)) {
1498 				spin_unlock(vmf->ptl);
1499 				pte_free(vma->vm_mm, pgtable);
1500 				ret = handle_userfault(vmf, VM_UFFD_MISSING);
1501 				VM_BUG_ON(ret & VM_FAULT_FALLBACK);
1502 			} else {
1503 				set_huge_zero_folio(pgtable, vma->vm_mm, vma,
1504 						   haddr, vmf->pmd, zero_folio);
1505 				update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
1506 				spin_unlock(vmf->ptl);
1507 			}
1508 		} else {
1509 			spin_unlock(vmf->ptl);
1510 			pte_free(vma->vm_mm, pgtable);
1511 		}
1512 		return ret;
1513 	}
1514 
1515 	return __do_huge_pmd_anonymous_page(vmf);
1516 }
1517 
1518 struct folio_or_pfn {
1519 	union {
1520 		struct folio *folio;
1521 		unsigned long pfn;
1522 	};
1523 	bool is_folio;
1524 };
1525 
insert_pmd(struct vm_area_struct * vma,unsigned long addr,pmd_t * pmd,struct folio_or_pfn fop,pgprot_t prot,bool write)1526 static vm_fault_t insert_pmd(struct vm_area_struct *vma, unsigned long addr,
1527 		pmd_t *pmd, struct folio_or_pfn fop, pgprot_t prot,
1528 		bool write)
1529 {
1530 	struct mm_struct *mm = vma->vm_mm;
1531 	pgtable_t pgtable = NULL;
1532 	spinlock_t *ptl;
1533 	pmd_t entry;
1534 
1535 	if (addr < vma->vm_start || addr >= vma->vm_end)
1536 		return VM_FAULT_SIGBUS;
1537 
1538 	if (arch_needs_pgtable_deposit()) {
1539 		pgtable = pte_alloc_one(vma->vm_mm);
1540 		if (!pgtable)
1541 			return VM_FAULT_OOM;
1542 	}
1543 
1544 	ptl = pmd_lock(mm, pmd);
1545 	if (!pmd_none(*pmd)) {
1546 		const unsigned long pfn = fop.is_folio ? folio_pfn(fop.folio) :
1547 					  fop.pfn;
1548 
1549 		if (write) {
1550 			if (pmd_pfn(*pmd) != pfn) {
1551 				WARN_ON_ONCE(!is_huge_zero_pmd(*pmd));
1552 				goto out_unlock;
1553 			}
1554 			entry = pmd_mkyoung(*pmd);
1555 			entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
1556 			if (pmdp_set_access_flags(vma, addr, pmd, entry, 1))
1557 				update_mmu_cache_pmd(vma, addr, pmd);
1558 		}
1559 		goto out_unlock;
1560 	}
1561 
1562 	if (fop.is_folio) {
1563 		entry = folio_mk_pmd(fop.folio, vma->vm_page_prot);
1564 
1565 		if (is_huge_zero_folio(fop.folio)) {
1566 			entry = pmd_mkspecial(entry);
1567 		} else {
1568 			folio_get(fop.folio);
1569 			folio_add_file_rmap_pmd(fop.folio, &fop.folio->page, vma);
1570 			add_mm_counter(mm, mm_counter_file(fop.folio), HPAGE_PMD_NR);
1571 		}
1572 	} else {
1573 		entry = pmd_mkhuge(pfn_pmd(fop.pfn, prot));
1574 		entry = pmd_mkspecial(entry);
1575 	}
1576 	if (write) {
1577 		entry = pmd_mkyoung(pmd_mkdirty(entry));
1578 		entry = maybe_pmd_mkwrite(entry, vma);
1579 	}
1580 
1581 	if (pgtable) {
1582 		pgtable_trans_huge_deposit(mm, pmd, pgtable);
1583 		mm_inc_nr_ptes(mm);
1584 		pgtable = NULL;
1585 	}
1586 
1587 	set_pmd_at(mm, addr, pmd, entry);
1588 	update_mmu_cache_pmd(vma, addr, pmd);
1589 
1590 out_unlock:
1591 	spin_unlock(ptl);
1592 	if (pgtable)
1593 		pte_free(mm, pgtable);
1594 	return VM_FAULT_NOPAGE;
1595 }
1596 
1597 /**
1598  * vmf_insert_pfn_pmd - insert a pmd size pfn
1599  * @vmf: Structure describing the fault
1600  * @pfn: pfn to insert
1601  * @write: whether it's a write fault
1602  *
1603  * Insert a pmd size pfn. See vmf_insert_pfn() for additional info.
1604  *
1605  * Return: vm_fault_t value.
1606  */
vmf_insert_pfn_pmd(struct vm_fault * vmf,unsigned long pfn,bool write)1607 vm_fault_t vmf_insert_pfn_pmd(struct vm_fault *vmf, unsigned long pfn,
1608 			      bool write)
1609 {
1610 	unsigned long addr = vmf->address & PMD_MASK;
1611 	struct vm_area_struct *vma = vmf->vma;
1612 	pgprot_t pgprot = vma->vm_page_prot;
1613 	struct folio_or_pfn fop = {
1614 		.pfn = pfn,
1615 	};
1616 
1617 	/*
1618 	 * If we had pmd_special, we could avoid all these restrictions,
1619 	 * but we need to be consistent with PTEs and architectures that
1620 	 * can't support a 'special' bit.
1621 	 */
1622 	BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
1623 	BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
1624 						(VM_PFNMAP|VM_MIXEDMAP));
1625 	BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
1626 
1627 	pfnmap_setup_cachemode_pfn(pfn, &pgprot);
1628 
1629 	return insert_pmd(vma, addr, vmf->pmd, fop, pgprot, write);
1630 }
1631 EXPORT_SYMBOL_GPL(vmf_insert_pfn_pmd);
1632 
vmf_insert_folio_pmd(struct vm_fault * vmf,struct folio * folio,bool write)1633 vm_fault_t vmf_insert_folio_pmd(struct vm_fault *vmf, struct folio *folio,
1634 				bool write)
1635 {
1636 	struct vm_area_struct *vma = vmf->vma;
1637 	unsigned long addr = vmf->address & PMD_MASK;
1638 	struct folio_or_pfn fop = {
1639 		.folio = folio,
1640 		.is_folio = true,
1641 	};
1642 
1643 	if (WARN_ON_ONCE(folio_order(folio) != PMD_ORDER))
1644 		return VM_FAULT_SIGBUS;
1645 
1646 	return insert_pmd(vma, addr, vmf->pmd, fop, vma->vm_page_prot, write);
1647 }
1648 EXPORT_SYMBOL_GPL(vmf_insert_folio_pmd);
1649 
1650 #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
maybe_pud_mkwrite(pud_t pud,struct vm_area_struct * vma)1651 static pud_t maybe_pud_mkwrite(pud_t pud, struct vm_area_struct *vma)
1652 {
1653 	if (likely(vma->vm_flags & VM_WRITE))
1654 		pud = pud_mkwrite(pud);
1655 	return pud;
1656 }
1657 
insert_pud(struct vm_area_struct * vma,unsigned long addr,pud_t * pud,struct folio_or_pfn fop,pgprot_t prot,bool write)1658 static vm_fault_t insert_pud(struct vm_area_struct *vma, unsigned long addr,
1659 		pud_t *pud, struct folio_or_pfn fop, pgprot_t prot, bool write)
1660 {
1661 	struct mm_struct *mm = vma->vm_mm;
1662 	spinlock_t *ptl;
1663 	pud_t entry;
1664 
1665 	if (addr < vma->vm_start || addr >= vma->vm_end)
1666 		return VM_FAULT_SIGBUS;
1667 
1668 	ptl = pud_lock(mm, pud);
1669 	if (!pud_none(*pud)) {
1670 		const unsigned long pfn = fop.is_folio ? folio_pfn(fop.folio) :
1671 					  fop.pfn;
1672 
1673 		if (write) {
1674 			if (WARN_ON_ONCE(pud_pfn(*pud) != pfn))
1675 				goto out_unlock;
1676 			entry = pud_mkyoung(*pud);
1677 			entry = maybe_pud_mkwrite(pud_mkdirty(entry), vma);
1678 			if (pudp_set_access_flags(vma, addr, pud, entry, 1))
1679 				update_mmu_cache_pud(vma, addr, pud);
1680 		}
1681 		goto out_unlock;
1682 	}
1683 
1684 	if (fop.is_folio) {
1685 		entry = folio_mk_pud(fop.folio, vma->vm_page_prot);
1686 
1687 		folio_get(fop.folio);
1688 		folio_add_file_rmap_pud(fop.folio, &fop.folio->page, vma);
1689 		add_mm_counter(mm, mm_counter_file(fop.folio), HPAGE_PUD_NR);
1690 	} else {
1691 		entry = pud_mkhuge(pfn_pud(fop.pfn, prot));
1692 		entry = pud_mkspecial(entry);
1693 	}
1694 	if (write) {
1695 		entry = pud_mkyoung(pud_mkdirty(entry));
1696 		entry = maybe_pud_mkwrite(entry, vma);
1697 	}
1698 	set_pud_at(mm, addr, pud, entry);
1699 	update_mmu_cache_pud(vma, addr, pud);
1700 out_unlock:
1701 	spin_unlock(ptl);
1702 	return VM_FAULT_NOPAGE;
1703 }
1704 
1705 /**
1706  * vmf_insert_pfn_pud - insert a pud size pfn
1707  * @vmf: Structure describing the fault
1708  * @pfn: pfn to insert
1709  * @write: whether it's a write fault
1710  *
1711  * Insert a pud size pfn. See vmf_insert_pfn() for additional info.
1712  *
1713  * Return: vm_fault_t value.
1714  */
vmf_insert_pfn_pud(struct vm_fault * vmf,unsigned long pfn,bool write)1715 vm_fault_t vmf_insert_pfn_pud(struct vm_fault *vmf, unsigned long pfn,
1716 			      bool write)
1717 {
1718 	unsigned long addr = vmf->address & PUD_MASK;
1719 	struct vm_area_struct *vma = vmf->vma;
1720 	pgprot_t pgprot = vma->vm_page_prot;
1721 	struct folio_or_pfn fop = {
1722 		.pfn = pfn,
1723 	};
1724 
1725 	/*
1726 	 * If we had pud_special, we could avoid all these restrictions,
1727 	 * but we need to be consistent with PTEs and architectures that
1728 	 * can't support a 'special' bit.
1729 	 */
1730 	BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
1731 	BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
1732 						(VM_PFNMAP|VM_MIXEDMAP));
1733 	BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
1734 
1735 	pfnmap_setup_cachemode_pfn(pfn, &pgprot);
1736 
1737 	return insert_pud(vma, addr, vmf->pud, fop, pgprot, write);
1738 }
1739 EXPORT_SYMBOL_GPL(vmf_insert_pfn_pud);
1740 
1741 /**
1742  * vmf_insert_folio_pud - insert a pud size folio mapped by a pud entry
1743  * @vmf: Structure describing the fault
1744  * @folio: folio to insert
1745  * @write: whether it's a write fault
1746  *
1747  * Return: vm_fault_t value.
1748  */
vmf_insert_folio_pud(struct vm_fault * vmf,struct folio * folio,bool write)1749 vm_fault_t vmf_insert_folio_pud(struct vm_fault *vmf, struct folio *folio,
1750 				bool write)
1751 {
1752 	struct vm_area_struct *vma = vmf->vma;
1753 	unsigned long addr = vmf->address & PUD_MASK;
1754 	struct folio_or_pfn fop = {
1755 		.folio = folio,
1756 		.is_folio = true,
1757 	};
1758 
1759 	if (WARN_ON_ONCE(folio_order(folio) != PUD_ORDER))
1760 		return VM_FAULT_SIGBUS;
1761 
1762 	return insert_pud(vma, addr, vmf->pud, fop, vma->vm_page_prot, write);
1763 }
1764 EXPORT_SYMBOL_GPL(vmf_insert_folio_pud);
1765 #endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1766 
1767 /**
1768  * touch_pmd - Mark page table pmd entry as accessed and dirty (for write)
1769  * @vma: The VMA covering @addr
1770  * @addr: The virtual address
1771  * @pmd: pmd pointer into the page table mapping @addr
1772  * @write: Whether it's a write access
1773  *
1774  * Return: whether the pmd entry is changed
1775  */
touch_pmd(struct vm_area_struct * vma,unsigned long addr,pmd_t * pmd,bool write)1776 bool touch_pmd(struct vm_area_struct *vma, unsigned long addr,
1777 	       pmd_t *pmd, bool write)
1778 {
1779 	pmd_t entry;
1780 
1781 	entry = pmd_mkyoung(*pmd);
1782 	if (write)
1783 		entry = pmd_mkdirty(entry);
1784 	if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
1785 				  pmd, entry, write)) {
1786 		update_mmu_cache_pmd(vma, addr, pmd);
1787 		return true;
1788 	}
1789 
1790 	return false;
1791 }
1792 
copy_huge_non_present_pmd(struct mm_struct * dst_mm,struct mm_struct * src_mm,pmd_t * dst_pmd,pmd_t * src_pmd,unsigned long addr,struct vm_area_struct * dst_vma,struct vm_area_struct * src_vma,pmd_t pmd,pgtable_t pgtable)1793 static void copy_huge_non_present_pmd(
1794 		struct mm_struct *dst_mm, struct mm_struct *src_mm,
1795 		pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
1796 		struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
1797 		pmd_t pmd, pgtable_t pgtable)
1798 {
1799 	softleaf_t entry = softleaf_from_pmd(pmd);
1800 	struct folio *src_folio;
1801 
1802 	VM_WARN_ON_ONCE(!pmd_is_valid_softleaf(pmd));
1803 
1804 	if (softleaf_is_migration_write(entry) ||
1805 	    softleaf_is_migration_read_exclusive(entry)) {
1806 		entry = make_readable_migration_entry(swp_offset(entry));
1807 		pmd = swp_entry_to_pmd(entry);
1808 		if (pmd_swp_soft_dirty(*src_pmd))
1809 			pmd = pmd_swp_mksoft_dirty(pmd);
1810 		if (pmd_swp_uffd_wp(*src_pmd))
1811 			pmd = pmd_swp_mkuffd_wp(pmd);
1812 		set_pmd_at(src_mm, addr, src_pmd, pmd);
1813 	} else if (softleaf_is_device_private(entry)) {
1814 		/*
1815 		 * For device private entries, since there are no
1816 		 * read exclusive entries, writable = !readable
1817 		 */
1818 		if (softleaf_is_device_private_write(entry)) {
1819 			entry = make_readable_device_private_entry(swp_offset(entry));
1820 			pmd = swp_entry_to_pmd(entry);
1821 
1822 			if (pmd_swp_soft_dirty(*src_pmd))
1823 				pmd = pmd_swp_mksoft_dirty(pmd);
1824 			if (pmd_swp_uffd_wp(*src_pmd))
1825 				pmd = pmd_swp_mkuffd_wp(pmd);
1826 			set_pmd_at(src_mm, addr, src_pmd, pmd);
1827 		}
1828 
1829 		src_folio = softleaf_to_folio(entry);
1830 		VM_WARN_ON(!folio_test_large(src_folio));
1831 
1832 		folio_get(src_folio);
1833 		/*
1834 		 * folio_try_dup_anon_rmap_pmd does not fail for
1835 		 * device private entries.
1836 		 */
1837 		folio_try_dup_anon_rmap_pmd(src_folio, &src_folio->page,
1838 					    dst_vma, src_vma);
1839 	}
1840 
1841 	add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
1842 	mm_inc_nr_ptes(dst_mm);
1843 	pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
1844 	if (!userfaultfd_wp(dst_vma))
1845 		pmd = pmd_swp_clear_uffd_wp(pmd);
1846 	set_pmd_at(dst_mm, addr, dst_pmd, pmd);
1847 }
1848 
copy_huge_pmd(struct mm_struct * dst_mm,struct mm_struct * src_mm,pmd_t * dst_pmd,pmd_t * src_pmd,unsigned long addr,struct vm_area_struct * dst_vma,struct vm_area_struct * src_vma)1849 int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1850 		  pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
1851 		  struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
1852 {
1853 	spinlock_t *dst_ptl, *src_ptl;
1854 	struct page *src_page;
1855 	struct folio *src_folio;
1856 	pmd_t pmd;
1857 	pgtable_t pgtable = NULL;
1858 	int ret = -ENOMEM;
1859 
1860 	pmd = pmdp_get_lockless(src_pmd);
1861 	if (unlikely(pmd_present(pmd) && pmd_special(pmd) &&
1862 		     !is_huge_zero_pmd(pmd))) {
1863 		dst_ptl = pmd_lock(dst_mm, dst_pmd);
1864 		src_ptl = pmd_lockptr(src_mm, src_pmd);
1865 		spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1866 		/*
1867 		 * No need to recheck the pmd, it can't change with write
1868 		 * mmap lock held here.
1869 		 *
1870 		 * Meanwhile, making sure it's not a CoW VMA with writable
1871 		 * mapping, otherwise it means either the anon page wrongly
1872 		 * applied special bit, or we made the PRIVATE mapping be
1873 		 * able to wrongly write to the backend MMIO.
1874 		 */
1875 		VM_WARN_ON_ONCE(is_cow_mapping(src_vma->vm_flags) && pmd_write(pmd));
1876 		goto set_pmd;
1877 	}
1878 
1879 	/* Skip if can be re-fill on fault */
1880 	if (!vma_is_anonymous(dst_vma))
1881 		return 0;
1882 
1883 	pgtable = pte_alloc_one(dst_mm);
1884 	if (unlikely(!pgtable))
1885 		goto out;
1886 
1887 	dst_ptl = pmd_lock(dst_mm, dst_pmd);
1888 	src_ptl = pmd_lockptr(src_mm, src_pmd);
1889 	spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1890 
1891 	ret = -EAGAIN;
1892 	pmd = *src_pmd;
1893 
1894 	if (unlikely(thp_migration_supported() &&
1895 		     pmd_is_valid_softleaf(pmd))) {
1896 		copy_huge_non_present_pmd(dst_mm, src_mm, dst_pmd, src_pmd, addr,
1897 					  dst_vma, src_vma, pmd, pgtable);
1898 		ret = 0;
1899 		goto out_unlock;
1900 	}
1901 
1902 	if (unlikely(!pmd_trans_huge(pmd))) {
1903 		pte_free(dst_mm, pgtable);
1904 		goto out_unlock;
1905 	}
1906 	/*
1907 	 * When page table lock is held, the huge zero pmd should not be
1908 	 * under splitting since we don't split the page itself, only pmd to
1909 	 * a page table.
1910 	 */
1911 	if (is_huge_zero_pmd(pmd)) {
1912 		/*
1913 		 * mm_get_huge_zero_folio() will never allocate a new
1914 		 * folio here, since we already have a zero page to
1915 		 * copy. It just takes a reference.
1916 		 */
1917 		mm_get_huge_zero_folio(dst_mm);
1918 		goto out_zero_page;
1919 	}
1920 
1921 	src_page = pmd_page(pmd);
1922 	VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
1923 	src_folio = page_folio(src_page);
1924 
1925 	folio_get(src_folio);
1926 	if (unlikely(folio_try_dup_anon_rmap_pmd(src_folio, src_page, dst_vma, src_vma))) {
1927 		/* Page maybe pinned: split and retry the fault on PTEs. */
1928 		folio_put(src_folio);
1929 		pte_free(dst_mm, pgtable);
1930 		spin_unlock(src_ptl);
1931 		spin_unlock(dst_ptl);
1932 		__split_huge_pmd(src_vma, src_pmd, addr, false);
1933 		return -EAGAIN;
1934 	}
1935 	add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
1936 out_zero_page:
1937 	mm_inc_nr_ptes(dst_mm);
1938 	pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
1939 	pmdp_set_wrprotect(src_mm, addr, src_pmd);
1940 	if (!userfaultfd_wp(dst_vma))
1941 		pmd = pmd_clear_uffd_wp(pmd);
1942 	pmd = pmd_wrprotect(pmd);
1943 set_pmd:
1944 	pmd = pmd_mkold(pmd);
1945 	set_pmd_at(dst_mm, addr, dst_pmd, pmd);
1946 
1947 	ret = 0;
1948 out_unlock:
1949 	spin_unlock(src_ptl);
1950 	spin_unlock(dst_ptl);
1951 out:
1952 	return ret;
1953 }
1954 
1955 #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
touch_pud(struct vm_area_struct * vma,unsigned long addr,pud_t * pud,bool write)1956 void touch_pud(struct vm_area_struct *vma, unsigned long addr,
1957 	       pud_t *pud, bool write)
1958 {
1959 	pud_t _pud;
1960 
1961 	_pud = pud_mkyoung(*pud);
1962 	if (write)
1963 		_pud = pud_mkdirty(_pud);
1964 	if (pudp_set_access_flags(vma, addr & HPAGE_PUD_MASK,
1965 				  pud, _pud, write))
1966 		update_mmu_cache_pud(vma, addr, pud);
1967 }
1968 
copy_huge_pud(struct mm_struct * dst_mm,struct mm_struct * src_mm,pud_t * dst_pud,pud_t * src_pud,unsigned long addr,struct vm_area_struct * vma)1969 int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1970 		  pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1971 		  struct vm_area_struct *vma)
1972 {
1973 	spinlock_t *dst_ptl, *src_ptl;
1974 	pud_t pud;
1975 	int ret;
1976 
1977 	dst_ptl = pud_lock(dst_mm, dst_pud);
1978 	src_ptl = pud_lockptr(src_mm, src_pud);
1979 	spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1980 
1981 	ret = -EAGAIN;
1982 	pud = *src_pud;
1983 	if (unlikely(!pud_trans_huge(pud)))
1984 		goto out_unlock;
1985 
1986 	/*
1987 	 * TODO: once we support anonymous pages, use
1988 	 * folio_try_dup_anon_rmap_*() and split if duplicating fails.
1989 	 */
1990 	if (is_cow_mapping(vma->vm_flags) && pud_write(pud)) {
1991 		pudp_set_wrprotect(src_mm, addr, src_pud);
1992 		pud = pud_wrprotect(pud);
1993 	}
1994 	pud = pud_mkold(pud);
1995 	set_pud_at(dst_mm, addr, dst_pud, pud);
1996 
1997 	ret = 0;
1998 out_unlock:
1999 	spin_unlock(src_ptl);
2000 	spin_unlock(dst_ptl);
2001 	return ret;
2002 }
2003 
huge_pud_set_accessed(struct vm_fault * vmf,pud_t orig_pud)2004 void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
2005 {
2006 	bool write = vmf->flags & FAULT_FLAG_WRITE;
2007 
2008 	vmf->ptl = pud_lock(vmf->vma->vm_mm, vmf->pud);
2009 	if (unlikely(!pud_same(*vmf->pud, orig_pud)))
2010 		goto unlock;
2011 
2012 	touch_pud(vmf->vma, vmf->address, vmf->pud, write);
2013 unlock:
2014 	spin_unlock(vmf->ptl);
2015 }
2016 #endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
2017 
huge_pmd_set_accessed(struct vm_fault * vmf)2018 bool huge_pmd_set_accessed(struct vm_fault *vmf)
2019 {
2020 	bool write = vmf->flags & FAULT_FLAG_WRITE;
2021 
2022 	if (unlikely(!pmd_same(*vmf->pmd, vmf->orig_pmd)))
2023 		return false;
2024 
2025 	return touch_pmd(vmf->vma, vmf->address, vmf->pmd, write);
2026 }
2027 
do_huge_zero_wp_pmd(struct vm_fault * vmf)2028 static vm_fault_t do_huge_zero_wp_pmd(struct vm_fault *vmf)
2029 {
2030 	unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
2031 	struct vm_area_struct *vma = vmf->vma;
2032 	struct mmu_notifier_range range;
2033 	struct folio *folio;
2034 	vm_fault_t ret = 0;
2035 
2036 	folio = vma_alloc_anon_folio_pmd(vma, vmf->address);
2037 	if (unlikely(!folio))
2038 		return VM_FAULT_FALLBACK;
2039 
2040 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm, haddr,
2041 				haddr + HPAGE_PMD_SIZE);
2042 	mmu_notifier_invalidate_range_start(&range);
2043 	vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
2044 	if (unlikely(!pmd_same(pmdp_get(vmf->pmd), vmf->orig_pmd)))
2045 		goto release;
2046 	ret = check_stable_address_space(vma->vm_mm);
2047 	if (ret)
2048 		goto release;
2049 	(void)pmdp_huge_clear_flush(vma, haddr, vmf->pmd);
2050 	map_anon_folio_pmd_pf(folio, vmf->pmd, vma, haddr);
2051 	goto unlock;
2052 release:
2053 	folio_put(folio);
2054 unlock:
2055 	spin_unlock(vmf->ptl);
2056 	mmu_notifier_invalidate_range_end(&range);
2057 	return ret;
2058 }
2059 
do_huge_pmd_wp_page(struct vm_fault * vmf)2060 vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf)
2061 {
2062 	const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
2063 	struct vm_area_struct *vma = vmf->vma;
2064 	struct folio *folio;
2065 	struct page *page;
2066 	unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
2067 	pmd_t orig_pmd = vmf->orig_pmd;
2068 
2069 	vmf->ptl = pmd_lockptr(vma->vm_mm, vmf->pmd);
2070 	VM_BUG_ON_VMA(!vma->anon_vma, vma);
2071 
2072 	if (is_huge_zero_pmd(orig_pmd)) {
2073 		vm_fault_t ret = do_huge_zero_wp_pmd(vmf);
2074 
2075 		if (!(ret & VM_FAULT_FALLBACK))
2076 			return ret;
2077 
2078 		/* Fallback to splitting PMD if THP cannot be allocated */
2079 		goto fallback;
2080 	}
2081 
2082 	spin_lock(vmf->ptl);
2083 
2084 	if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
2085 		spin_unlock(vmf->ptl);
2086 		return 0;
2087 	}
2088 
2089 	page = pmd_page(orig_pmd);
2090 	folio = page_folio(page);
2091 	VM_BUG_ON_PAGE(!PageHead(page), page);
2092 
2093 	/* Early check when only holding the PT lock. */
2094 	if (PageAnonExclusive(page))
2095 		goto reuse;
2096 
2097 	if (!folio_trylock(folio)) {
2098 		folio_get(folio);
2099 		spin_unlock(vmf->ptl);
2100 		folio_lock(folio);
2101 		spin_lock(vmf->ptl);
2102 		if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
2103 			spin_unlock(vmf->ptl);
2104 			folio_unlock(folio);
2105 			folio_put(folio);
2106 			return 0;
2107 		}
2108 		folio_put(folio);
2109 	}
2110 
2111 	/* Recheck after temporarily dropping the PT lock. */
2112 	if (PageAnonExclusive(page)) {
2113 		folio_unlock(folio);
2114 		goto reuse;
2115 	}
2116 
2117 	/*
2118 	 * See do_wp_page(): we can only reuse the folio exclusively if
2119 	 * there are no additional references. Note that we always drain
2120 	 * the LRU cache immediately after adding a THP.
2121 	 */
2122 	if (folio_ref_count(folio) >
2123 			1 + folio_test_swapcache(folio) * folio_nr_pages(folio))
2124 		goto unlock_fallback;
2125 	if (folio_test_swapcache(folio))
2126 		folio_free_swap(folio);
2127 	if (folio_ref_count(folio) == 1) {
2128 		pmd_t entry;
2129 
2130 		folio_move_anon_rmap(folio, vma);
2131 		SetPageAnonExclusive(page);
2132 		folio_unlock(folio);
2133 reuse:
2134 		if (unlikely(unshare)) {
2135 			spin_unlock(vmf->ptl);
2136 			return 0;
2137 		}
2138 		entry = pmd_mkyoung(orig_pmd);
2139 		entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
2140 		if (pmdp_set_access_flags(vma, haddr, vmf->pmd, entry, 1))
2141 			update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
2142 		spin_unlock(vmf->ptl);
2143 		return 0;
2144 	}
2145 
2146 unlock_fallback:
2147 	folio_unlock(folio);
2148 	spin_unlock(vmf->ptl);
2149 fallback:
2150 	__split_huge_pmd(vma, vmf->pmd, vmf->address, false);
2151 	return VM_FAULT_FALLBACK;
2152 }
2153 
can_change_pmd_writable(struct vm_area_struct * vma,unsigned long addr,pmd_t pmd)2154 static inline bool can_change_pmd_writable(struct vm_area_struct *vma,
2155 					   unsigned long addr, pmd_t pmd)
2156 {
2157 	struct page *page;
2158 
2159 	if (WARN_ON_ONCE(!(vma->vm_flags & VM_WRITE)))
2160 		return false;
2161 
2162 	/* Don't touch entries that are not even readable (NUMA hinting). */
2163 	if (pmd_protnone(pmd))
2164 		return false;
2165 
2166 	/* Do we need write faults for softdirty tracking? */
2167 	if (pmd_needs_soft_dirty_wp(vma, pmd))
2168 		return false;
2169 
2170 	/* Do we need write faults for uffd-wp tracking? */
2171 	if (userfaultfd_huge_pmd_wp(vma, pmd))
2172 		return false;
2173 
2174 	if (!(vma->vm_flags & VM_SHARED)) {
2175 		/* See can_change_pte_writable(). */
2176 		page = vm_normal_page_pmd(vma, addr, pmd);
2177 		return page && PageAnon(page) && PageAnonExclusive(page);
2178 	}
2179 
2180 	/* See can_change_pte_writable(). */
2181 	return pmd_dirty(pmd);
2182 }
2183 
2184 /* NUMA hinting page fault entry point for trans huge pmds */
do_huge_pmd_numa_page(struct vm_fault * vmf)2185 vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf)
2186 {
2187 	struct vm_area_struct *vma = vmf->vma;
2188 	struct folio *folio;
2189 	unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
2190 	int nid = NUMA_NO_NODE;
2191 	int target_nid, last_cpupid;
2192 	pmd_t pmd, old_pmd;
2193 	bool writable = false;
2194 	int flags = 0;
2195 
2196 	vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
2197 	old_pmd = pmdp_get(vmf->pmd);
2198 
2199 	if (unlikely(!pmd_same(old_pmd, vmf->orig_pmd))) {
2200 		spin_unlock(vmf->ptl);
2201 		return 0;
2202 	}
2203 
2204 	pmd = pmd_modify(old_pmd, vma->vm_page_prot);
2205 
2206 	/*
2207 	 * Detect now whether the PMD could be writable; this information
2208 	 * is only valid while holding the PT lock.
2209 	 */
2210 	writable = pmd_write(pmd);
2211 	if (!writable && vma_wants_manual_pte_write_upgrade(vma) &&
2212 	    can_change_pmd_writable(vma, vmf->address, pmd))
2213 		writable = true;
2214 
2215 	folio = vm_normal_folio_pmd(vma, haddr, pmd);
2216 	if (!folio)
2217 		goto out_map;
2218 
2219 	nid = folio_nid(folio);
2220 
2221 	target_nid = numa_migrate_check(folio, vmf, haddr, &flags, writable,
2222 					&last_cpupid);
2223 	if (target_nid == NUMA_NO_NODE)
2224 		goto out_map;
2225 	if (migrate_misplaced_folio_prepare(folio, vma, target_nid)) {
2226 		flags |= TNF_MIGRATE_FAIL;
2227 		goto out_map;
2228 	}
2229 	/* The folio is isolated and isolation code holds a folio reference. */
2230 	spin_unlock(vmf->ptl);
2231 	writable = false;
2232 
2233 	if (!migrate_misplaced_folio(folio, target_nid)) {
2234 		flags |= TNF_MIGRATED;
2235 		nid = target_nid;
2236 		task_numa_fault(last_cpupid, nid, HPAGE_PMD_NR, flags);
2237 		return 0;
2238 	}
2239 
2240 	flags |= TNF_MIGRATE_FAIL;
2241 	vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
2242 	if (unlikely(!pmd_same(pmdp_get(vmf->pmd), vmf->orig_pmd))) {
2243 		spin_unlock(vmf->ptl);
2244 		return 0;
2245 	}
2246 out_map:
2247 	/* Restore the PMD */
2248 	pmd = pmd_modify(pmdp_get(vmf->pmd), vma->vm_page_prot);
2249 	pmd = pmd_mkyoung(pmd);
2250 	if (writable)
2251 		pmd = pmd_mkwrite(pmd, vma);
2252 	set_pmd_at(vma->vm_mm, haddr, vmf->pmd, pmd);
2253 	update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
2254 	spin_unlock(vmf->ptl);
2255 
2256 	if (nid != NUMA_NO_NODE)
2257 		task_numa_fault(last_cpupid, nid, HPAGE_PMD_NR, flags);
2258 	return 0;
2259 }
2260 
2261 /*
2262  * Return true if we do MADV_FREE successfully on entire pmd page.
2263  * Otherwise, return false.
2264  */
madvise_free_huge_pmd(struct mmu_gather * tlb,struct vm_area_struct * vma,pmd_t * pmd,unsigned long addr,unsigned long next)2265 bool madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
2266 		pmd_t *pmd, unsigned long addr, unsigned long next)
2267 {
2268 	spinlock_t *ptl;
2269 	pmd_t orig_pmd;
2270 	struct folio *folio;
2271 	struct mm_struct *mm = tlb->mm;
2272 	bool ret = false;
2273 
2274 	tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
2275 
2276 	ptl = pmd_trans_huge_lock(pmd, vma);
2277 	if (!ptl)
2278 		goto out_unlocked;
2279 
2280 	orig_pmd = *pmd;
2281 	if (is_huge_zero_pmd(orig_pmd))
2282 		goto out;
2283 
2284 	if (unlikely(!pmd_present(orig_pmd))) {
2285 		VM_BUG_ON(thp_migration_supported() &&
2286 				  !pmd_is_migration_entry(orig_pmd));
2287 		goto out;
2288 	}
2289 
2290 	folio = pmd_folio(orig_pmd);
2291 	/*
2292 	 * If other processes are mapping this folio, we couldn't discard
2293 	 * the folio unless they all do MADV_FREE so let's skip the folio.
2294 	 */
2295 	if (folio_maybe_mapped_shared(folio))
2296 		goto out;
2297 
2298 	if (!folio_trylock(folio))
2299 		goto out;
2300 
2301 	/*
2302 	 * If user want to discard part-pages of THP, split it so MADV_FREE
2303 	 * will deactivate only them.
2304 	 */
2305 	if (next - addr != HPAGE_PMD_SIZE) {
2306 		folio_get(folio);
2307 		spin_unlock(ptl);
2308 		split_folio(folio);
2309 		folio_unlock(folio);
2310 		folio_put(folio);
2311 		goto out_unlocked;
2312 	}
2313 
2314 	if (folio_test_dirty(folio))
2315 		folio_clear_dirty(folio);
2316 	folio_unlock(folio);
2317 
2318 	if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
2319 		pmdp_invalidate(vma, addr, pmd);
2320 		orig_pmd = pmd_mkold(orig_pmd);
2321 		orig_pmd = pmd_mkclean(orig_pmd);
2322 
2323 		set_pmd_at(mm, addr, pmd, orig_pmd);
2324 		tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
2325 	}
2326 
2327 	folio_mark_lazyfree(folio);
2328 	ret = true;
2329 out:
2330 	spin_unlock(ptl);
2331 out_unlocked:
2332 	return ret;
2333 }
2334 
zap_deposited_table(struct mm_struct * mm,pmd_t * pmd)2335 static inline void zap_deposited_table(struct mm_struct *mm, pmd_t *pmd)
2336 {
2337 	pgtable_t pgtable;
2338 
2339 	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2340 	pte_free(mm, pgtable);
2341 	mm_dec_nr_ptes(mm);
2342 }
2343 
zap_huge_pmd(struct mmu_gather * tlb,struct vm_area_struct * vma,pmd_t * pmd,unsigned long addr)2344 int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
2345 		 pmd_t *pmd, unsigned long addr)
2346 {
2347 	pmd_t orig_pmd;
2348 	spinlock_t *ptl;
2349 
2350 	tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
2351 
2352 	ptl = __pmd_trans_huge_lock(pmd, vma);
2353 	if (!ptl)
2354 		return 0;
2355 	/*
2356 	 * For architectures like ppc64 we look at deposited pgtable
2357 	 * when calling pmdp_huge_get_and_clear. So do the
2358 	 * pgtable_trans_huge_withdraw after finishing pmdp related
2359 	 * operations.
2360 	 */
2361 	orig_pmd = pmdp_huge_get_and_clear_full(vma, addr, pmd,
2362 						tlb->fullmm);
2363 	arch_check_zapped_pmd(vma, orig_pmd);
2364 	tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
2365 	if (!vma_is_dax(vma) && vma_is_special_huge(vma)) {
2366 		if (arch_needs_pgtable_deposit())
2367 			zap_deposited_table(tlb->mm, pmd);
2368 		spin_unlock(ptl);
2369 	} else if (is_huge_zero_pmd(orig_pmd)) {
2370 		if (!vma_is_dax(vma) || arch_needs_pgtable_deposit())
2371 			zap_deposited_table(tlb->mm, pmd);
2372 		spin_unlock(ptl);
2373 	} else {
2374 		struct folio *folio = NULL;
2375 		int flush_needed = 1;
2376 
2377 		if (pmd_present(orig_pmd)) {
2378 			struct page *page = pmd_page(orig_pmd);
2379 
2380 			folio = page_folio(page);
2381 			folio_remove_rmap_pmd(folio, page, vma);
2382 			WARN_ON_ONCE(folio_mapcount(folio) < 0);
2383 			VM_BUG_ON_PAGE(!PageHead(page), page);
2384 		} else if (pmd_is_valid_softleaf(orig_pmd)) {
2385 			const softleaf_t entry = softleaf_from_pmd(orig_pmd);
2386 
2387 			folio = softleaf_to_folio(entry);
2388 			flush_needed = 0;
2389 
2390 			if (!thp_migration_supported())
2391 				WARN_ONCE(1, "Non present huge pmd without pmd migration enabled!");
2392 		}
2393 
2394 		if (folio_test_anon(folio)) {
2395 			zap_deposited_table(tlb->mm, pmd);
2396 			add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
2397 		} else {
2398 			if (arch_needs_pgtable_deposit())
2399 				zap_deposited_table(tlb->mm, pmd);
2400 			add_mm_counter(tlb->mm, mm_counter_file(folio),
2401 				       -HPAGE_PMD_NR);
2402 
2403 			/*
2404 			 * Use flush_needed to indicate whether the PMD entry
2405 			 * is present, instead of checking pmd_present() again.
2406 			 */
2407 			if (flush_needed && pmd_young(orig_pmd) &&
2408 			    likely(vma_has_recency(vma)))
2409 				folio_mark_accessed(folio);
2410 		}
2411 
2412 		if (folio_is_device_private(folio)) {
2413 			folio_remove_rmap_pmd(folio, &folio->page, vma);
2414 			WARN_ON_ONCE(folio_mapcount(folio) < 0);
2415 			folio_put(folio);
2416 		}
2417 
2418 		spin_unlock(ptl);
2419 		if (flush_needed)
2420 			tlb_remove_page_size(tlb, &folio->page, HPAGE_PMD_SIZE);
2421 	}
2422 	return 1;
2423 }
2424 
2425 #ifndef pmd_move_must_withdraw
pmd_move_must_withdraw(spinlock_t * new_pmd_ptl,spinlock_t * old_pmd_ptl,struct vm_area_struct * vma)2426 static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
2427 					 spinlock_t *old_pmd_ptl,
2428 					 struct vm_area_struct *vma)
2429 {
2430 	/*
2431 	 * With split pmd lock we also need to move preallocated
2432 	 * PTE page table if new_pmd is on different PMD page table.
2433 	 *
2434 	 * We also don't deposit and withdraw tables for file pages.
2435 	 */
2436 	return (new_pmd_ptl != old_pmd_ptl) && vma_is_anonymous(vma);
2437 }
2438 #endif
2439 
move_soft_dirty_pmd(pmd_t pmd)2440 static pmd_t move_soft_dirty_pmd(pmd_t pmd)
2441 {
2442 	if (pgtable_supports_soft_dirty()) {
2443 		if (unlikely(pmd_is_migration_entry(pmd)))
2444 			pmd = pmd_swp_mksoft_dirty(pmd);
2445 		else if (pmd_present(pmd))
2446 			pmd = pmd_mksoft_dirty(pmd);
2447 	}
2448 
2449 	return pmd;
2450 }
2451 
clear_uffd_wp_pmd(pmd_t pmd)2452 static pmd_t clear_uffd_wp_pmd(pmd_t pmd)
2453 {
2454 	if (pmd_none(pmd))
2455 		return pmd;
2456 	if (pmd_present(pmd))
2457 		pmd = pmd_clear_uffd_wp(pmd);
2458 	else
2459 		pmd = pmd_swp_clear_uffd_wp(pmd);
2460 
2461 	return pmd;
2462 }
2463 
move_huge_pmd(struct vm_area_struct * vma,unsigned long old_addr,unsigned long new_addr,pmd_t * old_pmd,pmd_t * new_pmd)2464 bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
2465 		  unsigned long new_addr, pmd_t *old_pmd, pmd_t *new_pmd)
2466 {
2467 	spinlock_t *old_ptl, *new_ptl;
2468 	pmd_t pmd;
2469 	struct mm_struct *mm = vma->vm_mm;
2470 	bool force_flush = false;
2471 
2472 	/*
2473 	 * The destination pmd shouldn't be established, free_pgtables()
2474 	 * should have released it; but move_page_tables() might have already
2475 	 * inserted a page table, if racing against shmem/file collapse.
2476 	 */
2477 	if (!pmd_none(*new_pmd)) {
2478 		VM_BUG_ON(pmd_trans_huge(*new_pmd));
2479 		return false;
2480 	}
2481 
2482 	/*
2483 	 * We don't have to worry about the ordering of src and dst
2484 	 * ptlocks because exclusive mmap_lock prevents deadlock.
2485 	 */
2486 	old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
2487 	if (old_ptl) {
2488 		new_ptl = pmd_lockptr(mm, new_pmd);
2489 		if (new_ptl != old_ptl)
2490 			spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
2491 		pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
2492 		if (pmd_present(pmd))
2493 			force_flush = true;
2494 		VM_BUG_ON(!pmd_none(*new_pmd));
2495 
2496 		if (pmd_move_must_withdraw(new_ptl, old_ptl, vma)) {
2497 			pgtable_t pgtable;
2498 			pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
2499 			pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
2500 		}
2501 		pmd = move_soft_dirty_pmd(pmd);
2502 		if (vma_has_uffd_without_event_remap(vma))
2503 			pmd = clear_uffd_wp_pmd(pmd);
2504 		set_pmd_at(mm, new_addr, new_pmd, pmd);
2505 		if (force_flush)
2506 			flush_pmd_tlb_range(vma, old_addr, old_addr + PMD_SIZE);
2507 		if (new_ptl != old_ptl)
2508 			spin_unlock(new_ptl);
2509 		spin_unlock(old_ptl);
2510 		return true;
2511 	}
2512 	return false;
2513 }
2514 
change_non_present_huge_pmd(struct mm_struct * mm,unsigned long addr,pmd_t * pmd,bool uffd_wp,bool uffd_wp_resolve)2515 static void change_non_present_huge_pmd(struct mm_struct *mm,
2516 		unsigned long addr, pmd_t *pmd, bool uffd_wp,
2517 		bool uffd_wp_resolve)
2518 {
2519 	softleaf_t entry = softleaf_from_pmd(*pmd);
2520 	const struct folio *folio = softleaf_to_folio(entry);
2521 	pmd_t newpmd;
2522 
2523 	VM_WARN_ON(!pmd_is_valid_softleaf(*pmd));
2524 	if (softleaf_is_migration_write(entry)) {
2525 		/*
2526 		 * A protection check is difficult so
2527 		 * just be safe and disable write
2528 		 */
2529 		if (folio_test_anon(folio))
2530 			entry = make_readable_exclusive_migration_entry(swp_offset(entry));
2531 		else
2532 			entry = make_readable_migration_entry(swp_offset(entry));
2533 		newpmd = swp_entry_to_pmd(entry);
2534 		if (pmd_swp_soft_dirty(*pmd))
2535 			newpmd = pmd_swp_mksoft_dirty(newpmd);
2536 	} else if (softleaf_is_device_private_write(entry)) {
2537 		entry = make_readable_device_private_entry(swp_offset(entry));
2538 		newpmd = swp_entry_to_pmd(entry);
2539 	} else {
2540 		newpmd = *pmd;
2541 	}
2542 
2543 	if (uffd_wp)
2544 		newpmd = pmd_swp_mkuffd_wp(newpmd);
2545 	else if (uffd_wp_resolve)
2546 		newpmd = pmd_swp_clear_uffd_wp(newpmd);
2547 	if (!pmd_same(*pmd, newpmd))
2548 		set_pmd_at(mm, addr, pmd, newpmd);
2549 }
2550 
2551 /*
2552  * Returns
2553  *  - 0 if PMD could not be locked
2554  *  - 1 if PMD was locked but protections unchanged and TLB flush unnecessary
2555  *      or if prot_numa but THP migration is not supported
2556  *  - HPAGE_PMD_NR if protections changed and TLB flush necessary
2557  */
change_huge_pmd(struct mmu_gather * tlb,struct vm_area_struct * vma,pmd_t * pmd,unsigned long addr,pgprot_t newprot,unsigned long cp_flags)2558 int change_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
2559 		    pmd_t *pmd, unsigned long addr, pgprot_t newprot,
2560 		    unsigned long cp_flags)
2561 {
2562 	struct mm_struct *mm = vma->vm_mm;
2563 	spinlock_t *ptl;
2564 	pmd_t oldpmd, entry;
2565 	bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
2566 	bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
2567 	bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
2568 	int ret = 1;
2569 
2570 	tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
2571 
2572 	if (prot_numa && !thp_migration_supported())
2573 		return 1;
2574 
2575 	ptl = __pmd_trans_huge_lock(pmd, vma);
2576 	if (!ptl)
2577 		return 0;
2578 
2579 	if (thp_migration_supported() && pmd_is_valid_softleaf(*pmd)) {
2580 		change_non_present_huge_pmd(mm, addr, pmd, uffd_wp,
2581 					    uffd_wp_resolve);
2582 		goto unlock;
2583 	}
2584 
2585 	if (prot_numa) {
2586 
2587 		/*
2588 		 * Avoid trapping faults against the zero page. The read-only
2589 		 * data is likely to be read-cached on the local CPU and
2590 		 * local/remote hits to the zero page are not interesting.
2591 		 */
2592 		if (is_huge_zero_pmd(*pmd))
2593 			goto unlock;
2594 
2595 		if (pmd_protnone(*pmd))
2596 			goto unlock;
2597 
2598 		if (!folio_can_map_prot_numa(pmd_folio(*pmd), vma,
2599 					     vma_is_single_threaded_private(vma)))
2600 			goto unlock;
2601 	}
2602 	/*
2603 	 * In case prot_numa, we are under mmap_read_lock(mm). It's critical
2604 	 * to not clear pmd intermittently to avoid race with MADV_DONTNEED
2605 	 * which is also under mmap_read_lock(mm):
2606 	 *
2607 	 *	CPU0:				CPU1:
2608 	 *				change_huge_pmd(prot_numa=1)
2609 	 *				 pmdp_huge_get_and_clear_notify()
2610 	 * madvise_dontneed()
2611 	 *  zap_pmd_range()
2612 	 *   pmd_trans_huge(*pmd) == 0 (without ptl)
2613 	 *   // skip the pmd
2614 	 *				 set_pmd_at();
2615 	 *				 // pmd is re-established
2616 	 *
2617 	 * The race makes MADV_DONTNEED miss the huge pmd and don't clear it
2618 	 * which may break userspace.
2619 	 *
2620 	 * pmdp_invalidate_ad() is required to make sure we don't miss
2621 	 * dirty/young flags set by hardware.
2622 	 */
2623 	oldpmd = pmdp_invalidate_ad(vma, addr, pmd);
2624 
2625 	entry = pmd_modify(oldpmd, newprot);
2626 	if (uffd_wp)
2627 		entry = pmd_mkuffd_wp(entry);
2628 	else if (uffd_wp_resolve)
2629 		/*
2630 		 * Leave the write bit to be handled by PF interrupt
2631 		 * handler, then things like COW could be properly
2632 		 * handled.
2633 		 */
2634 		entry = pmd_clear_uffd_wp(entry);
2635 
2636 	/* See change_pte_range(). */
2637 	if ((cp_flags & MM_CP_TRY_CHANGE_WRITABLE) && !pmd_write(entry) &&
2638 	    can_change_pmd_writable(vma, addr, entry))
2639 		entry = pmd_mkwrite(entry, vma);
2640 
2641 	ret = HPAGE_PMD_NR;
2642 	set_pmd_at(mm, addr, pmd, entry);
2643 
2644 	if (huge_pmd_needs_flush(oldpmd, entry))
2645 		tlb_flush_pmd_range(tlb, addr, HPAGE_PMD_SIZE);
2646 unlock:
2647 	spin_unlock(ptl);
2648 	return ret;
2649 }
2650 
2651 /*
2652  * Returns:
2653  *
2654  * - 0: if pud leaf changed from under us
2655  * - 1: if pud can be skipped
2656  * - HPAGE_PUD_NR: if pud was successfully processed
2657  */
2658 #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
change_huge_pud(struct mmu_gather * tlb,struct vm_area_struct * vma,pud_t * pudp,unsigned long addr,pgprot_t newprot,unsigned long cp_flags)2659 int change_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
2660 		    pud_t *pudp, unsigned long addr, pgprot_t newprot,
2661 		    unsigned long cp_flags)
2662 {
2663 	struct mm_struct *mm = vma->vm_mm;
2664 	pud_t oldpud, entry;
2665 	spinlock_t *ptl;
2666 
2667 	tlb_change_page_size(tlb, HPAGE_PUD_SIZE);
2668 
2669 	/* NUMA balancing doesn't apply to dax */
2670 	if (cp_flags & MM_CP_PROT_NUMA)
2671 		return 1;
2672 
2673 	/*
2674 	 * Huge entries on userfault-wp only works with anonymous, while we
2675 	 * don't have anonymous PUDs yet.
2676 	 */
2677 	if (WARN_ON_ONCE(cp_flags & MM_CP_UFFD_WP_ALL))
2678 		return 1;
2679 
2680 	ptl = __pud_trans_huge_lock(pudp, vma);
2681 	if (!ptl)
2682 		return 0;
2683 
2684 	/*
2685 	 * Can't clear PUD or it can race with concurrent zapping.  See
2686 	 * change_huge_pmd().
2687 	 */
2688 	oldpud = pudp_invalidate(vma, addr, pudp);
2689 	entry = pud_modify(oldpud, newprot);
2690 	set_pud_at(mm, addr, pudp, entry);
2691 	tlb_flush_pud_range(tlb, addr, HPAGE_PUD_SIZE);
2692 
2693 	spin_unlock(ptl);
2694 	return HPAGE_PUD_NR;
2695 }
2696 #endif
2697 
2698 #ifdef CONFIG_USERFAULTFD
2699 /*
2700  * The PT lock for src_pmd and dst_vma/src_vma (for reading) are locked by
2701  * the caller, but it must return after releasing the page_table_lock.
2702  * Just move the page from src_pmd to dst_pmd if possible.
2703  * Return zero if succeeded in moving the page, -EAGAIN if it needs to be
2704  * repeated by the caller, or other errors in case of failure.
2705  */
move_pages_huge_pmd(struct mm_struct * mm,pmd_t * dst_pmd,pmd_t * src_pmd,pmd_t dst_pmdval,struct vm_area_struct * dst_vma,struct vm_area_struct * src_vma,unsigned long dst_addr,unsigned long src_addr)2706 int move_pages_huge_pmd(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd, pmd_t dst_pmdval,
2707 			struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma,
2708 			unsigned long dst_addr, unsigned long src_addr)
2709 {
2710 	pmd_t _dst_pmd, src_pmdval;
2711 	struct page *src_page;
2712 	struct folio *src_folio;
2713 	spinlock_t *src_ptl, *dst_ptl;
2714 	pgtable_t src_pgtable;
2715 	struct mmu_notifier_range range;
2716 	int err = 0;
2717 
2718 	src_pmdval = *src_pmd;
2719 	src_ptl = pmd_lockptr(mm, src_pmd);
2720 
2721 	lockdep_assert_held(src_ptl);
2722 	vma_assert_locked(src_vma);
2723 	vma_assert_locked(dst_vma);
2724 
2725 	/* Sanity checks before the operation */
2726 	if (WARN_ON_ONCE(!pmd_none(dst_pmdval)) || WARN_ON_ONCE(src_addr & ~HPAGE_PMD_MASK) ||
2727 	    WARN_ON_ONCE(dst_addr & ~HPAGE_PMD_MASK)) {
2728 		spin_unlock(src_ptl);
2729 		return -EINVAL;
2730 	}
2731 
2732 	if (!pmd_trans_huge(src_pmdval)) {
2733 		spin_unlock(src_ptl);
2734 		if (pmd_is_migration_entry(src_pmdval)) {
2735 			pmd_migration_entry_wait(mm, &src_pmdval);
2736 			return -EAGAIN;
2737 		}
2738 		return -ENOENT;
2739 	}
2740 
2741 	src_page = pmd_page(src_pmdval);
2742 
2743 	if (!is_huge_zero_pmd(src_pmdval)) {
2744 		if (unlikely(!PageAnonExclusive(src_page))) {
2745 			spin_unlock(src_ptl);
2746 			return -EBUSY;
2747 		}
2748 
2749 		src_folio = page_folio(src_page);
2750 		folio_get(src_folio);
2751 	} else
2752 		src_folio = NULL;
2753 
2754 	spin_unlock(src_ptl);
2755 
2756 	flush_cache_range(src_vma, src_addr, src_addr + HPAGE_PMD_SIZE);
2757 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm, src_addr,
2758 				src_addr + HPAGE_PMD_SIZE);
2759 	mmu_notifier_invalidate_range_start(&range);
2760 
2761 	if (src_folio)
2762 		folio_lock(src_folio);
2763 
2764 	dst_ptl = pmd_lockptr(mm, dst_pmd);
2765 	double_pt_lock(src_ptl, dst_ptl);
2766 	if (unlikely(!pmd_same(*src_pmd, src_pmdval) ||
2767 		     !pmd_same(*dst_pmd, dst_pmdval))) {
2768 		err = -EAGAIN;
2769 		goto unlock_ptls;
2770 	}
2771 	if (src_folio) {
2772 		if (folio_maybe_dma_pinned(src_folio) ||
2773 		    !PageAnonExclusive(&src_folio->page)) {
2774 			err = -EBUSY;
2775 			goto unlock_ptls;
2776 		}
2777 
2778 		if (WARN_ON_ONCE(!folio_test_head(src_folio)) ||
2779 		    WARN_ON_ONCE(!folio_test_anon(src_folio))) {
2780 			err = -EBUSY;
2781 			goto unlock_ptls;
2782 		}
2783 
2784 		src_pmdval = pmdp_huge_clear_flush(src_vma, src_addr, src_pmd);
2785 		/* Folio got pinned from under us. Put it back and fail the move. */
2786 		if (folio_maybe_dma_pinned(src_folio)) {
2787 			set_pmd_at(mm, src_addr, src_pmd, src_pmdval);
2788 			err = -EBUSY;
2789 			goto unlock_ptls;
2790 		}
2791 
2792 		folio_move_anon_rmap(src_folio, dst_vma);
2793 		src_folio->index = linear_page_index(dst_vma, dst_addr);
2794 
2795 		_dst_pmd = folio_mk_pmd(src_folio, dst_vma->vm_page_prot);
2796 		/* Follow mremap() behavior and treat the entry dirty after the move */
2797 		_dst_pmd = pmd_mkwrite(pmd_mkdirty(_dst_pmd), dst_vma);
2798 	} else {
2799 		src_pmdval = pmdp_huge_clear_flush(src_vma, src_addr, src_pmd);
2800 		_dst_pmd = folio_mk_pmd(src_folio, dst_vma->vm_page_prot);
2801 	}
2802 	set_pmd_at(mm, dst_addr, dst_pmd, _dst_pmd);
2803 
2804 	src_pgtable = pgtable_trans_huge_withdraw(mm, src_pmd);
2805 	pgtable_trans_huge_deposit(mm, dst_pmd, src_pgtable);
2806 unlock_ptls:
2807 	double_pt_unlock(src_ptl, dst_ptl);
2808 	/* unblock rmap walks */
2809 	if (src_folio)
2810 		folio_unlock(src_folio);
2811 	mmu_notifier_invalidate_range_end(&range);
2812 	if (src_folio)
2813 		folio_put(src_folio);
2814 	return err;
2815 }
2816 #endif /* CONFIG_USERFAULTFD */
2817 
2818 /*
2819  * Returns page table lock pointer if a given pmd maps a thp, NULL otherwise.
2820  *
2821  * Note that if it returns page table lock pointer, this routine returns without
2822  * unlocking page table lock. So callers must unlock it.
2823  */
__pmd_trans_huge_lock(pmd_t * pmd,struct vm_area_struct * vma)2824 spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
2825 {
2826 	spinlock_t *ptl;
2827 
2828 	ptl = pmd_lock(vma->vm_mm, pmd);
2829 	if (likely(pmd_is_huge(*pmd)))
2830 		return ptl;
2831 	spin_unlock(ptl);
2832 	return NULL;
2833 }
2834 
2835 /*
2836  * Returns page table lock pointer if a given pud maps a thp, NULL otherwise.
2837  *
2838  * Note that if it returns page table lock pointer, this routine returns without
2839  * unlocking page table lock. So callers must unlock it.
2840  */
__pud_trans_huge_lock(pud_t * pud,struct vm_area_struct * vma)2841 spinlock_t *__pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma)
2842 {
2843 	spinlock_t *ptl;
2844 
2845 	ptl = pud_lock(vma->vm_mm, pud);
2846 	if (likely(pud_trans_huge(*pud)))
2847 		return ptl;
2848 	spin_unlock(ptl);
2849 	return NULL;
2850 }
2851 
2852 #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
zap_huge_pud(struct mmu_gather * tlb,struct vm_area_struct * vma,pud_t * pud,unsigned long addr)2853 int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
2854 		 pud_t *pud, unsigned long addr)
2855 {
2856 	spinlock_t *ptl;
2857 	pud_t orig_pud;
2858 
2859 	ptl = __pud_trans_huge_lock(pud, vma);
2860 	if (!ptl)
2861 		return 0;
2862 
2863 	orig_pud = pudp_huge_get_and_clear_full(vma, addr, pud, tlb->fullmm);
2864 	arch_check_zapped_pud(vma, orig_pud);
2865 	tlb_remove_pud_tlb_entry(tlb, pud, addr);
2866 	if (!vma_is_dax(vma) && vma_is_special_huge(vma)) {
2867 		spin_unlock(ptl);
2868 		/* No zero page support yet */
2869 	} else {
2870 		struct page *page = NULL;
2871 		struct folio *folio;
2872 
2873 		/* No support for anonymous PUD pages or migration yet */
2874 		VM_WARN_ON_ONCE(vma_is_anonymous(vma) ||
2875 				!pud_present(orig_pud));
2876 
2877 		page = pud_page(orig_pud);
2878 		folio = page_folio(page);
2879 		folio_remove_rmap_pud(folio, page, vma);
2880 		add_mm_counter(tlb->mm, mm_counter_file(folio), -HPAGE_PUD_NR);
2881 
2882 		spin_unlock(ptl);
2883 		tlb_remove_page_size(tlb, page, HPAGE_PUD_SIZE);
2884 	}
2885 	return 1;
2886 }
2887 
__split_huge_pud_locked(struct vm_area_struct * vma,pud_t * pud,unsigned long haddr)2888 static void __split_huge_pud_locked(struct vm_area_struct *vma, pud_t *pud,
2889 		unsigned long haddr)
2890 {
2891 	struct folio *folio;
2892 	struct page *page;
2893 	pud_t old_pud;
2894 
2895 	VM_BUG_ON(haddr & ~HPAGE_PUD_MASK);
2896 	VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
2897 	VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PUD_SIZE, vma);
2898 	VM_BUG_ON(!pud_trans_huge(*pud));
2899 
2900 	count_vm_event(THP_SPLIT_PUD);
2901 
2902 	old_pud = pudp_huge_clear_flush(vma, haddr, pud);
2903 
2904 	if (!vma_is_dax(vma))
2905 		return;
2906 
2907 	page = pud_page(old_pud);
2908 	folio = page_folio(page);
2909 
2910 	if (!folio_test_dirty(folio) && pud_dirty(old_pud))
2911 		folio_mark_dirty(folio);
2912 	if (!folio_test_referenced(folio) && pud_young(old_pud))
2913 		folio_set_referenced(folio);
2914 	folio_remove_rmap_pud(folio, page, vma);
2915 	folio_put(folio);
2916 	add_mm_counter(vma->vm_mm, mm_counter_file(folio),
2917 		-HPAGE_PUD_NR);
2918 }
2919 
__split_huge_pud(struct vm_area_struct * vma,pud_t * pud,unsigned long address)2920 void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
2921 		unsigned long address)
2922 {
2923 	spinlock_t *ptl;
2924 	struct mmu_notifier_range range;
2925 
2926 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm,
2927 				address & HPAGE_PUD_MASK,
2928 				(address & HPAGE_PUD_MASK) + HPAGE_PUD_SIZE);
2929 	mmu_notifier_invalidate_range_start(&range);
2930 	ptl = pud_lock(vma->vm_mm, pud);
2931 	if (unlikely(!pud_trans_huge(*pud)))
2932 		goto out;
2933 	__split_huge_pud_locked(vma, pud, range.start);
2934 
2935 out:
2936 	spin_unlock(ptl);
2937 	mmu_notifier_invalidate_range_end(&range);
2938 }
2939 #else
__split_huge_pud(struct vm_area_struct * vma,pud_t * pud,unsigned long address)2940 void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
2941 		unsigned long address)
2942 {
2943 }
2944 #endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
2945 
__split_huge_zero_page_pmd(struct vm_area_struct * vma,unsigned long haddr,pmd_t * pmd)2946 static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
2947 		unsigned long haddr, pmd_t *pmd)
2948 {
2949 	struct mm_struct *mm = vma->vm_mm;
2950 	pgtable_t pgtable;
2951 	pmd_t _pmd, old_pmd;
2952 	unsigned long addr;
2953 	pte_t *pte;
2954 	int i;
2955 
2956 	/*
2957 	 * Leave pmd empty until pte is filled note that it is fine to delay
2958 	 * notification until mmu_notifier_invalidate_range_end() as we are
2959 	 * replacing a zero pmd write protected page with a zero pte write
2960 	 * protected page.
2961 	 *
2962 	 * See Documentation/mm/mmu_notifier.rst
2963 	 */
2964 	old_pmd = pmdp_huge_clear_flush(vma, haddr, pmd);
2965 
2966 	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2967 	pmd_populate(mm, &_pmd, pgtable);
2968 
2969 	pte = pte_offset_map(&_pmd, haddr);
2970 	VM_BUG_ON(!pte);
2971 	for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
2972 		pte_t entry;
2973 
2974 		entry = pfn_pte(my_zero_pfn(addr), vma->vm_page_prot);
2975 		entry = pte_mkspecial(entry);
2976 		if (pmd_uffd_wp(old_pmd))
2977 			entry = pte_mkuffd_wp(entry);
2978 		VM_BUG_ON(!pte_none(ptep_get(pte)));
2979 		set_pte_at(mm, addr, pte, entry);
2980 		pte++;
2981 	}
2982 	pte_unmap(pte - 1);
2983 	smp_wmb(); /* make pte visible before pmd */
2984 	pmd_populate(mm, pmd, pgtable);
2985 }
2986 
__split_huge_pmd_locked(struct vm_area_struct * vma,pmd_t * pmd,unsigned long haddr,bool freeze)2987 static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
2988 		unsigned long haddr, bool freeze)
2989 {
2990 	struct mm_struct *mm = vma->vm_mm;
2991 	struct folio *folio;
2992 	struct page *page;
2993 	pgtable_t pgtable;
2994 	pmd_t old_pmd, _pmd;
2995 	bool soft_dirty, uffd_wp = false, young = false, write = false;
2996 	bool anon_exclusive = false, dirty = false;
2997 	unsigned long addr;
2998 	pte_t *pte;
2999 	int i;
3000 
3001 	VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
3002 	VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
3003 	VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
3004 
3005 	VM_WARN_ON_ONCE(!pmd_is_valid_softleaf(*pmd) && !pmd_trans_huge(*pmd));
3006 
3007 	count_vm_event(THP_SPLIT_PMD);
3008 
3009 	if (!vma_is_anonymous(vma)) {
3010 		old_pmd = pmdp_huge_clear_flush(vma, haddr, pmd);
3011 		/*
3012 		 * We are going to unmap this huge page. So
3013 		 * just go ahead and zap it
3014 		 */
3015 		if (arch_needs_pgtable_deposit())
3016 			zap_deposited_table(mm, pmd);
3017 		if (!vma_is_dax(vma) && vma_is_special_huge(vma))
3018 			return;
3019 		if (unlikely(pmd_is_migration_entry(old_pmd))) {
3020 			const softleaf_t old_entry = softleaf_from_pmd(old_pmd);
3021 
3022 			folio = softleaf_to_folio(old_entry);
3023 		} else if (is_huge_zero_pmd(old_pmd)) {
3024 			return;
3025 		} else {
3026 			page = pmd_page(old_pmd);
3027 			folio = page_folio(page);
3028 			if (!folio_test_dirty(folio) && pmd_dirty(old_pmd))
3029 				folio_mark_dirty(folio);
3030 			if (!folio_test_referenced(folio) && pmd_young(old_pmd))
3031 				folio_set_referenced(folio);
3032 			folio_remove_rmap_pmd(folio, page, vma);
3033 			folio_put(folio);
3034 		}
3035 		add_mm_counter(mm, mm_counter_file(folio), -HPAGE_PMD_NR);
3036 		return;
3037 	}
3038 
3039 	if (is_huge_zero_pmd(*pmd)) {
3040 		/*
3041 		 * FIXME: Do we want to invalidate secondary mmu by calling
3042 		 * mmu_notifier_arch_invalidate_secondary_tlbs() see comments below
3043 		 * inside __split_huge_pmd() ?
3044 		 *
3045 		 * We are going from a zero huge page write protected to zero
3046 		 * small page also write protected so it does not seems useful
3047 		 * to invalidate secondary mmu at this time.
3048 		 */
3049 		return __split_huge_zero_page_pmd(vma, haddr, pmd);
3050 	}
3051 
3052 	if (pmd_is_migration_entry(*pmd)) {
3053 		softleaf_t entry;
3054 
3055 		old_pmd = *pmd;
3056 		entry = softleaf_from_pmd(old_pmd);
3057 		page = softleaf_to_page(entry);
3058 		folio = page_folio(page);
3059 
3060 		soft_dirty = pmd_swp_soft_dirty(old_pmd);
3061 		uffd_wp = pmd_swp_uffd_wp(old_pmd);
3062 
3063 		write = softleaf_is_migration_write(entry);
3064 		if (PageAnon(page))
3065 			anon_exclusive = softleaf_is_migration_read_exclusive(entry);
3066 		young = softleaf_is_migration_young(entry);
3067 		dirty = softleaf_is_migration_dirty(entry);
3068 	} else if (pmd_is_device_private_entry(*pmd)) {
3069 		softleaf_t entry;
3070 
3071 		old_pmd = *pmd;
3072 		entry = softleaf_from_pmd(old_pmd);
3073 		page = softleaf_to_page(entry);
3074 		folio = page_folio(page);
3075 
3076 		soft_dirty = pmd_swp_soft_dirty(old_pmd);
3077 		uffd_wp = pmd_swp_uffd_wp(old_pmd);
3078 
3079 		write = softleaf_is_device_private_write(entry);
3080 		anon_exclusive = PageAnonExclusive(page);
3081 
3082 		/*
3083 		 * Device private THP should be treated the same as regular
3084 		 * folios w.r.t anon exclusive handling. See the comments for
3085 		 * folio handling and anon_exclusive below.
3086 		 */
3087 		if (freeze && anon_exclusive &&
3088 		    folio_try_share_anon_rmap_pmd(folio, page))
3089 			freeze = false;
3090 		if (!freeze) {
3091 			rmap_t rmap_flags = RMAP_NONE;
3092 
3093 			folio_ref_add(folio, HPAGE_PMD_NR - 1);
3094 			if (anon_exclusive)
3095 				rmap_flags |= RMAP_EXCLUSIVE;
3096 
3097 			folio_add_anon_rmap_ptes(folio, page, HPAGE_PMD_NR,
3098 						 vma, haddr, rmap_flags);
3099 		}
3100 	} else {
3101 		/*
3102 		 * Up to this point the pmd is present and huge and userland has
3103 		 * the whole access to the hugepage during the split (which
3104 		 * happens in place). If we overwrite the pmd with the not-huge
3105 		 * version pointing to the pte here (which of course we could if
3106 		 * all CPUs were bug free), userland could trigger a small page
3107 		 * size TLB miss on the small sized TLB while the hugepage TLB
3108 		 * entry is still established in the huge TLB. Some CPU doesn't
3109 		 * like that. See
3110 		 * http://support.amd.com/TechDocs/41322_10h_Rev_Gd.pdf, Erratum
3111 		 * 383 on page 105. Intel should be safe but is also warns that
3112 		 * it's only safe if the permission and cache attributes of the
3113 		 * two entries loaded in the two TLB is identical (which should
3114 		 * be the case here). But it is generally safer to never allow
3115 		 * small and huge TLB entries for the same virtual address to be
3116 		 * loaded simultaneously. So instead of doing "pmd_populate();
3117 		 * flush_pmd_tlb_range();" we first mark the current pmd
3118 		 * notpresent (atomically because here the pmd_trans_huge must
3119 		 * remain set at all times on the pmd until the split is
3120 		 * complete for this pmd), then we flush the SMP TLB and finally
3121 		 * we write the non-huge version of the pmd entry with
3122 		 * pmd_populate.
3123 		 */
3124 		old_pmd = pmdp_invalidate(vma, haddr, pmd);
3125 		page = pmd_page(old_pmd);
3126 		folio = page_folio(page);
3127 		if (pmd_dirty(old_pmd)) {
3128 			dirty = true;
3129 			folio_set_dirty(folio);
3130 		}
3131 		write = pmd_write(old_pmd);
3132 		young = pmd_young(old_pmd);
3133 		soft_dirty = pmd_soft_dirty(old_pmd);
3134 		uffd_wp = pmd_uffd_wp(old_pmd);
3135 
3136 		VM_WARN_ON_FOLIO(!folio_ref_count(folio), folio);
3137 		VM_WARN_ON_FOLIO(!folio_test_anon(folio), folio);
3138 
3139 		/*
3140 		 * Without "freeze", we'll simply split the PMD, propagating the
3141 		 * PageAnonExclusive() flag for each PTE by setting it for
3142 		 * each subpage -- no need to (temporarily) clear.
3143 		 *
3144 		 * With "freeze" we want to replace mapped pages by
3145 		 * migration entries right away. This is only possible if we
3146 		 * managed to clear PageAnonExclusive() -- see
3147 		 * set_pmd_migration_entry().
3148 		 *
3149 		 * In case we cannot clear PageAnonExclusive(), split the PMD
3150 		 * only and let try_to_migrate_one() fail later.
3151 		 *
3152 		 * See folio_try_share_anon_rmap_pmd(): invalidate PMD first.
3153 		 */
3154 		anon_exclusive = PageAnonExclusive(page);
3155 		if (freeze && anon_exclusive &&
3156 		    folio_try_share_anon_rmap_pmd(folio, page))
3157 			freeze = false;
3158 		if (!freeze) {
3159 			rmap_t rmap_flags = RMAP_NONE;
3160 
3161 			folio_ref_add(folio, HPAGE_PMD_NR - 1);
3162 			if (anon_exclusive)
3163 				rmap_flags |= RMAP_EXCLUSIVE;
3164 			folio_add_anon_rmap_ptes(folio, page, HPAGE_PMD_NR,
3165 						 vma, haddr, rmap_flags);
3166 		}
3167 	}
3168 
3169 	/*
3170 	 * Withdraw the table only after we mark the pmd entry invalid.
3171 	 * This's critical for some architectures (Power).
3172 	 */
3173 	pgtable = pgtable_trans_huge_withdraw(mm, pmd);
3174 	pmd_populate(mm, &_pmd, pgtable);
3175 
3176 	pte = pte_offset_map(&_pmd, haddr);
3177 	VM_BUG_ON(!pte);
3178 
3179 	/*
3180 	 * Note that NUMA hinting access restrictions are not transferred to
3181 	 * avoid any possibility of altering permissions across VMAs.
3182 	 */
3183 	if (freeze || pmd_is_migration_entry(old_pmd)) {
3184 		pte_t entry;
3185 		swp_entry_t swp_entry;
3186 
3187 		for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
3188 			if (write)
3189 				swp_entry = make_writable_migration_entry(
3190 							page_to_pfn(page + i));
3191 			else if (anon_exclusive)
3192 				swp_entry = make_readable_exclusive_migration_entry(
3193 							page_to_pfn(page + i));
3194 			else
3195 				swp_entry = make_readable_migration_entry(
3196 							page_to_pfn(page + i));
3197 			if (young)
3198 				swp_entry = make_migration_entry_young(swp_entry);
3199 			if (dirty)
3200 				swp_entry = make_migration_entry_dirty(swp_entry);
3201 			entry = swp_entry_to_pte(swp_entry);
3202 			if (soft_dirty)
3203 				entry = pte_swp_mksoft_dirty(entry);
3204 			if (uffd_wp)
3205 				entry = pte_swp_mkuffd_wp(entry);
3206 			VM_WARN_ON(!pte_none(ptep_get(pte + i)));
3207 			set_pte_at(mm, addr, pte + i, entry);
3208 		}
3209 	} else if (pmd_is_device_private_entry(old_pmd)) {
3210 		pte_t entry;
3211 		swp_entry_t swp_entry;
3212 
3213 		for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
3214 			/*
3215 			 * anon_exclusive was already propagated to the relevant
3216 			 * pages corresponding to the pte entries when freeze
3217 			 * is false.
3218 			 */
3219 			if (write)
3220 				swp_entry = make_writable_device_private_entry(
3221 							page_to_pfn(page + i));
3222 			else
3223 				swp_entry = make_readable_device_private_entry(
3224 							page_to_pfn(page + i));
3225 			/*
3226 			 * Young and dirty bits are not progated via swp_entry
3227 			 */
3228 			entry = swp_entry_to_pte(swp_entry);
3229 			if (soft_dirty)
3230 				entry = pte_swp_mksoft_dirty(entry);
3231 			if (uffd_wp)
3232 				entry = pte_swp_mkuffd_wp(entry);
3233 			VM_WARN_ON(!pte_none(ptep_get(pte + i)));
3234 			set_pte_at(mm, addr, pte + i, entry);
3235 		}
3236 	} else {
3237 		pte_t entry;
3238 
3239 		entry = mk_pte(page, READ_ONCE(vma->vm_page_prot));
3240 		if (write)
3241 			entry = pte_mkwrite(entry, vma);
3242 		if (!young)
3243 			entry = pte_mkold(entry);
3244 		/* NOTE: this may set soft-dirty too on some archs */
3245 		if (dirty)
3246 			entry = pte_mkdirty(entry);
3247 		if (soft_dirty)
3248 			entry = pte_mksoft_dirty(entry);
3249 		if (uffd_wp)
3250 			entry = pte_mkuffd_wp(entry);
3251 
3252 		for (i = 0; i < HPAGE_PMD_NR; i++)
3253 			VM_WARN_ON(!pte_none(ptep_get(pte + i)));
3254 
3255 		set_ptes(mm, haddr, pte, entry, HPAGE_PMD_NR);
3256 	}
3257 	pte_unmap(pte);
3258 
3259 	if (!pmd_is_migration_entry(*pmd))
3260 		folio_remove_rmap_pmd(folio, page, vma);
3261 	if (freeze)
3262 		put_page(page);
3263 
3264 	smp_wmb(); /* make pte visible before pmd */
3265 	pmd_populate(mm, pmd, pgtable);
3266 }
3267 
split_huge_pmd_locked(struct vm_area_struct * vma,unsigned long address,pmd_t * pmd,bool freeze)3268 void split_huge_pmd_locked(struct vm_area_struct *vma, unsigned long address,
3269 			   pmd_t *pmd, bool freeze)
3270 {
3271 	VM_WARN_ON_ONCE(!IS_ALIGNED(address, HPAGE_PMD_SIZE));
3272 	if (pmd_trans_huge(*pmd) || pmd_is_valid_softleaf(*pmd))
3273 		__split_huge_pmd_locked(vma, pmd, address, freeze);
3274 }
3275 
__split_huge_pmd(struct vm_area_struct * vma,pmd_t * pmd,unsigned long address,bool freeze)3276 void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
3277 		unsigned long address, bool freeze)
3278 {
3279 	spinlock_t *ptl;
3280 	struct mmu_notifier_range range;
3281 
3282 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm,
3283 				address & HPAGE_PMD_MASK,
3284 				(address & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE);
3285 	mmu_notifier_invalidate_range_start(&range);
3286 	ptl = pmd_lock(vma->vm_mm, pmd);
3287 	split_huge_pmd_locked(vma, range.start, pmd, freeze);
3288 	spin_unlock(ptl);
3289 	mmu_notifier_invalidate_range_end(&range);
3290 }
3291 
split_huge_pmd_address(struct vm_area_struct * vma,unsigned long address,bool freeze)3292 void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
3293 		bool freeze)
3294 {
3295 	pmd_t *pmd = mm_find_pmd(vma->vm_mm, address);
3296 
3297 	if (!pmd)
3298 		return;
3299 
3300 	__split_huge_pmd(vma, pmd, address, freeze);
3301 }
3302 
split_huge_pmd_if_needed(struct vm_area_struct * vma,unsigned long address)3303 static inline void split_huge_pmd_if_needed(struct vm_area_struct *vma, unsigned long address)
3304 {
3305 	/*
3306 	 * If the new address isn't hpage aligned and it could previously
3307 	 * contain an hugepage: check if we need to split an huge pmd.
3308 	 */
3309 	if (!IS_ALIGNED(address, HPAGE_PMD_SIZE) &&
3310 	    range_in_vma(vma, ALIGN_DOWN(address, HPAGE_PMD_SIZE),
3311 			 ALIGN(address, HPAGE_PMD_SIZE)))
3312 		split_huge_pmd_address(vma, address, false);
3313 }
3314 
vma_adjust_trans_huge(struct vm_area_struct * vma,unsigned long start,unsigned long end,struct vm_area_struct * next)3315 void vma_adjust_trans_huge(struct vm_area_struct *vma,
3316 			   unsigned long start,
3317 			   unsigned long end,
3318 			   struct vm_area_struct *next)
3319 {
3320 	/* Check if we need to split start first. */
3321 	split_huge_pmd_if_needed(vma, start);
3322 
3323 	/* Check if we need to split end next. */
3324 	split_huge_pmd_if_needed(vma, end);
3325 
3326 	/* If we're incrementing next->vm_start, we might need to split it. */
3327 	if (next)
3328 		split_huge_pmd_if_needed(next, end);
3329 }
3330 
unmap_folio(struct folio * folio)3331 static void unmap_folio(struct folio *folio)
3332 {
3333 	enum ttu_flags ttu_flags = TTU_RMAP_LOCKED | TTU_SYNC |
3334 		TTU_BATCH_FLUSH;
3335 
3336 	VM_BUG_ON_FOLIO(!folio_test_large(folio), folio);
3337 
3338 	if (folio_test_pmd_mappable(folio))
3339 		ttu_flags |= TTU_SPLIT_HUGE_PMD;
3340 
3341 	/*
3342 	 * Anon pages need migration entries to preserve them, but file
3343 	 * pages can simply be left unmapped, then faulted back on demand.
3344 	 * If that is ever changed (perhaps for mlock), update remap_page().
3345 	 */
3346 	if (folio_test_anon(folio))
3347 		try_to_migrate(folio, ttu_flags);
3348 	else
3349 		try_to_unmap(folio, ttu_flags | TTU_IGNORE_MLOCK);
3350 
3351 	try_to_unmap_flush();
3352 }
3353 
__discard_anon_folio_pmd_locked(struct vm_area_struct * vma,unsigned long addr,pmd_t * pmdp,struct folio * folio)3354 static bool __discard_anon_folio_pmd_locked(struct vm_area_struct *vma,
3355 					    unsigned long addr, pmd_t *pmdp,
3356 					    struct folio *folio)
3357 {
3358 	struct mm_struct *mm = vma->vm_mm;
3359 	int ref_count, map_count;
3360 	pmd_t orig_pmd = *pmdp;
3361 
3362 	if (pmd_dirty(orig_pmd))
3363 		folio_set_dirty(folio);
3364 	if (folio_test_dirty(folio) && !(vma->vm_flags & VM_DROPPABLE)) {
3365 		folio_set_swapbacked(folio);
3366 		return false;
3367 	}
3368 
3369 	orig_pmd = pmdp_huge_clear_flush(vma, addr, pmdp);
3370 
3371 	/*
3372 	 * Syncing against concurrent GUP-fast:
3373 	 * - clear PMD; barrier; read refcount
3374 	 * - inc refcount; barrier; read PMD
3375 	 */
3376 	smp_mb();
3377 
3378 	ref_count = folio_ref_count(folio);
3379 	map_count = folio_mapcount(folio);
3380 
3381 	/*
3382 	 * Order reads for folio refcount and dirty flag
3383 	 * (see comments in __remove_mapping()).
3384 	 */
3385 	smp_rmb();
3386 
3387 	/*
3388 	 * If the folio or its PMD is redirtied at this point, or if there
3389 	 * are unexpected references, we will give up to discard this folio
3390 	 * and remap it.
3391 	 *
3392 	 * The only folio refs must be one from isolation plus the rmap(s).
3393 	 */
3394 	if (pmd_dirty(orig_pmd))
3395 		folio_set_dirty(folio);
3396 	if (folio_test_dirty(folio) && !(vma->vm_flags & VM_DROPPABLE)) {
3397 		folio_set_swapbacked(folio);
3398 		set_pmd_at(mm, addr, pmdp, orig_pmd);
3399 		return false;
3400 	}
3401 
3402 	if (ref_count != map_count + 1) {
3403 		set_pmd_at(mm, addr, pmdp, orig_pmd);
3404 		return false;
3405 	}
3406 
3407 	folio_remove_rmap_pmd(folio, pmd_page(orig_pmd), vma);
3408 	zap_deposited_table(mm, pmdp);
3409 	add_mm_counter(mm, MM_ANONPAGES, -HPAGE_PMD_NR);
3410 	if (vma->vm_flags & VM_LOCKED)
3411 		mlock_drain_local();
3412 	folio_put(folio);
3413 
3414 	return true;
3415 }
3416 
unmap_huge_pmd_locked(struct vm_area_struct * vma,unsigned long addr,pmd_t * pmdp,struct folio * folio)3417 bool unmap_huge_pmd_locked(struct vm_area_struct *vma, unsigned long addr,
3418 			   pmd_t *pmdp, struct folio *folio)
3419 {
3420 	VM_WARN_ON_FOLIO(!folio_test_pmd_mappable(folio), folio);
3421 	VM_WARN_ON_FOLIO(!folio_test_locked(folio), folio);
3422 	VM_WARN_ON_FOLIO(!folio_test_anon(folio), folio);
3423 	VM_WARN_ON_FOLIO(folio_test_swapbacked(folio), folio);
3424 	VM_WARN_ON_ONCE(!IS_ALIGNED(addr, HPAGE_PMD_SIZE));
3425 
3426 	return __discard_anon_folio_pmd_locked(vma, addr, pmdp, folio);
3427 }
3428 
remap_page(struct folio * folio,unsigned long nr,int flags)3429 static void remap_page(struct folio *folio, unsigned long nr, int flags)
3430 {
3431 	int i = 0;
3432 
3433 	/* If unmap_folio() uses try_to_migrate() on file, remove this check */
3434 	if (!folio_test_anon(folio))
3435 		return;
3436 	for (;;) {
3437 		remove_migration_ptes(folio, folio, TTU_RMAP_LOCKED | flags);
3438 		i += folio_nr_pages(folio);
3439 		if (i >= nr)
3440 			break;
3441 		folio = folio_next(folio);
3442 	}
3443 }
3444 
lru_add_split_folio(struct folio * folio,struct folio * new_folio,struct lruvec * lruvec,struct list_head * list)3445 static void lru_add_split_folio(struct folio *folio, struct folio *new_folio,
3446 		struct lruvec *lruvec, struct list_head *list)
3447 {
3448 	VM_BUG_ON_FOLIO(folio_test_lru(new_folio), folio);
3449 	lockdep_assert_held(&lruvec->lru_lock);
3450 
3451 	if (folio_is_device_private(folio))
3452 		return;
3453 
3454 	if (list) {
3455 		/* page reclaim is reclaiming a huge page */
3456 		VM_WARN_ON(folio_test_lru(folio));
3457 		folio_get(new_folio);
3458 		list_add_tail(&new_folio->lru, list);
3459 	} else {
3460 		/* head is still on lru (and we have it frozen) */
3461 		VM_WARN_ON(!folio_test_lru(folio));
3462 		if (folio_test_unevictable(folio))
3463 			new_folio->mlock_count = 0;
3464 		else
3465 			list_add_tail(&new_folio->lru, &folio->lru);
3466 		folio_set_lru(new_folio);
3467 	}
3468 }
3469 
page_range_has_hwpoisoned(struct page * page,long nr_pages)3470 static bool page_range_has_hwpoisoned(struct page *page, long nr_pages)
3471 {
3472 	for (; nr_pages; page++, nr_pages--)
3473 		if (PageHWPoison(page))
3474 			return true;
3475 	return false;
3476 }
3477 
3478 /*
3479  * It splits @folio into @new_order folios and copies the @folio metadata to
3480  * all the resulting folios.
3481  */
__split_folio_to_order(struct folio * folio,int old_order,int new_order)3482 static void __split_folio_to_order(struct folio *folio, int old_order,
3483 		int new_order)
3484 {
3485 	/* Scan poisoned pages when split a poisoned folio to large folios */
3486 	const bool handle_hwpoison = folio_test_has_hwpoisoned(folio) && new_order;
3487 	long new_nr_pages = 1 << new_order;
3488 	long nr_pages = 1 << old_order;
3489 	long i;
3490 
3491 	folio_clear_has_hwpoisoned(folio);
3492 
3493 	/* Check first new_nr_pages since the loop below skips them */
3494 	if (handle_hwpoison &&
3495 	    page_range_has_hwpoisoned(folio_page(folio, 0), new_nr_pages))
3496 		folio_set_has_hwpoisoned(folio);
3497 	/*
3498 	 * Skip the first new_nr_pages, since the new folio from them have all
3499 	 * the flags from the original folio.
3500 	 */
3501 	for (i = new_nr_pages; i < nr_pages; i += new_nr_pages) {
3502 		struct page *new_head = &folio->page + i;
3503 		/*
3504 		 * Careful: new_folio is not a "real" folio before we cleared PageTail.
3505 		 * Don't pass it around before clear_compound_head().
3506 		 */
3507 		struct folio *new_folio = (struct folio *)new_head;
3508 
3509 		VM_BUG_ON_PAGE(atomic_read(&new_folio->_mapcount) != -1, new_head);
3510 
3511 		/*
3512 		 * Clone page flags before unfreezing refcount.
3513 		 *
3514 		 * After successful get_page_unless_zero() might follow flags change,
3515 		 * for example lock_page() which set PG_waiters.
3516 		 *
3517 		 * Note that for mapped sub-pages of an anonymous THP,
3518 		 * PG_anon_exclusive has been cleared in unmap_folio() and is stored in
3519 		 * the migration entry instead from where remap_page() will restore it.
3520 		 * We can still have PG_anon_exclusive set on effectively unmapped and
3521 		 * unreferenced sub-pages of an anonymous THP: we can simply drop
3522 		 * PG_anon_exclusive (-> PG_mappedtodisk) for these here.
3523 		 */
3524 		new_folio->flags.f &= ~PAGE_FLAGS_CHECK_AT_PREP;
3525 		new_folio->flags.f |= (folio->flags.f &
3526 				((1L << PG_referenced) |
3527 				 (1L << PG_swapbacked) |
3528 				 (1L << PG_swapcache) |
3529 				 (1L << PG_mlocked) |
3530 				 (1L << PG_uptodate) |
3531 				 (1L << PG_active) |
3532 				 (1L << PG_workingset) |
3533 				 (1L << PG_locked) |
3534 				 (1L << PG_unevictable) |
3535 #ifdef CONFIG_ARCH_USES_PG_ARCH_2
3536 				 (1L << PG_arch_2) |
3537 #endif
3538 #ifdef CONFIG_ARCH_USES_PG_ARCH_3
3539 				 (1L << PG_arch_3) |
3540 #endif
3541 				 (1L << PG_dirty) |
3542 				 LRU_GEN_MASK | LRU_REFS_MASK));
3543 
3544 		if (handle_hwpoison &&
3545 		    page_range_has_hwpoisoned(new_head, new_nr_pages))
3546 			folio_set_has_hwpoisoned(new_folio);
3547 
3548 		new_folio->mapping = folio->mapping;
3549 		new_folio->index = folio->index + i;
3550 
3551 		if (folio_test_swapcache(folio))
3552 			new_folio->swap.val = folio->swap.val + i;
3553 
3554 		/* Page flags must be visible before we make the page non-compound. */
3555 		smp_wmb();
3556 
3557 		/*
3558 		 * Clear PageTail before unfreezing page refcount.
3559 		 *
3560 		 * After successful get_page_unless_zero() might follow put_page()
3561 		 * which needs correct compound_head().
3562 		 */
3563 		clear_compound_head(new_head);
3564 		if (new_order) {
3565 			prep_compound_page(new_head, new_order);
3566 			folio_set_large_rmappable(new_folio);
3567 		}
3568 
3569 		if (folio_test_young(folio))
3570 			folio_set_young(new_folio);
3571 		if (folio_test_idle(folio))
3572 			folio_set_idle(new_folio);
3573 #ifdef CONFIG_MEMCG
3574 		new_folio->memcg_data = folio->memcg_data;
3575 #endif
3576 
3577 		folio_xchg_last_cpupid(new_folio, folio_last_cpupid(folio));
3578 	}
3579 
3580 	if (new_order)
3581 		folio_set_order(folio, new_order);
3582 	else
3583 		ClearPageCompound(&folio->page);
3584 }
3585 
3586 /**
3587  * __split_unmapped_folio() - splits an unmapped @folio to lower order folios in
3588  * two ways: uniform split or non-uniform split.
3589  * @folio: the to-be-split folio
3590  * @new_order: the smallest order of the after split folios (since buddy
3591  *             allocator like split generates folios with orders from @folio's
3592  *             order - 1 to new_order).
3593  * @split_at: in buddy allocator like split, the folio containing @split_at
3594  *            will be split until its order becomes @new_order.
3595  * @xas: xa_state pointing to folio->mapping->i_pages and locked by caller
3596  * @mapping: @folio->mapping
3597  * @split_type: if the split is uniform or not (buddy allocator like split)
3598  *
3599  *
3600  * 1. uniform split: the given @folio into multiple @new_order small folios,
3601  *    where all small folios have the same order. This is done when
3602  *    split_type is SPLIT_TYPE_UNIFORM.
3603  * 2. buddy allocator like (non-uniform) split: the given @folio is split into
3604  *    half and one of the half (containing the given page) is split into half
3605  *    until the given @folio's order becomes @new_order. This is done when
3606  *    split_type is SPLIT_TYPE_NON_UNIFORM.
3607  *
3608  * The high level flow for these two methods are:
3609  *
3610  * 1. uniform split: @xas is split with no expectation of failure and a single
3611  *    __split_folio_to_order() is called to split the @folio into @new_order
3612  *    along with stats update.
3613  * 2. non-uniform split: folio_order - @new_order calls to
3614  *    __split_folio_to_order() are expected to be made in a for loop to split
3615  *    the @folio to one lower order at a time. The folio containing @split_at
3616  *    is split in each iteration. @xas is split into half in each iteration and
3617  *    can fail. A failed @xas split leaves split folios as is without merging
3618  *    them back.
3619  *
3620  * After splitting, the caller's folio reference will be transferred to the
3621  * folio containing @split_at. The caller needs to unlock and/or free
3622  * after-split folios if necessary.
3623  *
3624  * Return: 0 - successful, <0 - failed (if -ENOMEM is returned, @folio might be
3625  * split but not to @new_order, the caller needs to check)
3626  */
__split_unmapped_folio(struct folio * folio,int new_order,struct page * split_at,struct xa_state * xas,struct address_space * mapping,enum split_type split_type)3627 static int __split_unmapped_folio(struct folio *folio, int new_order,
3628 		struct page *split_at, struct xa_state *xas,
3629 		struct address_space *mapping, enum split_type split_type)
3630 {
3631 	const bool is_anon = folio_test_anon(folio);
3632 	int old_order = folio_order(folio);
3633 	int start_order = split_type == SPLIT_TYPE_UNIFORM ? new_order : old_order - 1;
3634 	int split_order;
3635 
3636 	/*
3637 	 * split to new_order one order at a time. For uniform split,
3638 	 * folio is split to new_order directly.
3639 	 */
3640 	for (split_order = start_order;
3641 	     split_order >= new_order;
3642 	     split_order--) {
3643 		int nr_new_folios = 1UL << (old_order - split_order);
3644 
3645 		/* order-1 anonymous folio is not supported */
3646 		if (is_anon && split_order == 1)
3647 			continue;
3648 
3649 		if (mapping) {
3650 			/*
3651 			 * uniform split has xas_split_alloc() called before
3652 			 * irq is disabled to allocate enough memory, whereas
3653 			 * non-uniform split can handle ENOMEM.
3654 			 */
3655 			if (split_type == SPLIT_TYPE_UNIFORM)
3656 				xas_split(xas, folio, old_order);
3657 			else {
3658 				xas_set_order(xas, folio->index, split_order);
3659 				xas_try_split(xas, folio, old_order);
3660 				if (xas_error(xas))
3661 					return xas_error(xas);
3662 			}
3663 		}
3664 
3665 		folio_split_memcg_refs(folio, old_order, split_order);
3666 		split_page_owner(&folio->page, old_order, split_order);
3667 		pgalloc_tag_split(folio, old_order, split_order);
3668 		__split_folio_to_order(folio, old_order, split_order);
3669 
3670 		if (is_anon) {
3671 			mod_mthp_stat(old_order, MTHP_STAT_NR_ANON, -1);
3672 			mod_mthp_stat(split_order, MTHP_STAT_NR_ANON, nr_new_folios);
3673 		}
3674 		/*
3675 		 * If uniform split, the process is complete.
3676 		 * If non-uniform, continue splitting the folio at @split_at
3677 		 * as long as the next @split_order is >= @new_order.
3678 		 */
3679 		folio = page_folio(split_at);
3680 		old_order = split_order;
3681 	}
3682 
3683 	return 0;
3684 }
3685 
3686 /**
3687  * folio_check_splittable() - check if a folio can be split to a given order
3688  * @folio: folio to be split
3689  * @new_order: the smallest order of the after split folios (since buddy
3690  *             allocator like split generates folios with orders from @folio's
3691  *             order - 1 to new_order).
3692  * @split_type: uniform or non-uniform split
3693  *
3694  * folio_check_splittable() checks if @folio can be split to @new_order using
3695  * @split_type method. The truncated folio check must come first.
3696  *
3697  * Context: folio must be locked.
3698  *
3699  * Return: 0 - @folio can be split to @new_order, otherwise an error number is
3700  * returned.
3701  */
folio_check_splittable(struct folio * folio,unsigned int new_order,enum split_type split_type)3702 int folio_check_splittable(struct folio *folio, unsigned int new_order,
3703 			   enum split_type split_type)
3704 {
3705 	VM_WARN_ON_FOLIO(!folio_test_locked(folio), folio);
3706 	/*
3707 	 * Folios that just got truncated cannot get split. Signal to the
3708 	 * caller that there was a race.
3709 	 *
3710 	 * TODO: this will also currently refuse folios without a mapping in the
3711 	 * swapcache (shmem or to-be-anon folios).
3712 	 */
3713 	if (!folio->mapping && !folio_test_anon(folio))
3714 		return -EBUSY;
3715 
3716 	if (folio_test_anon(folio)) {
3717 		/* order-1 is not supported for anonymous THP. */
3718 		if (new_order == 1)
3719 			return -EINVAL;
3720 	} else if (split_type == SPLIT_TYPE_NON_UNIFORM || new_order) {
3721 		if (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) &&
3722 		    !mapping_large_folio_support(folio->mapping)) {
3723 			/*
3724 			 * We can always split a folio down to a single page
3725 			 * (new_order == 0) uniformly.
3726 			 *
3727 			 * For any other scenario
3728 			 *   a) uniform split targeting a large folio
3729 			 *      (new_order > 0)
3730 			 *   b) any non-uniform split
3731 			 * we must confirm that the file system supports large
3732 			 * folios.
3733 			 *
3734 			 * Note that we might still have THPs in such
3735 			 * mappings, which is created from khugepaged when
3736 			 * CONFIG_READ_ONLY_THP_FOR_FS is enabled. But in that
3737 			 * case, the mapping does not actually support large
3738 			 * folios properly.
3739 			 */
3740 			return -EINVAL;
3741 		}
3742 	}
3743 
3744 	/*
3745 	 * swapcache folio could only be split to order 0
3746 	 *
3747 	 * non-uniform split creates after-split folios with orders from
3748 	 * folio_order(folio) - 1 to new_order, making it not suitable for any
3749 	 * swapcache folio split. Only uniform split to order-0 can be used
3750 	 * here.
3751 	 */
3752 	if ((split_type == SPLIT_TYPE_NON_UNIFORM || new_order) && folio_test_swapcache(folio)) {
3753 		return -EINVAL;
3754 	}
3755 
3756 	if (is_huge_zero_folio(folio))
3757 		return -EINVAL;
3758 
3759 	if (folio_test_writeback(folio))
3760 		return -EBUSY;
3761 
3762 	return 0;
3763 }
3764 
3765 /* Number of folio references from the pagecache or the swapcache. */
folio_cache_ref_count(const struct folio * folio)3766 static unsigned int folio_cache_ref_count(const struct folio *folio)
3767 {
3768 	if (folio_test_anon(folio) && !folio_test_swapcache(folio))
3769 		return 0;
3770 	return folio_nr_pages(folio);
3771 }
3772 
__folio_freeze_and_split_unmapped(struct folio * folio,unsigned int new_order,struct page * split_at,struct xa_state * xas,struct address_space * mapping,bool do_lru,struct list_head * list,enum split_type split_type,pgoff_t end,int * nr_shmem_dropped)3773 static int __folio_freeze_and_split_unmapped(struct folio *folio, unsigned int new_order,
3774 					     struct page *split_at, struct xa_state *xas,
3775 					     struct address_space *mapping, bool do_lru,
3776 					     struct list_head *list, enum split_type split_type,
3777 					     pgoff_t end, int *nr_shmem_dropped)
3778 {
3779 	struct folio *end_folio = folio_next(folio);
3780 	struct folio *new_folio, *next;
3781 	int old_order = folio_order(folio);
3782 	int ret = 0;
3783 	struct deferred_split *ds_queue;
3784 
3785 	VM_WARN_ON_ONCE(!mapping && end);
3786 	/* Prevent deferred_split_scan() touching ->_refcount */
3787 	ds_queue = folio_split_queue_lock(folio);
3788 	if (folio_ref_freeze(folio, folio_cache_ref_count(folio) + 1)) {
3789 		struct swap_cluster_info *ci = NULL;
3790 		struct lruvec *lruvec;
3791 
3792 		if (old_order > 1) {
3793 			if (!list_empty(&folio->_deferred_list)) {
3794 				ds_queue->split_queue_len--;
3795 				/*
3796 				 * Reinitialize page_deferred_list after removing the
3797 				 * page from the split_queue, otherwise a subsequent
3798 				 * split will see list corruption when checking the
3799 				 * page_deferred_list.
3800 				 */
3801 				list_del_init(&folio->_deferred_list);
3802 			}
3803 			if (folio_test_partially_mapped(folio)) {
3804 				folio_clear_partially_mapped(folio);
3805 				mod_mthp_stat(old_order,
3806 					MTHP_STAT_NR_ANON_PARTIALLY_MAPPED, -1);
3807 			}
3808 		}
3809 		split_queue_unlock(ds_queue);
3810 		if (mapping) {
3811 			int nr = folio_nr_pages(folio);
3812 
3813 			if (folio_test_pmd_mappable(folio) &&
3814 			    new_order < HPAGE_PMD_ORDER) {
3815 				if (folio_test_swapbacked(folio)) {
3816 					lruvec_stat_mod_folio(folio,
3817 							NR_SHMEM_THPS, -nr);
3818 				} else {
3819 					lruvec_stat_mod_folio(folio,
3820 							NR_FILE_THPS, -nr);
3821 					filemap_nr_thps_dec(mapping);
3822 				}
3823 			}
3824 		}
3825 
3826 		if (folio_test_swapcache(folio)) {
3827 			if (mapping) {
3828 				VM_WARN_ON_ONCE_FOLIO(mapping, folio);
3829 				return -EINVAL;
3830 			}
3831 
3832 			ci = swap_cluster_get_and_lock(folio);
3833 		}
3834 
3835 		/* lock lru list/PageCompound, ref frozen by page_ref_freeze */
3836 		if (do_lru)
3837 			lruvec = folio_lruvec_lock(folio);
3838 
3839 		ret = __split_unmapped_folio(folio, new_order, split_at, xas,
3840 					     mapping, split_type);
3841 
3842 		/*
3843 		 * Unfreeze after-split folios and put them back to the right
3844 		 * list. @folio should be kept frozon until page cache
3845 		 * entries are updated with all the other after-split folios
3846 		 * to prevent others seeing stale page cache entries.
3847 		 * As a result, new_folio starts from the next folio of
3848 		 * @folio.
3849 		 */
3850 		for (new_folio = folio_next(folio); new_folio != end_folio;
3851 		     new_folio = next) {
3852 			unsigned long nr_pages = folio_nr_pages(new_folio);
3853 
3854 			next = folio_next(new_folio);
3855 
3856 			zone_device_private_split_cb(folio, new_folio);
3857 
3858 			folio_ref_unfreeze(new_folio,
3859 					   folio_cache_ref_count(new_folio) + 1);
3860 
3861 			if (do_lru)
3862 				lru_add_split_folio(folio, new_folio, lruvec, list);
3863 
3864 			/*
3865 			 * Anonymous folio with swap cache.
3866 			 * NOTE: shmem in swap cache is not supported yet.
3867 			 */
3868 			if (ci) {
3869 				__swap_cache_replace_folio(ci, folio, new_folio);
3870 				continue;
3871 			}
3872 
3873 			/* Anonymous folio without swap cache */
3874 			if (!mapping)
3875 				continue;
3876 
3877 			/* Add the new folio to the page cache. */
3878 			if (new_folio->index < end) {
3879 				__xa_store(&mapping->i_pages, new_folio->index,
3880 					   new_folio, 0);
3881 				continue;
3882 			}
3883 
3884 			VM_WARN_ON_ONCE(!nr_shmem_dropped);
3885 			/* Drop folio beyond EOF: ->index >= end */
3886 			if (shmem_mapping(mapping) && nr_shmem_dropped)
3887 				*nr_shmem_dropped += nr_pages;
3888 			else if (folio_test_clear_dirty(new_folio))
3889 				folio_account_cleaned(
3890 					new_folio, inode_to_wb(mapping->host));
3891 			__filemap_remove_folio(new_folio, NULL);
3892 			folio_put_refs(new_folio, nr_pages);
3893 		}
3894 
3895 		zone_device_private_split_cb(folio, NULL);
3896 		/*
3897 		 * Unfreeze @folio only after all page cache entries, which
3898 		 * used to point to it, have been updated with new folios.
3899 		 * Otherwise, a parallel folio_try_get() can grab @folio
3900 		 * and its caller can see stale page cache entries.
3901 		 */
3902 		folio_ref_unfreeze(folio, folio_cache_ref_count(folio) + 1);
3903 
3904 		if (do_lru)
3905 			unlock_page_lruvec(lruvec);
3906 
3907 		if (ci)
3908 			swap_cluster_unlock(ci);
3909 	} else {
3910 		split_queue_unlock(ds_queue);
3911 		return -EAGAIN;
3912 	}
3913 
3914 	return ret;
3915 }
3916 
3917 /**
3918  * __folio_split() - split a folio at @split_at to a @new_order folio
3919  * @folio: folio to split
3920  * @new_order: the order of the new folio
3921  * @split_at: a page within the new folio
3922  * @lock_at: a page within @folio to be left locked to caller
3923  * @list: after-split folios will be put on it if non NULL
3924  * @split_type: perform uniform split or not (non-uniform split)
3925  *
3926  * It calls __split_unmapped_folio() to perform uniform and non-uniform split.
3927  * It is in charge of checking whether the split is supported or not and
3928  * preparing @folio for __split_unmapped_folio().
3929  *
3930  * After splitting, the after-split folio containing @lock_at remains locked
3931  * and others are unlocked:
3932  * 1. for uniform split, @lock_at points to one of @folio's subpages;
3933  * 2. for buddy allocator like (non-uniform) split, @lock_at points to @folio.
3934  *
3935  * Return: 0 - successful, <0 - failed (if -ENOMEM is returned, @folio might be
3936  * split but not to @new_order, the caller needs to check)
3937  */
__folio_split(struct folio * folio,unsigned int new_order,struct page * split_at,struct page * lock_at,struct list_head * list,enum split_type split_type)3938 static int __folio_split(struct folio *folio, unsigned int new_order,
3939 		struct page *split_at, struct page *lock_at,
3940 		struct list_head *list, enum split_type split_type)
3941 {
3942 	XA_STATE(xas, &folio->mapping->i_pages, folio->index);
3943 	struct folio *end_folio = folio_next(folio);
3944 	bool is_anon = folio_test_anon(folio);
3945 	struct address_space *mapping = NULL;
3946 	struct anon_vma *anon_vma = NULL;
3947 	int old_order = folio_order(folio);
3948 	struct folio *new_folio, *next;
3949 	int nr_shmem_dropped = 0;
3950 	enum ttu_flags ttu_flags = 0;
3951 	int ret;
3952 	pgoff_t end = 0;
3953 
3954 	VM_WARN_ON_ONCE_FOLIO(!folio_test_locked(folio), folio);
3955 	VM_WARN_ON_ONCE_FOLIO(!folio_test_large(folio), folio);
3956 
3957 	if (folio != page_folio(split_at) || folio != page_folio(lock_at)) {
3958 		ret = -EINVAL;
3959 		goto out;
3960 	}
3961 
3962 	if (new_order >= old_order) {
3963 		ret = -EINVAL;
3964 		goto out;
3965 	}
3966 
3967 	ret = folio_check_splittable(folio, new_order, split_type);
3968 	if (ret) {
3969 		VM_WARN_ONCE(ret == -EINVAL, "Tried to split an unsplittable folio");
3970 		goto out;
3971 	}
3972 
3973 	if (is_anon) {
3974 		/*
3975 		 * The caller does not necessarily hold an mmap_lock that would
3976 		 * prevent the anon_vma disappearing so we first we take a
3977 		 * reference to it and then lock the anon_vma for write. This
3978 		 * is similar to folio_lock_anon_vma_read except the write lock
3979 		 * is taken to serialise against parallel split or collapse
3980 		 * operations.
3981 		 */
3982 		anon_vma = folio_get_anon_vma(folio);
3983 		if (!anon_vma) {
3984 			ret = -EBUSY;
3985 			goto out;
3986 		}
3987 		anon_vma_lock_write(anon_vma);
3988 		mapping = NULL;
3989 	} else {
3990 		unsigned int min_order;
3991 		gfp_t gfp;
3992 
3993 		mapping = folio->mapping;
3994 		min_order = mapping_min_folio_order(folio->mapping);
3995 		if (new_order < min_order) {
3996 			ret = -EINVAL;
3997 			goto out;
3998 		}
3999 
4000 		gfp = current_gfp_context(mapping_gfp_mask(mapping) &
4001 							GFP_RECLAIM_MASK);
4002 
4003 		if (!filemap_release_folio(folio, gfp)) {
4004 			ret = -EBUSY;
4005 			goto out;
4006 		}
4007 
4008 		if (split_type == SPLIT_TYPE_UNIFORM) {
4009 			xas_set_order(&xas, folio->index, new_order);
4010 			xas_split_alloc(&xas, folio, old_order, gfp);
4011 			if (xas_error(&xas)) {
4012 				ret = xas_error(&xas);
4013 				goto out;
4014 			}
4015 		}
4016 
4017 		anon_vma = NULL;
4018 		i_mmap_lock_read(mapping);
4019 
4020 		/*
4021 		 *__split_unmapped_folio() may need to trim off pages beyond
4022 		 * EOF: but on 32-bit, i_size_read() takes an irq-unsafe
4023 		 * seqlock, which cannot be nested inside the page tree lock.
4024 		 * So note end now: i_size itself may be changed at any moment,
4025 		 * but folio lock is good enough to serialize the trimming.
4026 		 */
4027 		end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
4028 		if (shmem_mapping(mapping))
4029 			end = shmem_fallocend(mapping->host, end);
4030 	}
4031 
4032 	/*
4033 	 * Racy check if we can split the page, before unmap_folio() will
4034 	 * split PMDs
4035 	 */
4036 	if (folio_expected_ref_count(folio) != folio_ref_count(folio) - 1) {
4037 		ret = -EAGAIN;
4038 		goto out_unlock;
4039 	}
4040 
4041 	unmap_folio(folio);
4042 
4043 	/* block interrupt reentry in xa_lock and spinlock */
4044 	local_irq_disable();
4045 	if (mapping) {
4046 		/*
4047 		 * Check if the folio is present in page cache.
4048 		 * We assume all tail are present too, if folio is there.
4049 		 */
4050 		xas_lock(&xas);
4051 		xas_reset(&xas);
4052 		if (xas_load(&xas) != folio) {
4053 			ret = -EAGAIN;
4054 			goto fail;
4055 		}
4056 	}
4057 
4058 	ret = __folio_freeze_and_split_unmapped(folio, new_order, split_at, &xas, mapping,
4059 						true, list, split_type, end, &nr_shmem_dropped);
4060 fail:
4061 	if (mapping)
4062 		xas_unlock(&xas);
4063 
4064 	local_irq_enable();
4065 
4066 	if (nr_shmem_dropped)
4067 		shmem_uncharge(mapping->host, nr_shmem_dropped);
4068 
4069 	if (!ret && is_anon && !folio_is_device_private(folio))
4070 		ttu_flags = TTU_USE_SHARED_ZEROPAGE;
4071 
4072 	remap_page(folio, 1 << old_order, ttu_flags);
4073 
4074 	/*
4075 	 * Unlock all after-split folios except the one containing
4076 	 * @lock_at page. If @folio is not split, it will be kept locked.
4077 	 */
4078 	for (new_folio = folio; new_folio != end_folio; new_folio = next) {
4079 		next = folio_next(new_folio);
4080 		if (new_folio == page_folio(lock_at))
4081 			continue;
4082 
4083 		folio_unlock(new_folio);
4084 		/*
4085 		 * Subpages may be freed if there wasn't any mapping
4086 		 * like if add_to_swap() is running on a lru page that
4087 		 * had its mapping zapped. And freeing these pages
4088 		 * requires taking the lru_lock so we do the put_page
4089 		 * of the tail pages after the split is complete.
4090 		 */
4091 		free_folio_and_swap_cache(new_folio);
4092 	}
4093 
4094 out_unlock:
4095 	if (anon_vma) {
4096 		anon_vma_unlock_write(anon_vma);
4097 		put_anon_vma(anon_vma);
4098 	}
4099 	if (mapping)
4100 		i_mmap_unlock_read(mapping);
4101 out:
4102 	xas_destroy(&xas);
4103 	if (old_order == HPAGE_PMD_ORDER)
4104 		count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
4105 	count_mthp_stat(old_order, !ret ? MTHP_STAT_SPLIT : MTHP_STAT_SPLIT_FAILED);
4106 	return ret;
4107 }
4108 
4109 /**
4110  * folio_split_unmapped() - split a large anon folio that is already unmapped
4111  * @folio: folio to split
4112  * @new_order: the order of folios after split
4113  *
4114  * This function is a helper for splitting folios that have already been
4115  * unmapped. The use case is that the device or the CPU can refuse to migrate
4116  * THP pages in the middle of migration, due to allocation issues on either
4117  * side.
4118  *
4119  * anon_vma_lock is not required to be held, mmap_read_lock() or
4120  * mmap_write_lock() should be held. @folio is expected to be locked by the
4121  * caller. device-private and non device-private folios are supported along
4122  * with folios that are in the swapcache. @folio should also be unmapped and
4123  * isolated from LRU (if applicable)
4124  *
4125  * Upon return, the folio is not remapped, split folios are not added to LRU,
4126  * free_folio_and_swap_cache() is not called, and new folios remain locked.
4127  *
4128  * Return: 0 on success, -EAGAIN if the folio cannot be split (e.g., due to
4129  *         insufficient reference count or extra pins).
4130  */
folio_split_unmapped(struct folio * folio,unsigned int new_order)4131 int folio_split_unmapped(struct folio *folio, unsigned int new_order)
4132 {
4133 	int ret = 0;
4134 
4135 	VM_WARN_ON_ONCE_FOLIO(folio_mapped(folio), folio);
4136 	VM_WARN_ON_ONCE_FOLIO(!folio_test_locked(folio), folio);
4137 	VM_WARN_ON_ONCE_FOLIO(!folio_test_large(folio), folio);
4138 	VM_WARN_ON_ONCE_FOLIO(!folio_test_anon(folio), folio);
4139 
4140 	if (folio_expected_ref_count(folio) != folio_ref_count(folio) - 1)
4141 		return -EAGAIN;
4142 
4143 	local_irq_disable();
4144 	ret = __folio_freeze_and_split_unmapped(folio, new_order, &folio->page, NULL,
4145 						NULL, false, NULL, SPLIT_TYPE_UNIFORM,
4146 						0, NULL);
4147 	local_irq_enable();
4148 	return ret;
4149 }
4150 
4151 /*
4152  * This function splits a large folio into smaller folios of order @new_order.
4153  * @page can point to any page of the large folio to split. The split operation
4154  * does not change the position of @page.
4155  *
4156  * Prerequisites:
4157  *
4158  * 1) The caller must hold a reference on the @page's owning folio, also known
4159  *    as the large folio.
4160  *
4161  * 2) The large folio must be locked.
4162  *
4163  * 3) The folio must not be pinned. Any unexpected folio references, including
4164  *    GUP pins, will result in the folio not getting split; instead, the caller
4165  *    will receive an -EAGAIN.
4166  *
4167  * 4) @new_order > 1, usually. Splitting to order-1 anonymous folios is not
4168  *    supported for non-file-backed folios, because folio->_deferred_list, which
4169  *    is used by partially mapped folios, is stored in subpage 2, but an order-1
4170  *    folio only has subpages 0 and 1. File-backed order-1 folios are supported,
4171  *    since they do not use _deferred_list.
4172  *
4173  * After splitting, the caller's folio reference will be transferred to @page,
4174  * resulting in a raised refcount of @page after this call. The other pages may
4175  * be freed if they are not mapped.
4176  *
4177  * If @list is null, tail pages will be added to LRU list, otherwise, to @list.
4178  *
4179  * Pages in @new_order will inherit the mapping, flags, and so on from the
4180  * huge page.
4181  *
4182  * Returns 0 if the huge page was split successfully.
4183  *
4184  * Returns -EAGAIN if the folio has unexpected reference (e.g., GUP) or if
4185  * the folio was concurrently removed from the page cache.
4186  *
4187  * Returns -EBUSY when trying to split the huge zeropage, if the folio is
4188  * under writeback, if fs-specific folio metadata cannot currently be
4189  * released, or if some unexpected race happened (e.g., anon VMA disappeared,
4190  * truncation).
4191  *
4192  * Callers should ensure that the order respects the address space mapping
4193  * min-order if one is set for non-anonymous folios.
4194  *
4195  * Returns -EINVAL when trying to split to an order that is incompatible
4196  * with the folio. Splitting to order 0 is compatible with all folios.
4197  */
__split_huge_page_to_list_to_order(struct page * page,struct list_head * list,unsigned int new_order)4198 int __split_huge_page_to_list_to_order(struct page *page, struct list_head *list,
4199 				     unsigned int new_order)
4200 {
4201 	struct folio *folio = page_folio(page);
4202 
4203 	return __folio_split(folio, new_order, &folio->page, page, list,
4204 			     SPLIT_TYPE_UNIFORM);
4205 }
4206 
4207 /**
4208  * folio_split() - split a folio at @split_at to a @new_order folio
4209  * @folio: folio to split
4210  * @new_order: the order of the new folio
4211  * @split_at: a page within the new folio
4212  * @list: after-split folios are added to @list if not null, otherwise to LRU
4213  *        list
4214  *
4215  * It has the same prerequisites and returns as
4216  * split_huge_page_to_list_to_order().
4217  *
4218  * Split a folio at @split_at to a new_order folio, leave the
4219  * remaining subpages of the original folio as large as possible. For example,
4220  * in the case of splitting an order-9 folio at its third order-3 subpages to
4221  * an order-3 folio, there are 2^(9-3)=64 order-3 subpages in the order-9 folio.
4222  * After the split, there will be a group of folios with different orders and
4223  * the new folio containing @split_at is marked in bracket:
4224  * [order-4, {order-3}, order-3, order-5, order-6, order-7, order-8].
4225  *
4226  * After split, folio is left locked for caller.
4227  *
4228  * Return: 0 - successful, <0 - failed (if -ENOMEM is returned, @folio might be
4229  * split but not to @new_order, the caller needs to check)
4230  */
folio_split(struct folio * folio,unsigned int new_order,struct page * split_at,struct list_head * list)4231 int folio_split(struct folio *folio, unsigned int new_order,
4232 		struct page *split_at, struct list_head *list)
4233 {
4234 	return __folio_split(folio, new_order, split_at, &folio->page, list,
4235 			     SPLIT_TYPE_NON_UNIFORM);
4236 }
4237 
4238 /**
4239  * min_order_for_split() - get the minimum order @folio can be split to
4240  * @folio: folio to split
4241  *
4242  * min_order_for_split() tells the minimum order @folio can be split to.
4243  * If a file-backed folio is truncated, 0 will be returned. Any subsequent
4244  * split attempt should get -EBUSY from split checking code.
4245  *
4246  * Return: @folio's minimum order for split
4247  */
min_order_for_split(struct folio * folio)4248 unsigned int min_order_for_split(struct folio *folio)
4249 {
4250 	if (folio_test_anon(folio))
4251 		return 0;
4252 
4253 	/*
4254 	 * If the folio got truncated, we don't know the previous mapping and
4255 	 * consequently the old min order. But it doesn't matter, as any split
4256 	 * attempt will immediately fail with -EBUSY as the folio cannot get
4257 	 * split until freed.
4258 	 */
4259 	if (!folio->mapping)
4260 		return 0;
4261 
4262 	return mapping_min_folio_order(folio->mapping);
4263 }
4264 
split_folio_to_list(struct folio * folio,struct list_head * list)4265 int split_folio_to_list(struct folio *folio, struct list_head *list)
4266 {
4267 	return split_huge_page_to_list_to_order(&folio->page, list, 0);
4268 }
4269 
4270 /*
4271  * __folio_unqueue_deferred_split() is not to be called directly:
4272  * the folio_unqueue_deferred_split() inline wrapper in mm/internal.h
4273  * limits its calls to those folios which may have a _deferred_list for
4274  * queueing THP splits, and that list is (racily observed to be) non-empty.
4275  *
4276  * It is unsafe to call folio_unqueue_deferred_split() until folio refcount is
4277  * zero: because even when split_queue_lock is held, a non-empty _deferred_list
4278  * might be in use on deferred_split_scan()'s unlocked on-stack list.
4279  *
4280  * If memory cgroups are enabled, split_queue_lock is in the mem_cgroup: it is
4281  * therefore important to unqueue deferred split before changing folio memcg.
4282  */
__folio_unqueue_deferred_split(struct folio * folio)4283 bool __folio_unqueue_deferred_split(struct folio *folio)
4284 {
4285 	struct deferred_split *ds_queue;
4286 	unsigned long flags;
4287 	bool unqueued = false;
4288 
4289 	WARN_ON_ONCE(folio_ref_count(folio));
4290 	WARN_ON_ONCE(!mem_cgroup_disabled() && !folio_memcg_charged(folio));
4291 
4292 	ds_queue = folio_split_queue_lock_irqsave(folio, &flags);
4293 	if (!list_empty(&folio->_deferred_list)) {
4294 		ds_queue->split_queue_len--;
4295 		if (folio_test_partially_mapped(folio)) {
4296 			folio_clear_partially_mapped(folio);
4297 			mod_mthp_stat(folio_order(folio),
4298 				      MTHP_STAT_NR_ANON_PARTIALLY_MAPPED, -1);
4299 		}
4300 		list_del_init(&folio->_deferred_list);
4301 		unqueued = true;
4302 	}
4303 	split_queue_unlock_irqrestore(ds_queue, flags);
4304 
4305 	return unqueued;	/* useful for debug warnings */
4306 }
4307 
4308 /* partially_mapped=false won't clear PG_partially_mapped folio flag */
deferred_split_folio(struct folio * folio,bool partially_mapped)4309 void deferred_split_folio(struct folio *folio, bool partially_mapped)
4310 {
4311 	struct deferred_split *ds_queue;
4312 	unsigned long flags;
4313 
4314 	/*
4315 	 * Order 1 folios have no space for a deferred list, but we also
4316 	 * won't waste much memory by not adding them to the deferred list.
4317 	 */
4318 	if (folio_order(folio) <= 1)
4319 		return;
4320 
4321 	if (!partially_mapped && !split_underused_thp)
4322 		return;
4323 
4324 	/*
4325 	 * Exclude swapcache: originally to avoid a corrupt deferred split
4326 	 * queue. Nowadays that is fully prevented by memcg1_swapout();
4327 	 * but if page reclaim is already handling the same folio, it is
4328 	 * unnecessary to handle it again in the shrinker, so excluding
4329 	 * swapcache here may still be a useful optimization.
4330 	 */
4331 	if (folio_test_swapcache(folio))
4332 		return;
4333 
4334 	ds_queue = folio_split_queue_lock_irqsave(folio, &flags);
4335 	if (partially_mapped) {
4336 		if (!folio_test_partially_mapped(folio)) {
4337 			folio_set_partially_mapped(folio);
4338 			if (folio_test_pmd_mappable(folio))
4339 				count_vm_event(THP_DEFERRED_SPLIT_PAGE);
4340 			count_mthp_stat(folio_order(folio), MTHP_STAT_SPLIT_DEFERRED);
4341 			mod_mthp_stat(folio_order(folio), MTHP_STAT_NR_ANON_PARTIALLY_MAPPED, 1);
4342 
4343 		}
4344 	} else {
4345 		/* partially mapped folios cannot become non-partially mapped */
4346 		VM_WARN_ON_FOLIO(folio_test_partially_mapped(folio), folio);
4347 	}
4348 	if (list_empty(&folio->_deferred_list)) {
4349 		struct mem_cgroup *memcg;
4350 
4351 		memcg = folio_split_queue_memcg(folio, ds_queue);
4352 		list_add_tail(&folio->_deferred_list, &ds_queue->split_queue);
4353 		ds_queue->split_queue_len++;
4354 		if (memcg)
4355 			set_shrinker_bit(memcg, folio_nid(folio),
4356 					 shrinker_id(deferred_split_shrinker));
4357 	}
4358 	split_queue_unlock_irqrestore(ds_queue, flags);
4359 }
4360 
deferred_split_count(struct shrinker * shrink,struct shrink_control * sc)4361 static unsigned long deferred_split_count(struct shrinker *shrink,
4362 		struct shrink_control *sc)
4363 {
4364 	struct pglist_data *pgdata = NODE_DATA(sc->nid);
4365 	struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
4366 
4367 #ifdef CONFIG_MEMCG
4368 	if (sc->memcg)
4369 		ds_queue = &sc->memcg->deferred_split_queue;
4370 #endif
4371 	return READ_ONCE(ds_queue->split_queue_len);
4372 }
4373 
thp_underused(struct folio * folio)4374 static bool thp_underused(struct folio *folio)
4375 {
4376 	int num_zero_pages = 0, num_filled_pages = 0;
4377 	int i;
4378 
4379 	if (khugepaged_max_ptes_none == HPAGE_PMD_NR - 1)
4380 		return false;
4381 
4382 	if (folio_contain_hwpoisoned_page(folio))
4383 		return false;
4384 
4385 	for (i = 0; i < folio_nr_pages(folio); i++) {
4386 		if (pages_identical(folio_page(folio, i), ZERO_PAGE(0))) {
4387 			if (++num_zero_pages > khugepaged_max_ptes_none)
4388 				return true;
4389 		} else {
4390 			/*
4391 			 * Another path for early exit once the number
4392 			 * of non-zero filled pages exceeds threshold.
4393 			 */
4394 			if (++num_filled_pages >= HPAGE_PMD_NR - khugepaged_max_ptes_none)
4395 				return false;
4396 		}
4397 	}
4398 	return false;
4399 }
4400 
deferred_split_scan(struct shrinker * shrink,struct shrink_control * sc)4401 static unsigned long deferred_split_scan(struct shrinker *shrink,
4402 		struct shrink_control *sc)
4403 {
4404 	struct deferred_split *ds_queue;
4405 	unsigned long flags;
4406 	struct folio *folio, *next;
4407 	int split = 0, i;
4408 	struct folio_batch fbatch;
4409 
4410 	folio_batch_init(&fbatch);
4411 
4412 retry:
4413 	ds_queue = split_queue_lock_irqsave(sc->nid, sc->memcg, &flags);
4414 	/* Take pin on all head pages to avoid freeing them under us */
4415 	list_for_each_entry_safe(folio, next, &ds_queue->split_queue,
4416 							_deferred_list) {
4417 		if (folio_try_get(folio)) {
4418 			folio_batch_add(&fbatch, folio);
4419 		} else if (folio_test_partially_mapped(folio)) {
4420 			/* We lost race with folio_put() */
4421 			folio_clear_partially_mapped(folio);
4422 			mod_mthp_stat(folio_order(folio),
4423 				      MTHP_STAT_NR_ANON_PARTIALLY_MAPPED, -1);
4424 		}
4425 		list_del_init(&folio->_deferred_list);
4426 		ds_queue->split_queue_len--;
4427 		if (!--sc->nr_to_scan)
4428 			break;
4429 		if (!folio_batch_space(&fbatch))
4430 			break;
4431 	}
4432 	split_queue_unlock_irqrestore(ds_queue, flags);
4433 
4434 	for (i = 0; i < folio_batch_count(&fbatch); i++) {
4435 		bool did_split = false;
4436 		bool underused = false;
4437 		struct deferred_split *fqueue;
4438 
4439 		folio = fbatch.folios[i];
4440 		if (!folio_test_partially_mapped(folio)) {
4441 			/*
4442 			 * See try_to_map_unused_to_zeropage(): we cannot
4443 			 * optimize zero-filled pages after splitting an
4444 			 * mlocked folio.
4445 			 */
4446 			if (folio_test_mlocked(folio))
4447 				goto next;
4448 			underused = thp_underused(folio);
4449 			if (!underused)
4450 				goto next;
4451 		}
4452 		if (!folio_trylock(folio))
4453 			goto next;
4454 		if (!split_folio(folio)) {
4455 			did_split = true;
4456 			if (underused)
4457 				count_vm_event(THP_UNDERUSED_SPLIT_PAGE);
4458 			split++;
4459 		}
4460 		folio_unlock(folio);
4461 next:
4462 		if (did_split || !folio_test_partially_mapped(folio))
4463 			continue;
4464 		/*
4465 		 * Only add back to the queue if folio is partially mapped.
4466 		 * If thp_underused returns false, or if split_folio fails
4467 		 * in the case it was underused, then consider it used and
4468 		 * don't add it back to split_queue.
4469 		 */
4470 		fqueue = folio_split_queue_lock_irqsave(folio, &flags);
4471 		if (list_empty(&folio->_deferred_list)) {
4472 			list_add_tail(&folio->_deferred_list, &fqueue->split_queue);
4473 			fqueue->split_queue_len++;
4474 		}
4475 		split_queue_unlock_irqrestore(fqueue, flags);
4476 	}
4477 	folios_put(&fbatch);
4478 
4479 	if (sc->nr_to_scan && !list_empty(&ds_queue->split_queue)) {
4480 		cond_resched();
4481 		goto retry;
4482 	}
4483 
4484 	/*
4485 	 * Stop shrinker if we didn't split any page, but the queue is empty.
4486 	 * This can happen if pages were freed under us.
4487 	 */
4488 	if (!split && list_empty(&ds_queue->split_queue))
4489 		return SHRINK_STOP;
4490 	return split;
4491 }
4492 
4493 #ifdef CONFIG_MEMCG
reparent_deferred_split_queue(struct mem_cgroup * memcg)4494 void reparent_deferred_split_queue(struct mem_cgroup *memcg)
4495 {
4496 	struct mem_cgroup *parent = parent_mem_cgroup(memcg);
4497 	struct deferred_split *ds_queue = &memcg->deferred_split_queue;
4498 	struct deferred_split *parent_ds_queue = &parent->deferred_split_queue;
4499 	int nid;
4500 
4501 	spin_lock_irq(&ds_queue->split_queue_lock);
4502 	spin_lock_nested(&parent_ds_queue->split_queue_lock, SINGLE_DEPTH_NESTING);
4503 
4504 	if (!ds_queue->split_queue_len)
4505 		goto unlock;
4506 
4507 	list_splice_tail_init(&ds_queue->split_queue, &parent_ds_queue->split_queue);
4508 	parent_ds_queue->split_queue_len += ds_queue->split_queue_len;
4509 	ds_queue->split_queue_len = 0;
4510 
4511 	for_each_node(nid)
4512 		set_shrinker_bit(parent, nid, shrinker_id(deferred_split_shrinker));
4513 
4514 unlock:
4515 	spin_unlock(&parent_ds_queue->split_queue_lock);
4516 	spin_unlock_irq(&ds_queue->split_queue_lock);
4517 }
4518 #endif
4519 
4520 #ifdef CONFIG_DEBUG_FS
split_huge_pages_all(void)4521 static void split_huge_pages_all(void)
4522 {
4523 	struct zone *zone;
4524 	struct page *page;
4525 	struct folio *folio;
4526 	unsigned long pfn, max_zone_pfn;
4527 	unsigned long total = 0, split = 0;
4528 
4529 	pr_debug("Split all THPs\n");
4530 	for_each_zone(zone) {
4531 		if (!managed_zone(zone))
4532 			continue;
4533 		max_zone_pfn = zone_end_pfn(zone);
4534 		for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
4535 			int nr_pages;
4536 
4537 			page = pfn_to_online_page(pfn);
4538 			if (!page || PageTail(page))
4539 				continue;
4540 			folio = page_folio(page);
4541 			if (!folio_try_get(folio))
4542 				continue;
4543 
4544 			if (unlikely(page_folio(page) != folio))
4545 				goto next;
4546 
4547 			if (zone != folio_zone(folio))
4548 				goto next;
4549 
4550 			if (!folio_test_large(folio)
4551 				|| folio_test_hugetlb(folio)
4552 				|| !folio_test_lru(folio))
4553 				goto next;
4554 
4555 			total++;
4556 			folio_lock(folio);
4557 			nr_pages = folio_nr_pages(folio);
4558 			if (!split_folio(folio))
4559 				split++;
4560 			pfn += nr_pages - 1;
4561 			folio_unlock(folio);
4562 next:
4563 			folio_put(folio);
4564 			cond_resched();
4565 		}
4566 	}
4567 
4568 	pr_debug("%lu of %lu THP split\n", split, total);
4569 }
4570 
vma_not_suitable_for_thp_split(struct vm_area_struct * vma)4571 static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
4572 {
4573 	return vma_is_special_huge(vma) || (vma->vm_flags & VM_IO) ||
4574 		    is_vm_hugetlb_page(vma);
4575 }
4576 
split_huge_pages_pid(int pid,unsigned long vaddr_start,unsigned long vaddr_end,unsigned int new_order,long in_folio_offset)4577 static int split_huge_pages_pid(int pid, unsigned long vaddr_start,
4578 				unsigned long vaddr_end, unsigned int new_order,
4579 				long in_folio_offset)
4580 {
4581 	int ret = 0;
4582 	struct task_struct *task;
4583 	struct mm_struct *mm;
4584 	unsigned long total = 0, split = 0;
4585 	unsigned long addr;
4586 
4587 	vaddr_start &= PAGE_MASK;
4588 	vaddr_end &= PAGE_MASK;
4589 
4590 	task = find_get_task_by_vpid(pid);
4591 	if (!task) {
4592 		ret = -ESRCH;
4593 		goto out;
4594 	}
4595 
4596 	/* Find the mm_struct */
4597 	mm = get_task_mm(task);
4598 	put_task_struct(task);
4599 
4600 	if (!mm) {
4601 		ret = -EINVAL;
4602 		goto out;
4603 	}
4604 
4605 	pr_debug("Split huge pages in pid: %d, vaddr: [0x%lx - 0x%lx], new_order: %u, in_folio_offset: %ld\n",
4606 		 pid, vaddr_start, vaddr_end, new_order, in_folio_offset);
4607 
4608 	mmap_read_lock(mm);
4609 	/*
4610 	 * always increase addr by PAGE_SIZE, since we could have a PTE page
4611 	 * table filled with PTE-mapped THPs, each of which is distinct.
4612 	 */
4613 	for (addr = vaddr_start; addr < vaddr_end; addr += PAGE_SIZE) {
4614 		struct vm_area_struct *vma = vma_lookup(mm, addr);
4615 		struct folio_walk fw;
4616 		struct folio *folio;
4617 		struct address_space *mapping;
4618 		unsigned int target_order = new_order;
4619 
4620 		if (!vma)
4621 			break;
4622 
4623 		/* skip special VMA and hugetlb VMA */
4624 		if (vma_not_suitable_for_thp_split(vma)) {
4625 			addr = vma->vm_end;
4626 			continue;
4627 		}
4628 
4629 		folio = folio_walk_start(&fw, vma, addr, 0);
4630 		if (!folio)
4631 			continue;
4632 
4633 		if (!is_transparent_hugepage(folio))
4634 			goto next;
4635 
4636 		if (!folio_test_anon(folio)) {
4637 			mapping = folio->mapping;
4638 			target_order = max(new_order,
4639 					   mapping_min_folio_order(mapping));
4640 		}
4641 
4642 		if (target_order >= folio_order(folio))
4643 			goto next;
4644 
4645 		total++;
4646 		/*
4647 		 * For folios with private, split_huge_page_to_list_to_order()
4648 		 * will try to drop it before split and then check if the folio
4649 		 * can be split or not. So skip the check here.
4650 		 */
4651 		if (!folio_test_private(folio) &&
4652 		    folio_expected_ref_count(folio) != folio_ref_count(folio))
4653 			goto next;
4654 
4655 		if (!folio_trylock(folio))
4656 			goto next;
4657 		folio_get(folio);
4658 		folio_walk_end(&fw, vma);
4659 
4660 		if (!folio_test_anon(folio) && folio->mapping != mapping)
4661 			goto unlock;
4662 
4663 		if (in_folio_offset < 0 ||
4664 		    in_folio_offset >= folio_nr_pages(folio)) {
4665 			if (!split_folio_to_order(folio, target_order))
4666 				split++;
4667 		} else {
4668 			struct page *split_at = folio_page(folio,
4669 							   in_folio_offset);
4670 			if (!folio_split(folio, target_order, split_at, NULL))
4671 				split++;
4672 		}
4673 
4674 unlock:
4675 
4676 		folio_unlock(folio);
4677 		folio_put(folio);
4678 
4679 		cond_resched();
4680 		continue;
4681 next:
4682 		folio_walk_end(&fw, vma);
4683 		cond_resched();
4684 	}
4685 	mmap_read_unlock(mm);
4686 	mmput(mm);
4687 
4688 	pr_debug("%lu of %lu THP split\n", split, total);
4689 
4690 out:
4691 	return ret;
4692 }
4693 
split_huge_pages_in_file(const char * file_path,pgoff_t off_start,pgoff_t off_end,unsigned int new_order,long in_folio_offset)4694 static int split_huge_pages_in_file(const char *file_path, pgoff_t off_start,
4695 				pgoff_t off_end, unsigned int new_order,
4696 				long in_folio_offset)
4697 {
4698 	struct file *candidate;
4699 	struct address_space *mapping;
4700 	pgoff_t index;
4701 	int nr_pages = 1;
4702 	unsigned long total = 0, split = 0;
4703 	unsigned int min_order;
4704 	unsigned int target_order;
4705 
4706 	CLASS(filename_kernel, file)(file_path);
4707 	candidate = file_open_name(file, O_RDONLY, 0);
4708 	if (IS_ERR(candidate))
4709 		return -EINVAL;
4710 
4711 	pr_debug("split file-backed THPs in file: %s, page offset: [0x%lx - 0x%lx], new_order: %u, in_folio_offset: %ld\n",
4712 		 file_path, off_start, off_end, new_order, in_folio_offset);
4713 
4714 	mapping = candidate->f_mapping;
4715 	min_order = mapping_min_folio_order(mapping);
4716 	target_order = max(new_order, min_order);
4717 
4718 	for (index = off_start; index < off_end; index += nr_pages) {
4719 		struct folio *folio = filemap_get_folio(mapping, index);
4720 
4721 		nr_pages = 1;
4722 		if (IS_ERR(folio))
4723 			continue;
4724 
4725 		if (!folio_test_large(folio))
4726 			goto next;
4727 
4728 		total++;
4729 		nr_pages = folio_nr_pages(folio);
4730 
4731 		if (target_order >= folio_order(folio))
4732 			goto next;
4733 
4734 		if (!folio_trylock(folio))
4735 			goto next;
4736 
4737 		if (folio->mapping != mapping)
4738 			goto unlock;
4739 
4740 		if (in_folio_offset < 0 || in_folio_offset >= nr_pages) {
4741 			if (!split_folio_to_order(folio, target_order))
4742 				split++;
4743 		} else {
4744 			struct page *split_at = folio_page(folio,
4745 							   in_folio_offset);
4746 			if (!folio_split(folio, target_order, split_at, NULL))
4747 				split++;
4748 		}
4749 
4750 unlock:
4751 		folio_unlock(folio);
4752 next:
4753 		folio_put(folio);
4754 		cond_resched();
4755 	}
4756 
4757 	filp_close(candidate, NULL);
4758 	pr_debug("%lu of %lu file-backed THP split\n", split, total);
4759 	return 0;
4760 }
4761 
4762 #define MAX_INPUT_BUF_SZ 255
4763 
split_huge_pages_write(struct file * file,const char __user * buf,size_t count,loff_t * ppops)4764 static ssize_t split_huge_pages_write(struct file *file, const char __user *buf,
4765 				size_t count, loff_t *ppops)
4766 {
4767 	static DEFINE_MUTEX(split_debug_mutex);
4768 	ssize_t ret;
4769 	/*
4770 	 * hold pid, start_vaddr, end_vaddr, new_order or
4771 	 * file_path, off_start, off_end, new_order
4772 	 */
4773 	char input_buf[MAX_INPUT_BUF_SZ];
4774 	int pid;
4775 	unsigned long vaddr_start, vaddr_end;
4776 	unsigned int new_order = 0;
4777 	long in_folio_offset = -1;
4778 
4779 	ret = mutex_lock_interruptible(&split_debug_mutex);
4780 	if (ret)
4781 		return ret;
4782 
4783 	ret = -EFAULT;
4784 
4785 	memset(input_buf, 0, MAX_INPUT_BUF_SZ);
4786 	if (copy_from_user(input_buf, buf, min_t(size_t, count, MAX_INPUT_BUF_SZ)))
4787 		goto out;
4788 
4789 	input_buf[MAX_INPUT_BUF_SZ - 1] = '\0';
4790 
4791 	if (input_buf[0] == '/') {
4792 		char *tok;
4793 		char *tok_buf = input_buf;
4794 		char file_path[MAX_INPUT_BUF_SZ];
4795 		pgoff_t off_start = 0, off_end = 0;
4796 		size_t input_len = strlen(input_buf);
4797 
4798 		tok = strsep(&tok_buf, ",");
4799 		if (tok && tok_buf) {
4800 			strscpy(file_path, tok);
4801 		} else {
4802 			ret = -EINVAL;
4803 			goto out;
4804 		}
4805 
4806 		ret = sscanf(tok_buf, "0x%lx,0x%lx,%d,%ld", &off_start, &off_end,
4807 				&new_order, &in_folio_offset);
4808 		if (ret != 2 && ret != 3 && ret != 4) {
4809 			ret = -EINVAL;
4810 			goto out;
4811 		}
4812 		ret = split_huge_pages_in_file(file_path, off_start, off_end,
4813 				new_order, in_folio_offset);
4814 		if (!ret)
4815 			ret = input_len;
4816 
4817 		goto out;
4818 	}
4819 
4820 	ret = sscanf(input_buf, "%d,0x%lx,0x%lx,%d,%ld", &pid, &vaddr_start,
4821 			&vaddr_end, &new_order, &in_folio_offset);
4822 	if (ret == 1 && pid == 1) {
4823 		split_huge_pages_all();
4824 		ret = strlen(input_buf);
4825 		goto out;
4826 	} else if (ret != 3 && ret != 4 && ret != 5) {
4827 		ret = -EINVAL;
4828 		goto out;
4829 	}
4830 
4831 	ret = split_huge_pages_pid(pid, vaddr_start, vaddr_end, new_order,
4832 			in_folio_offset);
4833 	if (!ret)
4834 		ret = strlen(input_buf);
4835 out:
4836 	mutex_unlock(&split_debug_mutex);
4837 	return ret;
4838 
4839 }
4840 
4841 static const struct file_operations split_huge_pages_fops = {
4842 	.owner	 = THIS_MODULE,
4843 	.write	 = split_huge_pages_write,
4844 };
4845 
split_huge_pages_debugfs(void)4846 static int __init split_huge_pages_debugfs(void)
4847 {
4848 	debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
4849 			    &split_huge_pages_fops);
4850 	return 0;
4851 }
4852 late_initcall(split_huge_pages_debugfs);
4853 #endif
4854 
4855 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
set_pmd_migration_entry(struct page_vma_mapped_walk * pvmw,struct page * page)4856 int set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
4857 		struct page *page)
4858 {
4859 	struct folio *folio = page_folio(page);
4860 	struct vm_area_struct *vma = pvmw->vma;
4861 	struct mm_struct *mm = vma->vm_mm;
4862 	unsigned long address = pvmw->address;
4863 	bool anon_exclusive;
4864 	pmd_t pmdval;
4865 	swp_entry_t entry;
4866 	pmd_t pmdswp;
4867 
4868 	if (!(pvmw->pmd && !pvmw->pte))
4869 		return 0;
4870 
4871 	flush_cache_range(vma, address, address + HPAGE_PMD_SIZE);
4872 	if (unlikely(!pmd_present(*pvmw->pmd)))
4873 		pmdval = pmdp_huge_get_and_clear(vma->vm_mm, address, pvmw->pmd);
4874 	else
4875 		pmdval = pmdp_invalidate(vma, address, pvmw->pmd);
4876 
4877 	/* See folio_try_share_anon_rmap_pmd(): invalidate PMD first. */
4878 	anon_exclusive = folio_test_anon(folio) && PageAnonExclusive(page);
4879 	if (anon_exclusive && folio_try_share_anon_rmap_pmd(folio, page)) {
4880 		set_pmd_at(mm, address, pvmw->pmd, pmdval);
4881 		return -EBUSY;
4882 	}
4883 
4884 	if (pmd_dirty(pmdval))
4885 		folio_mark_dirty(folio);
4886 	if (pmd_write(pmdval))
4887 		entry = make_writable_migration_entry(page_to_pfn(page));
4888 	else if (anon_exclusive)
4889 		entry = make_readable_exclusive_migration_entry(page_to_pfn(page));
4890 	else
4891 		entry = make_readable_migration_entry(page_to_pfn(page));
4892 	if (pmd_young(pmdval))
4893 		entry = make_migration_entry_young(entry);
4894 	if (pmd_dirty(pmdval))
4895 		entry = make_migration_entry_dirty(entry);
4896 	pmdswp = swp_entry_to_pmd(entry);
4897 	if (pmd_soft_dirty(pmdval))
4898 		pmdswp = pmd_swp_mksoft_dirty(pmdswp);
4899 	if (pmd_uffd_wp(pmdval))
4900 		pmdswp = pmd_swp_mkuffd_wp(pmdswp);
4901 	set_pmd_at(mm, address, pvmw->pmd, pmdswp);
4902 	folio_remove_rmap_pmd(folio, page, vma);
4903 	folio_put(folio);
4904 	trace_set_migration_pmd(address, pmd_val(pmdswp));
4905 
4906 	return 0;
4907 }
4908 
remove_migration_pmd(struct page_vma_mapped_walk * pvmw,struct page * new)4909 void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
4910 {
4911 	struct folio *folio = page_folio(new);
4912 	struct vm_area_struct *vma = pvmw->vma;
4913 	struct mm_struct *mm = vma->vm_mm;
4914 	unsigned long address = pvmw->address;
4915 	unsigned long haddr = address & HPAGE_PMD_MASK;
4916 	pmd_t pmde;
4917 	softleaf_t entry;
4918 
4919 	if (!(pvmw->pmd && !pvmw->pte))
4920 		return;
4921 
4922 	entry = softleaf_from_pmd(*pvmw->pmd);
4923 	folio_get(folio);
4924 	pmde = folio_mk_pmd(folio, READ_ONCE(vma->vm_page_prot));
4925 
4926 	if (pmd_swp_soft_dirty(*pvmw->pmd))
4927 		pmde = pmd_mksoft_dirty(pmde);
4928 	if (softleaf_is_migration_write(entry))
4929 		pmde = pmd_mkwrite(pmde, vma);
4930 	if (pmd_swp_uffd_wp(*pvmw->pmd))
4931 		pmde = pmd_mkuffd_wp(pmde);
4932 	if (!softleaf_is_migration_young(entry))
4933 		pmde = pmd_mkold(pmde);
4934 	/* NOTE: this may contain setting soft-dirty on some archs */
4935 	if (folio_test_dirty(folio) && softleaf_is_migration_dirty(entry))
4936 		pmde = pmd_mkdirty(pmde);
4937 
4938 	if (folio_is_device_private(folio)) {
4939 		swp_entry_t entry;
4940 
4941 		if (pmd_write(pmde))
4942 			entry = make_writable_device_private_entry(
4943 							page_to_pfn(new));
4944 		else
4945 			entry = make_readable_device_private_entry(
4946 							page_to_pfn(new));
4947 		pmde = swp_entry_to_pmd(entry);
4948 
4949 		if (pmd_swp_soft_dirty(*pvmw->pmd))
4950 			pmde = pmd_swp_mksoft_dirty(pmde);
4951 		if (pmd_swp_uffd_wp(*pvmw->pmd))
4952 			pmde = pmd_swp_mkuffd_wp(pmde);
4953 	}
4954 
4955 	if (folio_test_anon(folio)) {
4956 		rmap_t rmap_flags = RMAP_NONE;
4957 
4958 		if (!softleaf_is_migration_read(entry))
4959 			rmap_flags |= RMAP_EXCLUSIVE;
4960 
4961 		folio_add_anon_rmap_pmd(folio, new, vma, haddr, rmap_flags);
4962 	} else {
4963 		folio_add_file_rmap_pmd(folio, new, vma);
4964 	}
4965 	VM_BUG_ON(pmd_write(pmde) && folio_test_anon(folio) && !PageAnonExclusive(new));
4966 	set_pmd_at(mm, haddr, pvmw->pmd, pmde);
4967 
4968 	/* No need to invalidate - it was non-present before */
4969 	update_mmu_cache_pmd(vma, address, pvmw->pmd);
4970 	trace_remove_migration_pmd(address, pmd_val(pmde));
4971 }
4972 #endif
4973