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