mm/autonuma: use can_change_(pte|pmd)_writable() to replace savedwrite
[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
DW
1037 struct page *page;
1038
1039 assert_spin_locked(pmd_lockptr(mm, pmd));
1040
3faa52c0
JH
1041 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1042 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1043 (FOLL_PIN | FOLL_GET)))
1044 return NULL;
1045
f6f37321 1046 if (flags & FOLL_WRITE && !pmd_write(*pmd))
3565fce3
DW
1047 return NULL;
1048
1049 if (pmd_present(*pmd) && pmd_devmap(*pmd))
1050 /* pass */;
1051 else
1052 return NULL;
1053
1054 if (flags & FOLL_TOUCH)
a69e4717 1055 touch_pmd(vma, addr, pmd, flags & FOLL_WRITE);
3565fce3
DW
1056
1057 /*
1058 * device mapped pages can only be returned if the
1059 * caller will manage the page reference count.
1060 */
3faa52c0 1061 if (!(flags & (FOLL_GET | FOLL_PIN)))
3565fce3
DW
1062 return ERR_PTR(-EEXIST);
1063
1064 pfn += (addr & ~PMD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1065 *pgmap = get_dev_pagemap(pfn, *pgmap);
1066 if (!*pgmap)
3565fce3
DW
1067 return ERR_PTR(-EFAULT);
1068 page = pfn_to_page(pfn);
3faa52c0
JH
1069 if (!try_grab_page(page, flags))
1070 page = ERR_PTR(-ENOMEM);
3565fce3
DW
1071
1072 return page;
1073}
1074
71e3aac0
AA
1075int copy_huge_pmd(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1076 pmd_t *dst_pmd, pmd_t *src_pmd, unsigned long addr,
8f34f1ea 1077 struct vm_area_struct *dst_vma, struct vm_area_struct *src_vma)
71e3aac0 1078{
c4088ebd 1079 spinlock_t *dst_ptl, *src_ptl;
71e3aac0
AA
1080 struct page *src_page;
1081 pmd_t pmd;
12c9d70b 1082 pgtable_t pgtable = NULL;
628d47ce 1083 int ret = -ENOMEM;
71e3aac0 1084
628d47ce 1085 /* Skip if can be re-fill on fault */
8f34f1ea 1086 if (!vma_is_anonymous(dst_vma))
628d47ce
KS
1087 return 0;
1088
4cf58924 1089 pgtable = pte_alloc_one(dst_mm);
628d47ce
KS
1090 if (unlikely(!pgtable))
1091 goto out;
71e3aac0 1092
c4088ebd
KS
1093 dst_ptl = pmd_lock(dst_mm, dst_pmd);
1094 src_ptl = pmd_lockptr(src_mm, src_pmd);
1095 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
71e3aac0
AA
1096
1097 ret = -EAGAIN;
1098 pmd = *src_pmd;
84c3fc4e
ZY
1099
1100#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1101 if (unlikely(is_swap_pmd(pmd))) {
1102 swp_entry_t entry = pmd_to_swp_entry(pmd);
1103
1104 VM_BUG_ON(!is_pmd_migration_entry(pmd));
6c287605 1105 if (!is_readable_migration_entry(entry)) {
4dd845b5
AP
1106 entry = make_readable_migration_entry(
1107 swp_offset(entry));
84c3fc4e 1108 pmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1109 if (pmd_swp_soft_dirty(*src_pmd))
1110 pmd = pmd_swp_mksoft_dirty(pmd);
8f34f1ea
PX
1111 if (pmd_swp_uffd_wp(*src_pmd))
1112 pmd = pmd_swp_mkuffd_wp(pmd);
84c3fc4e
ZY
1113 set_pmd_at(src_mm, addr, src_pmd, pmd);
1114 }
dd8a67f9 1115 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
af5b0f6a 1116 mm_inc_nr_ptes(dst_mm);
dd8a67f9 1117 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
8f34f1ea
PX
1118 if (!userfaultfd_wp(dst_vma))
1119 pmd = pmd_swp_clear_uffd_wp(pmd);
84c3fc4e
ZY
1120 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
1121 ret = 0;
1122 goto out_unlock;
1123 }
1124#endif
1125
628d47ce 1126 if (unlikely(!pmd_trans_huge(pmd))) {
71e3aac0
AA
1127 pte_free(dst_mm, pgtable);
1128 goto out_unlock;
1129 }
fc9fe822 1130 /*
c4088ebd 1131 * When page table lock is held, the huge zero pmd should not be
fc9fe822
KS
1132 * under splitting since we don't split the page itself, only pmd to
1133 * a page table.
1134 */
1135 if (is_huge_zero_pmd(pmd)) {
97ae1749
KS
1136 /*
1137 * get_huge_zero_page() will never allocate a new page here,
1138 * since we already have a zero page to copy. It just takes a
1139 * reference.
1140 */
5fc7a5f6
PX
1141 mm_get_huge_zero_page(dst_mm);
1142 goto out_zero_page;
fc9fe822 1143 }
de466bd6 1144
628d47ce
KS
1145 src_page = pmd_page(pmd);
1146 VM_BUG_ON_PAGE(!PageHead(src_page), src_page);
d042035e 1147
fb3d824d
DH
1148 get_page(src_page);
1149 if (unlikely(page_try_dup_anon_rmap(src_page, true, src_vma))) {
1150 /* Page maybe pinned: split and retry the fault on PTEs. */
1151 put_page(src_page);
d042035e
PX
1152 pte_free(dst_mm, pgtable);
1153 spin_unlock(src_ptl);
1154 spin_unlock(dst_ptl);
8f34f1ea 1155 __split_huge_pmd(src_vma, src_pmd, addr, false, NULL);
d042035e
PX
1156 return -EAGAIN;
1157 }
628d47ce 1158 add_mm_counter(dst_mm, MM_ANONPAGES, HPAGE_PMD_NR);
5fc7a5f6 1159out_zero_page:
c4812909 1160 mm_inc_nr_ptes(dst_mm);
628d47ce 1161 pgtable_trans_huge_deposit(dst_mm, dst_pmd, pgtable);
71e3aac0 1162 pmdp_set_wrprotect(src_mm, addr, src_pmd);
8f34f1ea
PX
1163 if (!userfaultfd_wp(dst_vma))
1164 pmd = pmd_clear_uffd_wp(pmd);
71e3aac0
AA
1165 pmd = pmd_mkold(pmd_wrprotect(pmd));
1166 set_pmd_at(dst_mm, addr, dst_pmd, pmd);
71e3aac0
AA
1167
1168 ret = 0;
1169out_unlock:
c4088ebd
KS
1170 spin_unlock(src_ptl);
1171 spin_unlock(dst_ptl);
71e3aac0
AA
1172out:
1173 return ret;
1174}
1175
a00cc7d9
MW
1176#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1177static void touch_pud(struct vm_area_struct *vma, unsigned long addr,
5fe653e9 1178 pud_t *pud, bool write)
a00cc7d9
MW
1179{
1180 pud_t _pud;
1181
a8f97366 1182 _pud = pud_mkyoung(*pud);
5fe653e9 1183 if (write)
a8f97366 1184 _pud = pud_mkdirty(_pud);
a00cc7d9 1185 if (pudp_set_access_flags(vma, addr & HPAGE_PUD_MASK,
5fe653e9 1186 pud, _pud, write))
a00cc7d9
MW
1187 update_mmu_cache_pud(vma, addr, pud);
1188}
1189
1190struct page *follow_devmap_pud(struct vm_area_struct *vma, unsigned long addr,
df06b37f 1191 pud_t *pud, int flags, struct dev_pagemap **pgmap)
a00cc7d9
MW
1192{
1193 unsigned long pfn = pud_pfn(*pud);
1194 struct mm_struct *mm = vma->vm_mm;
a00cc7d9
MW
1195 struct page *page;
1196
1197 assert_spin_locked(pud_lockptr(mm, pud));
1198
f6f37321 1199 if (flags & FOLL_WRITE && !pud_write(*pud))
a00cc7d9
MW
1200 return NULL;
1201
3faa52c0
JH
1202 /* FOLL_GET and FOLL_PIN are mutually exclusive. */
1203 if (WARN_ON_ONCE((flags & (FOLL_PIN | FOLL_GET)) ==
1204 (FOLL_PIN | FOLL_GET)))
1205 return NULL;
1206
a00cc7d9
MW
1207 if (pud_present(*pud) && pud_devmap(*pud))
1208 /* pass */;
1209 else
1210 return NULL;
1211
1212 if (flags & FOLL_TOUCH)
5fe653e9 1213 touch_pud(vma, addr, pud, flags & FOLL_WRITE);
a00cc7d9
MW
1214
1215 /*
1216 * device mapped pages can only be returned if the
1217 * caller will manage the page reference count.
3faa52c0
JH
1218 *
1219 * At least one of FOLL_GET | FOLL_PIN must be set, so assert that here:
a00cc7d9 1220 */
3faa52c0 1221 if (!(flags & (FOLL_GET | FOLL_PIN)))
a00cc7d9
MW
1222 return ERR_PTR(-EEXIST);
1223
1224 pfn += (addr & ~PUD_MASK) >> PAGE_SHIFT;
df06b37f
KB
1225 *pgmap = get_dev_pagemap(pfn, *pgmap);
1226 if (!*pgmap)
a00cc7d9
MW
1227 return ERR_PTR(-EFAULT);
1228 page = pfn_to_page(pfn);
3faa52c0
JH
1229 if (!try_grab_page(page, flags))
1230 page = ERR_PTR(-ENOMEM);
a00cc7d9
MW
1231
1232 return page;
1233}
1234
1235int copy_huge_pud(struct mm_struct *dst_mm, struct mm_struct *src_mm,
1236 pud_t *dst_pud, pud_t *src_pud, unsigned long addr,
1237 struct vm_area_struct *vma)
1238{
1239 spinlock_t *dst_ptl, *src_ptl;
1240 pud_t pud;
1241 int ret;
1242
1243 dst_ptl = pud_lock(dst_mm, dst_pud);
1244 src_ptl = pud_lockptr(src_mm, src_pud);
1245 spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
1246
1247 ret = -EAGAIN;
1248 pud = *src_pud;
1249 if (unlikely(!pud_trans_huge(pud) && !pud_devmap(pud)))
1250 goto out_unlock;
1251
1252 /*
1253 * When page table lock is held, the huge zero pud should not be
1254 * under splitting since we don't split the page itself, only pud to
1255 * a page table.
1256 */
1257 if (is_huge_zero_pud(pud)) {
1258 /* No huge zero pud yet */
1259 }
1260
fb3d824d
DH
1261 /*
1262 * TODO: once we support anonymous pages, use page_try_dup_anon_rmap()
1263 * and split if duplicating fails.
1264 */
a00cc7d9
MW
1265 pudp_set_wrprotect(src_mm, addr, src_pud);
1266 pud = pud_mkold(pud_wrprotect(pud));
1267 set_pud_at(dst_mm, addr, dst_pud, pud);
1268
1269 ret = 0;
1270out_unlock:
1271 spin_unlock(src_ptl);
1272 spin_unlock(dst_ptl);
1273 return ret;
1274}
1275
1276void huge_pud_set_accessed(struct vm_fault *vmf, pud_t orig_pud)
1277{
a00cc7d9
MW
1278 bool write = vmf->flags & FAULT_FLAG_WRITE;
1279
1280 vmf->ptl = pud_lock(vmf->vma->vm_mm, vmf->pud);
1281 if (unlikely(!pud_same(*vmf->pud, orig_pud)))
1282 goto unlock;
1283
5fe653e9 1284 touch_pud(vmf->vma, vmf->address, vmf->pud, write);
a00cc7d9
MW
1285unlock:
1286 spin_unlock(vmf->ptl);
1287}
1288#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
1289
5db4f15c 1290void huge_pmd_set_accessed(struct vm_fault *vmf)
a1dd450b 1291{
20f664aa 1292 bool write = vmf->flags & FAULT_FLAG_WRITE;
a1dd450b 1293
82b0f8c3 1294 vmf->ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
a69e4717 1295 if (unlikely(!pmd_same(*vmf->pmd, vmf->orig_pmd)))
a1dd450b
WD
1296 goto unlock;
1297
a69e4717 1298 touch_pmd(vmf->vma, vmf->address, vmf->pmd, write);
a1dd450b
WD
1299
1300unlock:
82b0f8c3 1301 spin_unlock(vmf->ptl);
a1dd450b
WD
1302}
1303
5db4f15c 1304vm_fault_t do_huge_pmd_wp_page(struct vm_fault *vmf)
71e3aac0 1305{
c89357e2 1306 const bool unshare = vmf->flags & FAULT_FLAG_UNSHARE;
82b0f8c3 1307 struct vm_area_struct *vma = vmf->vma;
2fad3d14 1308 struct folio *folio;
3917c802 1309 struct page *page;
82b0f8c3 1310 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
5db4f15c 1311 pmd_t orig_pmd = vmf->orig_pmd;
71e3aac0 1312
82b0f8c3 1313 vmf->ptl = pmd_lockptr(vma->vm_mm, vmf->pmd);
81d1b09c 1314 VM_BUG_ON_VMA(!vma->anon_vma, vma);
3917c802 1315
c89357e2
DH
1316 VM_BUG_ON(unshare && (vmf->flags & FAULT_FLAG_WRITE));
1317 VM_BUG_ON(!unshare && !(vmf->flags & FAULT_FLAG_WRITE));
1318
93b4796d 1319 if (is_huge_zero_pmd(orig_pmd))
3917c802
KS
1320 goto fallback;
1321
82b0f8c3 1322 spin_lock(vmf->ptl);
3917c802
KS
1323
1324 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
1325 spin_unlock(vmf->ptl);
1326 return 0;
1327 }
71e3aac0
AA
1328
1329 page = pmd_page(orig_pmd);
2fad3d14 1330 folio = page_folio(page);
f6004e73 1331 VM_BUG_ON_PAGE(!PageHead(page), page);
3917c802 1332
6c287605
DH
1333 /* Early check when only holding the PT lock. */
1334 if (PageAnonExclusive(page))
1335 goto reuse;
1336
2fad3d14
MWO
1337 if (!folio_trylock(folio)) {
1338 folio_get(folio);
ba3c4ce6 1339 spin_unlock(vmf->ptl);
2fad3d14 1340 folio_lock(folio);
ba3c4ce6
HY
1341 spin_lock(vmf->ptl);
1342 if (unlikely(!pmd_same(*vmf->pmd, orig_pmd))) {
3917c802 1343 spin_unlock(vmf->ptl);
2fad3d14
MWO
1344 folio_unlock(folio);
1345 folio_put(folio);
3917c802 1346 return 0;
ba3c4ce6 1347 }
2fad3d14 1348 folio_put(folio);
ba3c4ce6 1349 }
3917c802 1350
6c287605
DH
1351 /* Recheck after temporarily dropping the PT lock. */
1352 if (PageAnonExclusive(page)) {
2fad3d14 1353 folio_unlock(folio);
6c287605
DH
1354 goto reuse;
1355 }
1356
3917c802 1357 /*
2fad3d14
MWO
1358 * See do_wp_page(): we can only reuse the folio exclusively if
1359 * there are no additional references. Note that we always drain
1360 * the LRU pagevecs immediately after adding a THP.
3917c802 1361 */
2fad3d14
MWO
1362 if (folio_ref_count(folio) >
1363 1 + folio_test_swapcache(folio) * folio_nr_pages(folio))
3bff7e3f 1364 goto unlock_fallback;
2fad3d14
MWO
1365 if (folio_test_swapcache(folio))
1366 folio_free_swap(folio);
1367 if (folio_ref_count(folio) == 1) {
71e3aac0 1368 pmd_t entry;
6c54dc6c
DH
1369
1370 page_move_anon_rmap(page, vma);
2fad3d14 1371 folio_unlock(folio);
6c287605 1372reuse:
c89357e2
DH
1373 if (unlikely(unshare)) {
1374 spin_unlock(vmf->ptl);
1375 return 0;
1376 }
71e3aac0 1377 entry = pmd_mkyoung(orig_pmd);
f55e1014 1378 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
3917c802 1379 if (pmdp_set_access_flags(vma, haddr, vmf->pmd, entry, 1))
82b0f8c3 1380 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
82b0f8c3 1381 spin_unlock(vmf->ptl);
3917c802 1382 return VM_FAULT_WRITE;
71e3aac0 1383 }
3917c802 1384
3bff7e3f 1385unlock_fallback:
2fad3d14 1386 folio_unlock(folio);
82b0f8c3 1387 spin_unlock(vmf->ptl);
3917c802
KS
1388fallback:
1389 __split_huge_pmd(vma, vmf->pmd, vmf->address, false, NULL);
1390 return VM_FAULT_FALLBACK;
71e3aac0
AA
1391}
1392
c27f479e
DH
1393static inline bool can_change_pmd_writable(struct vm_area_struct *vma,
1394 unsigned long addr, pmd_t pmd)
1395{
1396 struct page *page;
1397
1398 if (WARN_ON_ONCE(!(vma->vm_flags & VM_WRITE)))
1399 return false;
1400
1401 /* Don't touch entries that are not even readable (NUMA hinting). */
1402 if (pmd_protnone(pmd))
1403 return false;
1404
1405 /* Do we need write faults for softdirty tracking? */
1406 if (vma_soft_dirty_enabled(vma) && !pmd_soft_dirty(pmd))
1407 return false;
1408
1409 /* Do we need write faults for uffd-wp tracking? */
1410 if (userfaultfd_huge_pmd_wp(vma, pmd))
1411 return false;
1412
1413 if (!(vma->vm_flags & VM_SHARED)) {
1414 /* See can_change_pte_writable(). */
1415 page = vm_normal_page_pmd(vma, addr, pmd);
1416 return page && PageAnon(page) && PageAnonExclusive(page);
1417 }
1418
1419 /* See can_change_pte_writable(). */
1420 return pmd_dirty(pmd);
1421}
1422
5535be30
DH
1423/* FOLL_FORCE can write to even unwritable PMDs in COW mappings. */
1424static inline bool can_follow_write_pmd(pmd_t pmd, struct page *page,
1425 struct vm_area_struct *vma,
1426 unsigned int flags)
8310d48b 1427{
5535be30
DH
1428 /* If the pmd is writable, we can write to the page. */
1429 if (pmd_write(pmd))
1430 return true;
1431
1432 /* Maybe FOLL_FORCE is set to override it? */
1433 if (!(flags & FOLL_FORCE))
1434 return false;
1435
1436 /* But FOLL_FORCE has no effect on shared mappings */
1437 if (vma->vm_flags & (VM_MAYSHARE | VM_SHARED))
1438 return false;
1439
1440 /* ... or read-only private ones */
1441 if (!(vma->vm_flags & VM_MAYWRITE))
1442 return false;
1443
1444 /* ... or already writable ones that just need to take a write fault */
1445 if (vma->vm_flags & VM_WRITE)
1446 return false;
1447
1448 /*
1449 * See can_change_pte_writable(): we broke COW and could map the page
1450 * writable if we have an exclusive anonymous page ...
1451 */
1452 if (!page || !PageAnon(page) || !PageAnonExclusive(page))
1453 return false;
1454
1455 /* ... and a write-fault isn't required for other reasons. */
1456 if (vma_soft_dirty_enabled(vma) && !pmd_soft_dirty(pmd))
1457 return false;
1458 return !userfaultfd_huge_pmd_wp(vma, pmd);
8310d48b
KF
1459}
1460
b676b293 1461struct page *follow_trans_huge_pmd(struct vm_area_struct *vma,
71e3aac0
AA
1462 unsigned long addr,
1463 pmd_t *pmd,
1464 unsigned int flags)
1465{
b676b293 1466 struct mm_struct *mm = vma->vm_mm;
5535be30 1467 struct page *page;
71e3aac0 1468
c4088ebd 1469 assert_spin_locked(pmd_lockptr(mm, pmd));
71e3aac0 1470
5535be30
DH
1471 page = pmd_page(*pmd);
1472 VM_BUG_ON_PAGE(!PageHead(page) && !is_zone_device_page(page), page);
1473
1474 if ((flags & FOLL_WRITE) &&
1475 !can_follow_write_pmd(*pmd, page, vma, flags))
1476 return NULL;
71e3aac0 1477
85facf25
KS
1478 /* Avoid dumping huge zero page */
1479 if ((flags & FOLL_DUMP) && is_huge_zero_pmd(*pmd))
1480 return ERR_PTR(-EFAULT);
1481
2b4847e7 1482 /* Full NUMA hinting faults to serialise migration in fault paths */
474098ed 1483 if (pmd_protnone(*pmd) && !gup_can_follow_protnone(flags))
5535be30 1484 return NULL;
3faa52c0 1485
a7f22660
DH
1486 if (!pmd_write(*pmd) && gup_must_unshare(flags, page))
1487 return ERR_PTR(-EMLINK);
1488
b6a2619c
DH
1489 VM_BUG_ON_PAGE((flags & FOLL_PIN) && PageAnon(page) &&
1490 !PageAnonExclusive(page), page);
1491
3faa52c0
JH
1492 if (!try_grab_page(page, flags))
1493 return ERR_PTR(-ENOMEM);
1494
3565fce3 1495 if (flags & FOLL_TOUCH)
a69e4717 1496 touch_pmd(vma, addr, pmd, flags & FOLL_WRITE);
3faa52c0 1497
71e3aac0 1498 page += (addr & ~HPAGE_PMD_MASK) >> PAGE_SHIFT;
ca120cf6 1499 VM_BUG_ON_PAGE(!PageCompound(page) && !is_zone_device_page(page), page);
71e3aac0 1500
71e3aac0
AA
1501 return page;
1502}
1503
d10e63f2 1504/* NUMA hinting page fault entry point for trans huge pmds */
5db4f15c 1505vm_fault_t do_huge_pmd_numa_page(struct vm_fault *vmf)
d10e63f2 1506{
82b0f8c3 1507 struct vm_area_struct *vma = vmf->vma;
c5b5a3dd
YS
1508 pmd_t oldpmd = vmf->orig_pmd;
1509 pmd_t pmd;
b32967ff 1510 struct page *page;
82b0f8c3 1511 unsigned long haddr = vmf->address & HPAGE_PMD_MASK;
c5b5a3dd 1512 int page_nid = NUMA_NO_NODE;
33024536 1513 int target_nid, last_cpupid = (-1 & LAST_CPUPID_MASK);
6a56ccbc 1514 bool migrated = false, writable = false;
6688cc05 1515 int flags = 0;
d10e63f2 1516
82b0f8c3 1517 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
c5b5a3dd 1518 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
82b0f8c3 1519 spin_unlock(vmf->ptl);
de466bd6
MG
1520 goto out;
1521 }
1522
c5b5a3dd 1523 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
6a56ccbc
DH
1524
1525 /*
1526 * Detect now whether the PMD could be writable; this information
1527 * is only valid while holding the PT lock.
1528 */
1529 writable = pmd_write(pmd);
1530 if (!writable && vma_wants_manual_pte_write_upgrade(vma) &&
1531 can_change_pmd_writable(vma, vmf->address, pmd))
1532 writable = true;
1533
c5b5a3dd
YS
1534 page = vm_normal_page_pmd(vma, haddr, pmd);
1535 if (!page)
1536 goto out_map;
1537
1538 /* See similar comment in do_numa_page for explanation */
6a56ccbc 1539 if (!writable)
c5b5a3dd
YS
1540 flags |= TNF_NO_GROUP;
1541
1542 page_nid = page_to_nid(page);
33024536
HY
1543 /*
1544 * For memory tiering mode, cpupid of slow memory page is used
1545 * to record page access time. So use default value.
1546 */
1547 if (node_is_toptier(page_nid))
1548 last_cpupid = page_cpupid_last(page);
c5b5a3dd
YS
1549 target_nid = numa_migrate_prep(page, vma, haddr, page_nid,
1550 &flags);
1551
1552 if (target_nid == NUMA_NO_NODE) {
1553 put_page(page);
1554 goto out_map;
1555 }
1556
82b0f8c3 1557 spin_unlock(vmf->ptl);
6a56ccbc 1558 writable = false;
8b1b436d 1559
c5b5a3dd 1560 migrated = migrate_misplaced_page(page, vma, target_nid);
6688cc05
PZ
1561 if (migrated) {
1562 flags |= TNF_MIGRATED;
8191acbd 1563 page_nid = target_nid;
c5b5a3dd 1564 } else {
074c2381 1565 flags |= TNF_MIGRATE_FAIL;
c5b5a3dd
YS
1566 vmf->ptl = pmd_lock(vma->vm_mm, vmf->pmd);
1567 if (unlikely(!pmd_same(oldpmd, *vmf->pmd))) {
1568 spin_unlock(vmf->ptl);
1569 goto out;
1570 }
1571 goto out_map;
1572 }
b8916634
MG
1573
1574out:
98fa15f3 1575 if (page_nid != NUMA_NO_NODE)
82b0f8c3 1576 task_numa_fault(last_cpupid, page_nid, HPAGE_PMD_NR,
9a8b300f 1577 flags);
8191acbd 1578
d10e63f2 1579 return 0;
c5b5a3dd
YS
1580
1581out_map:
1582 /* Restore the PMD */
1583 pmd = pmd_modify(oldpmd, vma->vm_page_prot);
1584 pmd = pmd_mkyoung(pmd);
6a56ccbc 1585 if (writable)
c5b5a3dd
YS
1586 pmd = pmd_mkwrite(pmd);
1587 set_pmd_at(vma->vm_mm, haddr, vmf->pmd, pmd);
1588 update_mmu_cache_pmd(vma, vmf->address, vmf->pmd);
1589 spin_unlock(vmf->ptl);
1590 goto out;
d10e63f2
MG
1591}
1592
319904ad
HY
1593/*
1594 * Return true if we do MADV_FREE successfully on entire pmd page.
1595 * Otherwise, return false.
1596 */
1597bool madvise_free_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
b8d3c4c3 1598 pmd_t *pmd, unsigned long addr, unsigned long next)
b8d3c4c3
MK
1599{
1600 spinlock_t *ptl;
1601 pmd_t orig_pmd;
1602 struct page *page;
1603 struct mm_struct *mm = tlb->mm;
319904ad 1604 bool ret = false;
b8d3c4c3 1605
ed6a7935 1606 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1607
b6ec57f4
KS
1608 ptl = pmd_trans_huge_lock(pmd, vma);
1609 if (!ptl)
25eedabe 1610 goto out_unlocked;
b8d3c4c3
MK
1611
1612 orig_pmd = *pmd;
319904ad 1613 if (is_huge_zero_pmd(orig_pmd))
b8d3c4c3 1614 goto out;
b8d3c4c3 1615
84c3fc4e
ZY
1616 if (unlikely(!pmd_present(orig_pmd))) {
1617 VM_BUG_ON(thp_migration_supported() &&
1618 !is_pmd_migration_entry(orig_pmd));
1619 goto out;
1620 }
1621
b8d3c4c3
MK
1622 page = pmd_page(orig_pmd);
1623 /*
1624 * If other processes are mapping this page, we couldn't discard
1625 * the page unless they all do MADV_FREE so let's skip the page.
1626 */
babbbdd0 1627 if (total_mapcount(page) != 1)
b8d3c4c3
MK
1628 goto out;
1629
1630 if (!trylock_page(page))
1631 goto out;
1632
1633 /*
1634 * If user want to discard part-pages of THP, split it so MADV_FREE
1635 * will deactivate only them.
1636 */
1637 if (next - addr != HPAGE_PMD_SIZE) {
1638 get_page(page);
1639 spin_unlock(ptl);
9818b8cd 1640 split_huge_page(page);
b8d3c4c3 1641 unlock_page(page);
bbf29ffc 1642 put_page(page);
b8d3c4c3
MK
1643 goto out_unlocked;
1644 }
1645
1646 if (PageDirty(page))
1647 ClearPageDirty(page);
1648 unlock_page(page);
1649
b8d3c4c3 1650 if (pmd_young(orig_pmd) || pmd_dirty(orig_pmd)) {
58ceeb6b 1651 pmdp_invalidate(vma, addr, pmd);
b8d3c4c3
MK
1652 orig_pmd = pmd_mkold(orig_pmd);
1653 orig_pmd = pmd_mkclean(orig_pmd);
1654
1655 set_pmd_at(mm, addr, pmd, orig_pmd);
1656 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
1657 }
802a3a92
SL
1658
1659 mark_page_lazyfree(page);
319904ad 1660 ret = true;
b8d3c4c3
MK
1661out:
1662 spin_unlock(ptl);
1663out_unlocked:
1664 return ret;
1665}
1666
953c66c2
AK
1667static inline void zap_deposited_table(struct mm_struct *mm, pmd_t *pmd)
1668{
1669 pgtable_t pgtable;
1670
1671 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
1672 pte_free(mm, pgtable);
c4812909 1673 mm_dec_nr_ptes(mm);
953c66c2
AK
1674}
1675
71e3aac0 1676int zap_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
f21760b1 1677 pmd_t *pmd, unsigned long addr)
71e3aac0 1678{
da146769 1679 pmd_t orig_pmd;
bf929152 1680 spinlock_t *ptl;
71e3aac0 1681
ed6a7935 1682 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
07e32661 1683
b6ec57f4
KS
1684 ptl = __pmd_trans_huge_lock(pmd, vma);
1685 if (!ptl)
da146769
KS
1686 return 0;
1687 /*
1688 * For architectures like ppc64 we look at deposited pgtable
1689 * when calling pmdp_huge_get_and_clear. So do the
1690 * pgtable_trans_huge_withdraw after finishing pmdp related
1691 * operations.
1692 */
93a98695
AK
1693 orig_pmd = pmdp_huge_get_and_clear_full(vma, addr, pmd,
1694 tlb->fullmm);
da146769 1695 tlb_remove_pmd_tlb_entry(tlb, pmd, addr);
2484ca9b 1696 if (vma_is_special_huge(vma)) {
3b6521f5
OH
1697 if (arch_needs_pgtable_deposit())
1698 zap_deposited_table(tlb->mm, pmd);
da146769 1699 spin_unlock(ptl);
da146769 1700 } else if (is_huge_zero_pmd(orig_pmd)) {
c14a6eb4 1701 zap_deposited_table(tlb->mm, pmd);
da146769 1702 spin_unlock(ptl);
da146769 1703 } else {
616b8371
ZY
1704 struct page *page = NULL;
1705 int flush_needed = 1;
1706
1707 if (pmd_present(orig_pmd)) {
1708 page = pmd_page(orig_pmd);
cea86fe2 1709 page_remove_rmap(page, vma, true);
616b8371
ZY
1710 VM_BUG_ON_PAGE(page_mapcount(page) < 0, page);
1711 VM_BUG_ON_PAGE(!PageHead(page), page);
1712 } else if (thp_migration_supported()) {
1713 swp_entry_t entry;
1714
1715 VM_BUG_ON(!is_pmd_migration_entry(orig_pmd));
1716 entry = pmd_to_swp_entry(orig_pmd);
af5cdaf8 1717 page = pfn_swap_entry_to_page(entry);
616b8371
ZY
1718 flush_needed = 0;
1719 } else
1720 WARN_ONCE(1, "Non present huge pmd without pmd migration enabled!");
1721
b5072380 1722 if (PageAnon(page)) {
c14a6eb4 1723 zap_deposited_table(tlb->mm, pmd);
b5072380
KS
1724 add_mm_counter(tlb->mm, MM_ANONPAGES, -HPAGE_PMD_NR);
1725 } else {
953c66c2
AK
1726 if (arch_needs_pgtable_deposit())
1727 zap_deposited_table(tlb->mm, pmd);
fadae295 1728 add_mm_counter(tlb->mm, mm_counter_file(page), -HPAGE_PMD_NR);
b5072380 1729 }
616b8371 1730
da146769 1731 spin_unlock(ptl);
616b8371
ZY
1732 if (flush_needed)
1733 tlb_remove_page_size(tlb, page, HPAGE_PMD_SIZE);
025c5b24 1734 }
da146769 1735 return 1;
71e3aac0
AA
1736}
1737
1dd38b6c
AK
1738#ifndef pmd_move_must_withdraw
1739static inline int pmd_move_must_withdraw(spinlock_t *new_pmd_ptl,
1740 spinlock_t *old_pmd_ptl,
1741 struct vm_area_struct *vma)
1742{
1743 /*
1744 * With split pmd lock we also need to move preallocated
1745 * PTE page table if new_pmd is on different PMD page table.
1746 *
1747 * We also don't deposit and withdraw tables for file pages.
1748 */
1749 return (new_pmd_ptl != old_pmd_ptl) && vma_is_anonymous(vma);
1750}
1751#endif
1752
ab6e3d09
NH
1753static pmd_t move_soft_dirty_pmd(pmd_t pmd)
1754{
1755#ifdef CONFIG_MEM_SOFT_DIRTY
1756 if (unlikely(is_pmd_migration_entry(pmd)))
1757 pmd = pmd_swp_mksoft_dirty(pmd);
1758 else if (pmd_present(pmd))
1759 pmd = pmd_mksoft_dirty(pmd);
1760#endif
1761 return pmd;
1762}
1763
bf8616d5 1764bool move_huge_pmd(struct vm_area_struct *vma, unsigned long old_addr,
b8aa9d9d 1765 unsigned long new_addr, pmd_t *old_pmd, pmd_t *new_pmd)
37a1c49a 1766{
bf929152 1767 spinlock_t *old_ptl, *new_ptl;
37a1c49a 1768 pmd_t pmd;
37a1c49a 1769 struct mm_struct *mm = vma->vm_mm;
5d190420 1770 bool force_flush = false;
37a1c49a 1771
37a1c49a
AA
1772 /*
1773 * The destination pmd shouldn't be established, free_pgtables()
1774 * should have release it.
1775 */
1776 if (WARN_ON(!pmd_none(*new_pmd))) {
1777 VM_BUG_ON(pmd_trans_huge(*new_pmd));
4b471e88 1778 return false;
37a1c49a
AA
1779 }
1780
bf929152
KS
1781 /*
1782 * We don't have to worry about the ordering of src and dst
c1e8d7c6 1783 * ptlocks because exclusive mmap_lock prevents deadlock.
bf929152 1784 */
b6ec57f4
KS
1785 old_ptl = __pmd_trans_huge_lock(old_pmd, vma);
1786 if (old_ptl) {
bf929152
KS
1787 new_ptl = pmd_lockptr(mm, new_pmd);
1788 if (new_ptl != old_ptl)
1789 spin_lock_nested(new_ptl, SINGLE_DEPTH_NESTING);
8809aa2d 1790 pmd = pmdp_huge_get_and_clear(mm, old_addr, old_pmd);
eb66ae03 1791 if (pmd_present(pmd))
a2ce2666 1792 force_flush = true;
025c5b24 1793 VM_BUG_ON(!pmd_none(*new_pmd));
3592806c 1794
1dd38b6c 1795 if (pmd_move_must_withdraw(new_ptl, old_ptl, vma)) {
b3084f4d 1796 pgtable_t pgtable;
3592806c
KS
1797 pgtable = pgtable_trans_huge_withdraw(mm, old_pmd);
1798 pgtable_trans_huge_deposit(mm, new_pmd, pgtable);
3592806c 1799 }
ab6e3d09
NH
1800 pmd = move_soft_dirty_pmd(pmd);
1801 set_pmd_at(mm, new_addr, new_pmd, pmd);
5d190420 1802 if (force_flush)
7c38f181 1803 flush_pmd_tlb_range(vma, old_addr, old_addr + PMD_SIZE);
eb66ae03
LT
1804 if (new_ptl != old_ptl)
1805 spin_unlock(new_ptl);
bf929152 1806 spin_unlock(old_ptl);
4b471e88 1807 return true;
37a1c49a 1808 }
4b471e88 1809 return false;
37a1c49a
AA
1810}
1811
f123d74a
MG
1812/*
1813 * Returns
1814 * - 0 if PMD could not be locked
f0953a1b 1815 * - 1 if PMD was locked but protections unchanged and TLB flush unnecessary
e346e668 1816 * or if prot_numa but THP migration is not supported
f0953a1b 1817 * - HPAGE_PMD_NR if protections changed and TLB flush necessary
f123d74a 1818 */
4a18419f
NA
1819int change_huge_pmd(struct mmu_gather *tlb, struct vm_area_struct *vma,
1820 pmd_t *pmd, unsigned long addr, pgprot_t newprot,
1821 unsigned long cp_flags)
cd7548ab
JW
1822{
1823 struct mm_struct *mm = vma->vm_mm;
bf929152 1824 spinlock_t *ptl;
c9fe6656 1825 pmd_t oldpmd, entry;
58705444 1826 bool prot_numa = cp_flags & MM_CP_PROT_NUMA;
292924b2
PX
1827 bool uffd_wp = cp_flags & MM_CP_UFFD_WP;
1828 bool uffd_wp_resolve = cp_flags & MM_CP_UFFD_WP_RESOLVE;
6a56ccbc 1829 int ret = 1;
cd7548ab 1830
4a18419f
NA
1831 tlb_change_page_size(tlb, HPAGE_PMD_SIZE);
1832
e346e668
YS
1833 if (prot_numa && !thp_migration_supported())
1834 return 1;
1835
b6ec57f4 1836 ptl = __pmd_trans_huge_lock(pmd, vma);
0a85e51d
KS
1837 if (!ptl)
1838 return 0;
e944fd67 1839
84c3fc4e
ZY
1840#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1841 if (is_swap_pmd(*pmd)) {
1842 swp_entry_t entry = pmd_to_swp_entry(*pmd);
6c287605 1843 struct page *page = pfn_swap_entry_to_page(entry);
84c3fc4e
ZY
1844
1845 VM_BUG_ON(!is_pmd_migration_entry(*pmd));
4dd845b5 1846 if (is_writable_migration_entry(entry)) {
84c3fc4e
ZY
1847 pmd_t newpmd;
1848 /*
1849 * A protection check is difficult so
1850 * just be safe and disable write
1851 */
6c287605
DH
1852 if (PageAnon(page))
1853 entry = make_readable_exclusive_migration_entry(swp_offset(entry));
1854 else
1855 entry = make_readable_migration_entry(swp_offset(entry));
84c3fc4e 1856 newpmd = swp_entry_to_pmd(entry);
ab6e3d09
NH
1857 if (pmd_swp_soft_dirty(*pmd))
1858 newpmd = pmd_swp_mksoft_dirty(newpmd);
8f34f1ea
PX
1859 if (pmd_swp_uffd_wp(*pmd))
1860 newpmd = pmd_swp_mkuffd_wp(newpmd);
84c3fc4e
ZY
1861 set_pmd_at(mm, addr, pmd, newpmd);
1862 }
1863 goto unlock;
1864 }
1865#endif
1866
a1a3a2fc
HY
1867 if (prot_numa) {
1868 struct page *page;
33024536 1869 bool toptier;
a1a3a2fc
HY
1870 /*
1871 * Avoid trapping faults against the zero page. The read-only
1872 * data is likely to be read-cached on the local CPU and
1873 * local/remote hits to the zero page are not interesting.
1874 */
1875 if (is_huge_zero_pmd(*pmd))
1876 goto unlock;
025c5b24 1877
a1a3a2fc
HY
1878 if (pmd_protnone(*pmd))
1879 goto unlock;
0a85e51d 1880
a1a3a2fc 1881 page = pmd_page(*pmd);
33024536 1882 toptier = node_is_toptier(page_to_nid(page));
a1a3a2fc
HY
1883 /*
1884 * Skip scanning top tier node if normal numa
1885 * balancing is disabled
1886 */
1887 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_NORMAL) &&
33024536 1888 toptier)
a1a3a2fc 1889 goto unlock;
33024536
HY
1890
1891 if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING &&
1892 !toptier)
1893 xchg_page_access_time(page, jiffies_to_msecs(jiffies));
a1a3a2fc 1894 }
ced10803 1895 /*
3e4e28c5 1896 * In case prot_numa, we are under mmap_read_lock(mm). It's critical
ced10803 1897 * to not clear pmd intermittently to avoid race with MADV_DONTNEED
3e4e28c5 1898 * which is also under mmap_read_lock(mm):
ced10803
KS
1899 *
1900 * CPU0: CPU1:
1901 * change_huge_pmd(prot_numa=1)
1902 * pmdp_huge_get_and_clear_notify()
1903 * madvise_dontneed()
1904 * zap_pmd_range()
1905 * pmd_trans_huge(*pmd) == 0 (without ptl)
1906 * // skip the pmd
1907 * set_pmd_at();
1908 * // pmd is re-established
1909 *
1910 * The race makes MADV_DONTNEED miss the huge pmd and don't clear it
1911 * which may break userspace.
1912 *
4f831457 1913 * pmdp_invalidate_ad() is required to make sure we don't miss
ced10803
KS
1914 * dirty/young flags set by hardware.
1915 */
4f831457 1916 oldpmd = pmdp_invalidate_ad(vma, addr, pmd);
ced10803 1917
c9fe6656 1918 entry = pmd_modify(oldpmd, newprot);
292924b2
PX
1919 if (uffd_wp) {
1920 entry = pmd_wrprotect(entry);
1921 entry = pmd_mkuffd_wp(entry);
1922 } else if (uffd_wp_resolve) {
1923 /*
1924 * Leave the write bit to be handled by PF interrupt
1925 * handler, then things like COW could be properly
1926 * handled.
1927 */
1928 entry = pmd_clear_uffd_wp(entry);
1929 }
c27f479e
DH
1930
1931 /* See change_pte_range(). */
1932 if ((cp_flags & MM_CP_TRY_CHANGE_WRITABLE) && !pmd_write(entry) &&
1933 can_change_pmd_writable(vma, addr, entry))
1934 entry = pmd_mkwrite(entry);
1935
0a85e51d
KS
1936 ret = HPAGE_PMD_NR;
1937 set_pmd_at(mm, addr, pmd, entry);
4a18419f 1938
c9fe6656
NA
1939 if (huge_pmd_needs_flush(oldpmd, entry))
1940 tlb_flush_pmd_range(tlb, addr, HPAGE_PMD_SIZE);
0a85e51d
KS
1941unlock:
1942 spin_unlock(ptl);
025c5b24
NH
1943 return ret;
1944}
1945
1946/*
8f19b0c0 1947 * Returns page table lock pointer if a given pmd maps a thp, NULL otherwise.
025c5b24 1948 *
8f19b0c0
HY
1949 * Note that if it returns page table lock pointer, this routine returns without
1950 * unlocking page table lock. So callers must unlock it.
025c5b24 1951 */
b6ec57f4 1952spinlock_t *__pmd_trans_huge_lock(pmd_t *pmd, struct vm_area_struct *vma)
025c5b24 1953{
b6ec57f4
KS
1954 spinlock_t *ptl;
1955 ptl = pmd_lock(vma->vm_mm, pmd);
84c3fc4e
ZY
1956 if (likely(is_swap_pmd(*pmd) || pmd_trans_huge(*pmd) ||
1957 pmd_devmap(*pmd)))
b6ec57f4
KS
1958 return ptl;
1959 spin_unlock(ptl);
1960 return NULL;
cd7548ab
JW
1961}
1962
a00cc7d9 1963/*
d965e390 1964 * Returns page table lock pointer if a given pud maps a thp, NULL otherwise.
a00cc7d9 1965 *
d965e390
ML
1966 * Note that if it returns page table lock pointer, this routine returns without
1967 * unlocking page table lock. So callers must unlock it.
a00cc7d9
MW
1968 */
1969spinlock_t *__pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma)
1970{
1971 spinlock_t *ptl;
1972
1973 ptl = pud_lock(vma->vm_mm, pud);
1974 if (likely(pud_trans_huge(*pud) || pud_devmap(*pud)))
1975 return ptl;
1976 spin_unlock(ptl);
1977 return NULL;
1978}
1979
1980#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
1981int zap_huge_pud(struct mmu_gather *tlb, struct vm_area_struct *vma,
1982 pud_t *pud, unsigned long addr)
1983{
a00cc7d9
MW
1984 spinlock_t *ptl;
1985
1986 ptl = __pud_trans_huge_lock(pud, vma);
1987 if (!ptl)
1988 return 0;
74929079 1989
70516b93 1990 pudp_huge_get_and_clear_full(tlb->mm, addr, pud, tlb->fullmm);
a00cc7d9 1991 tlb_remove_pud_tlb_entry(tlb, pud, addr);
2484ca9b 1992 if (vma_is_special_huge(vma)) {
a00cc7d9
MW
1993 spin_unlock(ptl);
1994 /* No zero page support yet */
1995 } else {
1996 /* No support for anonymous PUD pages yet */
1997 BUG();
1998 }
1999 return 1;
2000}
2001
2002static void __split_huge_pud_locked(struct vm_area_struct *vma, pud_t *pud,
2003 unsigned long haddr)
2004{
2005 VM_BUG_ON(haddr & ~HPAGE_PUD_MASK);
2006 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
2007 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PUD_SIZE, vma);
2008 VM_BUG_ON(!pud_trans_huge(*pud) && !pud_devmap(*pud));
2009
ce9311cf 2010 count_vm_event(THP_SPLIT_PUD);
a00cc7d9
MW
2011
2012 pudp_huge_clear_flush_notify(vma, haddr, pud);
2013}
2014
2015void __split_huge_pud(struct vm_area_struct *vma, pud_t *pud,
2016 unsigned long address)
2017{
2018 spinlock_t *ptl;
ac46d4f3 2019 struct mmu_notifier_range range;
a00cc7d9 2020
7269f999 2021 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 2022 address & HPAGE_PUD_MASK,
ac46d4f3
JG
2023 (address & HPAGE_PUD_MASK) + HPAGE_PUD_SIZE);
2024 mmu_notifier_invalidate_range_start(&range);
2025 ptl = pud_lock(vma->vm_mm, pud);
a00cc7d9
MW
2026 if (unlikely(!pud_trans_huge(*pud) && !pud_devmap(*pud)))
2027 goto out;
ac46d4f3 2028 __split_huge_pud_locked(vma, pud, range.start);
a00cc7d9
MW
2029
2030out:
2031 spin_unlock(ptl);
4645b9fe
JG
2032 /*
2033 * No need to double call mmu_notifier->invalidate_range() callback as
2034 * the above pudp_huge_clear_flush_notify() did already call it.
2035 */
ac46d4f3 2036 mmu_notifier_invalidate_range_only_end(&range);
a00cc7d9
MW
2037}
2038#endif /* CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD */
2039
eef1b3ba
KS
2040static void __split_huge_zero_page_pmd(struct vm_area_struct *vma,
2041 unsigned long haddr, pmd_t *pmd)
2042{
2043 struct mm_struct *mm = vma->vm_mm;
2044 pgtable_t pgtable;
2045 pmd_t _pmd;
2046 int i;
2047
0f10851e
JG
2048 /*
2049 * Leave pmd empty until pte is filled note that it is fine to delay
2050 * notification until mmu_notifier_invalidate_range_end() as we are
2051 * replacing a zero pmd write protected page with a zero pte write
2052 * protected page.
2053 *
ee65728e 2054 * See Documentation/mm/mmu_notifier.rst
0f10851e
JG
2055 */
2056 pmdp_huge_clear_flush(vma, haddr, pmd);
eef1b3ba
KS
2057
2058 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2059 pmd_populate(mm, &_pmd, pgtable);
2060
2061 for (i = 0; i < HPAGE_PMD_NR; i++, haddr += PAGE_SIZE) {
2062 pte_t *pte, entry;
2063 entry = pfn_pte(my_zero_pfn(haddr), vma->vm_page_prot);
2064 entry = pte_mkspecial(entry);
2065 pte = pte_offset_map(&_pmd, haddr);
2066 VM_BUG_ON(!pte_none(*pte));
2067 set_pte_at(mm, haddr, pte, entry);
2068 pte_unmap(pte);
2069 }
2070 smp_wmb(); /* make pte visible before pmd */
2071 pmd_populate(mm, pmd, pgtable);
eef1b3ba
KS
2072}
2073
2074static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
ba988280 2075 unsigned long haddr, bool freeze)
eef1b3ba
KS
2076{
2077 struct mm_struct *mm = vma->vm_mm;
2078 struct page *page;
2079 pgtable_t pgtable;
423ac9af 2080 pmd_t old_pmd, _pmd;
292924b2 2081 bool young, write, soft_dirty, pmd_migration = false, uffd_wp = false;
0ccf7f16 2082 bool anon_exclusive = false, dirty = false;
2ac015e2 2083 unsigned long addr;
eef1b3ba
KS
2084 int i;
2085
2086 VM_BUG_ON(haddr & ~HPAGE_PMD_MASK);
2087 VM_BUG_ON_VMA(vma->vm_start > haddr, vma);
2088 VM_BUG_ON_VMA(vma->vm_end < haddr + HPAGE_PMD_SIZE, vma);
84c3fc4e
ZY
2089 VM_BUG_ON(!is_pmd_migration_entry(*pmd) && !pmd_trans_huge(*pmd)
2090 && !pmd_devmap(*pmd));
eef1b3ba
KS
2091
2092 count_vm_event(THP_SPLIT_PMD);
2093
d21b9e57 2094 if (!vma_is_anonymous(vma)) {
99fa8a48 2095 old_pmd = pmdp_huge_clear_flush_notify(vma, haddr, pmd);
953c66c2
AK
2096 /*
2097 * We are going to unmap this huge page. So
2098 * just go ahead and zap it
2099 */
2100 if (arch_needs_pgtable_deposit())
2101 zap_deposited_table(mm, pmd);
2484ca9b 2102 if (vma_is_special_huge(vma))
d21b9e57 2103 return;
99fa8a48
HD
2104 if (unlikely(is_pmd_migration_entry(old_pmd))) {
2105 swp_entry_t entry;
2106
2107 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2108 page = pfn_swap_entry_to_page(entry);
99fa8a48
HD
2109 } else {
2110 page = pmd_page(old_pmd);
2111 if (!PageDirty(page) && pmd_dirty(old_pmd))
2112 set_page_dirty(page);
2113 if (!PageReferenced(page) && pmd_young(old_pmd))
2114 SetPageReferenced(page);
cea86fe2 2115 page_remove_rmap(page, vma, true);
99fa8a48
HD
2116 put_page(page);
2117 }
fadae295 2118 add_mm_counter(mm, mm_counter_file(page), -HPAGE_PMD_NR);
eef1b3ba 2119 return;
99fa8a48
HD
2120 }
2121
3b77e8c8 2122 if (is_huge_zero_pmd(*pmd)) {
4645b9fe
JG
2123 /*
2124 * FIXME: Do we want to invalidate secondary mmu by calling
2125 * mmu_notifier_invalidate_range() see comments below inside
2126 * __split_huge_pmd() ?
2127 *
2128 * We are going from a zero huge page write protected to zero
2129 * small page also write protected so it does not seems useful
2130 * to invalidate secondary mmu at this time.
2131 */
eef1b3ba
KS
2132 return __split_huge_zero_page_pmd(vma, haddr, pmd);
2133 }
2134
423ac9af
AK
2135 /*
2136 * Up to this point the pmd is present and huge and userland has the
2137 * whole access to the hugepage during the split (which happens in
2138 * place). If we overwrite the pmd with the not-huge version pointing
2139 * to the pte here (which of course we could if all CPUs were bug
2140 * free), userland could trigger a small page size TLB miss on the
2141 * small sized TLB while the hugepage TLB entry is still established in
2142 * the huge TLB. Some CPU doesn't like that.
42742d9b
AK
2143 * See http://support.amd.com/TechDocs/41322_10h_Rev_Gd.pdf, Erratum
2144 * 383 on page 105. Intel should be safe but is also warns that it's
423ac9af
AK
2145 * only safe if the permission and cache attributes of the two entries
2146 * loaded in the two TLB is identical (which should be the case here).
2147 * But it is generally safer to never allow small and huge TLB entries
2148 * for the same virtual address to be loaded simultaneously. So instead
2149 * of doing "pmd_populate(); flush_pmd_tlb_range();" we first mark the
2150 * current pmd notpresent (atomically because here the pmd_trans_huge
2151 * must remain set at all times on the pmd until the split is complete
2152 * for this pmd), then we flush the SMP TLB and finally we write the
2153 * non-huge version of the pmd entry with pmd_populate.
2154 */
2155 old_pmd = pmdp_invalidate(vma, haddr, pmd);
2156
423ac9af 2157 pmd_migration = is_pmd_migration_entry(old_pmd);
2e83ee1d 2158 if (unlikely(pmd_migration)) {
84c3fc4e
ZY
2159 swp_entry_t entry;
2160
423ac9af 2161 entry = pmd_to_swp_entry(old_pmd);
af5cdaf8 2162 page = pfn_swap_entry_to_page(entry);
4dd845b5 2163 write = is_writable_migration_entry(entry);
6c287605
DH
2164 if (PageAnon(page))
2165 anon_exclusive = is_readable_exclusive_migration_entry(entry);
2e346877
PX
2166 young = is_migration_entry_young(entry);
2167 dirty = is_migration_entry_dirty(entry);
2e83ee1d 2168 soft_dirty = pmd_swp_soft_dirty(old_pmd);
f45ec5ff 2169 uffd_wp = pmd_swp_uffd_wp(old_pmd);
2e83ee1d 2170 } else {
423ac9af 2171 page = pmd_page(old_pmd);
0ccf7f16
PX
2172 if (pmd_dirty(old_pmd)) {
2173 dirty = true;
2e83ee1d 2174 SetPageDirty(page);
0ccf7f16 2175 }
2e83ee1d
PX
2176 write = pmd_write(old_pmd);
2177 young = pmd_young(old_pmd);
2178 soft_dirty = pmd_soft_dirty(old_pmd);
292924b2 2179 uffd_wp = pmd_uffd_wp(old_pmd);
6c287605 2180
9d84604b 2181 VM_BUG_ON_PAGE(!page_count(page), page);
6c287605
DH
2182
2183 /*
2184 * Without "freeze", we'll simply split the PMD, propagating the
2185 * PageAnonExclusive() flag for each PTE by setting it for
2186 * each subpage -- no need to (temporarily) clear.
2187 *
2188 * With "freeze" we want to replace mapped pages by
2189 * migration entries right away. This is only possible if we
2190 * managed to clear PageAnonExclusive() -- see
2191 * set_pmd_migration_entry().
2192 *
2193 * In case we cannot clear PageAnonExclusive(), split the PMD
2194 * only and let try_to_migrate_one() fail later.
088b8aa5
DH
2195 *
2196 * See page_try_share_anon_rmap(): invalidate PMD first.
6c287605
DH
2197 */
2198 anon_exclusive = PageAnon(page) && PageAnonExclusive(page);
2199 if (freeze && anon_exclusive && page_try_share_anon_rmap(page))
2200 freeze = false;
96d82deb
HD
2201 if (!freeze)
2202 page_ref_add(page, HPAGE_PMD_NR - 1);
2e83ee1d 2203 }
eef1b3ba 2204
423ac9af
AK
2205 /*
2206 * Withdraw the table only after we mark the pmd entry invalid.
2207 * This's critical for some architectures (Power).
2208 */
eef1b3ba
KS
2209 pgtable = pgtable_trans_huge_withdraw(mm, pmd);
2210 pmd_populate(mm, &_pmd, pgtable);
2211
2ac015e2 2212 for (i = 0, addr = haddr; i < HPAGE_PMD_NR; i++, addr += PAGE_SIZE) {
eef1b3ba
KS
2213 pte_t entry, *pte;
2214 /*
2215 * Note that NUMA hinting access restrictions are not
2216 * transferred to avoid any possibility of altering
2217 * permissions across VMAs.
2218 */
84c3fc4e 2219 if (freeze || pmd_migration) {
ba988280 2220 swp_entry_t swp_entry;
4dd845b5
AP
2221 if (write)
2222 swp_entry = make_writable_migration_entry(
2223 page_to_pfn(page + i));
6c287605
DH
2224 else if (anon_exclusive)
2225 swp_entry = make_readable_exclusive_migration_entry(
2226 page_to_pfn(page + i));
4dd845b5
AP
2227 else
2228 swp_entry = make_readable_migration_entry(
2229 page_to_pfn(page + i));
2e346877
PX
2230 if (young)
2231 swp_entry = make_migration_entry_young(swp_entry);
2232 if (dirty)
2233 swp_entry = make_migration_entry_dirty(swp_entry);
ba988280 2234 entry = swp_entry_to_pte(swp_entry);
804dd150
AA
2235 if (soft_dirty)
2236 entry = pte_swp_mksoft_dirty(entry);
f45ec5ff
PX
2237 if (uffd_wp)
2238 entry = pte_swp_mkuffd_wp(entry);
ba988280 2239 } else {
6d2329f8 2240 entry = mk_pte(page + i, READ_ONCE(vma->vm_page_prot));
b8d3c4c3 2241 entry = maybe_mkwrite(entry, vma);
6c287605
DH
2242 if (anon_exclusive)
2243 SetPageAnonExclusive(page + i);
ba988280
KS
2244 if (!write)
2245 entry = pte_wrprotect(entry);
2246 if (!young)
2247 entry = pte_mkold(entry);
624a2c94
PX
2248 /*
2249 * NOTE: we don't do pte_mkdirty when dirty==true
2250 * because it breaks sparc64 which can sigsegv
2251 * random process. Need to revisit when we figure
2252 * out what is special with sparc64.
2253 */
804dd150
AA
2254 if (soft_dirty)
2255 entry = pte_mksoft_dirty(entry);
292924b2
PX
2256 if (uffd_wp)
2257 entry = pte_mkuffd_wp(entry);
96d82deb 2258 page_add_anon_rmap(page + i, vma, addr, false);
ba988280 2259 }
2ac015e2 2260 pte = pte_offset_map(&_pmd, addr);
eef1b3ba 2261 BUG_ON(!pte_none(*pte));
2ac015e2 2262 set_pte_at(mm, addr, pte, entry);
ec0abae6 2263 pte_unmap(pte);
eef1b3ba
KS
2264 }
2265
cb67f428
HD
2266 if (!pmd_migration)
2267 page_remove_rmap(page, vma, true);
96d82deb
HD
2268 if (freeze)
2269 put_page(page);
eef1b3ba
KS
2270
2271 smp_wmb(); /* make pte visible before pmd */
2272 pmd_populate(mm, pmd, pgtable);
2273}
2274
2275void __split_huge_pmd(struct vm_area_struct *vma, pmd_t *pmd,
af28a988 2276 unsigned long address, bool freeze, struct folio *folio)
eef1b3ba
KS
2277{
2278 spinlock_t *ptl;
ac46d4f3 2279 struct mmu_notifier_range range;
eef1b3ba 2280
7269f999 2281 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, vma->vm_mm,
6f4f13e8 2282 address & HPAGE_PMD_MASK,
ac46d4f3
JG
2283 (address & HPAGE_PMD_MASK) + HPAGE_PMD_SIZE);
2284 mmu_notifier_invalidate_range_start(&range);
2285 ptl = pmd_lock(vma->vm_mm, pmd);
33f4751e
NH
2286
2287 /*
af28a988
MWO
2288 * If caller asks to setup a migration entry, we need a folio to check
2289 * pmd against. Otherwise we can end up replacing wrong folio.
33f4751e 2290 */
af28a988 2291 VM_BUG_ON(freeze && !folio);
83a8441f 2292 VM_WARN_ON_ONCE(folio && !folio_test_locked(folio));
33f4751e 2293
7f760917 2294 if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd) ||
83a8441f 2295 is_pmd_migration_entry(*pmd)) {
cea33328
ML
2296 /*
2297 * It's safe to call pmd_page when folio is set because it's
2298 * guaranteed that pmd is present.
2299 */
83a8441f
MWO
2300 if (folio && folio != page_folio(pmd_page(*pmd)))
2301 goto out;
7f760917 2302 __split_huge_pmd_locked(vma, pmd, range.start, freeze);
83a8441f 2303 }
7f760917 2304
e90309c9 2305out:
eef1b3ba 2306 spin_unlock(ptl);
4645b9fe
JG
2307 /*
2308 * No need to double call mmu_notifier->invalidate_range() callback.
2309 * They are 3 cases to consider inside __split_huge_pmd_locked():
2310 * 1) pmdp_huge_clear_flush_notify() call invalidate_range() obvious
2311 * 2) __split_huge_zero_page_pmd() read only zero page and any write
2312 * fault will trigger a flush_notify before pointing to a new page
2313 * (it is fine if the secondary mmu keeps pointing to the old zero
2314 * page in the meantime)
2315 * 3) Split a huge pmd into pte pointing to the same page. No need
2316 * to invalidate secondary tlb entry they are all still valid.
2317 * any further changes to individual pte will notify. So no need
2318 * to call mmu_notifier->invalidate_range()
2319 */
ac46d4f3 2320 mmu_notifier_invalidate_range_only_end(&range);
eef1b3ba
KS
2321}
2322
fec89c10 2323void split_huge_pmd_address(struct vm_area_struct *vma, unsigned long address,
af28a988 2324 bool freeze, struct folio *folio)
94fcc585 2325{
50722804 2326 pmd_t *pmd = mm_find_pmd(vma->vm_mm, address);
94fcc585 2327
50722804 2328 if (!pmd)
f72e7dcd
HD
2329 return;
2330
af28a988 2331 __split_huge_pmd(vma, pmd, address, freeze, folio);
94fcc585
AA
2332}
2333
71f9e58e
ML
2334static inline void split_huge_pmd_if_needed(struct vm_area_struct *vma, unsigned long address)
2335{
2336 /*
2337 * If the new address isn't hpage aligned and it could previously
2338 * contain an hugepage: check if we need to split an huge pmd.
2339 */
2340 if (!IS_ALIGNED(address, HPAGE_PMD_SIZE) &&
2341 range_in_vma(vma, ALIGN_DOWN(address, HPAGE_PMD_SIZE),
2342 ALIGN(address, HPAGE_PMD_SIZE)))
2343 split_huge_pmd_address(vma, address, false, NULL);
2344}
2345
e1b9996b 2346void vma_adjust_trans_huge(struct vm_area_struct *vma,
94fcc585
AA
2347 unsigned long start,
2348 unsigned long end,
2349 long adjust_next)
2350{
71f9e58e
ML
2351 /* Check if we need to split start first. */
2352 split_huge_pmd_if_needed(vma, start);
94fcc585 2353
71f9e58e
ML
2354 /* Check if we need to split end next. */
2355 split_huge_pmd_if_needed(vma, end);
94fcc585
AA
2356
2357 /*
68540502 2358 * If we're also updating the next vma vm_start,
71f9e58e 2359 * check if we need to split it.
94fcc585
AA
2360 */
2361 if (adjust_next > 0) {
68540502 2362 struct vm_area_struct *next = find_vma(vma->vm_mm, vma->vm_end);
94fcc585 2363 unsigned long nstart = next->vm_start;
f9d86a60 2364 nstart += adjust_next;
71f9e58e 2365 split_huge_pmd_if_needed(next, nstart);
94fcc585
AA
2366 }
2367}
e9b61f19 2368
684555aa 2369static void unmap_folio(struct folio *folio)
e9b61f19 2370{
a98a2f0c
AP
2371 enum ttu_flags ttu_flags = TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD |
2372 TTU_SYNC;
e9b61f19 2373
684555aa 2374 VM_BUG_ON_FOLIO(!folio_test_large(folio), folio);
e9b61f19 2375
a98a2f0c
AP
2376 /*
2377 * Anon pages need migration entries to preserve them, but file
2378 * pages can simply be left unmapped, then faulted back on demand.
2379 * If that is ever changed (perhaps for mlock), update remap_page().
2380 */
4b8554c5
MWO
2381 if (folio_test_anon(folio))
2382 try_to_migrate(folio, ttu_flags);
a98a2f0c 2383 else
869f7ee6 2384 try_to_unmap(folio, ttu_flags | TTU_IGNORE_MLOCK);
e9b61f19
KS
2385}
2386
4eecb8b9 2387static void remap_page(struct folio *folio, unsigned long nr)
e9b61f19 2388{
4eecb8b9 2389 int i = 0;
ab02c252 2390
684555aa 2391 /* If unmap_folio() uses try_to_migrate() on file, remove this check */
4eecb8b9 2392 if (!folio_test_anon(folio))
ab02c252 2393 return;
4eecb8b9
MWO
2394 for (;;) {
2395 remove_migration_ptes(folio, folio, true);
2396 i += folio_nr_pages(folio);
2397 if (i >= nr)
2398 break;
2399 folio = folio_next(folio);
ace71a19 2400 }
e9b61f19
KS
2401}
2402
94866635 2403static void lru_add_page_tail(struct page *head, struct page *tail,
88dcb9a3
AS
2404 struct lruvec *lruvec, struct list_head *list)
2405{
94866635
AS
2406 VM_BUG_ON_PAGE(!PageHead(head), head);
2407 VM_BUG_ON_PAGE(PageCompound(tail), head);
2408 VM_BUG_ON_PAGE(PageLRU(tail), head);
6168d0da 2409 lockdep_assert_held(&lruvec->lru_lock);
88dcb9a3 2410
6dbb5741 2411 if (list) {
88dcb9a3 2412 /* page reclaim is reclaiming a huge page */
6dbb5741 2413 VM_WARN_ON(PageLRU(head));
94866635
AS
2414 get_page(tail);
2415 list_add_tail(&tail->lru, list);
88dcb9a3 2416 } else {
6dbb5741
AS
2417 /* head is still on lru (and we have it frozen) */
2418 VM_WARN_ON(!PageLRU(head));
07ca7606
HD
2419 if (PageUnevictable(tail))
2420 tail->mlock_count = 0;
2421 else
2422 list_add_tail(&tail->lru, &head->lru);
6dbb5741 2423 SetPageLRU(tail);
88dcb9a3
AS
2424 }
2425}
2426
8df651c7 2427static void __split_huge_page_tail(struct page *head, int tail,
e9b61f19
KS
2428 struct lruvec *lruvec, struct list_head *list)
2429{
e9b61f19
KS
2430 struct page *page_tail = head + tail;
2431
8df651c7 2432 VM_BUG_ON_PAGE(atomic_read(&page_tail->_mapcount) != -1, page_tail);
e9b61f19
KS
2433
2434 /*
605ca5ed
KK
2435 * Clone page flags before unfreezing refcount.
2436 *
2437 * After successful get_page_unless_zero() might follow flags change,
8958b249 2438 * for example lock_page() which set PG_waiters.
6c287605
DH
2439 *
2440 * Note that for mapped sub-pages of an anonymous THP,
684555aa 2441 * PG_anon_exclusive has been cleared in unmap_folio() and is stored in
6c287605
DH
2442 * the migration entry instead from where remap_page() will restore it.
2443 * We can still have PG_anon_exclusive set on effectively unmapped and
2444 * unreferenced sub-pages of an anonymous THP: we can simply drop
2445 * PG_anon_exclusive (-> PG_mappedtodisk) for these here.
e9b61f19 2446 */
e9b61f19
KS
2447 page_tail->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
2448 page_tail->flags |= (head->flags &
2449 ((1L << PG_referenced) |
2450 (1L << PG_swapbacked) |
38d8b4e6 2451 (1L << PG_swapcache) |
e9b61f19
KS
2452 (1L << PG_mlocked) |
2453 (1L << PG_uptodate) |
2454 (1L << PG_active) |
1899ad18 2455 (1L << PG_workingset) |
e9b61f19 2456 (1L << PG_locked) |
b8d3c4c3 2457 (1L << PG_unevictable) |
72e6afa0
CM
2458#ifdef CONFIG_64BIT
2459 (1L << PG_arch_2) |
2460#endif
ec1c86b2
YZ
2461 (1L << PG_dirty) |
2462 LRU_GEN_MASK | LRU_REFS_MASK));
e9b61f19 2463
cb67f428 2464 /* ->mapping in first and second tail page is replaced by other uses */
173d9d9f
HD
2465 VM_BUG_ON_PAGE(tail > 2 && page_tail->mapping != TAIL_MAPPING,
2466 page_tail);
2467 page_tail->mapping = head->mapping;
2468 page_tail->index = head->index + tail;
71e2d666
MG
2469
2470 /*
2471 * page->private should not be set in tail pages with the exception
2472 * of swap cache pages that store the swp_entry_t in tail pages.
2473 * Fix up and warn once if private is unexpectedly set.
cb67f428
HD
2474 *
2475 * What of 32-bit systems, on which head[1].compound_pincount overlays
2476 * head[1].private? No problem: THP_SWAP is not enabled on 32-bit, and
2477 * compound_pincount must be 0 for folio_ref_freeze() to have succeeded.
71e2d666
MG
2478 */
2479 if (!folio_test_swapcache(page_folio(head))) {
5aae9265 2480 VM_WARN_ON_ONCE_PAGE(page_tail->private != 0, page_tail);
71e2d666
MG
2481 page_tail->private = 0;
2482 }
173d9d9f 2483
605ca5ed 2484 /* Page flags must be visible before we make the page non-compound. */
e9b61f19
KS
2485 smp_wmb();
2486
605ca5ed
KK
2487 /*
2488 * Clear PageTail before unfreezing page refcount.
2489 *
2490 * After successful get_page_unless_zero() might follow put_page()
2491 * which needs correct compound_head().
2492 */
e9b61f19
KS
2493 clear_compound_head(page_tail);
2494
605ca5ed
KK
2495 /* Finally unfreeze refcount. Additional reference from page cache. */
2496 page_ref_unfreeze(page_tail, 1 + (!PageAnon(head) ||
2497 PageSwapCache(head)));
2498
e9b61f19
KS
2499 if (page_is_young(head))
2500 set_page_young(page_tail);
2501 if (page_is_idle(head))
2502 set_page_idle(page_tail);
2503
e9b61f19 2504 page_cpupid_xchg_last(page_tail, page_cpupid_last(head));
94723aaf
MH
2505
2506 /*
2507 * always add to the tail because some iterators expect new
2508 * pages to show after the currently processed elements - e.g.
2509 * migrate_pages
2510 */
e9b61f19 2511 lru_add_page_tail(head, page_tail, lruvec, list);
e9b61f19
KS
2512}
2513
baa355fd 2514static void __split_huge_page(struct page *page, struct list_head *list,
b6769834 2515 pgoff_t end)
e9b61f19 2516{
e809c3fe
MWO
2517 struct folio *folio = page_folio(page);
2518 struct page *head = &folio->page;
e9b61f19 2519 struct lruvec *lruvec;
4101196b
MWO
2520 struct address_space *swap_cache = NULL;
2521 unsigned long offset = 0;
8cce5475 2522 unsigned int nr = thp_nr_pages(head);
8df651c7 2523 int i;
e9b61f19 2524
e9b61f19 2525 /* complete memcg works before add pages to LRU */
be6c8982 2526 split_page_memcg(head, nr);
e9b61f19 2527
4101196b
MWO
2528 if (PageAnon(head) && PageSwapCache(head)) {
2529 swp_entry_t entry = { .val = page_private(head) };
2530
2531 offset = swp_offset(entry);
2532 swap_cache = swap_address_space(entry);
2533 xa_lock(&swap_cache->i_pages);
2534 }
2535
f0953a1b 2536 /* lock lru list/PageCompound, ref frozen by page_ref_freeze */
e809c3fe 2537 lruvec = folio_lruvec_lock(folio);
b6769834 2538
eac96c3e
YS
2539 ClearPageHasHWPoisoned(head);
2540
8cce5475 2541 for (i = nr - 1; i >= 1; i--) {
8df651c7 2542 __split_huge_page_tail(head, i, lruvec, list);
d144bf62 2543 /* Some pages can be beyond EOF: drop them from page cache */
baa355fd 2544 if (head[i].index >= end) {
fb5c2029
MWO
2545 struct folio *tail = page_folio(head + i);
2546
d144bf62 2547 if (shmem_mapping(head->mapping))
800d8c63 2548 shmem_uncharge(head->mapping->host, 1);
fb5c2029
MWO
2549 else if (folio_test_clear_dirty(tail))
2550 folio_account_cleaned(tail,
2551 inode_to_wb(folio->mapping->host));
2552 __filemap_remove_folio(tail, NULL);
2553 folio_put(tail);
4101196b
MWO
2554 } else if (!PageAnon(page)) {
2555 __xa_store(&head->mapping->i_pages, head[i].index,
2556 head + i, 0);
2557 } else if (swap_cache) {
2558 __xa_store(&swap_cache->i_pages, offset + i,
2559 head + i, 0);
baa355fd
KS
2560 }
2561 }
e9b61f19
KS
2562
2563 ClearPageCompound(head);
6168d0da 2564 unlock_page_lruvec(lruvec);
b6769834 2565 /* Caller disabled irqs, so they are still disabled here */
f7da677b 2566
8cce5475 2567 split_page_owner(head, nr);
f7da677b 2568
baa355fd
KS
2569 /* See comment in __split_huge_page_tail() */
2570 if (PageAnon(head)) {
aa5dc07f 2571 /* Additional pin to swap cache */
4101196b 2572 if (PageSwapCache(head)) {
38d8b4e6 2573 page_ref_add(head, 2);
4101196b
MWO
2574 xa_unlock(&swap_cache->i_pages);
2575 } else {
38d8b4e6 2576 page_ref_inc(head);
4101196b 2577 }
baa355fd 2578 } else {
aa5dc07f 2579 /* Additional pin to page cache */
baa355fd 2580 page_ref_add(head, 2);
b93b0163 2581 xa_unlock(&head->mapping->i_pages);
baa355fd 2582 }
b6769834 2583 local_irq_enable();
e9b61f19 2584
4eecb8b9 2585 remap_page(folio, nr);
e9b61f19 2586
c4f9c701
HY
2587 if (PageSwapCache(head)) {
2588 swp_entry_t entry = { .val = page_private(head) };
2589
2590 split_swap_cluster(entry);
2591 }
2592
8cce5475 2593 for (i = 0; i < nr; i++) {
e9b61f19
KS
2594 struct page *subpage = head + i;
2595 if (subpage == page)
2596 continue;
2597 unlock_page(subpage);
2598
2599 /*
2600 * Subpages may be freed if there wasn't any mapping
2601 * like if add_to_swap() is running on a lru page that
2602 * had its mapping zapped. And freeing these pages
2603 * requires taking the lru_lock so we do the put_page
2604 * of the tail pages after the split is complete.
2605 */
0b175468 2606 free_page_and_swap_cache(subpage);
e9b61f19
KS
2607 }
2608}
2609
b8f593cd 2610/* Racy check whether the huge page can be split */
d4b4084a 2611bool can_split_folio(struct folio *folio, int *pextra_pins)
b8f593cd
HY
2612{
2613 int extra_pins;
2614
aa5dc07f 2615 /* Additional pins from page cache */
d4b4084a
MWO
2616 if (folio_test_anon(folio))
2617 extra_pins = folio_test_swapcache(folio) ?
2618 folio_nr_pages(folio) : 0;
b8f593cd 2619 else
d4b4084a 2620 extra_pins = folio_nr_pages(folio);
b8f593cd
HY
2621 if (pextra_pins)
2622 *pextra_pins = extra_pins;
d4b4084a 2623 return folio_mapcount(folio) == folio_ref_count(folio) - extra_pins - 1;
b8f593cd
HY
2624}
2625
e9b61f19
KS
2626/*
2627 * This function splits huge page into normal pages. @page can point to any
2628 * subpage of huge page to split. Split doesn't change the position of @page.
2629 *
2630 * Only caller must hold pin on the @page, otherwise split fails with -EBUSY.
2631 * The huge page must be locked.
2632 *
2633 * If @list is null, tail pages will be added to LRU list, otherwise, to @list.
2634 *
2635 * Both head page and tail pages will inherit mapping, flags, and so on from
2636 * the hugepage.
2637 *
2638 * GUP pin and PG_locked transferred to @page. Rest subpages can be freed if
2639 * they are not mapped.
2640 *
2641 * Returns 0 if the hugepage is split successfully.
2642 * Returns -EBUSY if the page is pinned or if anon_vma disappeared from under
2643 * us.
2644 */
2645int split_huge_page_to_list(struct page *page, struct list_head *list)
2646{
4eecb8b9 2647 struct folio *folio = page_folio(page);
3e9a13da
MWO
2648 struct deferred_split *ds_queue = get_deferred_split_queue(&folio->page);
2649 XA_STATE(xas, &folio->mapping->i_pages, folio->index);
baa355fd
KS
2650 struct anon_vma *anon_vma = NULL;
2651 struct address_space *mapping = NULL;
504e070d 2652 int extra_pins, ret;
006d3ff2 2653 pgoff_t end;
478d134e 2654 bool is_hzp;
e9b61f19 2655
3e9a13da
MWO
2656 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
2657 VM_BUG_ON_FOLIO(!folio_test_large(folio), folio);
e9b61f19 2658
3e9a13da
MWO
2659 is_hzp = is_huge_zero_page(&folio->page);
2660 VM_WARN_ON_ONCE_FOLIO(is_hzp, folio);
478d134e
XY
2661 if (is_hzp)
2662 return -EBUSY;
2663
3e9a13da 2664 if (folio_test_writeback(folio))
59807685
HY
2665 return -EBUSY;
2666
3e9a13da 2667 if (folio_test_anon(folio)) {
baa355fd 2668 /*
c1e8d7c6 2669 * The caller does not necessarily hold an mmap_lock that would
baa355fd
KS
2670 * prevent the anon_vma disappearing so we first we take a
2671 * reference to it and then lock the anon_vma for write. This
2f031c6f 2672 * is similar to folio_lock_anon_vma_read except the write lock
baa355fd
KS
2673 * is taken to serialise against parallel split or collapse
2674 * operations.
2675 */
29eea9b5 2676 anon_vma = folio_get_anon_vma(folio);
baa355fd
KS
2677 if (!anon_vma) {
2678 ret = -EBUSY;
2679 goto out;
2680 }
006d3ff2 2681 end = -1;
baa355fd
KS
2682 mapping = NULL;
2683 anon_vma_lock_write(anon_vma);
2684 } else {
6a3edd29
YF
2685 gfp_t gfp;
2686
3e9a13da 2687 mapping = folio->mapping;
baa355fd
KS
2688
2689 /* Truncated ? */
2690 if (!mapping) {
2691 ret = -EBUSY;
2692 goto out;
2693 }
2694
6a3edd29
YF
2695 gfp = current_gfp_context(mapping_gfp_mask(mapping) &
2696 GFP_RECLAIM_MASK);
2697
2698 if (folio_test_private(folio) &&
2699 !filemap_release_folio(folio, gfp)) {
2700 ret = -EBUSY;
2701 goto out;
2702 }
2703
3e9a13da 2704 xas_split_alloc(&xas, folio, folio_order(folio), gfp);
6b24ca4a
MWO
2705 if (xas_error(&xas)) {
2706 ret = xas_error(&xas);
2707 goto out;
2708 }
2709
baa355fd
KS
2710 anon_vma = NULL;
2711 i_mmap_lock_read(mapping);
006d3ff2
HD
2712
2713 /*
2714 *__split_huge_page() may need to trim off pages beyond EOF:
2715 * but on 32-bit, i_size_read() takes an irq-unsafe seqlock,
2716 * which cannot be nested inside the page tree lock. So note
2717 * end now: i_size itself may be changed at any moment, but
3e9a13da 2718 * folio lock is good enough to serialize the trimming.
006d3ff2
HD
2719 */
2720 end = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
d144bf62
HD
2721 if (shmem_mapping(mapping))
2722 end = shmem_fallocend(mapping->host, end);
e9b61f19 2723 }
e9b61f19
KS
2724
2725 /*
684555aa 2726 * Racy check if we can split the page, before unmap_folio() will
e9b61f19
KS
2727 * split PMDs
2728 */
d4b4084a 2729 if (!can_split_folio(folio, &extra_pins)) {
fd4a7ac3 2730 ret = -EAGAIN;
e9b61f19
KS
2731 goto out_unlock;
2732 }
2733
684555aa 2734 unmap_folio(folio);
e9b61f19 2735
b6769834
AS
2736 /* block interrupt reentry in xa_lock and spinlock */
2737 local_irq_disable();
baa355fd 2738 if (mapping) {
baa355fd 2739 /*
3e9a13da
MWO
2740 * Check if the folio is present in page cache.
2741 * We assume all tail are present too, if folio is there.
baa355fd 2742 */
6b24ca4a
MWO
2743 xas_lock(&xas);
2744 xas_reset(&xas);
3e9a13da 2745 if (xas_load(&xas) != folio)
baa355fd
KS
2746 goto fail;
2747 }
2748
0139aa7b 2749 /* Prevent deferred_split_scan() touching ->_refcount */
364c1eeb 2750 spin_lock(&ds_queue->split_queue_lock);
3e9a13da
MWO
2751 if (folio_ref_freeze(folio, 1 + extra_pins)) {
2752 if (!list_empty(page_deferred_list(&folio->page))) {
364c1eeb 2753 ds_queue->split_queue_len--;
3e9a13da 2754 list_del(page_deferred_list(&folio->page));
9a982250 2755 }
afb97172 2756 spin_unlock(&ds_queue->split_queue_lock);
06d3eff6 2757 if (mapping) {
3e9a13da 2758 int nr = folio_nr_pages(folio);
bf9ecead 2759
3e9a13da
MWO
2760 xas_split(&xas, folio, folio_order(folio));
2761 if (folio_test_swapbacked(folio)) {
2762 __lruvec_stat_mod_folio(folio, NR_SHMEM_THPS,
57b2847d 2763 -nr);
1ca7554d 2764 } else {
3e9a13da 2765 __lruvec_stat_mod_folio(folio, NR_FILE_THPS,
bf9ecead 2766 -nr);
1ca7554d
MS
2767 filemap_nr_thps_dec(mapping);
2768 }
06d3eff6
KS
2769 }
2770
b6769834 2771 __split_huge_page(page, list, end);
c4f9c701 2772 ret = 0;
e9b61f19 2773 } else {
364c1eeb 2774 spin_unlock(&ds_queue->split_queue_lock);
504e070d
YS
2775fail:
2776 if (mapping)
6b24ca4a 2777 xas_unlock(&xas);
b6769834 2778 local_irq_enable();
4eecb8b9 2779 remap_page(folio, folio_nr_pages(folio));
fd4a7ac3 2780 ret = -EAGAIN;
e9b61f19
KS
2781 }
2782
2783out_unlock:
baa355fd
KS
2784 if (anon_vma) {
2785 anon_vma_unlock_write(anon_vma);
2786 put_anon_vma(anon_vma);
2787 }
2788 if (mapping)
2789 i_mmap_unlock_read(mapping);
e9b61f19 2790out:
69a37a8b 2791 xas_destroy(&xas);
e9b61f19
KS
2792 count_vm_event(!ret ? THP_SPLIT_PAGE : THP_SPLIT_PAGE_FAILED);
2793 return ret;
2794}
9a982250
KS
2795
2796void free_transhuge_page(struct page *page)
2797{
87eaceb3 2798 struct deferred_split *ds_queue = get_deferred_split_queue(page);
9a982250
KS
2799 unsigned long flags;
2800
364c1eeb 2801 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2802 if (!list_empty(page_deferred_list(page))) {
364c1eeb 2803 ds_queue->split_queue_len--;
9a982250
KS
2804 list_del(page_deferred_list(page));
2805 }
364c1eeb 2806 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2807 free_compound_page(page);
2808}
2809
2810void deferred_split_huge_page(struct page *page)
2811{
87eaceb3
YS
2812 struct deferred_split *ds_queue = get_deferred_split_queue(page);
2813#ifdef CONFIG_MEMCG
bcfe06bf 2814 struct mem_cgroup *memcg = page_memcg(compound_head(page));
87eaceb3 2815#endif
9a982250
KS
2816 unsigned long flags;
2817
2818 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
2819
87eaceb3
YS
2820 /*
2821 * The try_to_unmap() in page reclaim path might reach here too,
2822 * this may cause a race condition to corrupt deferred split queue.
2823 * And, if page reclaim is already handling the same page, it is
2824 * unnecessary to handle it again in shrinker.
2825 *
2826 * Check PageSwapCache to determine if the page is being
2827 * handled by page reclaim since THP swap would add the page into
2828 * swap cache before calling try_to_unmap().
2829 */
2830 if (PageSwapCache(page))
2831 return;
2832
364c1eeb 2833 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2834 if (list_empty(page_deferred_list(page))) {
f9719a03 2835 count_vm_event(THP_DEFERRED_SPLIT_PAGE);
364c1eeb
YS
2836 list_add_tail(page_deferred_list(page), &ds_queue->split_queue);
2837 ds_queue->split_queue_len++;
87eaceb3
YS
2838#ifdef CONFIG_MEMCG
2839 if (memcg)
2bfd3637
YS
2840 set_shrinker_bit(memcg, page_to_nid(page),
2841 deferred_split_shrinker.id);
87eaceb3 2842#endif
9a982250 2843 }
364c1eeb 2844 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2845}
2846
2847static unsigned long deferred_split_count(struct shrinker *shrink,
2848 struct shrink_control *sc)
2849{
a3d0a918 2850 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2851 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
87eaceb3
YS
2852
2853#ifdef CONFIG_MEMCG
2854 if (sc->memcg)
2855 ds_queue = &sc->memcg->deferred_split_queue;
2856#endif
364c1eeb 2857 return READ_ONCE(ds_queue->split_queue_len);
9a982250
KS
2858}
2859
2860static unsigned long deferred_split_scan(struct shrinker *shrink,
2861 struct shrink_control *sc)
2862{
a3d0a918 2863 struct pglist_data *pgdata = NODE_DATA(sc->nid);
364c1eeb 2864 struct deferred_split *ds_queue = &pgdata->deferred_split_queue;
9a982250
KS
2865 unsigned long flags;
2866 LIST_HEAD(list), *pos, *next;
2867 struct page *page;
2868 int split = 0;
2869
87eaceb3
YS
2870#ifdef CONFIG_MEMCG
2871 if (sc->memcg)
2872 ds_queue = &sc->memcg->deferred_split_queue;
2873#endif
2874
364c1eeb 2875 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
9a982250 2876 /* Take pin on all head pages to avoid freeing them under us */
364c1eeb 2877 list_for_each_safe(pos, next, &ds_queue->split_queue) {
dfe5c51c 2878 page = list_entry((void *)pos, struct page, deferred_list);
9a982250 2879 page = compound_head(page);
e3ae1953
KS
2880 if (get_page_unless_zero(page)) {
2881 list_move(page_deferred_list(page), &list);
2882 } else {
2883 /* We lost race with put_compound_page() */
9a982250 2884 list_del_init(page_deferred_list(page));
364c1eeb 2885 ds_queue->split_queue_len--;
9a982250 2886 }
e3ae1953
KS
2887 if (!--sc->nr_to_scan)
2888 break;
9a982250 2889 }
364c1eeb 2890 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250
KS
2891
2892 list_for_each_safe(pos, next, &list) {
dfe5c51c 2893 page = list_entry((void *)pos, struct page, deferred_list);
fa41b900
KS
2894 if (!trylock_page(page))
2895 goto next;
9a982250
KS
2896 /* split_huge_page() removes page from list on success */
2897 if (!split_huge_page(page))
2898 split++;
2899 unlock_page(page);
fa41b900 2900next:
9a982250
KS
2901 put_page(page);
2902 }
2903
364c1eeb
YS
2904 spin_lock_irqsave(&ds_queue->split_queue_lock, flags);
2905 list_splice_tail(&list, &ds_queue->split_queue);
2906 spin_unlock_irqrestore(&ds_queue->split_queue_lock, flags);
9a982250 2907
cb8d68ec
KS
2908 /*
2909 * Stop shrinker if we didn't split any page, but the queue is empty.
2910 * This can happen if pages were freed under us.
2911 */
364c1eeb 2912 if (!split && list_empty(&ds_queue->split_queue))
cb8d68ec
KS
2913 return SHRINK_STOP;
2914 return split;
9a982250
KS
2915}
2916
2917static struct shrinker deferred_split_shrinker = {
2918 .count_objects = deferred_split_count,
2919 .scan_objects = deferred_split_scan,
2920 .seeks = DEFAULT_SEEKS,
87eaceb3
YS
2921 .flags = SHRINKER_NUMA_AWARE | SHRINKER_MEMCG_AWARE |
2922 SHRINKER_NONSLAB,
9a982250 2923};
49071d43
KS
2924
2925#ifdef CONFIG_DEBUG_FS
fa6c0231 2926static void split_huge_pages_all(void)
49071d43
KS
2927{
2928 struct zone *zone;
2929 struct page *page;
2930 unsigned long pfn, max_zone_pfn;
2931 unsigned long total = 0, split = 0;
2932
fa6c0231 2933 pr_debug("Split all THPs\n");
a17206da
ML
2934 for_each_zone(zone) {
2935 if (!managed_zone(zone))
2936 continue;
49071d43
KS
2937 max_zone_pfn = zone_end_pfn(zone);
2938 for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) {
a17206da 2939 int nr_pages;
49071d43 2940
2b7aa91b
NH
2941 page = pfn_to_online_page(pfn);
2942 if (!page || !get_page_unless_zero(page))
49071d43
KS
2943 continue;
2944
2945 if (zone != page_zone(page))
2946 goto next;
2947
baa355fd 2948 if (!PageHead(page) || PageHuge(page) || !PageLRU(page))
49071d43
KS
2949 goto next;
2950
2951 total++;
2952 lock_page(page);
a17206da 2953 nr_pages = thp_nr_pages(page);
49071d43
KS
2954 if (!split_huge_page(page))
2955 split++;
a17206da 2956 pfn += nr_pages - 1;
49071d43
KS
2957 unlock_page(page);
2958next:
2959 put_page(page);
fa6c0231 2960 cond_resched();
49071d43
KS
2961 }
2962 }
2963
fa6c0231
ZY
2964 pr_debug("%lu of %lu THP split\n", split, total);
2965}
49071d43 2966
fa6c0231
ZY
2967static inline bool vma_not_suitable_for_thp_split(struct vm_area_struct *vma)
2968{
2969 return vma_is_special_huge(vma) || (vma->vm_flags & VM_IO) ||
2970 is_vm_hugetlb_page(vma);
2971}
2972
2973static int split_huge_pages_pid(int pid, unsigned long vaddr_start,
2974 unsigned long vaddr_end)
2975{
2976 int ret = 0;
2977 struct task_struct *task;
2978 struct mm_struct *mm;
2979 unsigned long total = 0, split = 0;
2980 unsigned long addr;
2981
2982 vaddr_start &= PAGE_MASK;
2983 vaddr_end &= PAGE_MASK;
2984
2985 /* Find the task_struct from pid */
2986 rcu_read_lock();
2987 task = find_task_by_vpid(pid);
2988 if (!task) {
2989 rcu_read_unlock();
2990 ret = -ESRCH;
2991 goto out;
2992 }
2993 get_task_struct(task);
2994 rcu_read_unlock();
2995
2996 /* Find the mm_struct */
2997 mm = get_task_mm(task);
2998 put_task_struct(task);
2999
3000 if (!mm) {
3001 ret = -EINVAL;
3002 goto out;
3003 }
3004
3005 pr_debug("Split huge pages in pid: %d, vaddr: [0x%lx - 0x%lx]\n",
3006 pid, vaddr_start, vaddr_end);
3007
3008 mmap_read_lock(mm);
3009 /*
3010 * always increase addr by PAGE_SIZE, since we could have a PTE page
3011 * table filled with PTE-mapped THPs, each of which is distinct.
3012 */
3013 for (addr = vaddr_start; addr < vaddr_end; addr += PAGE_SIZE) {
74ba2b38 3014 struct vm_area_struct *vma = vma_lookup(mm, addr);
fa6c0231
ZY
3015 struct page *page;
3016
74ba2b38 3017 if (!vma)
fa6c0231
ZY
3018 break;
3019
3020 /* skip special VMA and hugetlb VMA */
3021 if (vma_not_suitable_for_thp_split(vma)) {
3022 addr = vma->vm_end;
3023 continue;
3024 }
3025
3026 /* FOLL_DUMP to ignore special (like zero) pages */
87d2762e 3027 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
fa6c0231 3028
f7091ed6 3029 if (IS_ERR_OR_NULL(page))
fa6c0231
ZY
3030 continue;
3031
3032 if (!is_transparent_hugepage(page))
3033 goto next;
3034
3035 total++;
d4b4084a 3036 if (!can_split_folio(page_folio(page), NULL))
fa6c0231
ZY
3037 goto next;
3038
3039 if (!trylock_page(page))
3040 goto next;
3041
3042 if (!split_huge_page(page))
3043 split++;
3044
3045 unlock_page(page);
3046next:
3047 put_page(page);
3048 cond_resched();
3049 }
3050 mmap_read_unlock(mm);
3051 mmput(mm);
3052
3053 pr_debug("%lu of %lu THP split\n", split, total);
3054
3055out:
3056 return ret;
49071d43 3057}
fa6c0231 3058
fbe37501
ZY
3059static int split_huge_pages_in_file(const char *file_path, pgoff_t off_start,
3060 pgoff_t off_end)
3061{
3062 struct filename *file;
3063 struct file *candidate;
3064 struct address_space *mapping;
3065 int ret = -EINVAL;
3066 pgoff_t index;
3067 int nr_pages = 1;
3068 unsigned long total = 0, split = 0;
3069
3070 file = getname_kernel(file_path);
3071 if (IS_ERR(file))
3072 return ret;
3073
3074 candidate = file_open_name(file, O_RDONLY, 0);
3075 if (IS_ERR(candidate))
3076 goto out;
3077
3078 pr_debug("split file-backed THPs in file: %s, page offset: [0x%lx - 0x%lx]\n",
3079 file_path, off_start, off_end);
3080
3081 mapping = candidate->f_mapping;
3082
3083 for (index = off_start; index < off_end; index += nr_pages) {
9ee2c086
MWO
3084 struct folio *folio = __filemap_get_folio(mapping, index,
3085 FGP_ENTRY, 0);
fbe37501
ZY
3086
3087 nr_pages = 1;
9ee2c086 3088 if (xa_is_value(folio) || !folio)
fbe37501
ZY
3089 continue;
3090
9ee2c086 3091 if (!folio_test_large(folio))
fbe37501
ZY
3092 goto next;
3093
3094 total++;
9ee2c086 3095 nr_pages = folio_nr_pages(folio);
fbe37501 3096
9ee2c086 3097 if (!folio_trylock(folio))
fbe37501
ZY
3098 goto next;
3099
9ee2c086 3100 if (!split_folio(folio))
fbe37501
ZY
3101 split++;
3102
9ee2c086 3103 folio_unlock(folio);
fbe37501 3104next:
9ee2c086 3105 folio_put(folio);
fbe37501
ZY
3106 cond_resched();
3107 }
3108
3109 filp_close(candidate, NULL);
3110 ret = 0;
3111
3112 pr_debug("%lu of %lu file-backed THP split\n", split, total);
3113out:
3114 putname(file);
3115 return ret;
3116}
3117
fa6c0231
ZY
3118#define MAX_INPUT_BUF_SZ 255
3119
3120static ssize_t split_huge_pages_write(struct file *file, const char __user *buf,
3121 size_t count, loff_t *ppops)
3122{
3123 static DEFINE_MUTEX(split_debug_mutex);
3124 ssize_t ret;
fbe37501
ZY
3125 /* hold pid, start_vaddr, end_vaddr or file_path, off_start, off_end */
3126 char input_buf[MAX_INPUT_BUF_SZ];
fa6c0231
ZY
3127 int pid;
3128 unsigned long vaddr_start, vaddr_end;
3129
3130 ret = mutex_lock_interruptible(&split_debug_mutex);
3131 if (ret)
3132 return ret;
3133
3134 ret = -EFAULT;
3135
3136 memset(input_buf, 0, MAX_INPUT_BUF_SZ);
3137 if (copy_from_user(input_buf, buf, min_t(size_t, count, MAX_INPUT_BUF_SZ)))
3138 goto out;
3139
3140 input_buf[MAX_INPUT_BUF_SZ - 1] = '\0';
fbe37501
ZY
3141
3142 if (input_buf[0] == '/') {
3143 char *tok;
3144 char *buf = input_buf;
3145 char file_path[MAX_INPUT_BUF_SZ];
3146 pgoff_t off_start = 0, off_end = 0;
3147 size_t input_len = strlen(input_buf);
3148
3149 tok = strsep(&buf, ",");
3150 if (tok) {
1212e00c 3151 strcpy(file_path, tok);
fbe37501
ZY
3152 } else {
3153 ret = -EINVAL;
3154 goto out;
3155 }
3156
3157 ret = sscanf(buf, "0x%lx,0x%lx", &off_start, &off_end);
3158 if (ret != 2) {
3159 ret = -EINVAL;
3160 goto out;
3161 }
3162 ret = split_huge_pages_in_file(file_path, off_start, off_end);
3163 if (!ret)
3164 ret = input_len;
3165
3166 goto out;
3167 }
3168
fa6c0231
ZY
3169 ret = sscanf(input_buf, "%d,0x%lx,0x%lx", &pid, &vaddr_start, &vaddr_end);
3170 if (ret == 1 && pid == 1) {
3171 split_huge_pages_all();
3172 ret = strlen(input_buf);
3173 goto out;
3174 } else if (ret != 3) {
3175 ret = -EINVAL;
3176 goto out;
3177 }
3178
3179 ret = split_huge_pages_pid(pid, vaddr_start, vaddr_end);
3180 if (!ret)
3181 ret = strlen(input_buf);
3182out:
3183 mutex_unlock(&split_debug_mutex);
3184 return ret;
3185
3186}
3187
3188static const struct file_operations split_huge_pages_fops = {
3189 .owner = THIS_MODULE,
3190 .write = split_huge_pages_write,
3191 .llseek = no_llseek,
3192};
49071d43
KS
3193
3194static int __init split_huge_pages_debugfs(void)
3195{
d9f7979c
GKH
3196 debugfs_create_file("split_huge_pages", 0200, NULL, NULL,
3197 &split_huge_pages_fops);
49071d43
KS
3198 return 0;
3199}
3200late_initcall(split_huge_pages_debugfs);
3201#endif
616b8371
ZY
3202
3203#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
7f5abe60 3204int set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
616b8371
ZY
3205 struct page *page)
3206{
3207 struct vm_area_struct *vma = pvmw->vma;
3208 struct mm_struct *mm = vma->vm_mm;
3209 unsigned long address = pvmw->address;
6c287605 3210 bool anon_exclusive;
616b8371
ZY
3211 pmd_t pmdval;
3212 swp_entry_t entry;
ab6e3d09 3213 pmd_t pmdswp;
616b8371
ZY
3214
3215 if (!(pvmw->pmd && !pvmw->pte))
7f5abe60 3216 return 0;
616b8371 3217
616b8371 3218 flush_cache_range(vma, address, address + HPAGE_PMD_SIZE);
8a8683ad 3219 pmdval = pmdp_invalidate(vma, address, pvmw->pmd);
6c287605 3220
088b8aa5 3221 /* See page_try_share_anon_rmap(): invalidate PMD first. */
6c287605
DH
3222 anon_exclusive = PageAnon(page) && PageAnonExclusive(page);
3223 if (anon_exclusive && page_try_share_anon_rmap(page)) {
3224 set_pmd_at(mm, address, pvmw->pmd, pmdval);
7f5abe60 3225 return -EBUSY;
6c287605
DH
3226 }
3227
616b8371
ZY
3228 if (pmd_dirty(pmdval))
3229 set_page_dirty(page);
4dd845b5
AP
3230 if (pmd_write(pmdval))
3231 entry = make_writable_migration_entry(page_to_pfn(page));
6c287605
DH
3232 else if (anon_exclusive)
3233 entry = make_readable_exclusive_migration_entry(page_to_pfn(page));
4dd845b5
AP
3234 else
3235 entry = make_readable_migration_entry(page_to_pfn(page));
2e346877
PX
3236 if (pmd_young(pmdval))
3237 entry = make_migration_entry_young(entry);
3238 if (pmd_dirty(pmdval))
3239 entry = make_migration_entry_dirty(entry);
ab6e3d09
NH
3240 pmdswp = swp_entry_to_pmd(entry);
3241 if (pmd_soft_dirty(pmdval))
3242 pmdswp = pmd_swp_mksoft_dirty(pmdswp);
3243 set_pmd_at(mm, address, pvmw->pmd, pmdswp);
cea86fe2 3244 page_remove_rmap(page, vma, true);
616b8371 3245 put_page(page);
283fd6fe 3246 trace_set_migration_pmd(address, pmd_val(pmdswp));
7f5abe60
DH
3247
3248 return 0;
616b8371
ZY
3249}
3250
3251void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
3252{
3253 struct vm_area_struct *vma = pvmw->vma;
3254 struct mm_struct *mm = vma->vm_mm;
3255 unsigned long address = pvmw->address;
4fba8f2a 3256 unsigned long haddr = address & HPAGE_PMD_MASK;
616b8371
ZY
3257 pmd_t pmde;
3258 swp_entry_t entry;
3259
3260 if (!(pvmw->pmd && !pvmw->pte))
3261 return;
3262
3263 entry = pmd_to_swp_entry(*pvmw->pmd);
3264 get_page(new);
2e346877 3265 pmde = mk_huge_pmd(new, READ_ONCE(vma->vm_page_prot));
ab6e3d09
NH
3266 if (pmd_swp_soft_dirty(*pvmw->pmd))
3267 pmde = pmd_mksoft_dirty(pmde);
4dd845b5 3268 if (is_writable_migration_entry(entry))
f55e1014 3269 pmde = maybe_pmd_mkwrite(pmde, vma);
8f34f1ea
PX
3270 if (pmd_swp_uffd_wp(*pvmw->pmd))
3271 pmde = pmd_wrprotect(pmd_mkuffd_wp(pmde));
2e346877
PX
3272 if (!is_migration_entry_young(entry))
3273 pmde = pmd_mkold(pmde);
3274 /* NOTE: this may contain setting soft-dirty on some archs */
3275 if (PageDirty(new) && is_migration_entry_dirty(entry))
3276 pmde = pmd_mkdirty(pmde);
616b8371 3277
6c287605
DH
3278 if (PageAnon(new)) {
3279 rmap_t rmap_flags = RMAP_COMPOUND;
3280
3281 if (!is_readable_migration_entry(entry))
3282 rmap_flags |= RMAP_EXCLUSIVE;
3283
4fba8f2a 3284 page_add_anon_rmap(new, vma, haddr, rmap_flags);
6c287605 3285 } else {
cea86fe2 3286 page_add_file_rmap(new, vma, true);
6c287605
DH
3287 }
3288 VM_BUG_ON(pmd_write(pmde) && PageAnon(new) && !PageAnonExclusive(new));
4fba8f2a 3289 set_pmd_at(mm, haddr, pvmw->pmd, pmde);
5cbcf225
MS
3290
3291 /* No need to invalidate - it was non-present before */
616b8371 3292 update_mmu_cache_pmd(vma, address, pvmw->pmd);
283fd6fe 3293 trace_remove_migration_pmd(address, pmd_val(pmde));
616b8371
ZY
3294}
3295#endif