mm: allow multiple error returns in try_grab_page()
[linux-block.git] / mm / huge_memory.c
CommitLineData
20c8ccb1 1// SPDX-License-Identifier: GPL-2.0-only
71e3aac0
AA
2/*
3 * Copyright (C) 2009 Red Hat, Inc.
71e3aac0
AA
4 */
5
ae3a8c1c
AM
6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
71e3aac0
AA
8#include <linux/mm.h>
9#include <linux/sched.h>
fa6c0231 10#include <linux/sched/mm.h>
f7ccbae4 11#include <linux/sched/coredump.h>
6a3827d7 12#include <linux/sched/numa_balancing.h>
71e3aac0
AA
13#include <linux/highmem.h>
14#include <linux/hugetlb.h>
15#include <linux/mmu_notifier.h>
16#include <linux/rmap.h>
17#include <linux/swap.h>
97ae1749 18#include <linux/shrinker.h>
ba76149f 19#include <linux/mm_inline.h>
e9b61f19 20#include <linux/swapops.h>
fb5c2029 21#include <linux/backing-dev.h>
4897c765 22#include <linux/dax.h>
ba76149f 23#include <linux/khugepaged.h>
878aee7d 24#include <linux/freezer.h>
f25748e3 25#include <linux/pfn_t.h>
a664b2d8 26#include <linux/mman.h>
3565fce3 27#include <linux/memremap.h>
325adeb5 28#include <linux/pagemap.h>
49071d43 29#include <linux/debugfs.h>
4daae3b4 30#include <linux/migrate.h>
43b5fbbd 31#include <linux/hashtable.h>
6b251fc9 32#include <linux/userfaultfd_k.h>
33c3fc71 33#include <linux/page_idle.h>
baa355fd 34#include <linux/shmem_fs.h>
6b31d595 35#include <linux/oom.h>
98fa15f3 36#include <linux/numa.h>
f7da677b 37#include <linux/page_owner.h>
a1a3a2fc 38#include <linux/sched/sysctl.h>
467b171a 39#include <linux/memory-tiers.h>
97ae1749 40
71e3aac0
AA
41#include <asm/tlb.h>
42#include <asm/pgalloc.h>
43#include "internal.h"
014bb1de 44#include "swap.h"
71e3aac0 45
283fd6fe
AK
46#define CREATE_TRACE_POINTS
47#include <trace/events/thp.h>
48
ba76149f 49/*
b14d595a
MD
50 * By default, transparent hugepage support is disabled in order to avoid
51 * risking an increased memory footprint for applications that are not
52 * guaranteed to benefit from it. When transparent hugepage support is
53 * enabled, it is for all mappings, and khugepaged scans all mappings.
8bfa3f9a
JW
54 * Defrag is invoked by khugepaged hugepage allocations and by page faults
55 * for all hugepage allocations.
ba76149f 56 */
71e3aac0 57unsigned long transparent_hugepage_flags __read_mostly =
13ece886 58#ifdef CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS
ba76149f 59 (1<<TRANSPARENT_HUGEPAGE_FLAG)|
13ece886
AA
60#endif
61#ifdef CONFIG_TRANSPARENT_HUGEPAGE_MADVISE
62 (1<<TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG)|
63#endif
444eb2a4 64 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG)|
79da5407
KS
65 (1<<TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG)|
66 (1<<TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
ba76149f 67
9a982250 68static struct shrinker deferred_split_shrinker;
f000565a 69
97ae1749 70static atomic_t huge_zero_refcount;
56873f43 71struct page *huge_zero_page __read_mostly;
3b77e8c8 72unsigned long huge_zero_pfn __read_mostly = ~0UL;
4a6c1297 73
a7f4e6e4
ZK
74bool hugepage_vma_check(struct vm_area_struct *vma, unsigned long vm_flags,
75 bool smaps, bool in_pf, bool enforce_sysfs)
7635d9cb 76{
9fec5168
YS
77 if (!vma->vm_mm) /* vdso */
78 return false;
79
7da4e2cb
YS
80 /*
81 * Explicitly disabled through madvise or prctl, or some
82 * architectures may disable THP for some mappings, for
83 * example, s390 kvm.
84 * */
85 if ((vm_flags & VM_NOHUGEPAGE) ||
86 test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
9fec5168 87 return false;
7da4e2cb
YS
88 /*
89 * If the hardware/firmware marked hugepage support disabled.
90 */
91 if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_NEVER_DAX))
c0630669 92 return false;
c0630669 93
7da4e2cb 94 /* khugepaged doesn't collapse DAX vma, but page fault is fine. */
9fec5168 95 if (vma_is_dax(vma))
7da4e2cb
YS
96 return in_pf;
97
98 /*
99 * Special VMA and hugetlb VMA.
100 * Must be checked after dax since some dax mappings may have
101 * VM_MIXEDMAP set.
102 */
103 if (vm_flags & VM_NO_KHUGEPAGED)
c0630669 104 return false;
9fec5168 105
7da4e2cb
YS
106 /*
107 * Check alignment for file vma and size for both file and anon vma.
108 *
109 * Skip the check for page fault. Huge fault does the check in fault
110 * handlers. And this check is not suitable for huge PUD fault.
111 */
112 if (!in_pf &&
113 !transhuge_vma_suitable(vma, (vma->vm_end - HPAGE_PMD_SIZE)))
9fec5168
YS
114 return false;
115
7da4e2cb
YS
116 /*
117 * Enabled via shmem mount options or sysfs settings.
118 * Must be done before hugepage flags check since shmem has its
119 * own flags.
120 */
121 if (!in_pf && shmem_file(vma->vm_file))
7c6c6cc4 122 return shmem_huge_enabled(vma, !enforce_sysfs);
9fec5168 123
a7f4e6e4
ZK
124 /* Enforce sysfs THP requirements as necessary */
125 if (enforce_sysfs &&
126 (!hugepage_flags_enabled() || (!(vm_flags & VM_HUGEPAGE) &&
127 !hugepage_flags_always())))
9fec5168
YS
128 return false;
129
130 /* Only regular file is valid */
7da4e2cb 131 if (!in_pf && file_thp_enabled(vma))
78d12c19 132 return true;
7635d9cb 133
9fec5168
YS
134 if (!vma_is_anonymous(vma))
135 return false;
136
137 if (vma_is_temporary_stack(vma))
138 return false;
139
140 /*
141 * THPeligible bit of smaps should show 1 for proper VMAs even
142 * though anon_vma is not initialized yet.
7da4e2cb
YS
143 *
144 * Allow page fault since anon_vma may be not initialized until
145 * the first page fault.
9fec5168
YS
146 */
147 if (!vma->anon_vma)
7da4e2cb 148 return (smaps || in_pf);
9fec5168
YS
149
150 return true;
7635d9cb
MH
151}
152
aaa9705b 153static bool get_huge_zero_page(void)
97ae1749
KS
154{
155 struct page *zero_page;
156retry:
157 if (likely(atomic_inc_not_zero(&huge_zero_refcount)))
aaa9705b 158 return true;
97ae1749
KS
159
160 zero_page = alloc_pages((GFP_TRANSHUGE | __GFP_ZERO) & ~__GFP_MOVABLE,
4a6c1297 161 HPAGE_PMD_ORDER);
d8a8e1f0
KS
162 if (!zero_page) {
163 count_vm_event(THP_ZERO_PAGE_ALLOC_FAILED);
aaa9705b 164 return false;
d8a8e1f0 165 }
97ae1749 166 preempt_disable();
5918d10a 167 if (cmpxchg(&huge_zero_page, NULL, zero_page)) {
97ae1749 168 preempt_enable();
5ddacbe9 169 __free_pages(zero_page, compound_order(zero_page));
97ae1749
KS
170 goto retry;
171 }
3b77e8c8 172 WRITE_ONCE(huge_zero_pfn, page_to_pfn(zero_page));
97ae1749
KS
173
174 /* We take additional reference here. It will be put back by shrinker */
175 atomic_set(&huge_zero_refcount, 2);
176 preempt_enable();
f4981502 177 count_vm_event(THP_ZERO_PAGE_ALLOC);
aaa9705b 178 return true;
4a6c1297
KS
179}
180
6fcb52a5 181static void put_huge_zero_page(void)
4a6c1297 182{
97ae1749
KS
183 /*
184 * Counter should never go to zero here. Only shrinker can put
185 * last reference.
186 */
187 BUG_ON(atomic_dec_and_test(&huge_zero_refcount));
4a6c1297
KS
188}
189
6fcb52a5
AL
190struct page *mm_get_huge_zero_page(struct mm_struct *mm)
191{
192 if (test_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
193 return READ_ONCE(huge_zero_page);
194
195 if (!get_huge_zero_page())
196 return NULL;
197
198 if (test_and_set_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
199 put_huge_zero_page();
200
201 return READ_ONCE(huge_zero_page);
202}
203
204void mm_put_huge_zero_page(struct mm_struct *mm)
205{
206 if (test_bit(MMF_HUGE_ZERO_PAGE, &mm->flags))
207 put_huge_zero_page();
208}
209
48896466
GC
210static unsigned long shrink_huge_zero_page_count(struct shrinker *shrink,
211 struct shrink_control *sc)
4a6c1297 212{
48896466
GC
213 /* we can free zero page only if last reference remains */
214 return atomic_read(&huge_zero_refcount) == 1 ? HPAGE_PMD_NR : 0;
215}
97ae1749 216
48896466
GC
217static unsigned long shrink_huge_zero_page_scan(struct shrinker *shrink,
218 struct shrink_control *sc)
219{
97ae1749 220 if (atomic_cmpxchg(&huge_zero_refcount, 1, 0) == 1) {
5918d10a
KS
221 struct page *zero_page = xchg(&huge_zero_page, NULL);
222 BUG_ON(zero_page == NULL);
3b77e8c8 223 WRITE_ONCE(huge_zero_pfn, ~0UL);
5ddacbe9 224 __free_pages(zero_page, compound_order(zero_page));
48896466 225 return HPAGE_PMD_NR;
97ae1749
KS
226 }
227
228 return 0;
4a6c1297
KS
229}
230
97ae1749 231static struct shrinker huge_zero_page_shrinker = {
48896466
GC
232 .count_objects = shrink_huge_zero_page_count,
233 .scan_objects = shrink_huge_zero_page_scan,
97ae1749
KS
234 .seeks = DEFAULT_SEEKS,
235};
236
71e3aac0 237#ifdef CONFIG_SYSFS
71e3aac0
AA
238static ssize_t enabled_show(struct kobject *kobj,
239 struct kobj_attribute *attr, char *buf)
240{
bfb0ffeb
JP
241 const char *output;
242
444eb2a4 243 if (test_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags))
bfb0ffeb
JP
244 output = "[always] madvise never";
245 else if (test_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
246 &transparent_hugepage_flags))
247 output = "always [madvise] never";
444eb2a4 248 else
bfb0ffeb
JP
249 output = "always madvise [never]";
250
251 return sysfs_emit(buf, "%s\n", output);
71e3aac0 252}
444eb2a4 253
71e3aac0
AA
254static ssize_t enabled_store(struct kobject *kobj,
255 struct kobj_attribute *attr,
256 const char *buf, size_t count)
257{
21440d7e 258 ssize_t ret = count;
ba76149f 259
f42f2552 260 if (sysfs_streq(buf, "always")) {
21440d7e
DR
261 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
262 set_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
f42f2552 263 } else if (sysfs_streq(buf, "madvise")) {
21440d7e
DR
264 clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
265 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
f42f2552 266 } else if (sysfs_streq(buf, "never")) {
21440d7e
DR
267 clear_bit(TRANSPARENT_HUGEPAGE_FLAG, &transparent_hugepage_flags);
268 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG, &transparent_hugepage_flags);
269 } else
270 ret = -EINVAL;
ba76149f
AA
271
272 if (ret > 0) {
b46e756f 273 int err = start_stop_khugepaged();
ba76149f
AA
274 if (err)
275 ret = err;
276 }
ba76149f 277 return ret;
71e3aac0 278}
37139bb0
ML
279
280static struct kobj_attribute enabled_attr = __ATTR_RW(enabled);
71e3aac0 281
b46e756f 282ssize_t single_hugepage_flag_show(struct kobject *kobj,
bfb0ffeb
JP
283 struct kobj_attribute *attr, char *buf,
284 enum transparent_hugepage_flag flag)
71e3aac0 285{
bfb0ffeb
JP
286 return sysfs_emit(buf, "%d\n",
287 !!test_bit(flag, &transparent_hugepage_flags));
71e3aac0 288}
e27e6151 289
b46e756f 290ssize_t single_hugepage_flag_store(struct kobject *kobj,
71e3aac0
AA
291 struct kobj_attribute *attr,
292 const char *buf, size_t count,
293 enum transparent_hugepage_flag flag)
294{
e27e6151
BH
295 unsigned long value;
296 int ret;
297
298 ret = kstrtoul(buf, 10, &value);
299 if (ret < 0)
300 return ret;
301 if (value > 1)
302 return -EINVAL;
303
304 if (value)
71e3aac0 305 set_bit(flag, &transparent_hugepage_flags);
e27e6151 306 else
71e3aac0 307 clear_bit(flag, &transparent_hugepage_flags);
71e3aac0
AA
308
309 return count;
310}
311
71e3aac0
AA
312static ssize_t defrag_show(struct kobject *kobj,
313 struct kobj_attribute *attr, char *buf)
314{
bfb0ffeb
JP
315 const char *output;
316
317 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG,
318 &transparent_hugepage_flags))
319 output = "[always] defer defer+madvise madvise never";
320 else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG,
321 &transparent_hugepage_flags))
322 output = "always [defer] defer+madvise madvise never";
323 else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG,
324 &transparent_hugepage_flags))
325 output = "always defer [defer+madvise] madvise never";
326 else if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG,
327 &transparent_hugepage_flags))
328 output = "always defer defer+madvise [madvise] never";
329 else
330 output = "always defer defer+madvise madvise [never]";
331
332 return sysfs_emit(buf, "%s\n", output);
71e3aac0 333}
21440d7e 334
71e3aac0
AA
335static ssize_t defrag_store(struct kobject *kobj,
336 struct kobj_attribute *attr,
337 const char *buf, size_t count)
338{
f42f2552 339 if (sysfs_streq(buf, "always")) {
21440d7e
DR
340 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
341 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
342 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
343 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
f42f2552 344 } else if (sysfs_streq(buf, "defer+madvise")) {
21440d7e
DR
345 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
346 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
347 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
348 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
f42f2552 349 } else if (sysfs_streq(buf, "defer")) {
4fad7fb6
DR
350 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
351 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
352 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
353 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
f42f2552 354 } else if (sysfs_streq(buf, "madvise")) {
21440d7e
DR
355 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
356 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
357 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
358 set_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
f42f2552 359 } else if (sysfs_streq(buf, "never")) {
21440d7e
DR
360 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags);
361 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags);
362 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags);
363 clear_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags);
364 } else
365 return -EINVAL;
366
367 return count;
71e3aac0 368}
37139bb0 369static struct kobj_attribute defrag_attr = __ATTR_RW(defrag);
71e3aac0 370
79da5407 371static ssize_t use_zero_page_show(struct kobject *kobj,
ae7a927d 372 struct kobj_attribute *attr, char *buf)
79da5407 373{
b46e756f 374 return single_hugepage_flag_show(kobj, attr, buf,
ae7a927d 375 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
79da5407
KS
376}
377static ssize_t use_zero_page_store(struct kobject *kobj,
378 struct kobj_attribute *attr, const char *buf, size_t count)
379{
b46e756f 380 return single_hugepage_flag_store(kobj, attr, buf, count,
79da5407
KS
381 TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG);
382}
37139bb0 383static struct kobj_attribute use_zero_page_attr = __ATTR_RW(use_zero_page);
49920d28
HD
384
385static ssize_t hpage_pmd_size_show(struct kobject *kobj,
ae7a927d 386 struct kobj_attribute *attr, char *buf)
49920d28 387{
ae7a927d 388 return sysfs_emit(buf, "%lu\n", HPAGE_PMD_SIZE);
49920d28
HD
389}
390static struct kobj_attribute hpage_pmd_size_attr =
391 __ATTR_RO(hpage_pmd_size);
392
71e3aac0
AA
393static struct attribute *hugepage_attr[] = {
394 &enabled_attr.attr,
395 &defrag_attr.attr,
79da5407 396 &use_zero_page_attr.attr,
49920d28 397 &hpage_pmd_size_attr.attr,
396bcc52 398#ifdef CONFIG_SHMEM
5a6e75f8 399 &shmem_enabled_attr.attr,
71e3aac0
AA
400#endif
401 NULL,
402};
403
8aa95a21 404static const struct attribute_group hugepage_attr_group = {
71e3aac0 405 .attrs = hugepage_attr,
ba76149f
AA
406};
407
569e5590 408static int __init hugepage_init_sysfs(struct kobject **hugepage_kobj)
71e3aac0 409{
71e3aac0
AA
410 int err;
411
569e5590
SL
412 *hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
413 if (unlikely(!*hugepage_kobj)) {
ae3a8c1c 414 pr_err("failed to create transparent hugepage kobject\n");
569e5590 415 return -ENOMEM;
ba76149f
AA
416 }
417
569e5590 418 err = sysfs_create_group(*hugepage_kobj, &hugepage_attr_group);
ba76149f 419 if (err) {
ae3a8c1c 420 pr_err("failed to register transparent hugepage group\n");
569e5590 421 goto delete_obj;
ba76149f
AA
422 }
423
569e5590 424 err = sysfs_create_group(*hugepage_kobj, &khugepaged_attr_group);
ba76149f 425 if (err) {
ae3a8c1c 426 pr_err("failed to register transparent hugepage group\n");
569e5590 427 goto remove_hp_group;
ba76149f 428 }
569e5590
SL
429
430 return 0;
431
432remove_hp_group:
433 sysfs_remove_group(*hugepage_kobj, &hugepage_attr_group);
434delete_obj:
435 kobject_put(*hugepage_kobj);
436 return err;
437}
438
439static void __init hugepage_exit_sysfs(struct kobject *hugepage_kobj)
440{
441 sysfs_remove_group(hugepage_kobj, &khugepaged_attr_group);
442 sysfs_remove_group(hugepage_kobj, &hugepage_attr_group);
443 kobject_put(hugepage_kobj);
444}
445#else
446static inline int hugepage_init_sysfs(struct kobject **hugepage_kobj)
447{
448 return 0;
449}
450
451static inline void hugepage_exit_sysfs(struct kobject *hugepage_kobj)
452{
453}
454#endif /* CONFIG_SYSFS */
455
456static int __init hugepage_init(void)
457{
458 int err;
459 struct kobject *hugepage_kobj;
460
461 if (!has_transparent_hugepage()) {
bae84953
AK
462 /*
463 * Hardware doesn't support hugepages, hence disable
464 * DAX PMD support.
465 */
466 transparent_hugepage_flags = 1 << TRANSPARENT_HUGEPAGE_NEVER_DAX;
569e5590
SL
467 return -EINVAL;
468 }
469
ff20c2e0
KS
470 /*
471 * hugepages can't be allocated by the buddy allocator
472 */
473 MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER >= MAX_ORDER);
474 /*
475 * we use page->mapping and page->index in second tail page
476 * as list_head: assuming THP order >= 2
477 */
478 MAYBE_BUILD_BUG_ON(HPAGE_PMD_ORDER < 2);
479
569e5590
SL
480 err = hugepage_init_sysfs(&hugepage_kobj);
481 if (err)
65ebb64f 482 goto err_sysfs;
ba76149f 483
b46e756f 484 err = khugepaged_init();
ba76149f 485 if (err)
65ebb64f 486 goto err_slab;
ba76149f 487
e33c267a 488 err = register_shrinker(&huge_zero_page_shrinker, "thp-zero");
65ebb64f
KS
489 if (err)
490 goto err_hzp_shrinker;
e33c267a 491 err = register_shrinker(&deferred_split_shrinker, "thp-deferred_split");
9a982250
KS
492 if (err)
493 goto err_split_shrinker;
97ae1749 494
97562cd2
RR
495 /*
496 * By default disable transparent hugepages on smaller systems,
497 * where the extra memory used could hurt more than TLB overhead
498 * is likely to save. The admin can still enable it through /sys.
499 */
ca79b0c2 500 if (totalram_pages() < (512 << (20 - PAGE_SHIFT))) {
97562cd2 501 transparent_hugepage_flags = 0;
79553da2
KS
502 return 0;
503 }
97562cd2 504
79553da2 505 err = start_stop_khugepaged();
65ebb64f
KS
506 if (err)
507 goto err_khugepaged;
ba76149f 508
569e5590 509 return 0;
65ebb64f 510err_khugepaged:
9a982250
KS
511 unregister_shrinker(&deferred_split_shrinker);
512err_split_shrinker:
65ebb64f
KS
513 unregister_shrinker(&huge_zero_page_shrinker);
514err_hzp_shrinker:
b46e756f 515 khugepaged_destroy();
65ebb64f 516err_slab:
569e5590 517 hugepage_exit_sysfs(hugepage_kobj);
65ebb64f 518err_sysfs:
ba76149f 519 return err;
71e3aac0 520}
a64fb3cd 521subsys_initcall(hugepage_init);
71e3aac0
AA
522
523static int __init setup_transparent_hugepage(char *str)
524{
525 int ret = 0;
526 if (!str)
527 goto out;
528 if (!strcmp(str, "always")) {
529 set_bit(TRANSPARENT_HUGEPAGE_FLAG,
530 &transparent_hugepage_flags);
531 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
532 &transparent_hugepage_flags);
533 ret = 1;
534 } else if (!strcmp(str, "madvise")) {
535 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
536 &transparent_hugepage_flags);
537 set_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
538 &transparent_hugepage_flags);
539 ret = 1;
540 } else if (!strcmp(str, "never")) {
541 clear_bit(TRANSPARENT_HUGEPAGE_FLAG,
542 &transparent_hugepage_flags);
543 clear_bit(TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG,
544 &transparent_hugepage_flags);
545 ret = 1;
546 }
547out:
548 if (!ret)
ae3a8c1c 549 pr_warn("transparent_hugepage= cannot parse, ignored\n");
71e3aac0
AA
550 return ret;
551}
552__setup("transparent_hugepage=", setup_transparent_hugepage);
553
f55e1014 554pmd_t maybe_pmd_mkwrite(pmd_t pmd, struct vm_area_struct *vma)
71e3aac0 555{
f55e1014 556 if (likely(vma->vm_flags & VM_WRITE))
71e3aac0
AA
557 pmd = pmd_mkwrite(pmd);
558 return pmd;
559}
560
87eaceb3
YS
561#ifdef CONFIG_MEMCG
562static inline struct deferred_split *get_deferred_split_queue(struct page *page)
9a982250 563{
bcfe06bf 564 struct mem_cgroup *memcg = page_memcg(compound_head(page));
87eaceb3
YS
565 struct pglist_data *pgdat = NODE_DATA(page_to_nid(page));
566
567 if (memcg)
568 return &memcg->deferred_split_queue;
569 else
570 return &pgdat->deferred_split_queue;
9a982250 571}
87eaceb3
YS
572#else
573static inline struct deferred_split *get_deferred_split_queue(struct page *page)
574{
575 struct pglist_data *pgdat = NODE_DATA(page_to_nid(page));
576
577 return &pgdat->deferred_split_queue;
578}
579#endif
9a982250
KS
580
581void prep_transhuge_page(struct page *page)
582{
583 /*
d764afed 584 * we use page->mapping and page->index in second tail page
9a982250
KS
585 * as list_head: assuming THP order >= 2
586 */
9a982250
KS
587
588 INIT_LIST_HEAD(page_deferred_list(page));
589 set_compound_page_dtor(page, TRANSHUGE_PAGE_DTOR);
590}
591
562beb72 592static inline bool is_transparent_hugepage(struct page *page)
005ba37c
SC
593{
594 if (!PageCompound(page))
fa1f68cc 595 return false;
005ba37c
SC
596
597 page = compound_head(page);
598 return is_huge_zero_page(page) ||
599 page[1].compound_dtor == TRANSHUGE_PAGE_DTOR;
600}
005ba37c 601
97d3d0f9
KS
602static unsigned long __thp_get_unmapped_area(struct file *filp,
603 unsigned long addr, unsigned long len,
74d2fad1
TK
604 loff_t off, unsigned long flags, unsigned long size)
605{
74d2fad1
TK
606 loff_t off_end = off + len;
607 loff_t off_align = round_up(off, size);
97d3d0f9 608 unsigned long len_pad, ret;
74d2fad1
TK
609
610 if (off_end <= off_align || (off_end - off_align) < size)
611 return 0;
612
613 len_pad = len + size;
614 if (len_pad < len || (off + len_pad) < off)
615 return 0;
616
97d3d0f9 617 ret = current->mm->get_unmapped_area(filp, addr, len_pad,
74d2fad1 618 off >> PAGE_SHIFT, flags);
97d3d0f9
KS
619
620 /*
621 * The failure might be due to length padding. The caller will retry
622 * without the padding.
623 */
624 if (IS_ERR_VALUE(ret))
74d2fad1
TK
625 return 0;
626
97d3d0f9
KS
627 /*
628 * Do not try to align to THP boundary if allocation at the address
629 * hint succeeds.
630 */
631 if (ret == addr)
632 return addr;
633
634 ret += (off - ret) & (size - 1);
635 return ret;
74d2fad1
TK
636}
637
638unsigned long thp_get_unmapped_area(struct file *filp, unsigned long addr,
639 unsigned long len, unsigned long pgoff, unsigned long flags)
640{
97d3d0f9 641 unsigned long ret;
74d2fad1
TK
642 loff_t off = (loff_t)pgoff << PAGE_SHIFT;
643
97d3d0f9
KS
644 ret = __thp_get_unmapped_area(filp, addr, len, off, flags, PMD_SIZE);
645 if (ret)
646 return ret;
1854bc6e 647
74d2fad1
TK
648 return current->mm->get_unmapped_area(filp, addr, len, pgoff, flags);
649}
650EXPORT_SYMBOL_GPL(thp_get_unmapped_area);
651
2b740303
SJ
652static vm_fault_t __do_huge_pmd_anonymous_page(struct vm_fault *vmf,
653 struct page *page, gfp_t gfp)
71e3aac0 654{
82b0f8c3 655 struct vm_area_struct *vma = vmf->vma;
71e3aac0 656 pgtable_t pgtable;
82b0f8c3 657 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
2b740303 658 vm_fault_t ret = 0;
71e3aac0 659
309381fe 660 VM_BUG_ON_PAGE(!PageCompound(page), page);
00501b53 661
8f425e4e 662 if (mem_cgroup_charge(page_folio(page), vma->vm_mm, gfp)) {
6b251fc9
AA
663 put_page(page);
664 count_vm_event(THP_FAULT_FALLBACK);
85b9f46e 665 count_vm_event(THP_FAULT_FALLBACK_CHARGE);
6b251fc9
AA
666 return VM_FAULT_FALLBACK;
667 }
9d82c694 668 cgroup_throttle_swaprate(page, gfp);
00501b53 669
4cf58924 670 pgtable = pte_alloc_one(vma->vm_mm);
00501b53 671 if (unlikely(!pgtable)) {
6b31d595
MH
672 ret = VM_FAULT_OOM;
673 goto release;
00501b53 674 }
71e3aac0 675
c79b57e4 676 clear_huge_page(page, vmf->address, HPAGE_PMD_NR);
52f37629
MK
677 /*
678 * The memory barrier inside __SetPageUptodate makes sure that
679 * clear_huge_page writes become visible before the set_pmd_at()
680 * write.
681 */
71e3aac0
AA
682 __SetPageUptodate(page);
683
82b0f8c3
JK
684 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
685 if (unlikely(!pmd_none(*vmf->pmd))) {
6b31d595 686 goto unlock_release;
71e3aac0
AA
687 } else {
688 pmd_t entry;
6b251fc9 689
6b31d595
MH
690 ret = check_stable_address_space(vma->vm_mm);
691 if (ret)
692 goto unlock_release;
693
6b251fc9
AA
694 /* Deliver the page fault to userland */
695 if (userfaultfd_missing(vma)) {
82b0f8c3 696 spin_unlock(vmf->ptl);
6b251fc9 697 put_page(page);
bae473a4 698 pte_free(vma->vm_mm, pgtable);
8fd5eda4
ML
699 ret = handle_userfault(vmf, VM_UFFD_MISSING);
700 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
701 return ret;
6b251fc9
AA
702 }
703
3122359a 704 entry = mk_huge_pmd(page, vma->vm_page_prot);
f55e1014 705 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
40f2bbf7 706 page_add_new_anon_rmap(page, vma, haddr);
b518154e 707 lru_cache_add_inactive_or_unevictable(page, vma);
82b0f8c3
JK
708 pgtable_trans_huge_deposit(vma->vm_mm, vmf->pmd, pgtable);
709 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, entry);
fca40573 710 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
bae473a4 711 add_mm_counter(vma->vm_mm, MM_ANONPAGES, HPAGE_PMD_NR);
c4812909 712 mm_inc_nr_ptes(vma->vm_mm);
82b0f8c3 713 spin_unlock(vmf->ptl);
6b251fc9 714 count_vm_event(THP_FAULT_ALLOC);
9d82c694 715 count_memcg_event_mm(vma->vm_mm, THP_FAULT_ALLOC);
71e3aac0
AA
716 }
717
aa2e878e 718 return 0;
6b31d595
MH
719unlock_release:
720 spin_unlock(vmf->ptl);
721release:
722 if (pgtable)
723 pte_free(vma->vm_mm, pgtable);
6b31d595
MH
724 put_page(page);
725 return ret;
726
71e3aac0
AA
727}
728
444eb2a4 729/*
21440d7e
DR
730 * always: directly stall for all thp allocations
731 * defer: wake kswapd and fail if not immediately available
732 * defer+madvise: wake kswapd and directly stall for MADV_HUGEPAGE, otherwise
733 * fail if not immediately available
734 * madvise: directly stall for MADV_HUGEPAGE, otherwise fail if not immediately
735 * available
736 * never: never stall for any thp allocation
444eb2a4 737 */
164cc4fe 738gfp_t vma_thp_gfp_mask(struct vm_area_struct *vma)
444eb2a4 739{
164cc4fe 740 const bool vma_madvised = vma && (vma->vm_flags & VM_HUGEPAGE);
2f0799a0 741
ac79f78d 742 /* Always do synchronous compaction */
a8282608
AA
743 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG, &transparent_hugepage_flags))
744 return GFP_TRANSHUGE | (vma_madvised ? 0 : __GFP_NORETRY);
ac79f78d
DR
745
746 /* Kick kcompactd and fail quickly */
21440d7e 747 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG, &transparent_hugepage_flags))
19deb769 748 return GFP_TRANSHUGE_LIGHT | __GFP_KSWAPD_RECLAIM;
ac79f78d
DR
749
750 /* Synchronous compaction if madvised, otherwise kick kcompactd */
21440d7e 751 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG, &transparent_hugepage_flags))
19deb769
DR
752 return GFP_TRANSHUGE_LIGHT |
753 (vma_madvised ? __GFP_DIRECT_RECLAIM :
754 __GFP_KSWAPD_RECLAIM);
ac79f78d
DR
755
756 /* Only do synchronous compaction if madvised */
21440d7e 757 if (test_bit(TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG, &transparent_hugepage_flags))
19deb769
DR
758 return GFP_TRANSHUGE_LIGHT |
759 (vma_madvised ? __GFP_DIRECT_RECLAIM : 0);
ac79f78d 760
19deb769 761 return GFP_TRANSHUGE_LIGHT;
444eb2a4
MG
762}
763
c4088ebd 764/* Caller must hold page table lock. */
2efeb8da 765static void set_huge_zero_page(pgtable_t pgtable, struct mm_struct *mm,
97ae1749 766 struct vm_area_struct *vma, unsigned long haddr, pmd_t *pmd,
5918d10a 767 struct page *zero_page)
fc9fe822
KS
768{
769 pmd_t entry;
7c414164 770 if (!pmd_none(*pmd))
2efeb8da 771 return;
5918d10a 772 entry = mk_pmd(zero_page, vma->vm_page_prot);
fc9fe822 773 entry = pmd_mkhuge(entry);
c8bb4163 774 pgtable_trans_huge_deposit(mm, pmd, pgtable);
fc9fe822 775 set_pmd_at(mm, haddr, pmd, entry);
c4812909 776 mm_inc_nr_ptes(mm);
fc9fe822
KS
777}
778
2b740303 779vm_fault_t do_huge_pmd_anonymous_page(struct vm_fault *vmf)
71e3aac0 780{
82b0f8c3 781 struct vm_area_struct *vma = vmf->vma;
077fcf11 782 gfp_t gfp;
cb196ee1 783 struct folio *folio;
82b0f8c3 784 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
71e3aac0 785
43675e6f 786 if (!transhuge_vma_suitable(vma, haddr))
c0292554 787 return VM_FAULT_FALLBACK;
128ec037
KS
788 if (unlikely(anon_vma_prepare(vma)))
789 return VM_FAULT_OOM;
4fa6893f 790 khugepaged_enter_vma(vma, vma->vm_flags);
d2081b2b 791
82b0f8c3 792 if (!(vmf->flags & FAULT_FLAG_WRITE) &&
bae473a4 793 !mm_forbids_zeropage(vma->vm_mm) &&
128ec037
KS
794 transparent_hugepage_use_zero_page()) {
795 pgtable_t pgtable;
796 struct page *zero_page;
2b740303 797 vm_fault_t ret;
4cf58924 798 pgtable = pte_alloc_one(vma->vm_mm);
128ec037 799 if (unlikely(!pgtable))
ba76149f 800 return VM_FAULT_OOM;
6fcb52a5 801 zero_page = mm_get_huge_zero_page(vma->vm_mm);
128ec037 802 if (unlikely(!zero_page)) {
bae473a4 803 pte_free(vma->vm_mm, pgtable);
81ab4201 804 count_vm_event(THP_FAULT_FALLBACK);
c0292554 805 return VM_FAULT_FALLBACK;
b9bbfbe3 806 }
82b0f8c3 807 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
6b251fc9 808 ret = 0;
82b0f8c3 809 if (pmd_none(*vmf->pmd)) {
6b31d595
MH
810 ret = check_stable_address_space(vma->vm_mm);
811 if (ret) {
812 spin_unlock(vmf->ptl);
bfe8cc1d 813 pte_free(vma->vm_mm, pgtable);
6b31d595 814 } else if (userfaultfd_missing(vma)) {
82b0f8c3 815 spin_unlock(vmf->ptl);
bfe8cc1d 816 pte_free(vma->vm_mm, pgtable);
82b0f8c3 817 ret = handle_userfault(vmf, VM_UFFD_MISSING);
6b251fc9
AA
818 VM_BUG_ON(ret & VM_FAULT_FALLBACK);
819 } else {
bae473a4 820 set_huge_zero_page(pgtable, vma->vm_mm, vma,
82b0f8c3 821 haddr, vmf->pmd, zero_page);
fca40573 822 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
82b0f8c3 823 spin_unlock(vmf->ptl);
6b251fc9 824 }
bfe8cc1d 825 } else {
82b0f8c3 826 spin_unlock(vmf->ptl);
bae473a4 827 pte_free(vma->vm_mm, pgtable);
bfe8cc1d 828 }
6b251fc9 829 return ret;
71e3aac0 830 }
164cc4fe 831 gfp = vma_thp_gfp_mask(vma);
cb196ee1
MWO
832 folio = vma_alloc_folio(gfp, HPAGE_PMD_ORDER, vma, haddr, true);
833 if (unlikely(!folio)) {
128ec037 834 count_vm_event(THP_FAULT_FALLBACK);
c0292554 835 return VM_FAULT_FALLBACK;
128ec037 836 }
cb196ee1 837 return __do_huge_pmd_anonymous_page(vmf, &folio->page, gfp);
71e3aac0
AA
838}
839
ae18d6dc 840static void insert_pfn_pmd(struct vm_area_struct *vma, unsigned long addr,
3b6521f5
OH
841 pmd_t *pmd, pfn_t pfn, pgprot_t prot, bool write,
842 pgtable_t pgtable)
5cad465d
MW
843{
844 struct mm_struct *mm = vma->vm_mm;
845 pmd_t entry;
846 spinlock_t *ptl;
847
848 ptl = pmd_lock(mm, pmd);
c6f3c5ee
AK
849 if (!pmd_none(*pmd)) {
850 if (write) {
851 if (pmd_pfn(*pmd) != pfn_t_to_pfn(pfn)) {
852 WARN_ON_ONCE(!is_huge_zero_pmd(*pmd));
853 goto out_unlock;
854 }
855 entry = pmd_mkyoung(*pmd);
856 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
857 if (pmdp_set_access_flags(vma, addr, pmd, entry, 1))
858 update_mmu_cache_pmd(vma, addr, pmd);
859 }
860
861 goto out_unlock;
862 }
863
f25748e3
DW
864 entry = pmd_mkhuge(pfn_t_pmd(pfn, prot));
865 if (pfn_t_devmap(pfn))
866 entry = pmd_mkdevmap(entry);
01871e59 867 if (write) {
f55e1014
LT
868 entry = pmd_mkyoung(pmd_mkdirty(entry));
869 entry = maybe_pmd_mkwrite(entry, vma);
5cad465d 870 }
3b6521f5
OH
871
872 if (pgtable) {
873 pgtable_trans_huge_deposit(mm, pmd, pgtable);
c4812909 874 mm_inc_nr_ptes(mm);
c6f3c5ee 875 pgtable = NULL;
3b6521f5
OH
876 }
877
01871e59
RZ
878 set_pmd_at(mm, addr, pmd, entry);
879 update_mmu_cache_pmd(vma, addr, pmd);
c6f3c5ee
AK
880
881out_unlock:
5cad465d 882 spin_unlock(ptl);
c6f3c5ee
AK
883 if (pgtable)
884 pte_free(mm, pgtable);
5cad465d
MW
885}
886
9a9731b1
THV
887/**
888 * vmf_insert_pfn_pmd_prot - insert a pmd size pfn
889 * @vmf: Structure describing the fault
890 * @pfn: pfn to insert
891 * @pgprot: page protection to use
892 * @write: whether it's a write fault
893 *
894 * Insert a pmd size pfn. See vmf_insert_pfn() for additional info and
895 * also consult the vmf_insert_mixed_prot() documentation when
896 * @pgprot != @vmf->vma->vm_page_prot.
897 *
898 * Return: vm_fault_t value.
899 */
900vm_fault_t vmf_insert_pfn_pmd_prot(struct vm_fault *vmf, pfn_t pfn,
901 pgprot_t pgprot, bool write)
5cad465d 902{
fce86ff5
DW
903 unsigned long addr = vmf->address & PMD_MASK;
904 struct vm_area_struct *vma = vmf->vma;
3b6521f5 905 pgtable_t pgtable = NULL;
fce86ff5 906
5cad465d
MW
907 /*
908 * If we had pmd_special, we could avoid all these restrictions,
909 * but we need to be consistent with PTEs and architectures that
910 * can't support a 'special' bit.
911 */
e1fb4a08
DJ
912 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
913 !pfn_t_devmap(pfn));
5cad465d
MW
914 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
915 (VM_PFNMAP|VM_MIXEDMAP));
916 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
5cad465d
MW
917
918 if (addr < vma->vm_start || addr >= vma->vm_end)
919 return VM_FAULT_SIGBUS;
308a047c 920
3b6521f5 921 if (arch_needs_pgtable_deposit()) {
4cf58924 922 pgtable = pte_alloc_one(vma->vm_mm);
3b6521f5
OH
923 if (!pgtable)
924 return VM_FAULT_OOM;
925 }
926
308a047c
BP
927 track_pfn_insert(vma, &pgprot, pfn);
928
fce86ff5 929 insert_pfn_pmd(vma, addr, vmf->pmd, pfn, pgprot, write, pgtable);
ae18d6dc 930 return VM_FAULT_NOPAGE;
5cad465d 931}
9a9731b1 932EXPORT_SYMBOL_GPL(vmf_insert_pfn_pmd_prot);
5cad465d 933
a00cc7d9 934#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
f55e1014 935static pud_t maybe_pud_mkwrite(pud_t pud, struct vm_area_struct *vma)
a00cc7d9 936{
f55e1014 937 if (likely(vma->vm_flags & VM_WRITE))
a00cc7d9
MW
938 pud = pud_mkwrite(pud);
939 return pud;
940}
941
942static void insert_pfn_pud(struct vm_area_struct *vma, unsigned long addr,
943 pud_t *pud, pfn_t pfn, pgprot_t prot, bool write)
944{
945 struct mm_struct *mm = vma->vm_mm;
946 pud_t entry;
947 spinlock_t *ptl;
948
949 ptl = pud_lock(mm, pud);
c6f3c5ee
AK
950 if (!pud_none(*pud)) {
951 if (write) {
952 if (pud_pfn(*pud) != pfn_t_to_pfn(pfn)) {
953 WARN_ON_ONCE(!is_huge_zero_pud(*pud));
954 goto out_unlock;
955 }
956 entry = pud_mkyoung(*pud);
957 entry = maybe_pud_mkwrite(pud_mkdirty(entry), vma);
958 if (pudp_set_access_flags(vma, addr, pud, entry, 1))
959 update_mmu_cache_pud(vma, addr, pud);
960 }
961 goto out_unlock;
962 }
963
a00cc7d9
MW
964 entry = pud_mkhuge(pfn_t_pud(pfn, prot));
965 if (pfn_t_devmap(pfn))
966 entry = pud_mkdevmap(entry);
967 if (write) {
f55e1014
LT
968 entry = pud_mkyoung(pud_mkdirty(entry));
969 entry = maybe_pud_mkwrite(entry, vma);
a00cc7d9
MW
970 }
971 set_pud_at(mm, addr, pud, entry);
972 update_mmu_cache_pud(vma, addr, pud);
c6f3c5ee
AK
973
974out_unlock:
a00cc7d9
MW
975 spin_unlock(ptl);
976}
977
9a9731b1
THV
978/**
979 * vmf_insert_pfn_pud_prot - insert a pud size pfn
980 * @vmf: Structure describing the fault
981 * @pfn: pfn to insert
982 * @pgprot: page protection to use
983 * @write: whether it's a write fault
984 *
985 * Insert a pud size pfn. See vmf_insert_pfn() for additional info and
986 * also consult the vmf_insert_mixed_prot() documentation when
987 * @pgprot != @vmf->vma->vm_page_prot.
988 *
989 * Return: vm_fault_t value.
990 */
991vm_fault_t vmf_insert_pfn_pud_prot(struct vm_fault *vmf, pfn_t pfn,
992 pgprot_t pgprot, bool write)
a00cc7d9 993{
fce86ff5
DW
994 unsigned long addr = vmf->address & PUD_MASK;
995 struct vm_area_struct *vma = vmf->vma;
fce86ff5 996
a00cc7d9
MW
997 /*
998 * If we had pud_special, we could avoid all these restrictions,
999 * but we need to be consistent with PTEs and architectures that
1000 * can't support a 'special' bit.
1001 */
62ec0d8c
DJ
1002 BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) &&
1003 !pfn_t_devmap(pfn));
a00cc7d9
MW
1004 BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
1005 (VM_PFNMAP|VM_MIXEDMAP));
1006 BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
a00cc7d9
MW
1007
1008 if (addr < vma->vm_start || addr >= vma->vm_end)
1009 return VM_FAULT_SIGBUS;
1010
1011 track_pfn_insert(vma, &pgprot, pfn);
1012
fce86ff5 1013 insert_pfn_pud(vma, addr, vmf->pud, pfn, pgprot, write);
a00cc7d9
MW
1014 return VM_FAULT_NOPAGE;
1015}
9a9731b1 1016EXPORT_SYMBOL_GPL(vmf_insert_pfn_pud_prot);
a00cc7d9
MW
1017#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1018
3565fce3 1019static void touch_pmd(struct vm_area_struct *vma, unsigned long addr,
a69e4717 1020 pmd_t *pmd, bool write)
3565fce3
DW
1021{
1022 pmd_t _pmd;
1023
a8f97366 1024 _pmd = pmd_mkyoung(*pmd);
a69e4717 1025 if (write)
a8f97366 1026 _pmd = pmd_mkdirty(_pmd);
3565fce3 1027 if (pmdp_set_access_flags(vma, addr & HPAGE_PMD_MASK,
a69e4717 1028 pmd, _pmd, write))
3565fce3
DW
1029 update_mmu_cache_pmd(vma, addr, pmd);
1030}
1031
1032struct page *follow_devmap_pmd(struct vm_area_struct *vma, unsigned long addr,
df06b37f 1033 pmd_t *pmd, int flags, struct dev_pagemap **pgmap)
3565fce3
DW
1034{
1035 unsigned long pfn = pmd_pfn(*pmd);
1036 struct mm_struct *mm = vma->vm_mm;
3565fce3 1037 struct page *page;
0f089235 1038 int ret;
3565fce3
DW
1039
1040 assert_spin_locked(pmd_lockptr(mm, pmd));
1041
3faa52c0
JH
1042 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1043 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1044 (FOLL_PIN | FOLL_GET)))
1045 return NULL;
1046
f6f37321 1047 if (flags & FOLL_WRITE && !pmd_write(*pmd))
3565fce3
DW
1048 return NULL;
1049
1050 if (pmd_present(*pmd) && pmd_devmap(*pmd))
1051 /* pass */;
1052 else
1053 return NULL;
1054
1055 if (flags & FOLL_TOUCH)
a69e4717 1056 touch_pmd(vma, addr, pmd, flags & FOLL_WRITE);
3565fce3
DW
1057
1058 /*
1059 * device mapped pages can only be returned if the
1060 * caller will manage the page reference count.
1061 */
3faa52c0 1062 if (!(flags & (FOLL_GET | FOLL_PIN)))
3565fce3
DW
1063 return ERR_PTR(-EEXIST);
1064
1065 pfn += (addr & ~PMD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1066 *pgmap = get_dev_pagemap(pfn, *pgmap);
1067 if (!*pgmap)
3565fce3
DW
1068 return ERR_PTR(-EFAULT);
1069 page = pfn_to_page(pfn);
0f089235
LG
1070 ret = try_grab_page(page, flags);
1071 if (ret)
1072 page = ERR_PTR(ret);
3565fce3
DW
1073
1074 return page;
1075}
1076
71e3aac0
AA
1077int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1078 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
8f34f1ea 1079 struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
71e3aac0 1080{
c4088ebd 1081 spinlock_t *dst_ptl, *src_ptl;
71e3aac0
AA
1082 struct page *src_page;
1083 pmd_t pmd;
12c9d70b 1084 pgtable_t pgtable = NULL;
628d47ce 1085 int ret = -ENOMEM;
71e3aac0 1086
628d47ce 1087 /* Skip if can be re-fill on fault */
8f34f1ea 1088 if (!vma_is_anonymous(dst_vma))
628d47ce
KS
1089 return 0;
1090
4cf58924 1091 pgtable = pte_alloc_one(dst_mm);
628d47ce
KS
1092 if (unlikely(!pgtable))
1093 goto out;
71e3aac0 1094
c4088ebd
KS
1095 dst_ptl = pmd_lock(dst_mm, dst_pmd);
1096 src_ptl = pmd_lockptr(src_mm, src_pmd);
1097 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
71e3aac0
AA
1098
1099 ret = -EAGAIN;
1100 pmd = *src_pmd;
84c3fc4e
ZY
1101
1102#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1103 if (unlikely(is_swap_pmd(pmd))) {
1104 swp_entry_t entry = pmd_to_swp_entry(pmd);
1105
1106 VM_BUG_ON(!is_pmd_migration_entry(pmd));
6c287605 1107 if (!is_readable_migration_entry(entry)) {
4dd845b5
AP
1108 entry = make_readable_migration_entry(
1109 swp_offset(entry));
84c3fc4e 1110 pmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1111 if (pmd_swp_soft_dirty(*src_pmd))
1112 pmd = pmd_swp_mksoft_dirty(pmd);
8f34f1ea
PX
1113 if (pmd_swp_uffd_wp(*src_pmd))
1114 pmd = pmd_swp_mkuffd_wp(pmd);
84c3fc4e
ZY
1115 set_pmd_at(src_mm, addr, src_pmd, pmd);
1116 }
dd8a67f9 1117 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
af5b0f6a 1118 mm_inc_nr_ptes(dst_mm);
dd8a67f9 1119 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
8f34f1ea
PX
1120 if (!userfaultfd_wp(dst_vma))
1121 pmd = pmd_swp_clear_uffd_wp(pmd);
84c3fc4e
ZY
1122 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
1123 ret = 0;
1124 goto out_unlock;
1125 }
1126#endif
1127
628d47ce 1128 if (unlikely(!pmd_trans_huge(pmd))) {
71e3aac0
AA
1129 pte_free(dst_mm, pgtable);
1130 goto out_unlock;
1131 }
fc9fe822 1132 /*
c4088ebd 1133 * When page table lock is held, the huge zero pmd should not be
fc9fe822
KS
1134 * under splitting since we don't split the page itself, only pmd to
1135 * a page table.
1136 */
1137 if (is_huge_zero_pmd(pmd)) {
97ae1749
KS
1138 /*
1139 * get_huge_zero_page() will never allocate a new page here,
1140 * since we already have a zero page to copy. It just takes a
1141 * reference.
1142 */
5fc7a5f6
PX
1143 mm_get_huge_zero_page(dst_mm);
1144 goto out_zero_page;
fc9fe822 1145 }
de466bd6 1146
628d47ce
KS
1147 src_page = pmd_page(pmd);
1148 VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
d042035e 1149
fb3d824d
DH
1150 get_page(src_page);
1151 if (unlikely(page_try_dup_anon_rmap(src_page, true, src_vma))) {
1152 /* Page maybe pinned: split and retry the fault on PTEs. */
1153 put_page(src_page);
d042035e
PX
1154 pte_free(dst_mm, pgtable);
1155 spin_unlock(src_ptl);
1156 spin_unlock(dst_ptl);
8f34f1ea 1157 __split_huge_pmd(src_vma, src_pmd, addr, false, NULL);
d042035e
PX
1158 return -EAGAIN;
1159 }
628d47ce 1160 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
5fc7a5f6 1161out_zero_page:
c4812909 1162 mm_inc_nr_ptes(dst_mm);
628d47ce 1163 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
71e3aac0 1164 pmdp_set_wrprotect(src_mm, addr, src_pmd);
8f34f1ea
PX
1165 if (!userfaultfd_wp(dst_vma))
1166 pmd = pmd_clear_uffd_wp(pmd);
71e3aac0
AA
1167 pmd = pmd_mkold(pmd_wrprotect(pmd));
1168 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
71e3aac0
AA
1169
1170 ret = 0;
1171out_unlock:
c4088ebd
KS
1172 spin_unlock(src_ptl);
1173 spin_unlock(dst_ptl);
71e3aac0
AA
1174out:
1175 return ret;
1176}
1177
a00cc7d9
MW
1178#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1179static void touch_pud(struct vm_area_struct *vma, unsigned long addr,
5fe653e9 1180 pud_t *pud, bool write)
a00cc7d9
MW
1181{
1182 pud_t _pud;
1183
a8f97366 1184 _pud = pud_mkyoung(*pud);
5fe653e9 1185 if (write)
a8f97366 1186 _pud = pud_mkdirty(_pud);
a00cc7d9 1187 if (pudp_set_access_flags(vma, addr & HPAGE_PUD_MASK,
5fe653e9 1188 pud, _pud, write))
a00cc7d9
MW
1189 update_mmu_cache_pud(vma, addr, pud);
1190}
1191
1192struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
df06b37f 1193 pud_t *pud, int flags, struct dev_pagemap **pgmap)
a00cc7d9
MW
1194{
1195 unsigned long pfn = pud_pfn(*pud);
1196 struct mm_struct *mm = vma->vm_mm;
a00cc7d9 1197 struct page *page;
0f089235 1198 int ret;
a00cc7d9
MW
1199
1200 assert_spin_locked(pud_lockptr(mm, pud));
1201
f6f37321 1202 if (flags & FOLL_WRITE && !pud_write(*pud))
a00cc7d9
MW
1203 return NULL;
1204
3faa52c0
JH
1205 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1206 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1207 (FOLL_PIN | FOLL_GET)))
1208 return NULL;
1209
a00cc7d9
MW
1210 if (pud_present(*pud) && pud_devmap(*pud))
1211 /* pass */;
1212 else
1213 return NULL;
1214
1215 if (flags & FOLL_TOUCH)
5fe653e9 1216 touch_pud(vma, addr, pud, flags & FOLL_WRITE);
a00cc7d9
MW
1217
1218 /*
1219 * device mapped pages can only be returned if the
1220 * caller will manage the page reference count.
3faa52c0
JH
1221 *
1222 * At least one of FOLL_GET | FOLL_PIN must be set, so assert that here:
a00cc7d9 1223 */
3faa52c0 1224 if (!(flags & (FOLL_GET | FOLL_PIN)))
a00cc7d9
MW
1225 return ERR_PTR(-EEXIST);
1226
1227 pfn += (addr & ~PUD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1228 *pgmap = get_dev_pagemap(pfn, *pgmap);
1229 if (!*pgmap)
a00cc7d9
MW
1230 return ERR_PTR(-EFAULT);
1231 page = pfn_to_page(pfn);
0f089235
LG
1232
1233 ret = try_grab_page(page, flags);
1234 if (ret)
1235 page = ERR_PTR(ret);
a00cc7d9
MW
1236
1237 return page;
1238}
1239
1240int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1241 pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1242 struct vm_area_struct *vma)
1243{
1244 spinlock_t *dst_ptl, *src_ptl;
1245 pud_t pud;
1246 int ret;
1247
1248 dst_ptl = pud_lock(dst_mm, dst_pud);
1249 src_ptl = pud_lockptr(src_mm, src_pud);
1250 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1251
1252 ret = -EAGAIN;
1253 pud = *src_pud;
1254 if (unlikely(!pud_trans_huge(pud) && !pud_devmap(pud)))
1255 goto out_unlock;
1256
1257 /*
1258 * When page table lock is held, the huge zero pud should not be
1259 * under splitting since we don't split the page itself, only pud to
1260 * a page table.
1261 */
1262 if (is_huge_zero_pud(pud)) {
1263 /* No huge zero pud yet */
1264 }
1265
fb3d824d
DH
1266 /*
1267 * TODO: once we support anonymous pages, use page_try_dup_anon_rmap()
1268 * and split if duplicating fails.
1269 */
a00cc7d9
MW
1270 pudp_set_wrprotect(src_mm, addr, src_pud);
1271 pud = pud_mkold(pud_wrprotect(pud));
1272 set_pud_at(dst_mm, addr, dst_pud, pud);
1273
1274 ret = 0;
1275out_unlock:
1276 spin_unlock(src_ptl);
1277 spin_unlock(dst_ptl);
1278 return ret;
1279}
1280
1281void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
1282{
a00cc7d9
MW
1283 bool write = vmf->flags & FAULT_FLAG_WRITE;
1284
1285 vmf->ptl = pud_lock(vmf->vma->vm_mm, vmf->pud);
1286 if (unlikely(!pud_same(*vmf->pud, orig_pud)))
1287 goto unlock;
1288
5fe653e9 1289 touch_pud(vmf->vma, vmf->address, vmf->pud, write);
a00cc7d9
MW
1290unlock:
1291 spin_unlock(vmf->ptl);
1292}
1293#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1294
5db4f15c 1295void huge_pmd_set_accessed(struct vm_fault *vmf)
a1dd450b 1296{
20f664aa 1297 bool write = vmf->flags & FAULT_FLAG_WRITE;
a1dd450b 1298
82b0f8c3 1299 vmf->ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
a69e4717 1300 if (unlikely(!pmd_same(*vmf->pmd, vmf->orig_pmd)))
a1dd450b
WD
1301 goto unlock;
1302
a69e4717 1303 touch_pmd(vmf->vma, vmf->address, vmf->pmd, write);
a1dd450b
WD
1304
1305unlock:
82b0f8c3 1306 spin_unlock(vmf->ptl);
a1dd450b
WD
1307}
1308
5db4f15c 1309vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf)
71e3aac0 1310{
c89357e2 1311 const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
82b0f8c3 1312 struct vm_area_struct *vma = vmf->vma;
2fad3d14 1313 struct folio *folio;
3917c802 1314 struct page *page;
82b0f8c3 1315 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
5db4f15c 1316 pmd_t orig_pmd = vmf->orig_pmd;
71e3aac0 1317
82b0f8c3 1318 vmf->ptl = pmd_lockptr(vma->vm_mm, vmf->pmd);
81d1b09c 1319 VM_BUG_ON_VMA(!vma->anon_vma, vma);
3917c802 1320
c89357e2
DH
1321 VM_BUG_ON(unshare && (vmf->flags & FAULT_FLAG_WRITE));
1322 VM_BUG_ON(!unshare && !(vmf->flags & FAULT_FLAG_WRITE));
1323
93b4796d 1324 if (is_huge_zero_pmd(orig_pmd))
3917c802
KS
1325 goto fallback;
1326
82b0f8c3 1327 spin_lock(vmf->ptl);
3917c802
KS
1328
1329 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
1330 spin_unlock(vmf->ptl);
1331 return 0;
1332 }
71e3aac0
AA
1333
1334 page = pmd_page(orig_pmd);
2fad3d14 1335 folio = page_folio(page);
f6004e73 1336 VM_BUG_ON_PAGE(!PageHead(page), page);
3917c802 1337
6c287605
DH
1338 /* Early check when only holding the PT lock. */
1339 if (PageAnonExclusive(page))
1340 goto reuse;
1341
2fad3d14
MWO
1342 if (!folio_trylock(folio)) {
1343 folio_get(folio);
ba3c4ce6 1344 spin_unlock(vmf->ptl);
2fad3d14 1345 folio_lock(folio);
ba3c4ce6
HY
1346 spin_lock(vmf->ptl);
1347 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
3917c802 1348 spin_unlock(vmf->ptl);
2fad3d14
MWO
1349 folio_unlock(folio);
1350 folio_put(folio);
3917c802 1351 return 0;
ba3c4ce6 1352 }
2fad3d14 1353 folio_put(folio);
ba3c4ce6 1354 }
3917c802 1355
6c287605
DH
1356 /* Recheck after temporarily dropping the PT lock. */
1357 if (PageAnonExclusive(page)) {
2fad3d14 1358 folio_unlock(folio);
6c287605
DH
1359 goto reuse;
1360 }
1361
3917c802 1362 /*
2fad3d14
MWO
1363 * See do_wp_page(): we can only reuse the folio exclusively if
1364 * there are no additional references. Note that we always drain
1365 * the LRU pagevecs immediately after adding a THP.
3917c802 1366 */
2fad3d14
MWO
1367 if (folio_ref_count(folio) >
1368 1 + folio_test_swapcache(folio) * folio_nr_pages(folio))
3bff7e3f 1369 goto unlock_fallback;
2fad3d14
MWO
1370 if (folio_test_swapcache(folio))
1371 folio_free_swap(folio);
1372 if (folio_ref_count(folio) == 1) {
71e3aac0 1373 pmd_t entry;
6c54dc6c
DH
1374
1375 page_move_anon_rmap(page, vma);
2fad3d14 1376 folio_unlock(folio);
6c287605 1377reuse:
c89357e2
DH
1378 if (unlikely(unshare)) {
1379 spin_unlock(vmf->ptl);
1380 return 0;
1381 }
71e3aac0 1382 entry = pmd_mkyoung(orig_pmd);
f55e1014 1383 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
3917c802 1384 if (pmdp_set_access_flags(vma, haddr, vmf->pmd, entry, 1))
82b0f8c3 1385 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
82b0f8c3 1386 spin_unlock(vmf->ptl);
3917c802 1387 return VM_FAULT_WRITE;
71e3aac0 1388 }
3917c802 1389
3bff7e3f 1390unlock_fallback:
2fad3d14 1391 folio_unlock(folio);
82b0f8c3 1392 spin_unlock(vmf->ptl);
3917c802
KS
1393fallback:
1394 __split_huge_pmd(vma, vmf->pmd, vmf->address, false, NULL);
1395 return VM_FAULT_FALLBACK;
71e3aac0
AA
1396}
1397
5535be30
DH
1398/* FOLL_FORCE can write to even unwritable PMDs in COW mappings. */
1399static inline bool can_follow_write_pmd(pmd_t pmd, struct page *page,
1400 struct vm_area_struct *vma,
1401 unsigned int flags)
8310d48b 1402{
5535be30
DH
1403 /* If the pmd is writable, we can write to the page. */
1404 if (pmd_write(pmd))
1405 return true;
1406
1407 /* Maybe FOLL_FORCE is set to override it? */
1408 if (!(flags & FOLL_FORCE))
1409 return false;
1410
1411 /* But FOLL_FORCE has no effect on shared mappings */
1412 if (vma->vm_flags & (VM_MAYSHARE | VM_SHARED))
1413 return false;
1414
1415 /* ... or read-only private ones */
1416 if (!(vma->vm_flags & VM_MAYWRITE))
1417 return false;
1418
1419 /* ... or already writable ones that just need to take a write fault */
1420 if (vma->vm_flags & VM_WRITE)
1421 return false;
1422
1423 /*
1424 * See can_change_pte_writable(): we broke COW and could map the page
1425 * writable if we have an exclusive anonymous page ...
1426 */
1427 if (!page || !PageAnon(page) || !PageAnonExclusive(page))
1428 return false;
1429
1430 /* ... and a write-fault isn't required for other reasons. */
1431 if (vma_soft_dirty_enabled(vma) && !pmd_soft_dirty(pmd))
1432 return false;
1433 return !userfaultfd_huge_pmd_wp(vma, pmd);
8310d48b
KF
1434}
1435
b676b293 1436struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
71e3aac0
AA
1437 unsigned long addr,
1438 pmd_t *pmd,
1439 unsigned int flags)
1440{
b676b293 1441 struct mm_struct *mm = vma->vm_mm;
5535be30 1442 struct page *page;
0f089235 1443 int ret;
71e3aac0 1444
c4088ebd 1445 assert_spin_locked(pmd_lockptr(mm, pmd));
71e3aac0 1446
5535be30
DH
1447 page = pmd_page(*pmd);
1448 VM_BUG_ON_PAGE(!PageHead(page) && !is_zone_device_page(page), page);
1449
1450 if ((flags & FOLL_WRITE) &&
1451 !can_follow_write_pmd(*pmd, page, vma, flags))
1452 return NULL;
71e3aac0 1453
85facf25
KS
1454 /* Avoid dumping huge zero page */
1455 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1456 return ERR_PTR(-EFAULT);
1457
2b4847e7 1458 /* Full NUMA hinting faults to serialise migration in fault paths */
474098ed 1459 if (pmd_protnone(*pmd) && !gup_can_follow_protnone(flags))
5535be30 1460 return NULL;
3faa52c0 1461
a7f22660
DH
1462 if (!pmd_write(*pmd) && gup_must_unshare(flags, page))
1463 return ERR_PTR(-EMLINK);
1464
b6a2619c
DH
1465 VM_BUG_ON_PAGE((flags & FOLL_PIN) && PageAnon(page) &&
1466 !PageAnonExclusive(page), page);
1467
0f089235
LG
1468 ret = try_grab_page(page, flags);
1469 if (ret)
1470 return ERR_PTR(ret);
3faa52c0 1471
3565fce3 1472 if (flags & FOLL_TOUCH)
a69e4717 1473 touch_pmd(vma, addr, pmd, flags & FOLL_WRITE);
3faa52c0 1474
71e3aac0 1475 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
ca120cf6 1476 VM_BUG_ON_PAGE(!PageCompound(page) && !is_zone_device_page(page), page);
71e3aac0 1477
71e3aac0
AA
1478 return page;
1479}
1480
d10e63f2 1481/* NUMA hinting page fault entry point for trans huge pmds */
5db4f15c 1482vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf)
d10e63f2 1483{
82b0f8c3 1484 struct vm_area_struct *vma = vmf->vma;
c5b5a3dd
YS
1485 pmd_t oldpmd = vmf->orig_pmd;
1486 pmd_t pmd;
b32967ff 1487 struct page *page;
82b0f8c3 1488 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
c5b5a3dd 1489 int page_nid = NUMA_NO_NODE;
33024536 1490 int target_nid, last_cpupid = (-1 & LAST_CPUPID_MASK);
8191acbd 1491 bool migrated = false;
c5b5a3dd 1492 bool was_writable = pmd_savedwrite(oldpmd);
6688cc05 1493 int flags = 0;
d10e63f2 1494
82b0f8c3 1495 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
c5b5a3dd 1496 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
82b0f8c3 1497 spin_unlock(vmf->ptl);
de466bd6
MG
1498 goto out;
1499 }
1500
c5b5a3dd
YS
1501 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1502 page = vm_normal_page_pmd(vma, haddr, pmd);
1503 if (!page)
1504 goto out_map;
1505
1506 /* See similar comment in do_numa_page for explanation */
1507 if (!was_writable)
1508 flags |= TNF_NO_GROUP;
1509
1510 page_nid = page_to_nid(page);
33024536
HY
1511 /*
1512 * For memory tiering mode, cpupid of slow memory page is used
1513 * to record page access time. So use default value.
1514 */
1515 if (node_is_toptier(page_nid))
1516 last_cpupid = page_cpupid_last(page);
c5b5a3dd
YS
1517 target_nid = numa_migrate_prep(page, vma, haddr, page_nid,
1518 &flags);
1519
1520 if (target_nid == NUMA_NO_NODE) {
1521 put_page(page);
1522 goto out_map;
1523 }
1524
82b0f8c3 1525 spin_unlock(vmf->ptl);
8b1b436d 1526
c5b5a3dd 1527 migrated = migrate_misplaced_page(page, vma, target_nid);
6688cc05
PZ
1528 if (migrated) {
1529 flags |= TNF_MIGRATED;
8191acbd 1530 page_nid = target_nid;
c5b5a3dd 1531 } else {
074c2381 1532 flags |= TNF_MIGRATE_FAIL;
c5b5a3dd
YS
1533 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1534 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
1535 spin_unlock(vmf->ptl);
1536 goto out;
1537 }
1538 goto out_map;
1539 }
b8916634
MG
1540
1541out:
98fa15f3 1542 if (page_nid != NUMA_NO_NODE)
82b0f8c3 1543 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR,
9a8b300f 1544 flags);
8191acbd 1545
d10e63f2 1546 return 0;
c5b5a3dd
YS
1547
1548out_map:
1549 /* Restore the PMD */
1550 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1551 pmd = pmd_mkyoung(pmd);
1552 if (was_writable)
1553 pmd = pmd_mkwrite(pmd);
1554 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, pmd);
1555 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
1556 spin_unlock(vmf->ptl);
1557 goto out;
d10e63f2
MG
1558}
1559
319904ad
HY
1560/*
1561 * Return true if we do MADV_FREE successfully on entire pmd page.
1562 * Otherwise, return false.
1563 */
1564bool madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
b8d3c4c3 1565 pmd_t *pmd, unsigned long addr, unsigned long next)
b8d3c4c3
MK
1566{
1567 spinlock_t *ptl;
1568 pmd_t orig_pmd;
1569 struct page *page;
1570 struct mm_struct *mm = tlb->mm;
319904ad 1571 bool ret = false;
b8d3c4c3 1572
ed6a7935 1573 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1574
b6ec57f4
KS
1575 ptl = pmd_trans_huge_lock(pmd, vma);
1576 if (!ptl)
25eedabe 1577 goto out_unlocked;
b8d3c4c3
MK
1578
1579 orig_pmd = *pmd;
319904ad 1580 if (is_huge_zero_pmd(orig_pmd))
b8d3c4c3 1581 goto out;
b8d3c4c3 1582
84c3fc4e
ZY
1583 if (unlikely(!pmd_present(orig_pmd))) {
1584 VM_BUG_ON(thp_migration_supported() &&
1585 !is_pmd_migration_entry(orig_pmd));
1586 goto out;
1587 }
1588
b8d3c4c3
MK
1589 page = pmd_page(orig_pmd);
1590 /*
1591 * If other processes are mapping this page, we couldn't discard
1592 * the page unless they all do MADV_FREE so let's skip the page.
1593 */
babbbdd0 1594 if (total_mapcount(page) != 1)
b8d3c4c3
MK
1595 goto out;
1596
1597 if (!trylock_page(page))
1598 goto out;
1599
1600 /*
1601 * If user want to discard part-pages of THP, split it so MADV_FREE
1602 * will deactivate only them.
1603 */
1604 if (next - addr != HPAGE_PMD_SIZE) {
1605 get_page(page);
1606 spin_unlock(ptl);
9818b8cd 1607 split_huge_page(page);
b8d3c4c3 1608 unlock_page(page);
bbf29ffc 1609 put_page(page);
b8d3c4c3
MK
1610 goto out_unlocked;
1611 }
1612
1613 if (PageDirty(page))
1614 ClearPageDirty(page);
1615 unlock_page(page);
1616
b8d3c4c3 1617 if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
58ceeb6b 1618 pmdp_invalidate(vma, addr, pmd);
b8d3c4c3
MK
1619 orig_pmd = pmd_mkold(orig_pmd);
1620 orig_pmd = pmd_mkclean(orig_pmd);
1621
1622 set_pmd_at(mm, addr, pmd, orig_pmd);
1623 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
1624 }
802a3a92
SL
1625
1626 mark_page_lazyfree(page);
319904ad 1627 ret = true;
b8d3c4c3
MK
1628out:
1629 spin_unlock(ptl);
1630out_unlocked:
1631 return ret;
1632}
1633
953c66c2
AK
1634static inline void zap_deposited_table(struct mm_struct *mm, pmd_t *pmd)
1635{
1636 pgtable_t pgtable;
1637
1638 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1639 pte_free(mm, pgtable);
c4812909 1640 mm_dec_nr_ptes(mm);
953c66c2
AK
1641}
1642
71e3aac0 1643int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
f21760b1 1644 pmd_t *pmd, unsigned long addr)
71e3aac0 1645{
da146769 1646 pmd_t orig_pmd;
bf929152 1647 spinlock_t *ptl;
71e3aac0 1648
ed6a7935 1649 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1650
b6ec57f4
KS
1651 ptl = __pmd_trans_huge_lock(pmd, vma);
1652 if (!ptl)
da146769
KS
1653 return 0;
1654 /*
1655 * For architectures like ppc64 we look at deposited pgtable
1656 * when calling pmdp_huge_get_and_clear. So do the
1657 * pgtable_trans_huge_withdraw after finishing pmdp related
1658 * operations.
1659 */
93a98695
AK
1660 orig_pmd = pmdp_huge_get_and_clear_full(vma, addr, pmd,
1661 tlb->fullmm);
da146769 1662 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
2484ca9b 1663 if (vma_is_special_huge(vma)) {
3b6521f5
OH
1664 if (arch_needs_pgtable_deposit())
1665 zap_deposited_table(tlb->mm, pmd);
da146769 1666 spin_unlock(ptl);
da146769 1667 } else if (is_huge_zero_pmd(orig_pmd)) {
c14a6eb4 1668 zap_deposited_table(tlb->mm, pmd);
da146769 1669 spin_unlock(ptl);
da146769 1670 } else {
616b8371
ZY
1671 struct page *page = NULL;
1672 int flush_needed = 1;
1673
1674 if (pmd_present(orig_pmd)) {
1675 page = pmd_page(orig_pmd);
cea86fe2 1676 page_remove_rmap(page, vma, true);
616b8371
ZY
1677 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
1678 VM_BUG_ON_PAGE(!PageHead(page), page);
1679 } else if (thp_migration_supported()) {
1680 swp_entry_t entry;
1681
1682 VM_BUG_ON(!is_pmd_migration_entry(orig_pmd));
1683 entry = pmd_to_swp_entry(orig_pmd);
af5cdaf8 1684 page = pfn_swap_entry_to_page(entry);
616b8371
ZY
1685 flush_needed = 0;
1686 } else
1687 WARN_ONCE(1, "Non present huge pmd without pmd migration enabled!");
1688
b5072380 1689 if (PageAnon(page)) {
c14a6eb4 1690 zap_deposited_table(tlb->mm, pmd);
b5072380
KS
1691 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
1692 } else {
953c66c2
AK
1693 if (arch_needs_pgtable_deposit())
1694 zap_deposited_table(tlb->mm, pmd);
fadae295 1695 add_mm_counter(tlb->mm, mm_counter_file(page), -HPAGE_PMD_NR);
b5072380 1696 }
616b8371 1697
da146769 1698 spin_unlock(ptl);
616b8371
ZY
1699 if (flush_needed)
1700 tlb_remove_page_size(tlb, page, HPAGE_PMD_SIZE);
025c5b24 1701 }
da146769 1702 return 1;
71e3aac0
AA
1703}
1704
1dd38b6c
AK
1705#ifndef pmd_move_must_withdraw
1706static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
1707 spinlock_t *old_pmd_ptl,
1708 struct vm_area_struct *vma)
1709{
1710 /*
1711 * With split pmd lock we also need to move preallocated
1712 * PTE page table if new_pmd is on different PMD page table.
1713 *
1714 * We also don't deposit and withdraw tables for file pages.
1715 */
1716 return (new_pmd_ptl != old_pmd_ptl) && vma_is_anonymous(vma);
1717}
1718#endif
1719
ab6e3d09
NH
1720static pmd_t move_soft_dirty_pmd(pmd_t pmd)
1721{
1722#ifdef CONFIG_MEM_SOFT_DIRTY
1723 if (unlikely(is_pmd_migration_entry(pmd)))
1724 pmd = pmd_swp_mksoft_dirty(pmd);
1725 else if (pmd_present(pmd))
1726 pmd = pmd_mksoft_dirty(pmd);
1727#endif
1728 return pmd;
1729}
1730
bf8616d5 1731bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
b8aa9d9d 1732 unsigned long new_addr, pmd_t *old_pmd, pmd_t *new_pmd)
37a1c49a 1733{
bf929152 1734 spinlock_t *old_ptl, *new_ptl;
37a1c49a 1735 pmd_t pmd;
37a1c49a 1736 struct mm_struct *mm = vma->vm_mm;
5d190420 1737 bool force_flush = false;
37a1c49a 1738
37a1c49a
AA
1739 /*
1740 * The destination pmd shouldn't be established, free_pgtables()
1741 * should have release it.
1742 */
1743 if (WARN_ON(!pmd_none(*new_pmd))) {
1744 VM_BUG_ON(pmd_trans_huge(*new_pmd));
4b471e88 1745 return false;
37a1c49a
AA
1746 }
1747
bf929152
KS
1748 /*
1749 * We don't have to worry about the ordering of src and dst
c1e8d7c6 1750 * ptlocks because exclusive mmap_lock prevents deadlock.
bf929152 1751 */
b6ec57f4
KS
1752 old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
1753 if (old_ptl) {
bf929152
KS
1754 new_ptl = pmd_lockptr(mm, new_pmd);
1755 if (new_ptl != old_ptl)
1756 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
8809aa2d 1757 pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
eb66ae03 1758 if (pmd_present(pmd))
a2ce2666 1759 force_flush = true;
025c5b24 1760 VM_BUG_ON(!pmd_none(*new_pmd));
3592806c 1761
1dd38b6c 1762 if (pmd_move_must_withdraw(new_ptl, old_ptl, vma)) {
b3084f4d 1763 pgtable_t pgtable;
3592806c
KS
1764 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1765 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
3592806c 1766 }
ab6e3d09
NH
1767 pmd = move_soft_dirty_pmd(pmd);
1768 set_pmd_at(mm, new_addr, new_pmd, pmd);
5d190420 1769 if (force_flush)
7c38f181 1770 flush_pmd_tlb_range(vma, old_addr, old_addr + PMD_SIZE);
eb66ae03
LT
1771 if (new_ptl != old_ptl)
1772 spin_unlock(new_ptl);
bf929152 1773 spin_unlock(old_ptl);
4b471e88 1774 return true;
37a1c49a 1775 }
4b471e88 1776 return false;
37a1c49a
AA
1777}
1778
f123d74a
MG
1779/*
1780 * Returns
1781 * - 0 if PMD could not be locked
f0953a1b 1782 * - 1 if PMD was locked but protections unchanged and TLB flush unnecessary
e346e668 1783 * or if prot_numa but THP migration is not supported
f0953a1b 1784 * - HPAGE_PMD_NR if protections changed and TLB flush necessary
f123d74a 1785 */
4a18419f
NA
1786int change_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
1787 pmd_t *pmd, unsigned long addr, pgprot_t newprot,
1788 unsigned long cp_flags)
cd7548ab
JW
1789{
1790 struct mm_struct *mm = vma->vm_mm;
bf929152 1791 spinlock_t *ptl;
c9fe6656 1792 pmd_t oldpmd, entry;
0a85e51d
KS
1793 bool preserve_write;
1794 int ret;
58705444 1795 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
292924b2
PX
1796 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
1797 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
cd7548ab 1798
4a18419f
NA
1799 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
1800
e346e668
YS
1801 if (prot_numa && !thp_migration_supported())
1802 return 1;
1803
b6ec57f4 1804 ptl = __pmd_trans_huge_lock(pmd, vma);
0a85e51d
KS
1805 if (!ptl)
1806 return 0;
e944fd67 1807
0a85e51d
KS
1808 preserve_write = prot_numa && pmd_write(*pmd);
1809 ret = 1;
e944fd67 1810
84c3fc4e
ZY
1811#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1812 if (is_swap_pmd(*pmd)) {
1813 swp_entry_t entry = pmd_to_swp_entry(*pmd);
6c287605 1814 struct page *page = pfn_swap_entry_to_page(entry);
84c3fc4e
ZY
1815
1816 VM_BUG_ON(!is_pmd_migration_entry(*pmd));
4dd845b5 1817 if (is_writable_migration_entry(entry)) {
84c3fc4e
ZY
1818 pmd_t newpmd;
1819 /*
1820 * A protection check is difficult so
1821 * just be safe and disable write
1822 */
6c287605
DH
1823 if (PageAnon(page))
1824 entry = make_readable_exclusive_migration_entry(swp_offset(entry));
1825 else
1826 entry = make_readable_migration_entry(swp_offset(entry));
84c3fc4e 1827 newpmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1828 if (pmd_swp_soft_dirty(*pmd))
1829 newpmd = pmd_swp_mksoft_dirty(newpmd);
8f34f1ea
PX
1830 if (pmd_swp_uffd_wp(*pmd))
1831 newpmd = pmd_swp_mkuffd_wp(newpmd);
84c3fc4e
ZY
1832 set_pmd_at(mm, addr, pmd, newpmd);
1833 }
1834 goto unlock;
1835 }
1836#endif
1837
a1a3a2fc
HY
1838 if (prot_numa) {
1839 struct page *page;
33024536 1840 bool toptier;
a1a3a2fc
HY
1841 /*
1842 * Avoid trapping faults against the zero page. The read-only
1843 * data is likely to be read-cached on the local CPU and
1844 * local/remote hits to the zero page are not interesting.
1845 */
1846 if (is_huge_zero_pmd(*pmd))
1847 goto unlock;
025c5b24 1848
a1a3a2fc
HY
1849 if (pmd_protnone(*pmd))
1850 goto unlock;
0a85e51d 1851
a1a3a2fc 1852 page = pmd_page(*pmd);
33024536 1853 toptier = node_is_toptier(page_to_nid(page));
a1a3a2fc
HY
1854 /*
1855 * Skip scanning top tier node if normal numa
1856 * balancing is disabled
1857 */
1858 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_NORMAL) &&
33024536 1859 toptier)
a1a3a2fc 1860 goto unlock;
33024536
HY
1861
1862 if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING &&
1863 !toptier)
1864 xchg_page_access_time(page, jiffies_to_msecs(jiffies));
a1a3a2fc 1865 }
ced10803 1866 /*
3e4e28c5 1867 * In case prot_numa, we are under mmap_read_lock(mm). It's critical
ced10803 1868 * to not clear pmd intermittently to avoid race with MADV_DONTNEED
3e4e28c5 1869 * which is also under mmap_read_lock(mm):
ced10803
KS
1870 *
1871 * CPU0: CPU1:
1872 * change_huge_pmd(prot_numa=1)
1873 * pmdp_huge_get_and_clear_notify()
1874 * madvise_dontneed()
1875 * zap_pmd_range()
1876 * pmd_trans_huge(*pmd) == 0 (without ptl)
1877 * // skip the pmd
1878 * set_pmd_at();
1879 * // pmd is re-established
1880 *
1881 * The race makes MADV_DONTNEED miss the huge pmd and don't clear it
1882 * which may break userspace.
1883 *
4f831457 1884 * pmdp_invalidate_ad() is required to make sure we don't miss
ced10803
KS
1885 * dirty/young flags set by hardware.
1886 */
4f831457 1887 oldpmd = pmdp_invalidate_ad(vma, addr, pmd);
ced10803 1888
c9fe6656 1889 entry = pmd_modify(oldpmd, newprot);
0a85e51d
KS
1890 if (preserve_write)
1891 entry = pmd_mk_savedwrite(entry);
292924b2
PX
1892 if (uffd_wp) {
1893 entry = pmd_wrprotect(entry);
1894 entry = pmd_mkuffd_wp(entry);
1895 } else if (uffd_wp_resolve) {
1896 /*
1897 * Leave the write bit to be handled by PF interrupt
1898 * handler, then things like COW could be properly
1899 * handled.
1900 */
1901 entry = pmd_clear_uffd_wp(entry);
1902 }
0a85e51d
KS
1903 ret = HPAGE_PMD_NR;
1904 set_pmd_at(mm, addr, pmd, entry);
4a18419f 1905
c9fe6656
NA
1906 if (huge_pmd_needs_flush(oldpmd, entry))
1907 tlb_flush_pmd_range(tlb, addr, HPAGE_PMD_SIZE);
4a18419f 1908
0a85e51d
KS
1909 BUG_ON(vma_is_anonymous(vma) && !preserve_write && pmd_write(entry));
1910unlock:
1911 spin_unlock(ptl);
025c5b24
NH
1912 return ret;
1913}
1914
1915/*
8f19b0c0 1916 * Returns page table lock pointer if a given pmd maps a thp, NULL otherwise.
025c5b24 1917 *
8f19b0c0
HY
1918 * Note that if it returns page table lock pointer, this routine returns without
1919 * unlocking page table lock. So callers must unlock it.
025c5b24 1920 */
b6ec57f4 1921spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
025c5b24 1922{
b6ec57f4
KS
1923 spinlock_t *ptl;
1924 ptl = pmd_lock(vma->vm_mm, pmd);
84c3fc4e
ZY
1925 if (likely(is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) ||
1926 pmd_devmap(*pmd)))
b6ec57f4
KS
1927 return ptl;
1928 spin_unlock(ptl);
1929 return NULL;
cd7548ab
JW
1930}
1931
a00cc7d9 1932/*
d965e390 1933 * Returns page table lock pointer if a given pud maps a thp, NULL otherwise.
a00cc7d9 1934 *
d965e390
ML
1935 * Note that if it returns page table lock pointer, this routine returns without
1936 * unlocking page table lock. So callers must unlock it.
a00cc7d9
MW
1937 */
1938spinlock_t *__pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma)
1939{
1940 spinlock_t *ptl;
1941
1942 ptl = pud_lock(vma->vm_mm, pud);
1943 if (likely(pud_trans_huge(*pud) || pud_devmap(*pud)))
1944 return ptl;
1945 spin_unlock(ptl);
1946 return NULL;
1947}
1948
1949#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1950int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
1951 pud_t *pud, unsigned long addr)
1952{
a00cc7d9
MW
1953 spinlock_t *ptl;
1954
1955 ptl = __pud_trans_huge_lock(pud, vma);
1956 if (!ptl)
1957 return 0;
74929079 1958
70516b93 1959 pudp_huge_get_and_clear_full(tlb->mm, addr, pud, tlb->fullmm);
a00cc7d9 1960 tlb_remove_pud_tlb_entry(tlb, pud, addr);
2484ca9b 1961 if (vma_is_special_huge(vma)) {
a00cc7d9
MW
1962 spin_unlock(ptl);
1963 /* No zero page support yet */
1964 } else {
1965 /* No support for anonymous PUD pages yet */
1966 BUG();
1967 }
1968 return 1;
1969}
1970
1971static void __split_huge_pud_locked(struct vm_area_struct *vma, pud_t *pud,
1972 unsigned long haddr)
1973{
1974 VM_BUG_ON(haddr & ~HPAGE_PUD_MASK);
1975 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
1976 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PUD_SIZE, vma);
1977 VM_BUG_ON(!pud_trans_huge(*pud) && !pud_devmap(*pud));
1978
ce9311cf 1979 count_vm_event(THP_SPLIT_PUD);
a00cc7d9
MW
1980
1981 pudp_huge_clear_flush_notify(vma, haddr, pud);
1982}
1983
1984void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
1985 unsigned long address)
1986{
1987 spinlock_t *ptl;
ac46d4f3 1988 struct mmu_notifier_range range;
a00cc7d9 1989
7269f999 1990 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 1991 address & HPAGE_PUD_MASK,
ac46d4f3
JG
1992 (address & HPAGE_PUD_MASK) + HPAGE_PUD_SIZE);
1993 mmu_notifier_invalidate_range_start(&range);
1994 ptl = pud_lock(vma->vm_mm, pud);
a00cc7d9
MW
1995 if (unlikely(!pud_trans_huge(*pud) && !pud_devmap(*pud)))
1996 goto out;
ac46d4f3 1997 __split_huge_pud_locked(vma, pud, range.start);
a00cc7d9
MW
1998
1999out:
2000 spin_unlock(ptl);
4645b9fe
JG
2001 /*
2002 * No need to double call mmu_notifier->invalidate_range() callback as
2003 * the above pudp_huge_clear_flush_notify() did already call it.
2004 */
ac46d4f3 2005 mmu_notifier_invalidate_range_only_end(&range);
a00cc7d9
MW
2006}
2007#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
2008
eef1b3ba
KS
2009static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
2010 unsigned long haddr, pmd_t *pmd)
2011{
2012 struct mm_struct *mm = vma->vm_mm;
2013 pgtable_t pgtable;
2014 pmd_t _pmd;
2015 int i;
2016
0f10851e
JG
2017 /*
2018 * Leave pmd empty until pte is filled note that it is fine to delay
2019 * notification until mmu_notifier_invalidate_range_end() as we are
2020 * replacing a zero pmd write protected page with a zero pte write
2021 * protected page.
2022 *
ee65728e 2023 * See Documentation/mm/mmu_notifier.rst
0f10851e
JG
2024 */
2025 pmdp_huge_clear_flush(vma, haddr, pmd);
eef1b3ba
KS
2026
2027 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2028 pmd_populate(mm, &_pmd, pgtable);
2029
2030 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
2031 pte_t *pte, entry;
2032 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
2033 entry = pte_mkspecial(entry);
2034 pte = pte_offset_map(&_pmd, haddr);
2035 VM_BUG_ON(!pte_none(*pte));
2036 set_pte_at(mm, haddr, pte, entry);
2037 pte_unmap(pte);
2038 }
2039 smp_wmb(); /* make pte visible before pmd */
2040 pmd_populate(mm, pmd, pgtable);
eef1b3ba
KS
2041}
2042
2043static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
ba988280 2044 unsigned long haddr, bool freeze)
eef1b3ba
KS
2045{
2046 struct mm_struct *mm = vma->vm_mm;
2047 struct page *page;
2048 pgtable_t pgtable;
423ac9af 2049 pmd_t old_pmd, _pmd;
292924b2 2050 bool young, write, soft_dirty, pmd_migration = false, uffd_wp = false;
0ccf7f16 2051 bool anon_exclusive = false, dirty = false;
2ac015e2 2052 unsigned long addr;
eef1b3ba
KS
2053 int i;
2054
2055 VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
2056 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
2057 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
84c3fc4e
ZY
2058 VM_BUG_ON(!is_pmd_migration_entry(*pmd) && !pmd_trans_huge(*pmd)
2059 && !pmd_devmap(*pmd));
eef1b3ba
KS
2060
2061 count_vm_event(THP_SPLIT_PMD);
2062
d21b9e57 2063 if (!vma_is_anonymous(vma)) {
99fa8a48 2064 old_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd);
953c66c2
AK
2065 /*
2066 * We are going to unmap this huge page. So
2067 * just go ahead and zap it
2068 */
2069 if (arch_needs_pgtable_deposit())
2070 zap_deposited_table(mm, pmd);
2484ca9b 2071 if (vma_is_special_huge(vma))
d21b9e57 2072 return;
99fa8a48
HD
2073 if (unlikely(is_pmd_migration_entry(old_pmd))) {
2074 swp_entry_t entry;
2075
2076 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2077 page = pfn_swap_entry_to_page(entry);
99fa8a48
HD
2078 } else {
2079 page = pmd_page(old_pmd);
2080 if (!PageDirty(page) && pmd_dirty(old_pmd))
2081 set_page_dirty(page);
2082 if (!PageReferenced(page) && pmd_young(old_pmd))
2083 SetPageReferenced(page);
cea86fe2 2084 page_remove_rmap(page, vma, true);
99fa8a48
HD
2085 put_page(page);
2086 }
fadae295 2087 add_mm_counter(mm, mm_counter_file(page), -HPAGE_PMD_NR);
eef1b3ba 2088 return;
99fa8a48
HD
2089 }
2090
3b77e8c8 2091 if (is_huge_zero_pmd(*pmd)) {
4645b9fe
JG
2092 /*
2093 * FIXME: Do we want to invalidate secondary mmu by calling
2094 * mmu_notifier_invalidate_range() see comments below inside
2095 * __split_huge_pmd() ?
2096 *
2097 * We are going from a zero huge page write protected to zero
2098 * small page also write protected so it does not seems useful
2099 * to invalidate secondary mmu at this time.
2100 */
eef1b3ba
KS
2101 return __split_huge_zero_page_pmd(vma, haddr, pmd);
2102 }
2103
423ac9af
AK
2104 /*
2105 * Up to this point the pmd is present and huge and userland has the
2106 * whole access to the hugepage during the split (which happens in
2107 * place). If we overwrite the pmd with the not-huge version pointing
2108 * to the pte here (which of course we could if all CPUs were bug
2109 * free), userland could trigger a small page size TLB miss on the
2110 * small sized TLB while the hugepage TLB entry is still established in
2111 * the huge TLB. Some CPU doesn't like that.
42742d9b
AK
2112 * See http://support.amd.com/TechDocs/41322_10h_Rev_Gd.pdf, Erratum
2113 * 383 on page 105. Intel should be safe but is also warns that it's
423ac9af
AK
2114 * only safe if the permission and cache attributes of the two entries
2115 * loaded in the two TLB is identical (which should be the case here).
2116 * But it is generally safer to never allow small and huge TLB entries
2117 * for the same virtual address to be loaded simultaneously. So instead
2118 * of doing "pmd_populate(); flush_pmd_tlb_range();" we first mark the
2119 * current pmd notpresent (atomically because here the pmd_trans_huge
2120 * must remain set at all times on the pmd until the split is complete
2121 * for this pmd), then we flush the SMP TLB and finally we write the
2122 * non-huge version of the pmd entry with pmd_populate.
2123 */
2124 old_pmd = pmdp_invalidate(vma, haddr, pmd);
2125
423ac9af 2126 pmd_migration = is_pmd_migration_entry(old_pmd);
2e83ee1d 2127 if (unlikely(pmd_migration)) {
84c3fc4e
ZY
2128 swp_entry_t entry;
2129
423ac9af 2130 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2131 page = pfn_swap_entry_to_page(entry);
4dd845b5 2132 write = is_writable_migration_entry(entry);
6c287605
DH
2133 if (PageAnon(page))
2134 anon_exclusive = is_readable_exclusive_migration_entry(entry);
2e346877
PX
2135 young = is_migration_entry_young(entry);
2136 dirty = is_migration_entry_dirty(entry);
2e83ee1d 2137 soft_dirty = pmd_swp_soft_dirty(old_pmd);
f45ec5ff 2138 uffd_wp = pmd_swp_uffd_wp(old_pmd);
2e83ee1d 2139 } else {
423ac9af 2140 page = pmd_page(old_pmd);
0ccf7f16
PX
2141 if (pmd_dirty(old_pmd)) {
2142 dirty = true;
2e83ee1d 2143 SetPageDirty(page);
0ccf7f16 2144 }
2e83ee1d
PX
2145 write = pmd_write(old_pmd);
2146 young = pmd_young(old_pmd);
2147 soft_dirty = pmd_soft_dirty(old_pmd);
292924b2 2148 uffd_wp = pmd_uffd_wp(old_pmd);
6c287605 2149
9d84604b
HD
2150 VM_BUG_ON_PAGE(!page_count(page), page);
2151 page_ref_add(page, HPAGE_PMD_NR - 1);
6c287605
DH
2152
2153 /*
2154 * Without "freeze", we'll simply split the PMD, propagating the
2155 * PageAnonExclusive() flag for each PTE by setting it for
2156 * each subpage -- no need to (temporarily) clear.
2157 *
2158 * With "freeze" we want to replace mapped pages by
2159 * migration entries right away. This is only possible if we
2160 * managed to clear PageAnonExclusive() -- see
2161 * set_pmd_migration_entry().
2162 *
2163 * In case we cannot clear PageAnonExclusive(), split the PMD
2164 * only and let try_to_migrate_one() fail later.
088b8aa5
DH
2165 *
2166 * See page_try_share_anon_rmap(): invalidate PMD first.
6c287605
DH
2167 */
2168 anon_exclusive = PageAnon(page) && PageAnonExclusive(page);
2169 if (freeze && anon_exclusive && page_try_share_anon_rmap(page))
2170 freeze = false;
2e83ee1d 2171 }
eef1b3ba 2172
423ac9af
AK
2173 /*
2174 * Withdraw the table only after we mark the pmd entry invalid.
2175 * This's critical for some architectures (Power).
2176 */
eef1b3ba
KS
2177 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2178 pmd_populate(mm, &_pmd, pgtable);
2179
2ac015e2 2180 for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
eef1b3ba
KS
2181 pte_t entry, *pte;
2182 /*
2183 * Note that NUMA hinting access restrictions are not
2184 * transferred to avoid any possibility of altering
2185 * permissions across VMAs.
2186 */
84c3fc4e 2187 if (freeze || pmd_migration) {
ba988280 2188 swp_entry_t swp_entry;
4dd845b5
AP
2189 if (write)
2190 swp_entry = make_writable_migration_entry(
2191 page_to_pfn(page + i));
6c287605
DH
2192 else if (anon_exclusive)
2193 swp_entry = make_readable_exclusive_migration_entry(
2194 page_to_pfn(page + i));
4dd845b5
AP
2195 else
2196 swp_entry = make_readable_migration_entry(
2197 page_to_pfn(page + i));
2e346877
PX
2198 if (young)
2199 swp_entry = make_migration_entry_young(swp_entry);
2200 if (dirty)
2201 swp_entry = make_migration_entry_dirty(swp_entry);
ba988280 2202 entry = swp_entry_to_pte(swp_entry);
804dd150
AA
2203 if (soft_dirty)
2204 entry = pte_swp_mksoft_dirty(entry);
f45ec5ff
PX
2205 if (uffd_wp)
2206 entry = pte_swp_mkuffd_wp(entry);
ba988280 2207 } else {
6d2329f8 2208 entry = mk_pte(page + i, READ_ONCE(vma->vm_page_prot));
b8d3c4c3 2209 entry = maybe_mkwrite(entry, vma);
6c287605
DH
2210 if (anon_exclusive)
2211 SetPageAnonExclusive(page + i);
ba988280
KS
2212 if (!write)
2213 entry = pte_wrprotect(entry);
2214 if (!young)
2215 entry = pte_mkold(entry);
0ccf7f16
PX
2216 /* NOTE: this may set soft-dirty too on some archs */
2217 if (dirty)
2218 entry = pte_mkdirty(entry);
804dd150
AA
2219 if (soft_dirty)
2220 entry = pte_mksoft_dirty(entry);
292924b2
PX
2221 if (uffd_wp)
2222 entry = pte_mkuffd_wp(entry);
ba988280 2223 }
2ac015e2 2224 pte = pte_offset_map(&_pmd, addr);
eef1b3ba 2225 BUG_ON(!pte_none(*pte));
2ac015e2 2226 set_pte_at(mm, addr, pte, entry);
ec0abae6 2227 if (!pmd_migration)
eef1b3ba 2228 atomic_inc(&page[i]._mapcount);
ec0abae6 2229 pte_unmap(pte);
eef1b3ba
KS
2230 }
2231
ec0abae6
RC
2232 if (!pmd_migration) {
2233 /*
2234 * Set PG_double_map before dropping compound_mapcount to avoid
2235 * false-negative page_mapped().
2236 */
2237 if (compound_mapcount(page) > 1 &&
2238 !TestSetPageDoubleMap(page)) {
eef1b3ba 2239 for (i = 0; i < HPAGE_PMD_NR; i++)
ec0abae6
RC
2240 atomic_inc(&page[i]._mapcount);
2241 }
2242
2243 lock_page_memcg(page);
2244 if (atomic_add_negative(-1, compound_mapcount_ptr(page))) {
2245 /* Last compound_mapcount is gone. */
69473e5d
MS
2246 __mod_lruvec_page_state(page, NR_ANON_THPS,
2247 -HPAGE_PMD_NR);
ec0abae6
RC
2248 if (TestClearPageDoubleMap(page)) {
2249 /* No need in mapcount reference anymore */
2250 for (i = 0; i < HPAGE_PMD_NR; i++)
2251 atomic_dec(&page[i]._mapcount);
2252 }
eef1b3ba 2253 }
ec0abae6 2254 unlock_page_memcg(page);
cea86fe2
HD
2255
2256 /* Above is effectively page_remove_rmap(page, vma, true) */
2257 munlock_vma_page(page, vma, true);
eef1b3ba
KS
2258 }
2259
2260 smp_wmb(); /* make pte visible before pmd */
2261 pmd_populate(mm, pmd, pgtable);
e9b61f19
KS
2262
2263 if (freeze) {
2ac015e2 2264 for (i = 0; i < HPAGE_PMD_NR; i++) {
cea86fe2 2265 page_remove_rmap(page + i, vma, false);
e9b61f19
KS
2266 put_page(page + i);
2267 }
2268 }
eef1b3ba
KS
2269}
2270
2271void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
af28a988 2272 unsigned long address, bool freeze, struct folio *folio)
eef1b3ba
KS
2273{
2274 spinlock_t *ptl;
ac46d4f3 2275 struct mmu_notifier_range range;
eef1b3ba 2276
7269f999 2277 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 2278 address & HPAGE_PMD_MASK,
ac46d4f3
JG
2279 (address & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE);
2280 mmu_notifier_invalidate_range_start(&range);
2281 ptl = pmd_lock(vma->vm_mm, pmd);
33f4751e
NH
2282
2283 /*
af28a988
MWO
2284 * If caller asks to setup a migration entry, we need a folio to check
2285 * pmd against. Otherwise we can end up replacing wrong folio.
33f4751e 2286 */
af28a988 2287 VM_BUG_ON(freeze && !folio);
83a8441f 2288 VM_WARN_ON_ONCE(folio && !folio_test_locked(folio));
33f4751e 2289
7f760917 2290 if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd) ||
83a8441f 2291 is_pmd_migration_entry(*pmd)) {
cea33328
ML
2292 /*
2293 * It's safe to call pmd_page when folio is set because it's
2294 * guaranteed that pmd is present.
2295 */
83a8441f
MWO
2296 if (folio && folio != page_folio(pmd_page(*pmd)))
2297 goto out;
7f760917 2298 __split_huge_pmd_locked(vma, pmd, range.start, freeze);
83a8441f 2299 }
7f760917 2300
e90309c9 2301out:
eef1b3ba 2302 spin_unlock(ptl);
4645b9fe
JG
2303 /*
2304 * No need to double call mmu_notifier->invalidate_range() callback.
2305 * They are 3 cases to consider inside __split_huge_pmd_locked():
2306 * 1) pmdp_huge_clear_flush_notify() call invalidate_range() obvious
2307 * 2) __split_huge_zero_page_pmd() read only zero page and any write
2308 * fault will trigger a flush_notify before pointing to a new page
2309 * (it is fine if the secondary mmu keeps pointing to the old zero
2310 * page in the meantime)
2311 * 3) Split a huge pmd into pte pointing to the same page. No need
2312 * to invalidate secondary tlb entry they are all still valid.
2313 * any further changes to individual pte will notify. So no need
2314 * to call mmu_notifier->invalidate_range()
2315 */
ac46d4f3 2316 mmu_notifier_invalidate_range_only_end(&range);
eef1b3ba
KS
2317}
2318
fec89c10 2319void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
af28a988 2320 bool freeze, struct folio *folio)
94fcc585 2321{
50722804 2322 pmd_t *pmd = mm_find_pmd(vma->vm_mm, address);
94fcc585 2323
50722804 2324 if (!pmd)
f72e7dcd
HD
2325 return;
2326
af28a988 2327 __split_huge_pmd(vma, pmd, address, freeze, folio);
94fcc585
AA
2328}
2329
71f9e58e
ML
2330static inline void split_huge_pmd_if_needed(struct vm_area_struct *vma, unsigned long address)
2331{
2332 /*
2333 * If the new address isn't hpage aligned and it could previously
2334 * contain an hugepage: check if we need to split an huge pmd.
2335 */
2336 if (!IS_ALIGNED(address, HPAGE_PMD_SIZE) &&
2337 range_in_vma(vma, ALIGN_DOWN(address, HPAGE_PMD_SIZE),
2338 ALIGN(address, HPAGE_PMD_SIZE)))
2339 split_huge_pmd_address(vma, address, false, NULL);
2340}
2341
e1b9996b 2342void vma_adjust_trans_huge(struct vm_area_struct *vma,
94fcc585
AA
2343 unsigned long start,
2344 unsigned long end,
2345 long adjust_next)
2346{
71f9e58e
ML
2347 /* Check if we need to split start first. */
2348 split_huge_pmd_if_needed(vma, start);
94fcc585 2349
71f9e58e
ML
2350 /* Check if we need to split end next. */
2351 split_huge_pmd_if_needed(vma, end);
94fcc585
AA
2352
2353 /*
68540502 2354 * If we're also updating the next vma vm_start,
71f9e58e 2355 * check if we need to split it.
94fcc585
AA
2356 */
2357 if (adjust_next > 0) {
68540502 2358 struct vm_area_struct *next = find_vma(vma->vm_mm, vma->vm_end);
94fcc585 2359 unsigned long nstart = next->vm_start;
f9d86a60 2360 nstart += adjust_next;
71f9e58e 2361 split_huge_pmd_if_needed(next, nstart);
94fcc585
AA
2362 }
2363}
e9b61f19 2364
684555aa 2365static void unmap_folio(struct folio *folio)
e9b61f19 2366{
a98a2f0c
AP
2367 enum ttu_flags ttu_flags = TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD |
2368 TTU_SYNC;
e9b61f19 2369
684555aa 2370 VM_BUG_ON_FOLIO(!folio_test_large(folio), folio);
e9b61f19 2371
a98a2f0c
AP
2372 /*
2373 * Anon pages need migration entries to preserve them, but file
2374 * pages can simply be left unmapped, then faulted back on demand.
2375 * If that is ever changed (perhaps for mlock), update remap_page().
2376 */
4b8554c5
MWO
2377 if (folio_test_anon(folio))
2378 try_to_migrate(folio, ttu_flags);
a98a2f0c 2379 else
869f7ee6 2380 try_to_unmap(folio, ttu_flags | TTU_IGNORE_MLOCK);
e9b61f19
KS
2381}
2382
4eecb8b9 2383static void remap_page(struct folio *folio, unsigned long nr)
e9b61f19 2384{
4eecb8b9 2385 int i = 0;
ab02c252 2386
684555aa 2387 /* If unmap_folio() uses try_to_migrate() on file, remove this check */
4eecb8b9 2388 if (!folio_test_anon(folio))
ab02c252 2389 return;
4eecb8b9
MWO
2390 for (;;) {
2391 remove_migration_ptes(folio, folio, true);
2392 i += folio_nr_pages(folio);
2393 if (i >= nr)
2394 break;
2395 folio = folio_next(folio);
ace71a19 2396 }
e9b61f19
KS
2397}
2398
94866635 2399static void lru_add_page_tail(struct page *head, struct page *tail,
88dcb9a3
AS
2400 struct lruvec *lruvec, struct list_head *list)
2401{
94866635
AS
2402 VM_BUG_ON_PAGE(!PageHead(head), head);
2403 VM_BUG_ON_PAGE(PageCompound(tail), head);
2404 VM_BUG_ON_PAGE(PageLRU(tail), head);
6168d0da 2405 lockdep_assert_held(&lruvec->lru_lock);
88dcb9a3 2406
6dbb5741 2407 if (list) {
88dcb9a3 2408 /* page reclaim is reclaiming a huge page */
6dbb5741 2409 VM_WARN_ON(PageLRU(head));
94866635
AS
2410 get_page(tail);
2411 list_add_tail(&tail->lru, list);
88dcb9a3 2412 } else {
6dbb5741
AS
2413 /* head is still on lru (and we have it frozen) */
2414 VM_WARN_ON(!PageLRU(head));
07ca7606
HD
2415 if (PageUnevictable(tail))
2416 tail->mlock_count = 0;
2417 else
2418 list_add_tail(&tail->lru, &head->lru);
6dbb5741 2419 SetPageLRU(tail);
88dcb9a3
AS
2420 }
2421}
2422
8df651c7 2423static void __split_huge_page_tail(struct page *head, int tail,
e9b61f19
KS
2424 struct lruvec *lruvec, struct list_head *list)
2425{
e9b61f19
KS
2426 struct page *page_tail = head + tail;
2427
8df651c7 2428 VM_BUG_ON_PAGE(atomic_read(&page_tail->_mapcount) != -1, page_tail);
e9b61f19
KS
2429
2430 /*
605ca5ed
KK
2431 * Clone page flags before unfreezing refcount.
2432 *
2433 * After successful get_page_unless_zero() might follow flags change,
8958b249 2434 * for example lock_page() which set PG_waiters.
6c287605
DH
2435 *
2436 * Note that for mapped sub-pages of an anonymous THP,
684555aa 2437 * PG_anon_exclusive has been cleared in unmap_folio() and is stored in
6c287605
DH
2438 * the migration entry instead from where remap_page() will restore it.
2439 * We can still have PG_anon_exclusive set on effectively unmapped and
2440 * unreferenced sub-pages of an anonymous THP: we can simply drop
2441 * PG_anon_exclusive (-> PG_mappedtodisk) for these here.
e9b61f19 2442 */
e9b61f19
KS
2443 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
2444 page_tail->flags |= (head->flags &
2445 ((1L << PG_referenced) |
2446 (1L << PG_swapbacked) |
38d8b4e6 2447 (1L << PG_swapcache) |
e9b61f19
KS
2448 (1L << PG_mlocked) |
2449 (1L << PG_uptodate) |
2450 (1L << PG_active) |
1899ad18 2451 (1L << PG_workingset) |
e9b61f19 2452 (1L << PG_locked) |
b8d3c4c3 2453 (1L << PG_unevictable) |
72e6afa0
CM
2454#ifdef CONFIG_64BIT
2455 (1L << PG_arch_2) |
2456#endif
ec1c86b2
YZ
2457 (1L << PG_dirty) |
2458 LRU_GEN_MASK | LRU_REFS_MASK));
e9b61f19 2459
173d9d9f
HD
2460 /* ->mapping in first tail page is compound_mapcount */
2461 VM_BUG_ON_PAGE(tail > 2 && page_tail->mapping != TAIL_MAPPING,
2462 page_tail);
2463 page_tail->mapping = head->mapping;
2464 page_tail->index = head->index + tail;
71e2d666
MG
2465
2466 /*
2467 * page->private should not be set in tail pages with the exception
2468 * of swap cache pages that store the swp_entry_t in tail pages.
2469 * Fix up and warn once if private is unexpectedly set.
2470 */
2471 if (!folio_test_swapcache(page_folio(head))) {
2472 VM_WARN_ON_ONCE_PAGE(page_tail->private != 0, head);
2473 page_tail->private = 0;
2474 }
173d9d9f 2475
605ca5ed 2476 /* Page flags must be visible before we make the page non-compound. */
e9b61f19
KS
2477 smp_wmb();
2478
605ca5ed
KK
2479 /*
2480 * Clear PageTail before unfreezing page refcount.
2481 *
2482 * After successful get_page_unless_zero() might follow put_page()
2483 * which needs correct compound_head().
2484 */
e9b61f19
KS
2485 clear_compound_head(page_tail);
2486
605ca5ed
KK
2487 /* Finally unfreeze refcount. Additional reference from page cache. */
2488 page_ref_unfreeze(page_tail, 1 + (!PageAnon(head) ||
2489 PageSwapCache(head)));
2490
e9b61f19
KS
2491 if (page_is_young(head))
2492 set_page_young(page_tail);
2493 if (page_is_idle(head))
2494 set_page_idle(page_tail);
2495
e9b61f19 2496 page_cpupid_xchg_last(page_tail, page_cpupid_last(head));
94723aaf
MH
2497
2498 /*
2499 * always add to the tail because some iterators expect new
2500 * pages to show after the currently processed elements - e.g.
2501 * migrate_pages
2502 */
e9b61f19 2503 lru_add_page_tail(head, page_tail, lruvec, list);
e9b61f19
KS
2504}
2505
baa355fd 2506static void __split_huge_page(struct page *page, struct list_head *list,
b6769834 2507 pgoff_t end)
e9b61f19 2508{
e809c3fe
MWO
2509 struct folio *folio = page_folio(page);
2510 struct page *head = &folio->page;
e9b61f19 2511 struct lruvec *lruvec;
4101196b
MWO
2512 struct address_space *swap_cache = NULL;
2513 unsigned long offset = 0;
8cce5475 2514 unsigned int nr = thp_nr_pages(head);
8df651c7 2515 int i;
e9b61f19 2516
e9b61f19 2517 /* complete memcg works before add pages to LRU */
be6c8982 2518 split_page_memcg(head, nr);
e9b61f19 2519
4101196b
MWO
2520 if (PageAnon(head) && PageSwapCache(head)) {
2521 swp_entry_t entry = { .val = page_private(head) };
2522
2523 offset = swp_offset(entry);
2524 swap_cache = swap_address_space(entry);
2525 xa_lock(&swap_cache->i_pages);
2526 }
2527
f0953a1b 2528 /* lock lru list/PageCompound, ref frozen by page_ref_freeze */
e809c3fe 2529 lruvec = folio_lruvec_lock(folio);
b6769834 2530
eac96c3e
YS
2531 ClearPageHasHWPoisoned(head);
2532
8cce5475 2533 for (i = nr - 1; i >= 1; i--) {
8df651c7 2534 __split_huge_page_tail(head, i, lruvec, list);
d144bf62 2535 /* Some pages can be beyond EOF: drop them from page cache */
baa355fd 2536 if (head[i].index >= end) {
fb5c2029
MWO
2537 struct folio *tail = page_folio(head + i);
2538
d144bf62 2539 if (shmem_mapping(head->mapping))
800d8c63 2540 shmem_uncharge(head->mapping->host, 1);
fb5c2029
MWO
2541 else if (folio_test_clear_dirty(tail))
2542 folio_account_cleaned(tail,
2543 inode_to_wb(folio->mapping->host));
2544 __filemap_remove_folio(tail, NULL);
2545 folio_put(tail);
4101196b
MWO
2546 } else if (!PageAnon(page)) {
2547 __xa_store(&head->mapping->i_pages, head[i].index,
2548 head + i, 0);
2549 } else if (swap_cache) {
2550 __xa_store(&swap_cache->i_pages, offset + i,
2551 head + i, 0);
baa355fd
KS
2552 }
2553 }
e9b61f19
KS
2554
2555 ClearPageCompound(head);
6168d0da 2556 unlock_page_lruvec(lruvec);
b6769834 2557 /* Caller disabled irqs, so they are still disabled here */
f7da677b 2558
8cce5475 2559 split_page_owner(head, nr);
f7da677b 2560
baa355fd
KS
2561 /* See comment in __split_huge_page_tail() */
2562 if (PageAnon(head)) {
aa5dc07f 2563 /* Additional pin to swap cache */
4101196b 2564 if (PageSwapCache(head)) {
38d8b4e6 2565 page_ref_add(head, 2);
4101196b
MWO
2566 xa_unlock(&swap_cache->i_pages);
2567 } else {
38d8b4e6 2568 page_ref_inc(head);
4101196b 2569 }
baa355fd 2570 } else {
aa5dc07f 2571 /* Additional pin to page cache */
baa355fd 2572 page_ref_add(head, 2);
b93b0163 2573 xa_unlock(&head->mapping->i_pages);
baa355fd 2574 }
b6769834 2575 local_irq_enable();
e9b61f19 2576
4eecb8b9 2577 remap_page(folio, nr);
e9b61f19 2578
c4f9c701
HY
2579 if (PageSwapCache(head)) {
2580 swp_entry_t entry = { .val = page_private(head) };
2581
2582 split_swap_cluster(entry);
2583 }
2584
8cce5475 2585 for (i = 0; i < nr; i++) {
e9b61f19
KS
2586 struct page *subpage = head + i;
2587 if (subpage == page)
2588 continue;
2589 unlock_page(subpage);
2590
2591 /*
2592 * Subpages may be freed if there wasn't any mapping
2593 * like if add_to_swap() is running on a lru page that
2594 * had its mapping zapped. And freeing these pages
2595 * requires taking the lru_lock so we do the put_page
2596 * of the tail pages after the split is complete.
2597 */
0b175468 2598 free_page_and_swap_cache(subpage);
e9b61f19
KS
2599 }
2600}
2601
b8f593cd 2602/* Racy check whether the huge page can be split */
d4b4084a 2603bool can_split_folio(struct folio *folio, int *pextra_pins)
b8f593cd
HY
2604{
2605 int extra_pins;
2606
aa5dc07f 2607 /* Additional pins from page cache */
d4b4084a
MWO
2608 if (folio_test_anon(folio))
2609 extra_pins = folio_test_swapcache(folio) ?
2610 folio_nr_pages(folio) : 0;
b8f593cd 2611 else
d4b4084a 2612 extra_pins = folio_nr_pages(folio);
b8f593cd
HY
2613 if (pextra_pins)
2614 *pextra_pins = extra_pins;
d4b4084a 2615 return folio_mapcount(folio) == folio_ref_count(folio) - extra_pins - 1;
b8f593cd
HY
2616}
2617
e9b61f19
KS
2618/*
2619 * This function splits huge page into normal pages. @page can point to any
2620 * subpage of huge page to split. Split doesn't change the position of @page.
2621 *
2622 * Only caller must hold pin on the @page, otherwise split fails with -EBUSY.
2623 * The huge page must be locked.
2624 *
2625 * If @list is null, tail pages will be added to LRU list, otherwise, to @list.
2626 *
2627 * Both head page and tail pages will inherit mapping, flags, and so on from
2628 * the hugepage.
2629 *
2630 * GUP pin and PG_locked transferred to @page. Rest subpages can be freed if
2631 * they are not mapped.
2632 *
2633 * Returns 0 if the hugepage is split successfully.
2634 * Returns -EBUSY if the page is pinned or if anon_vma disappeared from under
2635 * us.
2636 */
2637int split_huge_page_to_list(struct page *page, struct list_head *list)
2638{
4eecb8b9 2639 struct folio *folio = page_folio(page);
3e9a13da
MWO
2640 struct deferred_split *ds_queue = get_deferred_split_queue(&folio->page);
2641 XA_STATE(xas, &folio->mapping->i_pages, folio->index);
baa355fd
KS
2642 struct anon_vma *anon_vma = NULL;
2643 struct address_space *mapping = NULL;
504e070d 2644 int extra_pins, ret;
006d3ff2 2645 pgoff_t end;
478d134e 2646 bool is_hzp;
e9b61f19 2647
3e9a13da
MWO
2648 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
2649 VM_BUG_ON_FOLIO(!folio_test_large(folio), folio);
e9b61f19 2650
3e9a13da
MWO
2651 is_hzp = is_huge_zero_page(&folio->page);
2652 VM_WARN_ON_ONCE_FOLIO(is_hzp, folio);
478d134e
XY
2653 if (is_hzp)
2654 return -EBUSY;
2655
3e9a13da 2656 if (folio_test_writeback(folio))
59807685
HY
2657 return -EBUSY;
2658
3e9a13da 2659 if (folio_test_anon(folio)) {
baa355fd 2660 /*
c1e8d7c6 2661 * The caller does not necessarily hold an mmap_lock that would
baa355fd
KS
2662 * prevent the anon_vma disappearing so we first we take a
2663 * reference to it and then lock the anon_vma for write. This
2f031c6f 2664 * is similar to folio_lock_anon_vma_read except the write lock
baa355fd
KS
2665 * is taken to serialise against parallel split or collapse
2666 * operations.
2667 */
29eea9b5 2668 anon_vma = folio_get_anon_vma(folio);
baa355fd
KS
2669 if (!anon_vma) {
2670 ret = -EBUSY;
2671 goto out;
2672 }
006d3ff2 2673 end = -1;
baa355fd
KS
2674 mapping = NULL;
2675 anon_vma_lock_write(anon_vma);
2676 } else {
6a3edd29
YF
2677 gfp_t gfp;
2678
3e9a13da 2679 mapping = folio->mapping;
baa355fd
KS
2680
2681 /* Truncated ? */
2682 if (!mapping) {
2683 ret = -EBUSY;
2684 goto out;
2685 }
2686
6a3edd29
YF
2687 gfp = current_gfp_context(mapping_gfp_mask(mapping) &
2688 GFP_RECLAIM_MASK);
2689
2690 if (folio_test_private(folio) &&
2691 !filemap_release_folio(folio, gfp)) {
2692 ret = -EBUSY;
2693 goto out;
2694 }
2695
3e9a13da 2696 xas_split_alloc(&xas, folio, folio_order(folio), gfp);
6b24ca4a
MWO
2697 if (xas_error(&xas)) {
2698 ret = xas_error(&xas);
2699 goto out;
2700 }
2701
baa355fd
KS
2702 anon_vma = NULL;
2703 i_mmap_lock_read(mapping);
006d3ff2
HD
2704
2705 /*
2706 *__split_huge_page() may need to trim off pages beyond EOF:
2707 * but on 32-bit, i_size_read() takes an irq-unsafe seqlock,
2708 * which cannot be nested inside the page tree lock. So note
2709 * end now: i_size itself may be changed at any moment, but
3e9a13da 2710 * folio lock is good enough to serialize the trimming.
006d3ff2
HD
2711 */
2712 end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
d144bf62
HD
2713 if (shmem_mapping(mapping))
2714 end = shmem_fallocend(mapping->host, end);
e9b61f19 2715 }
e9b61f19
KS
2716
2717 /*
684555aa 2718 * Racy check if we can split the page, before unmap_folio() will
e9b61f19
KS
2719 * split PMDs
2720 */
d4b4084a 2721 if (!can_split_folio(folio, &extra_pins)) {
e9b61f19
KS
2722 ret = -EBUSY;
2723 goto out_unlock;
2724 }
2725
684555aa 2726 unmap_folio(folio);
e9b61f19 2727
b6769834
AS
2728 /* block interrupt reentry in xa_lock and spinlock */
2729 local_irq_disable();
baa355fd 2730 if (mapping) {
baa355fd 2731 /*
3e9a13da
MWO
2732 * Check if the folio is present in page cache.
2733 * We assume all tail are present too, if folio is there.
baa355fd 2734 */
6b24ca4a
MWO
2735 xas_lock(&xas);
2736 xas_reset(&xas);
3e9a13da 2737 if (xas_load(&xas) != folio)
baa355fd
KS
2738 goto fail;
2739 }
2740
0139aa7b 2741 /* Prevent deferred_split_scan() touching ->_refcount */
364c1eeb 2742 spin_lock(&ds_queue->split_queue_lock);
3e9a13da
MWO
2743 if (folio_ref_freeze(folio, 1 + extra_pins)) {
2744 if (!list_empty(page_deferred_list(&folio->page))) {
364c1eeb 2745 ds_queue->split_queue_len--;
3e9a13da 2746 list_del(page_deferred_list(&folio->page));
9a982250 2747 }
afb97172 2748 spin_unlock(&ds_queue->split_queue_lock);
06d3eff6 2749 if (mapping) {
3e9a13da 2750 int nr = folio_nr_pages(folio);
bf9ecead 2751
3e9a13da
MWO
2752 xas_split(&xas, folio, folio_order(folio));
2753 if (folio_test_swapbacked(folio)) {
2754 __lruvec_stat_mod_folio(folio, NR_SHMEM_THPS,
57b2847d 2755 -nr);
1ca7554d 2756 } else {
3e9a13da 2757 __lruvec_stat_mod_folio(folio, NR_FILE_THPS,
bf9ecead 2758 -nr);
1ca7554d
MS
2759 filemap_nr_thps_dec(mapping);
2760 }
06d3eff6
KS
2761 }
2762
b6769834 2763 __split_huge_page(page, list, end);
c4f9c701 2764 ret = 0;
e9b61f19 2765 } else {
364c1eeb 2766 spin_unlock(&ds_queue->split_queue_lock);
504e070d
YS
2767fail:
2768 if (mapping)
6b24ca4a 2769 xas_unlock(&xas);
b6769834 2770 local_irq_enable();
4eecb8b9 2771 remap_page(folio, folio_nr_pages(folio));
e9b61f19
KS
2772 ret = -EBUSY;
2773 }
2774
2775out_unlock:
baa355fd
KS
2776 if (anon_vma) {
2777 anon_vma_unlock_write(anon_vma);
2778 put_anon_vma(anon_vma);
2779 }
2780 if (mapping)
2781 i_mmap_unlock_read(mapping);
e9b61f19 2782out:
69a37a8b 2783 xas_destroy(&xas);
e9b61f19
KS
2784 count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
2785 return ret;
2786}
9a982250
KS
2787
2788void free_transhuge_page(struct page *page)
2789{
87eaceb3 2790 struct deferred_split *ds_queue = get_deferred_split_queue(page);
9a982250
KS
2791 unsigned long flags;
2792
364c1eeb 2793 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2794 if (!list_empty(page_deferred_list(page))) {
364c1eeb 2795 ds_queue->split_queue_len--;
9a982250
KS
2796 list_del(page_deferred_list(page));
2797 }
364c1eeb 2798 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2799 free_compound_page(page);
2800}
2801
2802void deferred_split_huge_page(struct page *page)
2803{
87eaceb3
YS
2804 struct deferred_split *ds_queue = get_deferred_split_queue(page);
2805#ifdef CONFIG_MEMCG
bcfe06bf 2806 struct mem_cgroup *memcg = page_memcg(compound_head(page));
87eaceb3 2807#endif
9a982250
KS
2808 unsigned long flags;
2809
2810 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
2811
87eaceb3
YS
2812 /*
2813 * The try_to_unmap() in page reclaim path might reach here too,
2814 * this may cause a race condition to corrupt deferred split queue.
2815 * And, if page reclaim is already handling the same page, it is
2816 * unnecessary to handle it again in shrinker.
2817 *
2818 * Check PageSwapCache to determine if the page is being
2819 * handled by page reclaim since THP swap would add the page into
2820 * swap cache before calling try_to_unmap().
2821 */
2822 if (PageSwapCache(page))
2823 return;
2824
364c1eeb 2825 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2826 if (list_empty(page_deferred_list(page))) {
f9719a03 2827 count_vm_event(THP_DEFERRED_SPLIT_PAGE);
364c1eeb
YS
2828 list_add_tail(page_deferred_list(page), &ds_queue->split_queue);
2829 ds_queue->split_queue_len++;
87eaceb3
YS
2830#ifdef CONFIG_MEMCG
2831 if (memcg)
2bfd3637
YS
2832 set_shrinker_bit(memcg, page_to_nid(page),
2833 deferred_split_shrinker.id);
87eaceb3 2834#endif
9a982250 2835 }
364c1eeb 2836 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2837}
2838
2839static unsigned long deferred_split_count(struct shrinker *shrink,
2840 struct shrink_control *sc)
2841{
a3d0a918 2842 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2843 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
87eaceb3
YS
2844
2845#ifdef CONFIG_MEMCG
2846 if (sc->memcg)
2847 ds_queue = &sc->memcg->deferred_split_queue;
2848#endif
364c1eeb 2849 return READ_ONCE(ds_queue->split_queue_len);
9a982250
KS
2850}
2851
2852static unsigned long deferred_split_scan(struct shrinker *shrink,
2853 struct shrink_control *sc)
2854{
a3d0a918 2855 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2856 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
9a982250
KS
2857 unsigned long flags;
2858 LIST_HEAD(list), *pos, *next;
2859 struct page *page;
2860 int split = 0;
2861
87eaceb3
YS
2862#ifdef CONFIG_MEMCG
2863 if (sc->memcg)
2864 ds_queue = &sc->memcg->deferred_split_queue;
2865#endif
2866
364c1eeb 2867 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2868 /* Take pin on all head pages to avoid freeing them under us */
364c1eeb 2869 list_for_each_safe(pos, next, &ds_queue->split_queue) {
dfe5c51c 2870 page = list_entry((void *)pos, struct page, deferred_list);
9a982250 2871 page = compound_head(page);
e3ae1953
KS
2872 if (get_page_unless_zero(page)) {
2873 list_move(page_deferred_list(page), &list);
2874 } else {
2875 /* We lost race with put_compound_page() */
9a982250 2876 list_del_init(page_deferred_list(page));
364c1eeb 2877 ds_queue->split_queue_len--;
9a982250 2878 }
e3ae1953
KS
2879 if (!--sc->nr_to_scan)
2880 break;
9a982250 2881 }
364c1eeb 2882 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2883
2884 list_for_each_safe(pos, next, &list) {
dfe5c51c 2885 page = list_entry((void *)pos, struct page, deferred_list);
fa41b900
KS
2886 if (!trylock_page(page))
2887 goto next;
9a982250
KS
2888 /* split_huge_page() removes page from list on success */
2889 if (!split_huge_page(page))
2890 split++;
2891 unlock_page(page);
fa41b900 2892next:
9a982250
KS
2893 put_page(page);
2894 }
2895
364c1eeb
YS
2896 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
2897 list_splice_tail(&list, &ds_queue->split_queue);
2898 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250 2899
cb8d68ec
KS
2900 /*
2901 * Stop shrinker if we didn't split any page, but the queue is empty.
2902 * This can happen if pages were freed under us.
2903 */
364c1eeb 2904 if (!split && list_empty(&ds_queue->split_queue))
cb8d68ec
KS
2905 return SHRINK_STOP;
2906 return split;
9a982250
KS
2907}
2908
2909static struct shrinker deferred_split_shrinker = {
2910 .count_objects = deferred_split_count,
2911 .scan_objects = deferred_split_scan,
2912 .seeks = DEFAULT_SEEKS,
87eaceb3
YS
2913 .flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE |
2914 SHRINKER_NONSLAB,
9a982250 2915};
49071d43
KS
2916
2917#ifdef CONFIG_DEBUG_FS
fa6c0231 2918static void split_huge_pages_all(void)
49071d43
KS
2919{
2920 struct zone *zone;
2921 struct page *page;
2922 unsigned long pfn, max_zone_pfn;
2923 unsigned long total = 0, split = 0;
2924
fa6c0231 2925 pr_debug("Split all THPs\n");
a17206da
ML
2926 for_each_zone(zone) {
2927 if (!managed_zone(zone))
2928 continue;
49071d43
KS
2929 max_zone_pfn = zone_end_pfn(zone);
2930 for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
a17206da 2931 int nr_pages;
49071d43 2932
2b7aa91b
NH
2933 page = pfn_to_online_page(pfn);
2934 if (!page || !get_page_unless_zero(page))
49071d43
KS
2935 continue;
2936
2937 if (zone != page_zone(page))
2938 goto next;
2939
baa355fd 2940 if (!PageHead(page) || PageHuge(page) || !PageLRU(page))
49071d43
KS
2941 goto next;
2942
2943 total++;
2944 lock_page(page);
a17206da 2945 nr_pages = thp_nr_pages(page);
49071d43
KS
2946 if (!split_huge_page(page))
2947 split++;
a17206da 2948 pfn += nr_pages - 1;
49071d43
KS
2949 unlock_page(page);
2950next:
2951 put_page(page);
fa6c0231 2952 cond_resched();
49071d43
KS
2953 }
2954 }
2955
fa6c0231
ZY
2956 pr_debug("%lu of %lu THP split\n", split, total);
2957}
49071d43 2958
fa6c0231
ZY
2959static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
2960{
2961 return vma_is_special_huge(vma) || (vma->vm_flags & VM_IO) ||
2962 is_vm_hugetlb_page(vma);
2963}
2964
2965static int split_huge_pages_pid(int pid, unsigned long vaddr_start,
2966 unsigned long vaddr_end)
2967{
2968 int ret = 0;
2969 struct task_struct *task;
2970 struct mm_struct *mm;
2971 unsigned long total = 0, split = 0;
2972 unsigned long addr;
2973
2974 vaddr_start &= PAGE_MASK;
2975 vaddr_end &= PAGE_MASK;
2976
2977 /* Find the task_struct from pid */
2978 rcu_read_lock();
2979 task = find_task_by_vpid(pid);
2980 if (!task) {
2981 rcu_read_unlock();
2982 ret = -ESRCH;
2983 goto out;
2984 }
2985 get_task_struct(task);
2986 rcu_read_unlock();
2987
2988 /* Find the mm_struct */
2989 mm = get_task_mm(task);
2990 put_task_struct(task);
2991
2992 if (!mm) {
2993 ret = -EINVAL;
2994 goto out;
2995 }
2996
2997 pr_debug("Split huge pages in pid: %d, vaddr: [0x%lx - 0x%lx]\n",
2998 pid, vaddr_start, vaddr_end);
2999
3000 mmap_read_lock(mm);
3001 /*
3002 * always increase addr by PAGE_SIZE, since we could have a PTE page
3003 * table filled with PTE-mapped THPs, each of which is distinct.
3004 */
3005 for (addr = vaddr_start; addr < vaddr_end; addr += PAGE_SIZE) {
74ba2b38 3006 struct vm_area_struct *vma = vma_lookup(mm, addr);
fa6c0231
ZY
3007 struct page *page;
3008
74ba2b38 3009 if (!vma)
fa6c0231
ZY
3010 break;
3011
3012 /* skip special VMA and hugetlb VMA */
3013 if (vma_not_suitable_for_thp_split(vma)) {
3014 addr = vma->vm_end;
3015 continue;
3016 }
3017
3018 /* FOLL_DUMP to ignore special (like zero) pages */
87d2762e 3019 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
fa6c0231 3020
f7091ed6 3021 if (IS_ERR_OR_NULL(page))
fa6c0231
ZY
3022 continue;
3023
3024 if (!is_transparent_hugepage(page))
3025 goto next;
3026
3027 total++;
d4b4084a 3028 if (!can_split_folio(page_folio(page), NULL))
fa6c0231
ZY
3029 goto next;
3030
3031 if (!trylock_page(page))
3032 goto next;
3033
3034 if (!split_huge_page(page))
3035 split++;
3036
3037 unlock_page(page);
3038next:
3039 put_page(page);
3040 cond_resched();
3041 }
3042 mmap_read_unlock(mm);
3043 mmput(mm);
3044
3045 pr_debug("%lu of %lu THP split\n", split, total);
3046
3047out:
3048 return ret;
49071d43 3049}
fa6c0231 3050
fbe37501
ZY
3051static int split_huge_pages_in_file(const char *file_path, pgoff_t off_start,
3052 pgoff_t off_end)
3053{
3054 struct filename *file;
3055 struct file *candidate;
3056 struct address_space *mapping;
3057 int ret = -EINVAL;
3058 pgoff_t index;
3059 int nr_pages = 1;
3060 unsigned long total = 0, split = 0;
3061
3062 file = getname_kernel(file_path);
3063 if (IS_ERR(file))
3064 return ret;
3065
3066 candidate = file_open_name(file, O_RDONLY, 0);
3067 if (IS_ERR(candidate))
3068 goto out;
3069
3070 pr_debug("split file-backed THPs in file: %s, page offset: [0x%lx - 0x%lx]\n",
3071 file_path, off_start, off_end);
3072
3073 mapping = candidate->f_mapping;
3074
3075 for (index = off_start; index < off_end; index += nr_pages) {
3076 struct page *fpage = pagecache_get_page(mapping, index,
3077 FGP_ENTRY | FGP_HEAD, 0);
3078
3079 nr_pages = 1;
3080 if (xa_is_value(fpage) || !fpage)
3081 continue;
3082
3083 if (!is_transparent_hugepage(fpage))
3084 goto next;
3085
3086 total++;
3087 nr_pages = thp_nr_pages(fpage);
3088
3089 if (!trylock_page(fpage))
3090 goto next;
3091
3092 if (!split_huge_page(fpage))
3093 split++;
3094
3095 unlock_page(fpage);
3096next:
3097 put_page(fpage);
3098 cond_resched();
3099 }
3100
3101 filp_close(candidate, NULL);
3102 ret = 0;
3103
3104 pr_debug("%lu of %lu file-backed THP split\n", split, total);
3105out:
3106 putname(file);
3107 return ret;
3108}
3109
fa6c0231
ZY
3110#define MAX_INPUT_BUF_SZ 255
3111
3112static ssize_t split_huge_pages_write(struct file *file, const char __user *buf,
3113 size_t count, loff_t *ppops)
3114{
3115 static DEFINE_MUTEX(split_debug_mutex);
3116 ssize_t ret;
fbe37501
ZY
3117 /* hold pid, start_vaddr, end_vaddr or file_path, off_start, off_end */
3118 char input_buf[MAX_INPUT_BUF_SZ];
fa6c0231
ZY
3119 int pid;
3120 unsigned long vaddr_start, vaddr_end;
3121
3122 ret = mutex_lock_interruptible(&split_debug_mutex);
3123 if (ret)
3124 return ret;
3125
3126 ret = -EFAULT;
3127
3128 memset(input_buf, 0, MAX_INPUT_BUF_SZ);
3129 if (copy_from_user(input_buf, buf, min_t(size_t, count, MAX_INPUT_BUF_SZ)))
3130 goto out;
3131
3132 input_buf[MAX_INPUT_BUF_SZ - 1] = '\0';
fbe37501
ZY
3133
3134 if (input_buf[0] == '/') {
3135 char *tok;
3136 char *buf = input_buf;
3137 char file_path[MAX_INPUT_BUF_SZ];
3138 pgoff_t off_start = 0, off_end = 0;
3139 size_t input_len = strlen(input_buf);
3140
3141 tok = strsep(&buf, ",");
3142 if (tok) {
1212e00c 3143 strcpy(file_path, tok);
fbe37501
ZY
3144 } else {
3145 ret = -EINVAL;
3146 goto out;
3147 }
3148
3149 ret = sscanf(buf, "0x%lx,0x%lx", &off_start, &off_end);
3150 if (ret != 2) {
3151 ret = -EINVAL;
3152 goto out;
3153 }
3154 ret = split_huge_pages_in_file(file_path, off_start, off_end);
3155 if (!ret)
3156 ret = input_len;
3157
3158 goto out;
3159 }
3160
fa6c0231
ZY
3161 ret = sscanf(input_buf, "%d,0x%lx,0x%lx", &pid, &vaddr_start, &vaddr_end);
3162 if (ret == 1 && pid == 1) {
3163 split_huge_pages_all();
3164 ret = strlen(input_buf);
3165 goto out;
3166 } else if (ret != 3) {
3167 ret = -EINVAL;
3168 goto out;
3169 }
3170
3171 ret = split_huge_pages_pid(pid, vaddr_start, vaddr_end);
3172 if (!ret)
3173 ret = strlen(input_buf);
3174out:
3175 mutex_unlock(&split_debug_mutex);
3176 return ret;
3177
3178}
3179
3180static const struct file_operations split_huge_pages_fops = {
3181 .owner = THIS_MODULE,
3182 .write = split_huge_pages_write,
3183 .llseek = no_llseek,
3184};
49071d43
KS
3185
3186static int __init split_huge_pages_debugfs(void)
3187{
d9f7979c
GKH
3188 debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
3189 &split_huge_pages_fops);
49071d43
KS
3190 return 0;
3191}
3192late_initcall(split_huge_pages_debugfs);
3193#endif
616b8371
ZY
3194
3195#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
7f5abe60 3196int set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
616b8371
ZY
3197 struct page *page)
3198{
3199 struct vm_area_struct *vma = pvmw->vma;
3200 struct mm_struct *mm = vma->vm_mm;
3201 unsigned long address = pvmw->address;
6c287605 3202 bool anon_exclusive;
616b8371
ZY
3203 pmd_t pmdval;
3204 swp_entry_t entry;
ab6e3d09 3205 pmd_t pmdswp;
616b8371
ZY
3206
3207 if (!(pvmw->pmd && !pvmw->pte))
7f5abe60 3208 return 0;
616b8371 3209
616b8371 3210 flush_cache_range(vma, address, address + HPAGE_PMD_SIZE);
8a8683ad 3211 pmdval = pmdp_invalidate(vma, address, pvmw->pmd);
6c287605 3212
088b8aa5 3213 /* See page_try_share_anon_rmap(): invalidate PMD first. */
6c287605
DH
3214 anon_exclusive = PageAnon(page) && PageAnonExclusive(page);
3215 if (anon_exclusive && page_try_share_anon_rmap(page)) {
3216 set_pmd_at(mm, address, pvmw->pmd, pmdval);
7f5abe60 3217 return -EBUSY;
6c287605
DH
3218 }
3219
616b8371
ZY
3220 if (pmd_dirty(pmdval))
3221 set_page_dirty(page);
4dd845b5
AP
3222 if (pmd_write(pmdval))
3223 entry = make_writable_migration_entry(page_to_pfn(page));
6c287605
DH
3224 else if (anon_exclusive)
3225 entry = make_readable_exclusive_migration_entry(page_to_pfn(page));
4dd845b5
AP
3226 else
3227 entry = make_readable_migration_entry(page_to_pfn(page));
2e346877
PX
3228 if (pmd_young(pmdval))
3229 entry = make_migration_entry_young(entry);
3230 if (pmd_dirty(pmdval))
3231 entry = make_migration_entry_dirty(entry);
ab6e3d09
NH
3232 pmdswp = swp_entry_to_pmd(entry);
3233 if (pmd_soft_dirty(pmdval))
3234 pmdswp = pmd_swp_mksoft_dirty(pmdswp);
3235 set_pmd_at(mm, address, pvmw->pmd, pmdswp);
cea86fe2 3236 page_remove_rmap(page, vma, true);
616b8371 3237 put_page(page);
283fd6fe 3238 trace_set_migration_pmd(address, pmd_val(pmdswp));
7f5abe60
DH
3239
3240 return 0;
616b8371
ZY
3241}
3242
3243void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
3244{
3245 struct vm_area_struct *vma = pvmw->vma;
3246 struct mm_struct *mm = vma->vm_mm;
3247 unsigned long address = pvmw->address;
4fba8f2a 3248 unsigned long haddr = address & HPAGE_PMD_MASK;
616b8371
ZY
3249 pmd_t pmde;
3250 swp_entry_t entry;
3251
3252 if (!(pvmw->pmd && !pvmw->pte))
3253 return;
3254
3255 entry = pmd_to_swp_entry(*pvmw->pmd);
3256 get_page(new);
2e346877 3257 pmde = mk_huge_pmd(new, READ_ONCE(vma->vm_page_prot));
ab6e3d09
NH
3258 if (pmd_swp_soft_dirty(*pvmw->pmd))
3259 pmde = pmd_mksoft_dirty(pmde);
4dd845b5 3260 if (is_writable_migration_entry(entry))
f55e1014 3261 pmde = maybe_pmd_mkwrite(pmde, vma);
8f34f1ea
PX
3262 if (pmd_swp_uffd_wp(*pvmw->pmd))
3263 pmde = pmd_wrprotect(pmd_mkuffd_wp(pmde));
2e346877
PX
3264 if (!is_migration_entry_young(entry))
3265 pmde = pmd_mkold(pmde);
3266 /* NOTE: this may contain setting soft-dirty on some archs */
3267 if (PageDirty(new) && is_migration_entry_dirty(entry))
3268 pmde = pmd_mkdirty(pmde);
616b8371 3269
6c287605
DH
3270 if (PageAnon(new)) {
3271 rmap_t rmap_flags = RMAP_COMPOUND;
3272
3273 if (!is_readable_migration_entry(entry))
3274 rmap_flags |= RMAP_EXCLUSIVE;
3275
4fba8f2a 3276 page_add_anon_rmap(new, vma, haddr, rmap_flags);
6c287605 3277 } else {
cea86fe2 3278 page_add_file_rmap(new, vma, true);
6c287605
DH
3279 }
3280 VM_BUG_ON(pmd_write(pmde) && PageAnon(new) && !PageAnonExclusive(new));
4fba8f2a 3281 set_pmd_at(mm, haddr, pvmw->pmd, pmde);
5cbcf225
MS
3282
3283 /* No need to invalidate - it was non-present before */
616b8371 3284 update_mmu_cache_pmd(vma, address, pvmw->pmd);
283fd6fe 3285 trace_remove_migration_pmd(address, pmd_val(pmde));
616b8371
ZY
3286}
3287#endif