xref: /linux/mm/migrate.c (revision f347c9d2697fcbbb64e077f7113a3887a181b8c0)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Memory Migration functionality - linux/mm/migrate.c
4  *
5  * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
6  *
7  * Page migration was first developed in the context of the memory hotplug
8  * project. The main authors of the migration code are:
9  *
10  * IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
11  * Hirokazu Takahashi <taka@valinux.co.jp>
12  * Dave Hansen <haveblue@us.ibm.com>
13  * Christoph Lameter
14  */
15 
16 #include <linux/migrate.h>
17 #include <linux/export.h>
18 #include <linux/swap.h>
19 #include <linux/swapops.h>
20 #include <linux/pagemap.h>
21 #include <linux/buffer_head.h>
22 #include <linux/mm_inline.h>
23 #include <linux/nsproxy.h>
24 #include <linux/pagevec.h>
25 #include <linux/ksm.h>
26 #include <linux/rmap.h>
27 #include <linux/topology.h>
28 #include <linux/cpu.h>
29 #include <linux/cpuset.h>
30 #include <linux/writeback.h>
31 #include <linux/mempolicy.h>
32 #include <linux/vmalloc.h>
33 #include <linux/security.h>
34 #include <linux/backing-dev.h>
35 #include <linux/compaction.h>
36 #include <linux/syscalls.h>
37 #include <linux/compat.h>
38 #include <linux/hugetlb.h>
39 #include <linux/hugetlb_cgroup.h>
40 #include <linux/gfp.h>
41 #include <linux/pfn_t.h>
42 #include <linux/memremap.h>
43 #include <linux/userfaultfd_k.h>
44 #include <linux/balloon_compaction.h>
45 #include <linux/page_idle.h>
46 #include <linux/page_owner.h>
47 #include <linux/sched/mm.h>
48 #include <linux/ptrace.h>
49 #include <linux/oom.h>
50 #include <linux/memory.h>
51 #include <linux/random.h>
52 #include <linux/sched/sysctl.h>
53 
54 #include <asm/tlbflush.h>
55 
56 #include <trace/events/migrate.h>
57 
58 #include "internal.h"
59 
60 int isolate_movable_page(struct page *page, isolate_mode_t mode)
61 {
62 	const struct movable_operations *mops;
63 
64 	/*
65 	 * Avoid burning cycles with pages that are yet under __free_pages(),
66 	 * or just got freed under us.
67 	 *
68 	 * In case we 'win' a race for a movable page being freed under us and
69 	 * raise its refcount preventing __free_pages() from doing its job
70 	 * the put_page() at the end of this block will take care of
71 	 * release this page, thus avoiding a nasty leakage.
72 	 */
73 	if (unlikely(!get_page_unless_zero(page)))
74 		goto out;
75 
76 	/*
77 	 * Check PageMovable before holding a PG_lock because page's owner
78 	 * assumes anybody doesn't touch PG_lock of newly allocated page
79 	 * so unconditionally grabbing the lock ruins page's owner side.
80 	 */
81 	if (unlikely(!__PageMovable(page)))
82 		goto out_putpage;
83 	/*
84 	 * As movable pages are not isolated from LRU lists, concurrent
85 	 * compaction threads can race against page migration functions
86 	 * as well as race against the releasing a page.
87 	 *
88 	 * In order to avoid having an already isolated movable page
89 	 * being (wrongly) re-isolated while it is under migration,
90 	 * or to avoid attempting to isolate pages being released,
91 	 * lets be sure we have the page lock
92 	 * before proceeding with the movable page isolation steps.
93 	 */
94 	if (unlikely(!trylock_page(page)))
95 		goto out_putpage;
96 
97 	if (!PageMovable(page) || PageIsolated(page))
98 		goto out_no_isolated;
99 
100 	mops = page_movable_ops(page);
101 	VM_BUG_ON_PAGE(!mops, page);
102 
103 	if (!mops->isolate_page(page, mode))
104 		goto out_no_isolated;
105 
106 	/* Driver shouldn't use PG_isolated bit of page->flags */
107 	WARN_ON_ONCE(PageIsolated(page));
108 	SetPageIsolated(page);
109 	unlock_page(page);
110 
111 	return 0;
112 
113 out_no_isolated:
114 	unlock_page(page);
115 out_putpage:
116 	put_page(page);
117 out:
118 	return -EBUSY;
119 }
120 
121 static void putback_movable_page(struct page *page)
122 {
123 	const struct movable_operations *mops = page_movable_ops(page);
124 
125 	mops->putback_page(page);
126 	ClearPageIsolated(page);
127 }
128 
129 /*
130  * Put previously isolated pages back onto the appropriate lists
131  * from where they were once taken off for compaction/migration.
132  *
133  * This function shall be used whenever the isolated pageset has been
134  * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
135  * and isolate_hugetlb().
136  */
137 void putback_movable_pages(struct list_head *l)
138 {
139 	struct page *page;
140 	struct page *page2;
141 
142 	list_for_each_entry_safe(page, page2, l, lru) {
143 		if (unlikely(PageHuge(page))) {
144 			putback_active_hugepage(page);
145 			continue;
146 		}
147 		list_del(&page->lru);
148 		/*
149 		 * We isolated non-lru movable page so here we can use
150 		 * __PageMovable because LRU page's mapping cannot have
151 		 * PAGE_MAPPING_MOVABLE.
152 		 */
153 		if (unlikely(__PageMovable(page))) {
154 			VM_BUG_ON_PAGE(!PageIsolated(page), page);
155 			lock_page(page);
156 			if (PageMovable(page))
157 				putback_movable_page(page);
158 			else
159 				ClearPageIsolated(page);
160 			unlock_page(page);
161 			put_page(page);
162 		} else {
163 			mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
164 					page_is_file_lru(page), -thp_nr_pages(page));
165 			putback_lru_page(page);
166 		}
167 	}
168 }
169 
170 /*
171  * Restore a potential migration pte to a working pte entry
172  */
173 static bool remove_migration_pte(struct folio *folio,
174 		struct vm_area_struct *vma, unsigned long addr, void *old)
175 {
176 	DEFINE_FOLIO_VMA_WALK(pvmw, old, vma, addr, PVMW_SYNC | PVMW_MIGRATION);
177 
178 	while (page_vma_mapped_walk(&pvmw)) {
179 		rmap_t rmap_flags = RMAP_NONE;
180 		pte_t pte;
181 		swp_entry_t entry;
182 		struct page *new;
183 		unsigned long idx = 0;
184 
185 		/* pgoff is invalid for ksm pages, but they are never large */
186 		if (folio_test_large(folio) && !folio_test_hugetlb(folio))
187 			idx = linear_page_index(vma, pvmw.address) - pvmw.pgoff;
188 		new = folio_page(folio, idx);
189 
190 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
191 		/* PMD-mapped THP migration entry */
192 		if (!pvmw.pte) {
193 			VM_BUG_ON_FOLIO(folio_test_hugetlb(folio) ||
194 					!folio_test_pmd_mappable(folio), folio);
195 			remove_migration_pmd(&pvmw, new);
196 			continue;
197 		}
198 #endif
199 
200 		folio_get(folio);
201 		pte = mk_pte(new, READ_ONCE(vma->vm_page_prot));
202 		if (pte_swp_soft_dirty(*pvmw.pte))
203 			pte = pte_mksoft_dirty(pte);
204 
205 		/*
206 		 * Recheck VMA as permissions can change since migration started
207 		 */
208 		entry = pte_to_swp_entry(*pvmw.pte);
209 		if (!is_migration_entry_young(entry))
210 			pte = pte_mkold(pte);
211 		if (folio_test_dirty(folio) && is_migration_entry_dirty(entry))
212 			pte = pte_mkdirty(pte);
213 		if (is_writable_migration_entry(entry))
214 			pte = maybe_mkwrite(pte, vma);
215 		else if (pte_swp_uffd_wp(*pvmw.pte))
216 			pte = pte_mkuffd_wp(pte);
217 
218 		if (folio_test_anon(folio) && !is_readable_migration_entry(entry))
219 			rmap_flags |= RMAP_EXCLUSIVE;
220 
221 		if (unlikely(is_device_private_page(new))) {
222 			if (pte_write(pte))
223 				entry = make_writable_device_private_entry(
224 							page_to_pfn(new));
225 			else
226 				entry = make_readable_device_private_entry(
227 							page_to_pfn(new));
228 			pte = swp_entry_to_pte(entry);
229 			if (pte_swp_soft_dirty(*pvmw.pte))
230 				pte = pte_swp_mksoft_dirty(pte);
231 			if (pte_swp_uffd_wp(*pvmw.pte))
232 				pte = pte_swp_mkuffd_wp(pte);
233 		}
234 
235 #ifdef CONFIG_HUGETLB_PAGE
236 		if (folio_test_hugetlb(folio)) {
237 			unsigned int shift = huge_page_shift(hstate_vma(vma));
238 
239 			pte = pte_mkhuge(pte);
240 			pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
241 			if (folio_test_anon(folio))
242 				hugepage_add_anon_rmap(new, vma, pvmw.address,
243 						       rmap_flags);
244 			else
245 				page_dup_file_rmap(new, true);
246 			set_huge_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
247 		} else
248 #endif
249 		{
250 			if (folio_test_anon(folio))
251 				page_add_anon_rmap(new, vma, pvmw.address,
252 						   rmap_flags);
253 			else
254 				page_add_file_rmap(new, vma, false);
255 			set_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
256 		}
257 		if (vma->vm_flags & VM_LOCKED)
258 			mlock_page_drain_local();
259 
260 		trace_remove_migration_pte(pvmw.address, pte_val(pte),
261 					   compound_order(new));
262 
263 		/* No need to invalidate - it was non-present before */
264 		update_mmu_cache(vma, pvmw.address, pvmw.pte);
265 	}
266 
267 	return true;
268 }
269 
270 /*
271  * Get rid of all migration entries and replace them by
272  * references to the indicated page.
273  */
274 void remove_migration_ptes(struct folio *src, struct folio *dst, bool locked)
275 {
276 	struct rmap_walk_control rwc = {
277 		.rmap_one = remove_migration_pte,
278 		.arg = src,
279 	};
280 
281 	if (locked)
282 		rmap_walk_locked(dst, &rwc);
283 	else
284 		rmap_walk(dst, &rwc);
285 }
286 
287 /*
288  * Something used the pte of a page under migration. We need to
289  * get to the page and wait until migration is finished.
290  * When we return from this function the fault will be retried.
291  */
292 void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
293 				spinlock_t *ptl)
294 {
295 	pte_t pte;
296 	swp_entry_t entry;
297 
298 	spin_lock(ptl);
299 	pte = *ptep;
300 	if (!is_swap_pte(pte))
301 		goto out;
302 
303 	entry = pte_to_swp_entry(pte);
304 	if (!is_migration_entry(entry))
305 		goto out;
306 
307 	migration_entry_wait_on_locked(entry, ptep, ptl);
308 	return;
309 out:
310 	pte_unmap_unlock(ptep, ptl);
311 }
312 
313 void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
314 				unsigned long address)
315 {
316 	spinlock_t *ptl = pte_lockptr(mm, pmd);
317 	pte_t *ptep = pte_offset_map(pmd, address);
318 	__migration_entry_wait(mm, ptep, ptl);
319 }
320 
321 #ifdef CONFIG_HUGETLB_PAGE
322 void __migration_entry_wait_huge(pte_t *ptep, spinlock_t *ptl)
323 {
324 	pte_t pte;
325 
326 	spin_lock(ptl);
327 	pte = huge_ptep_get(ptep);
328 
329 	if (unlikely(!is_hugetlb_entry_migration(pte)))
330 		spin_unlock(ptl);
331 	else
332 		migration_entry_wait_on_locked(pte_to_swp_entry(pte), NULL, ptl);
333 }
334 
335 void migration_entry_wait_huge(struct vm_area_struct *vma, pte_t *pte)
336 {
337 	spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), vma->vm_mm, pte);
338 
339 	__migration_entry_wait_huge(pte, ptl);
340 }
341 #endif
342 
343 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
344 void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
345 {
346 	spinlock_t *ptl;
347 
348 	ptl = pmd_lock(mm, pmd);
349 	if (!is_pmd_migration_entry(*pmd))
350 		goto unlock;
351 	migration_entry_wait_on_locked(pmd_to_swp_entry(*pmd), NULL, ptl);
352 	return;
353 unlock:
354 	spin_unlock(ptl);
355 }
356 #endif
357 
358 static int folio_expected_refs(struct address_space *mapping,
359 		struct folio *folio)
360 {
361 	int refs = 1;
362 	if (!mapping)
363 		return refs;
364 
365 	refs += folio_nr_pages(folio);
366 	if (folio_test_private(folio))
367 		refs++;
368 
369 	return refs;
370 }
371 
372 /*
373  * Replace the page in the mapping.
374  *
375  * The number of remaining references must be:
376  * 1 for anonymous pages without a mapping
377  * 2 for pages with a mapping
378  * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
379  */
380 int folio_migrate_mapping(struct address_space *mapping,
381 		struct folio *newfolio, struct folio *folio, int extra_count)
382 {
383 	XA_STATE(xas, &mapping->i_pages, folio_index(folio));
384 	struct zone *oldzone, *newzone;
385 	int dirty;
386 	int expected_count = folio_expected_refs(mapping, folio) + extra_count;
387 	long nr = folio_nr_pages(folio);
388 
389 	if (!mapping) {
390 		/* Anonymous page without mapping */
391 		if (folio_ref_count(folio) != expected_count)
392 			return -EAGAIN;
393 
394 		/* No turning back from here */
395 		newfolio->index = folio->index;
396 		newfolio->mapping = folio->mapping;
397 		if (folio_test_swapbacked(folio))
398 			__folio_set_swapbacked(newfolio);
399 
400 		return MIGRATEPAGE_SUCCESS;
401 	}
402 
403 	oldzone = folio_zone(folio);
404 	newzone = folio_zone(newfolio);
405 
406 	xas_lock_irq(&xas);
407 	if (!folio_ref_freeze(folio, expected_count)) {
408 		xas_unlock_irq(&xas);
409 		return -EAGAIN;
410 	}
411 
412 	/*
413 	 * Now we know that no one else is looking at the folio:
414 	 * no turning back from here.
415 	 */
416 	newfolio->index = folio->index;
417 	newfolio->mapping = folio->mapping;
418 	folio_ref_add(newfolio, nr); /* add cache reference */
419 	if (folio_test_swapbacked(folio)) {
420 		__folio_set_swapbacked(newfolio);
421 		if (folio_test_swapcache(folio)) {
422 			folio_set_swapcache(newfolio);
423 			newfolio->private = folio_get_private(folio);
424 		}
425 	} else {
426 		VM_BUG_ON_FOLIO(folio_test_swapcache(folio), folio);
427 	}
428 
429 	/* Move dirty while page refs frozen and newpage not yet exposed */
430 	dirty = folio_test_dirty(folio);
431 	if (dirty) {
432 		folio_clear_dirty(folio);
433 		folio_set_dirty(newfolio);
434 	}
435 
436 	xas_store(&xas, newfolio);
437 
438 	/*
439 	 * Drop cache reference from old page by unfreezing
440 	 * to one less reference.
441 	 * We know this isn't the last reference.
442 	 */
443 	folio_ref_unfreeze(folio, expected_count - nr);
444 
445 	xas_unlock(&xas);
446 	/* Leave irq disabled to prevent preemption while updating stats */
447 
448 	/*
449 	 * If moved to a different zone then also account
450 	 * the page for that zone. Other VM counters will be
451 	 * taken care of when we establish references to the
452 	 * new page and drop references to the old page.
453 	 *
454 	 * Note that anonymous pages are accounted for
455 	 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
456 	 * are mapped to swap space.
457 	 */
458 	if (newzone != oldzone) {
459 		struct lruvec *old_lruvec, *new_lruvec;
460 		struct mem_cgroup *memcg;
461 
462 		memcg = folio_memcg(folio);
463 		old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
464 		new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
465 
466 		__mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
467 		__mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
468 		if (folio_test_swapbacked(folio) && !folio_test_swapcache(folio)) {
469 			__mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
470 			__mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
471 		}
472 #ifdef CONFIG_SWAP
473 		if (folio_test_swapcache(folio)) {
474 			__mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
475 			__mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
476 		}
477 #endif
478 		if (dirty && mapping_can_writeback(mapping)) {
479 			__mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
480 			__mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
481 			__mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
482 			__mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
483 		}
484 	}
485 	local_irq_enable();
486 
487 	return MIGRATEPAGE_SUCCESS;
488 }
489 EXPORT_SYMBOL(folio_migrate_mapping);
490 
491 /*
492  * The expected number of remaining references is the same as that
493  * of folio_migrate_mapping().
494  */
495 int migrate_huge_page_move_mapping(struct address_space *mapping,
496 				   struct folio *dst, struct folio *src)
497 {
498 	XA_STATE(xas, &mapping->i_pages, folio_index(src));
499 	int expected_count;
500 
501 	xas_lock_irq(&xas);
502 	expected_count = 2 + folio_has_private(src);
503 	if (!folio_ref_freeze(src, expected_count)) {
504 		xas_unlock_irq(&xas);
505 		return -EAGAIN;
506 	}
507 
508 	dst->index = src->index;
509 	dst->mapping = src->mapping;
510 
511 	folio_get(dst);
512 
513 	xas_store(&xas, dst);
514 
515 	folio_ref_unfreeze(src, expected_count - 1);
516 
517 	xas_unlock_irq(&xas);
518 
519 	return MIGRATEPAGE_SUCCESS;
520 }
521 
522 /*
523  * Copy the flags and some other ancillary information
524  */
525 void folio_migrate_flags(struct folio *newfolio, struct folio *folio)
526 {
527 	int cpupid;
528 
529 	if (folio_test_error(folio))
530 		folio_set_error(newfolio);
531 	if (folio_test_referenced(folio))
532 		folio_set_referenced(newfolio);
533 	if (folio_test_uptodate(folio))
534 		folio_mark_uptodate(newfolio);
535 	if (folio_test_clear_active(folio)) {
536 		VM_BUG_ON_FOLIO(folio_test_unevictable(folio), folio);
537 		folio_set_active(newfolio);
538 	} else if (folio_test_clear_unevictable(folio))
539 		folio_set_unevictable(newfolio);
540 	if (folio_test_workingset(folio))
541 		folio_set_workingset(newfolio);
542 	if (folio_test_checked(folio))
543 		folio_set_checked(newfolio);
544 	/*
545 	 * PG_anon_exclusive (-> PG_mappedtodisk) is always migrated via
546 	 * migration entries. We can still have PG_anon_exclusive set on an
547 	 * effectively unmapped and unreferenced first sub-pages of an
548 	 * anonymous THP: we can simply copy it here via PG_mappedtodisk.
549 	 */
550 	if (folio_test_mappedtodisk(folio))
551 		folio_set_mappedtodisk(newfolio);
552 
553 	/* Move dirty on pages not done by folio_migrate_mapping() */
554 	if (folio_test_dirty(folio))
555 		folio_set_dirty(newfolio);
556 
557 	if (folio_test_young(folio))
558 		folio_set_young(newfolio);
559 	if (folio_test_idle(folio))
560 		folio_set_idle(newfolio);
561 
562 	/*
563 	 * Copy NUMA information to the new page, to prevent over-eager
564 	 * future migrations of this same page.
565 	 */
566 	cpupid = page_cpupid_xchg_last(&folio->page, -1);
567 	/*
568 	 * For memory tiering mode, when migrate between slow and fast
569 	 * memory node, reset cpupid, because that is used to record
570 	 * page access time in slow memory node.
571 	 */
572 	if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) {
573 		bool f_toptier = node_is_toptier(page_to_nid(&folio->page));
574 		bool t_toptier = node_is_toptier(page_to_nid(&newfolio->page));
575 
576 		if (f_toptier != t_toptier)
577 			cpupid = -1;
578 	}
579 	page_cpupid_xchg_last(&newfolio->page, cpupid);
580 
581 	folio_migrate_ksm(newfolio, folio);
582 	/*
583 	 * Please do not reorder this without considering how mm/ksm.c's
584 	 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
585 	 */
586 	if (folio_test_swapcache(folio))
587 		folio_clear_swapcache(folio);
588 	folio_clear_private(folio);
589 
590 	/* page->private contains hugetlb specific flags */
591 	if (!folio_test_hugetlb(folio))
592 		folio->private = NULL;
593 
594 	/*
595 	 * If any waiters have accumulated on the new page then
596 	 * wake them up.
597 	 */
598 	if (folio_test_writeback(newfolio))
599 		folio_end_writeback(newfolio);
600 
601 	/*
602 	 * PG_readahead shares the same bit with PG_reclaim.  The above
603 	 * end_page_writeback() may clear PG_readahead mistakenly, so set the
604 	 * bit after that.
605 	 */
606 	if (folio_test_readahead(folio))
607 		folio_set_readahead(newfolio);
608 
609 	folio_copy_owner(newfolio, folio);
610 
611 	if (!folio_test_hugetlb(folio))
612 		mem_cgroup_migrate(folio, newfolio);
613 }
614 EXPORT_SYMBOL(folio_migrate_flags);
615 
616 void folio_migrate_copy(struct folio *newfolio, struct folio *folio)
617 {
618 	folio_copy(newfolio, folio);
619 	folio_migrate_flags(newfolio, folio);
620 }
621 EXPORT_SYMBOL(folio_migrate_copy);
622 
623 /************************************************************
624  *                    Migration functions
625  ***********************************************************/
626 
627 /**
628  * migrate_folio() - Simple folio migration.
629  * @mapping: The address_space containing the folio.
630  * @dst: The folio to migrate the data to.
631  * @src: The folio containing the current data.
632  * @mode: How to migrate the page.
633  *
634  * Common logic to directly migrate a single LRU folio suitable for
635  * folios that do not use PagePrivate/PagePrivate2.
636  *
637  * Folios are locked upon entry and exit.
638  */
639 int migrate_folio(struct address_space *mapping, struct folio *dst,
640 		struct folio *src, enum migrate_mode mode)
641 {
642 	int rc;
643 
644 	BUG_ON(folio_test_writeback(src));	/* Writeback must be complete */
645 
646 	rc = folio_migrate_mapping(mapping, dst, src, 0);
647 
648 	if (rc != MIGRATEPAGE_SUCCESS)
649 		return rc;
650 
651 	if (mode != MIGRATE_SYNC_NO_COPY)
652 		folio_migrate_copy(dst, src);
653 	else
654 		folio_migrate_flags(dst, src);
655 	return MIGRATEPAGE_SUCCESS;
656 }
657 EXPORT_SYMBOL(migrate_folio);
658 
659 #ifdef CONFIG_BLOCK
660 /* Returns true if all buffers are successfully locked */
661 static bool buffer_migrate_lock_buffers(struct buffer_head *head,
662 							enum migrate_mode mode)
663 {
664 	struct buffer_head *bh = head;
665 
666 	/* Simple case, sync compaction */
667 	if (mode != MIGRATE_ASYNC) {
668 		do {
669 			lock_buffer(bh);
670 			bh = bh->b_this_page;
671 
672 		} while (bh != head);
673 
674 		return true;
675 	}
676 
677 	/* async case, we cannot block on lock_buffer so use trylock_buffer */
678 	do {
679 		if (!trylock_buffer(bh)) {
680 			/*
681 			 * We failed to lock the buffer and cannot stall in
682 			 * async migration. Release the taken locks
683 			 */
684 			struct buffer_head *failed_bh = bh;
685 			bh = head;
686 			while (bh != failed_bh) {
687 				unlock_buffer(bh);
688 				bh = bh->b_this_page;
689 			}
690 			return false;
691 		}
692 
693 		bh = bh->b_this_page;
694 	} while (bh != head);
695 	return true;
696 }
697 
698 static int __buffer_migrate_folio(struct address_space *mapping,
699 		struct folio *dst, struct folio *src, enum migrate_mode mode,
700 		bool check_refs)
701 {
702 	struct buffer_head *bh, *head;
703 	int rc;
704 	int expected_count;
705 
706 	head = folio_buffers(src);
707 	if (!head)
708 		return migrate_folio(mapping, dst, src, mode);
709 
710 	/* Check whether page does not have extra refs before we do more work */
711 	expected_count = folio_expected_refs(mapping, src);
712 	if (folio_ref_count(src) != expected_count)
713 		return -EAGAIN;
714 
715 	if (!buffer_migrate_lock_buffers(head, mode))
716 		return -EAGAIN;
717 
718 	if (check_refs) {
719 		bool busy;
720 		bool invalidated = false;
721 
722 recheck_buffers:
723 		busy = false;
724 		spin_lock(&mapping->private_lock);
725 		bh = head;
726 		do {
727 			if (atomic_read(&bh->b_count)) {
728 				busy = true;
729 				break;
730 			}
731 			bh = bh->b_this_page;
732 		} while (bh != head);
733 		if (busy) {
734 			if (invalidated) {
735 				rc = -EAGAIN;
736 				goto unlock_buffers;
737 			}
738 			spin_unlock(&mapping->private_lock);
739 			invalidate_bh_lrus();
740 			invalidated = true;
741 			goto recheck_buffers;
742 		}
743 	}
744 
745 	rc = folio_migrate_mapping(mapping, dst, src, 0);
746 	if (rc != MIGRATEPAGE_SUCCESS)
747 		goto unlock_buffers;
748 
749 	folio_attach_private(dst, folio_detach_private(src));
750 
751 	bh = head;
752 	do {
753 		set_bh_page(bh, &dst->page, bh_offset(bh));
754 		bh = bh->b_this_page;
755 	} while (bh != head);
756 
757 	if (mode != MIGRATE_SYNC_NO_COPY)
758 		folio_migrate_copy(dst, src);
759 	else
760 		folio_migrate_flags(dst, src);
761 
762 	rc = MIGRATEPAGE_SUCCESS;
763 unlock_buffers:
764 	if (check_refs)
765 		spin_unlock(&mapping->private_lock);
766 	bh = head;
767 	do {
768 		unlock_buffer(bh);
769 		bh = bh->b_this_page;
770 	} while (bh != head);
771 
772 	return rc;
773 }
774 
775 /**
776  * buffer_migrate_folio() - Migration function for folios with buffers.
777  * @mapping: The address space containing @src.
778  * @dst: The folio to migrate to.
779  * @src: The folio to migrate from.
780  * @mode: How to migrate the folio.
781  *
782  * This function can only be used if the underlying filesystem guarantees
783  * that no other references to @src exist. For example attached buffer
784  * heads are accessed only under the folio lock.  If your filesystem cannot
785  * provide this guarantee, buffer_migrate_folio_norefs() may be more
786  * appropriate.
787  *
788  * Return: 0 on success or a negative errno on failure.
789  */
790 int buffer_migrate_folio(struct address_space *mapping,
791 		struct folio *dst, struct folio *src, enum migrate_mode mode)
792 {
793 	return __buffer_migrate_folio(mapping, dst, src, mode, false);
794 }
795 EXPORT_SYMBOL(buffer_migrate_folio);
796 
797 /**
798  * buffer_migrate_folio_norefs() - Migration function for folios with buffers.
799  * @mapping: The address space containing @src.
800  * @dst: The folio to migrate to.
801  * @src: The folio to migrate from.
802  * @mode: How to migrate the folio.
803  *
804  * Like buffer_migrate_folio() except that this variant is more careful
805  * and checks that there are also no buffer head references. This function
806  * is the right one for mappings where buffer heads are directly looked
807  * up and referenced (such as block device mappings).
808  *
809  * Return: 0 on success or a negative errno on failure.
810  */
811 int buffer_migrate_folio_norefs(struct address_space *mapping,
812 		struct folio *dst, struct folio *src, enum migrate_mode mode)
813 {
814 	return __buffer_migrate_folio(mapping, dst, src, mode, true);
815 }
816 #endif
817 
818 int filemap_migrate_folio(struct address_space *mapping,
819 		struct folio *dst, struct folio *src, enum migrate_mode mode)
820 {
821 	int ret;
822 
823 	ret = folio_migrate_mapping(mapping, dst, src, 0);
824 	if (ret != MIGRATEPAGE_SUCCESS)
825 		return ret;
826 
827 	if (folio_get_private(src))
828 		folio_attach_private(dst, folio_detach_private(src));
829 
830 	if (mode != MIGRATE_SYNC_NO_COPY)
831 		folio_migrate_copy(dst, src);
832 	else
833 		folio_migrate_flags(dst, src);
834 	return MIGRATEPAGE_SUCCESS;
835 }
836 EXPORT_SYMBOL_GPL(filemap_migrate_folio);
837 
838 /*
839  * Writeback a folio to clean the dirty state
840  */
841 static int writeout(struct address_space *mapping, struct folio *folio)
842 {
843 	struct writeback_control wbc = {
844 		.sync_mode = WB_SYNC_NONE,
845 		.nr_to_write = 1,
846 		.range_start = 0,
847 		.range_end = LLONG_MAX,
848 		.for_reclaim = 1
849 	};
850 	int rc;
851 
852 	if (!mapping->a_ops->writepage)
853 		/* No write method for the address space */
854 		return -EINVAL;
855 
856 	if (!folio_clear_dirty_for_io(folio))
857 		/* Someone else already triggered a write */
858 		return -EAGAIN;
859 
860 	/*
861 	 * A dirty folio may imply that the underlying filesystem has
862 	 * the folio on some queue. So the folio must be clean for
863 	 * migration. Writeout may mean we lose the lock and the
864 	 * folio state is no longer what we checked for earlier.
865 	 * At this point we know that the migration attempt cannot
866 	 * be successful.
867 	 */
868 	remove_migration_ptes(folio, folio, false);
869 
870 	rc = mapping->a_ops->writepage(&folio->page, &wbc);
871 
872 	if (rc != AOP_WRITEPAGE_ACTIVATE)
873 		/* unlocked. Relock */
874 		folio_lock(folio);
875 
876 	return (rc < 0) ? -EIO : -EAGAIN;
877 }
878 
879 /*
880  * Default handling if a filesystem does not provide a migration function.
881  */
882 static int fallback_migrate_folio(struct address_space *mapping,
883 		struct folio *dst, struct folio *src, enum migrate_mode mode)
884 {
885 	if (folio_test_dirty(src)) {
886 		/* Only writeback folios in full synchronous migration */
887 		switch (mode) {
888 		case MIGRATE_SYNC:
889 		case MIGRATE_SYNC_NO_COPY:
890 			break;
891 		default:
892 			return -EBUSY;
893 		}
894 		return writeout(mapping, src);
895 	}
896 
897 	/*
898 	 * Buffers may be managed in a filesystem specific way.
899 	 * We must have no buffers or drop them.
900 	 */
901 	if (folio_test_private(src) &&
902 	    !filemap_release_folio(src, GFP_KERNEL))
903 		return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
904 
905 	return migrate_folio(mapping, dst, src, mode);
906 }
907 
908 /*
909  * Move a page to a newly allocated page
910  * The page is locked and all ptes have been successfully removed.
911  *
912  * The new page will have replaced the old page if this function
913  * is successful.
914  *
915  * Return value:
916  *   < 0 - error code
917  *  MIGRATEPAGE_SUCCESS - success
918  */
919 static int move_to_new_folio(struct folio *dst, struct folio *src,
920 				enum migrate_mode mode)
921 {
922 	int rc = -EAGAIN;
923 	bool is_lru = !__PageMovable(&src->page);
924 
925 	VM_BUG_ON_FOLIO(!folio_test_locked(src), src);
926 	VM_BUG_ON_FOLIO(!folio_test_locked(dst), dst);
927 
928 	if (likely(is_lru)) {
929 		struct address_space *mapping = folio_mapping(src);
930 
931 		if (!mapping)
932 			rc = migrate_folio(mapping, dst, src, mode);
933 		else if (mapping->a_ops->migrate_folio)
934 			/*
935 			 * Most folios have a mapping and most filesystems
936 			 * provide a migrate_folio callback. Anonymous folios
937 			 * are part of swap space which also has its own
938 			 * migrate_folio callback. This is the most common path
939 			 * for page migration.
940 			 */
941 			rc = mapping->a_ops->migrate_folio(mapping, dst, src,
942 								mode);
943 		else
944 			rc = fallback_migrate_folio(mapping, dst, src, mode);
945 	} else {
946 		const struct movable_operations *mops;
947 
948 		/*
949 		 * In case of non-lru page, it could be released after
950 		 * isolation step. In that case, we shouldn't try migration.
951 		 */
952 		VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
953 		if (!folio_test_movable(src)) {
954 			rc = MIGRATEPAGE_SUCCESS;
955 			folio_clear_isolated(src);
956 			goto out;
957 		}
958 
959 		mops = page_movable_ops(&src->page);
960 		rc = mops->migrate_page(&dst->page, &src->page, mode);
961 		WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
962 				!folio_test_isolated(src));
963 	}
964 
965 	/*
966 	 * When successful, old pagecache src->mapping must be cleared before
967 	 * src is freed; but stats require that PageAnon be left as PageAnon.
968 	 */
969 	if (rc == MIGRATEPAGE_SUCCESS) {
970 		if (__PageMovable(&src->page)) {
971 			VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
972 
973 			/*
974 			 * We clear PG_movable under page_lock so any compactor
975 			 * cannot try to migrate this page.
976 			 */
977 			folio_clear_isolated(src);
978 		}
979 
980 		/*
981 		 * Anonymous and movable src->mapping will be cleared by
982 		 * free_pages_prepare so don't reset it here for keeping
983 		 * the type to work PageAnon, for example.
984 		 */
985 		if (!folio_mapping_flags(src))
986 			src->mapping = NULL;
987 
988 		if (likely(!folio_is_zone_device(dst)))
989 			flush_dcache_folio(dst);
990 	}
991 out:
992 	return rc;
993 }
994 
995 static int __unmap_and_move(struct page *page, struct page *newpage,
996 				int force, enum migrate_mode mode)
997 {
998 	struct folio *folio = page_folio(page);
999 	struct folio *dst = page_folio(newpage);
1000 	int rc = -EAGAIN;
1001 	bool page_was_mapped = false;
1002 	struct anon_vma *anon_vma = NULL;
1003 	bool is_lru = !__PageMovable(page);
1004 
1005 	if (!trylock_page(page)) {
1006 		if (!force || mode == MIGRATE_ASYNC)
1007 			goto out;
1008 
1009 		/*
1010 		 * It's not safe for direct compaction to call lock_page.
1011 		 * For example, during page readahead pages are added locked
1012 		 * to the LRU. Later, when the IO completes the pages are
1013 		 * marked uptodate and unlocked. However, the queueing
1014 		 * could be merging multiple pages for one bio (e.g.
1015 		 * mpage_readahead). If an allocation happens for the
1016 		 * second or third page, the process can end up locking
1017 		 * the same page twice and deadlocking. Rather than
1018 		 * trying to be clever about what pages can be locked,
1019 		 * avoid the use of lock_page for direct compaction
1020 		 * altogether.
1021 		 */
1022 		if (current->flags & PF_MEMALLOC)
1023 			goto out;
1024 
1025 		lock_page(page);
1026 	}
1027 
1028 	if (PageWriteback(page)) {
1029 		/*
1030 		 * Only in the case of a full synchronous migration is it
1031 		 * necessary to wait for PageWriteback. In the async case,
1032 		 * the retry loop is too short and in the sync-light case,
1033 		 * the overhead of stalling is too much
1034 		 */
1035 		switch (mode) {
1036 		case MIGRATE_SYNC:
1037 		case MIGRATE_SYNC_NO_COPY:
1038 			break;
1039 		default:
1040 			rc = -EBUSY;
1041 			goto out_unlock;
1042 		}
1043 		if (!force)
1044 			goto out_unlock;
1045 		wait_on_page_writeback(page);
1046 	}
1047 
1048 	/*
1049 	 * By try_to_migrate(), page->mapcount goes down to 0 here. In this case,
1050 	 * we cannot notice that anon_vma is freed while we migrates a page.
1051 	 * This get_anon_vma() delays freeing anon_vma pointer until the end
1052 	 * of migration. File cache pages are no problem because of page_lock()
1053 	 * File Caches may use write_page() or lock_page() in migration, then,
1054 	 * just care Anon page here.
1055 	 *
1056 	 * Only page_get_anon_vma() understands the subtleties of
1057 	 * getting a hold on an anon_vma from outside one of its mms.
1058 	 * But if we cannot get anon_vma, then we won't need it anyway,
1059 	 * because that implies that the anon page is no longer mapped
1060 	 * (and cannot be remapped so long as we hold the page lock).
1061 	 */
1062 	if (PageAnon(page) && !PageKsm(page))
1063 		anon_vma = page_get_anon_vma(page);
1064 
1065 	/*
1066 	 * Block others from accessing the new page when we get around to
1067 	 * establishing additional references. We are usually the only one
1068 	 * holding a reference to newpage at this point. We used to have a BUG
1069 	 * here if trylock_page(newpage) fails, but would like to allow for
1070 	 * cases where there might be a race with the previous use of newpage.
1071 	 * This is much like races on refcount of oldpage: just don't BUG().
1072 	 */
1073 	if (unlikely(!trylock_page(newpage)))
1074 		goto out_unlock;
1075 
1076 	if (unlikely(!is_lru)) {
1077 		rc = move_to_new_folio(dst, folio, mode);
1078 		goto out_unlock_both;
1079 	}
1080 
1081 	/*
1082 	 * Corner case handling:
1083 	 * 1. When a new swap-cache page is read into, it is added to the LRU
1084 	 * and treated as swapcache but it has no rmap yet.
1085 	 * Calling try_to_unmap() against a page->mapping==NULL page will
1086 	 * trigger a BUG.  So handle it here.
1087 	 * 2. An orphaned page (see truncate_cleanup_page) might have
1088 	 * fs-private metadata. The page can be picked up due to memory
1089 	 * offlining.  Everywhere else except page reclaim, the page is
1090 	 * invisible to the vm, so the page can not be migrated.  So try to
1091 	 * free the metadata, so the page can be freed.
1092 	 */
1093 	if (!page->mapping) {
1094 		VM_BUG_ON_PAGE(PageAnon(page), page);
1095 		if (page_has_private(page)) {
1096 			try_to_free_buffers(folio);
1097 			goto out_unlock_both;
1098 		}
1099 	} else if (page_mapped(page)) {
1100 		/* Establish migration ptes */
1101 		VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
1102 				page);
1103 		try_to_migrate(folio, 0);
1104 		page_was_mapped = true;
1105 	}
1106 
1107 	if (!page_mapped(page))
1108 		rc = move_to_new_folio(dst, folio, mode);
1109 
1110 	/*
1111 	 * When successful, push newpage to LRU immediately: so that if it
1112 	 * turns out to be an mlocked page, remove_migration_ptes() will
1113 	 * automatically build up the correct newpage->mlock_count for it.
1114 	 *
1115 	 * We would like to do something similar for the old page, when
1116 	 * unsuccessful, and other cases when a page has been temporarily
1117 	 * isolated from the unevictable LRU: but this case is the easiest.
1118 	 */
1119 	if (rc == MIGRATEPAGE_SUCCESS) {
1120 		lru_cache_add(newpage);
1121 		if (page_was_mapped)
1122 			lru_add_drain();
1123 	}
1124 
1125 	if (page_was_mapped)
1126 		remove_migration_ptes(folio,
1127 			rc == MIGRATEPAGE_SUCCESS ? dst : folio, false);
1128 
1129 out_unlock_both:
1130 	unlock_page(newpage);
1131 out_unlock:
1132 	/* Drop an anon_vma reference if we took one */
1133 	if (anon_vma)
1134 		put_anon_vma(anon_vma);
1135 	unlock_page(page);
1136 out:
1137 	/*
1138 	 * If migration is successful, decrease refcount of the newpage,
1139 	 * which will not free the page because new page owner increased
1140 	 * refcounter.
1141 	 */
1142 	if (rc == MIGRATEPAGE_SUCCESS)
1143 		put_page(newpage);
1144 
1145 	return rc;
1146 }
1147 
1148 /*
1149  * Obtain the lock on page, remove all ptes and migrate the page
1150  * to the newly allocated page in newpage.
1151  */
1152 static int unmap_and_move(new_page_t get_new_page,
1153 				   free_page_t put_new_page,
1154 				   unsigned long private, struct page *page,
1155 				   int force, enum migrate_mode mode,
1156 				   enum migrate_reason reason,
1157 				   struct list_head *ret)
1158 {
1159 	int rc = MIGRATEPAGE_SUCCESS;
1160 	struct page *newpage = NULL;
1161 
1162 	if (!thp_migration_supported() && PageTransHuge(page))
1163 		return -ENOSYS;
1164 
1165 	if (page_count(page) == 1) {
1166 		/* Page was freed from under us. So we are done. */
1167 		ClearPageActive(page);
1168 		ClearPageUnevictable(page);
1169 		/* free_pages_prepare() will clear PG_isolated. */
1170 		goto out;
1171 	}
1172 
1173 	newpage = get_new_page(page, private);
1174 	if (!newpage)
1175 		return -ENOMEM;
1176 
1177 	newpage->private = 0;
1178 	rc = __unmap_and_move(page, newpage, force, mode);
1179 	if (rc == MIGRATEPAGE_SUCCESS)
1180 		set_page_owner_migrate_reason(newpage, reason);
1181 
1182 out:
1183 	if (rc != -EAGAIN) {
1184 		/*
1185 		 * A page that has been migrated has all references
1186 		 * removed and will be freed. A page that has not been
1187 		 * migrated will have kept its references and be restored.
1188 		 */
1189 		list_del(&page->lru);
1190 	}
1191 
1192 	/*
1193 	 * If migration is successful, releases reference grabbed during
1194 	 * isolation. Otherwise, restore the page to right list unless
1195 	 * we want to retry.
1196 	 */
1197 	if (rc == MIGRATEPAGE_SUCCESS) {
1198 		/*
1199 		 * Compaction can migrate also non-LRU pages which are
1200 		 * not accounted to NR_ISOLATED_*. They can be recognized
1201 		 * as __PageMovable
1202 		 */
1203 		if (likely(!__PageMovable(page)))
1204 			mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
1205 					page_is_file_lru(page), -thp_nr_pages(page));
1206 
1207 		if (reason != MR_MEMORY_FAILURE)
1208 			/*
1209 			 * We release the page in page_handle_poison.
1210 			 */
1211 			put_page(page);
1212 	} else {
1213 		if (rc != -EAGAIN)
1214 			list_add_tail(&page->lru, ret);
1215 
1216 		if (put_new_page)
1217 			put_new_page(newpage, private);
1218 		else
1219 			put_page(newpage);
1220 	}
1221 
1222 	return rc;
1223 }
1224 
1225 /*
1226  * Counterpart of unmap_and_move_page() for hugepage migration.
1227  *
1228  * This function doesn't wait the completion of hugepage I/O
1229  * because there is no race between I/O and migration for hugepage.
1230  * Note that currently hugepage I/O occurs only in direct I/O
1231  * where no lock is held and PG_writeback is irrelevant,
1232  * and writeback status of all subpages are counted in the reference
1233  * count of the head page (i.e. if all subpages of a 2MB hugepage are
1234  * under direct I/O, the reference of the head page is 512 and a bit more.)
1235  * This means that when we try to migrate hugepage whose subpages are
1236  * doing direct I/O, some references remain after try_to_unmap() and
1237  * hugepage migration fails without data corruption.
1238  *
1239  * There is also no race when direct I/O is issued on the page under migration,
1240  * because then pte is replaced with migration swap entry and direct I/O code
1241  * will wait in the page fault for migration to complete.
1242  */
1243 static int unmap_and_move_huge_page(new_page_t get_new_page,
1244 				free_page_t put_new_page, unsigned long private,
1245 				struct page *hpage, int force,
1246 				enum migrate_mode mode, int reason,
1247 				struct list_head *ret)
1248 {
1249 	struct folio *dst, *src = page_folio(hpage);
1250 	int rc = -EAGAIN;
1251 	int page_was_mapped = 0;
1252 	struct page *new_hpage;
1253 	struct anon_vma *anon_vma = NULL;
1254 	struct address_space *mapping = NULL;
1255 
1256 	/*
1257 	 * Migratability of hugepages depends on architectures and their size.
1258 	 * This check is necessary because some callers of hugepage migration
1259 	 * like soft offline and memory hotremove don't walk through page
1260 	 * tables or check whether the hugepage is pmd-based or not before
1261 	 * kicking migration.
1262 	 */
1263 	if (!hugepage_migration_supported(page_hstate(hpage))) {
1264 		list_move_tail(&hpage->lru, ret);
1265 		return -ENOSYS;
1266 	}
1267 
1268 	if (page_count(hpage) == 1) {
1269 		/* page was freed from under us. So we are done. */
1270 		putback_active_hugepage(hpage);
1271 		return MIGRATEPAGE_SUCCESS;
1272 	}
1273 
1274 	new_hpage = get_new_page(hpage, private);
1275 	if (!new_hpage)
1276 		return -ENOMEM;
1277 	dst = page_folio(new_hpage);
1278 
1279 	if (!trylock_page(hpage)) {
1280 		if (!force)
1281 			goto out;
1282 		switch (mode) {
1283 		case MIGRATE_SYNC:
1284 		case MIGRATE_SYNC_NO_COPY:
1285 			break;
1286 		default:
1287 			goto out;
1288 		}
1289 		lock_page(hpage);
1290 	}
1291 
1292 	/*
1293 	 * Check for pages which are in the process of being freed.  Without
1294 	 * page_mapping() set, hugetlbfs specific move page routine will not
1295 	 * be called and we could leak usage counts for subpools.
1296 	 */
1297 	if (hugetlb_page_subpool(hpage) && !page_mapping(hpage)) {
1298 		rc = -EBUSY;
1299 		goto out_unlock;
1300 	}
1301 
1302 	if (PageAnon(hpage))
1303 		anon_vma = page_get_anon_vma(hpage);
1304 
1305 	if (unlikely(!trylock_page(new_hpage)))
1306 		goto put_anon;
1307 
1308 	if (page_mapped(hpage)) {
1309 		enum ttu_flags ttu = 0;
1310 
1311 		if (!PageAnon(hpage)) {
1312 			/*
1313 			 * In shared mappings, try_to_unmap could potentially
1314 			 * call huge_pmd_unshare.  Because of this, take
1315 			 * semaphore in write mode here and set TTU_RMAP_LOCKED
1316 			 * to let lower levels know we have taken the lock.
1317 			 */
1318 			mapping = hugetlb_page_mapping_lock_write(hpage);
1319 			if (unlikely(!mapping))
1320 				goto unlock_put_anon;
1321 
1322 			ttu = TTU_RMAP_LOCKED;
1323 		}
1324 
1325 		try_to_migrate(src, ttu);
1326 		page_was_mapped = 1;
1327 
1328 		if (ttu & TTU_RMAP_LOCKED)
1329 			i_mmap_unlock_write(mapping);
1330 	}
1331 
1332 	if (!page_mapped(hpage))
1333 		rc = move_to_new_folio(dst, src, mode);
1334 
1335 	if (page_was_mapped)
1336 		remove_migration_ptes(src,
1337 			rc == MIGRATEPAGE_SUCCESS ? dst : src, false);
1338 
1339 unlock_put_anon:
1340 	unlock_page(new_hpage);
1341 
1342 put_anon:
1343 	if (anon_vma)
1344 		put_anon_vma(anon_vma);
1345 
1346 	if (rc == MIGRATEPAGE_SUCCESS) {
1347 		move_hugetlb_state(hpage, new_hpage, reason);
1348 		put_new_page = NULL;
1349 	}
1350 
1351 out_unlock:
1352 	unlock_page(hpage);
1353 out:
1354 	if (rc == MIGRATEPAGE_SUCCESS)
1355 		putback_active_hugepage(hpage);
1356 	else if (rc != -EAGAIN)
1357 		list_move_tail(&hpage->lru, ret);
1358 
1359 	/*
1360 	 * If migration was not successful and there's a freeing callback, use
1361 	 * it.  Otherwise, put_page() will drop the reference grabbed during
1362 	 * isolation.
1363 	 */
1364 	if (put_new_page)
1365 		put_new_page(new_hpage, private);
1366 	else
1367 		putback_active_hugepage(new_hpage);
1368 
1369 	return rc;
1370 }
1371 
1372 static inline int try_split_thp(struct page *page, struct page **page2,
1373 				struct list_head *from)
1374 {
1375 	int rc = 0;
1376 
1377 	lock_page(page);
1378 	rc = split_huge_page_to_list(page, from);
1379 	unlock_page(page);
1380 	if (!rc)
1381 		list_safe_reset_next(page, *page2, lru);
1382 
1383 	return rc;
1384 }
1385 
1386 /*
1387  * migrate_pages - migrate the pages specified in a list, to the free pages
1388  *		   supplied as the target for the page migration
1389  *
1390  * @from:		The list of pages to be migrated.
1391  * @get_new_page:	The function used to allocate free pages to be used
1392  *			as the target of the page migration.
1393  * @put_new_page:	The function used to free target pages if migration
1394  *			fails, or NULL if no special handling is necessary.
1395  * @private:		Private data to be passed on to get_new_page()
1396  * @mode:		The migration mode that specifies the constraints for
1397  *			page migration, if any.
1398  * @reason:		The reason for page migration.
1399  * @ret_succeeded:	Set to the number of normal pages migrated successfully if
1400  *			the caller passes a non-NULL pointer.
1401  *
1402  * The function returns after 10 attempts or if no pages are movable any more
1403  * because the list has become empty or no retryable pages exist any more.
1404  * It is caller's responsibility to call putback_movable_pages() to return pages
1405  * to the LRU or free list only if ret != 0.
1406  *
1407  * Returns the number of {normal page, THP, hugetlb} that were not migrated, or
1408  * an error code. The number of THP splits will be considered as the number of
1409  * non-migrated THP, no matter how many subpages of the THP are migrated successfully.
1410  */
1411 int migrate_pages(struct list_head *from, new_page_t get_new_page,
1412 		free_page_t put_new_page, unsigned long private,
1413 		enum migrate_mode mode, int reason, unsigned int *ret_succeeded)
1414 {
1415 	int retry = 1;
1416 	int thp_retry = 1;
1417 	int nr_failed = 0;
1418 	int nr_failed_pages = 0;
1419 	int nr_succeeded = 0;
1420 	int nr_thp_succeeded = 0;
1421 	int nr_thp_failed = 0;
1422 	int nr_thp_split = 0;
1423 	int pass = 0;
1424 	bool is_thp = false;
1425 	struct page *page;
1426 	struct page *page2;
1427 	int rc, nr_subpages;
1428 	LIST_HEAD(ret_pages);
1429 	LIST_HEAD(thp_split_pages);
1430 	bool nosplit = (reason == MR_NUMA_MISPLACED);
1431 	bool no_subpage_counting = false;
1432 
1433 	trace_mm_migrate_pages_start(mode, reason);
1434 
1435 thp_subpage_migration:
1436 	for (pass = 0; pass < 10 && (retry || thp_retry); pass++) {
1437 		retry = 0;
1438 		thp_retry = 0;
1439 
1440 		list_for_each_entry_safe(page, page2, from, lru) {
1441 retry:
1442 			/*
1443 			 * THP statistics is based on the source huge page.
1444 			 * Capture required information that might get lost
1445 			 * during migration.
1446 			 */
1447 			is_thp = PageTransHuge(page) && !PageHuge(page);
1448 			nr_subpages = compound_nr(page);
1449 			cond_resched();
1450 
1451 			if (PageHuge(page))
1452 				rc = unmap_and_move_huge_page(get_new_page,
1453 						put_new_page, private, page,
1454 						pass > 2, mode, reason,
1455 						&ret_pages);
1456 			else
1457 				rc = unmap_and_move(get_new_page, put_new_page,
1458 						private, page, pass > 2, mode,
1459 						reason, &ret_pages);
1460 			/*
1461 			 * The rules are:
1462 			 *	Success: non hugetlb page will be freed, hugetlb
1463 			 *		 page will be put back
1464 			 *	-EAGAIN: stay on the from list
1465 			 *	-ENOMEM: stay on the from list
1466 			 *	Other errno: put on ret_pages list then splice to
1467 			 *		     from list
1468 			 */
1469 			switch(rc) {
1470 			/*
1471 			 * THP migration might be unsupported or the
1472 			 * allocation could've failed so we should
1473 			 * retry on the same page with the THP split
1474 			 * to base pages.
1475 			 *
1476 			 * Head page is retried immediately and tail
1477 			 * pages are added to the tail of the list so
1478 			 * we encounter them after the rest of the list
1479 			 * is processed.
1480 			 */
1481 			case -ENOSYS:
1482 				/* THP migration is unsupported */
1483 				if (is_thp) {
1484 					nr_thp_failed++;
1485 					if (!try_split_thp(page, &page2, &thp_split_pages)) {
1486 						nr_thp_split++;
1487 						goto retry;
1488 					}
1489 				/* Hugetlb migration is unsupported */
1490 				} else if (!no_subpage_counting) {
1491 					nr_failed++;
1492 				}
1493 
1494 				nr_failed_pages += nr_subpages;
1495 				break;
1496 			case -ENOMEM:
1497 				/*
1498 				 * When memory is low, don't bother to try to migrate
1499 				 * other pages, just exit.
1500 				 * THP NUMA faulting doesn't split THP to retry.
1501 				 */
1502 				if (is_thp && !nosplit) {
1503 					nr_thp_failed++;
1504 					if (!try_split_thp(page, &page2, &thp_split_pages)) {
1505 						nr_thp_split++;
1506 						goto retry;
1507 					}
1508 				} else if (!no_subpage_counting) {
1509 					nr_failed++;
1510 				}
1511 
1512 				nr_failed_pages += nr_subpages;
1513 				/*
1514 				 * There might be some subpages of fail-to-migrate THPs
1515 				 * left in thp_split_pages list. Move them back to migration
1516 				 * list so that they could be put back to the right list by
1517 				 * the caller otherwise the page refcnt will be leaked.
1518 				 */
1519 				list_splice_init(&thp_split_pages, from);
1520 				nr_thp_failed += thp_retry;
1521 				goto out;
1522 			case -EAGAIN:
1523 				if (is_thp)
1524 					thp_retry++;
1525 				else
1526 					retry++;
1527 				break;
1528 			case MIGRATEPAGE_SUCCESS:
1529 				nr_succeeded += nr_subpages;
1530 				if (is_thp)
1531 					nr_thp_succeeded++;
1532 				break;
1533 			default:
1534 				/*
1535 				 * Permanent failure (-EBUSY, etc.):
1536 				 * unlike -EAGAIN case, the failed page is
1537 				 * removed from migration page list and not
1538 				 * retried in the next outer loop.
1539 				 */
1540 				if (is_thp)
1541 					nr_thp_failed++;
1542 				else if (!no_subpage_counting)
1543 					nr_failed++;
1544 
1545 				nr_failed_pages += nr_subpages;
1546 				break;
1547 			}
1548 		}
1549 	}
1550 	nr_failed += retry;
1551 	nr_thp_failed += thp_retry;
1552 	/*
1553 	 * Try to migrate subpages of fail-to-migrate THPs, no nr_failed
1554 	 * counting in this round, since all subpages of a THP is counted
1555 	 * as 1 failure in the first round.
1556 	 */
1557 	if (!list_empty(&thp_split_pages)) {
1558 		/*
1559 		 * Move non-migrated pages (after 10 retries) to ret_pages
1560 		 * to avoid migrating them again.
1561 		 */
1562 		list_splice_init(from, &ret_pages);
1563 		list_splice_init(&thp_split_pages, from);
1564 		no_subpage_counting = true;
1565 		retry = 1;
1566 		goto thp_subpage_migration;
1567 	}
1568 
1569 	rc = nr_failed + nr_thp_failed;
1570 out:
1571 	/*
1572 	 * Put the permanent failure page back to migration list, they
1573 	 * will be put back to the right list by the caller.
1574 	 */
1575 	list_splice(&ret_pages, from);
1576 
1577 	count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1578 	count_vm_events(PGMIGRATE_FAIL, nr_failed_pages);
1579 	count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
1580 	count_vm_events(THP_MIGRATION_FAIL, nr_thp_failed);
1581 	count_vm_events(THP_MIGRATION_SPLIT, nr_thp_split);
1582 	trace_mm_migrate_pages(nr_succeeded, nr_failed_pages, nr_thp_succeeded,
1583 			       nr_thp_failed, nr_thp_split, mode, reason);
1584 
1585 	if (ret_succeeded)
1586 		*ret_succeeded = nr_succeeded;
1587 
1588 	return rc;
1589 }
1590 
1591 struct page *alloc_migration_target(struct page *page, unsigned long private)
1592 {
1593 	struct folio *folio = page_folio(page);
1594 	struct migration_target_control *mtc;
1595 	gfp_t gfp_mask;
1596 	unsigned int order = 0;
1597 	struct folio *new_folio = NULL;
1598 	int nid;
1599 	int zidx;
1600 
1601 	mtc = (struct migration_target_control *)private;
1602 	gfp_mask = mtc->gfp_mask;
1603 	nid = mtc->nid;
1604 	if (nid == NUMA_NO_NODE)
1605 		nid = folio_nid(folio);
1606 
1607 	if (folio_test_hugetlb(folio)) {
1608 		struct hstate *h = page_hstate(&folio->page);
1609 
1610 		gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
1611 		return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask);
1612 	}
1613 
1614 	if (folio_test_large(folio)) {
1615 		/*
1616 		 * clear __GFP_RECLAIM to make the migration callback
1617 		 * consistent with regular THP allocations.
1618 		 */
1619 		gfp_mask &= ~__GFP_RECLAIM;
1620 		gfp_mask |= GFP_TRANSHUGE;
1621 		order = folio_order(folio);
1622 	}
1623 	zidx = zone_idx(folio_zone(folio));
1624 	if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
1625 		gfp_mask |= __GFP_HIGHMEM;
1626 
1627 	new_folio = __folio_alloc(gfp_mask, order, nid, mtc->nmask);
1628 
1629 	return &new_folio->page;
1630 }
1631 
1632 #ifdef CONFIG_NUMA
1633 
1634 static int store_status(int __user *status, int start, int value, int nr)
1635 {
1636 	while (nr-- > 0) {
1637 		if (put_user(value, status + start))
1638 			return -EFAULT;
1639 		start++;
1640 	}
1641 
1642 	return 0;
1643 }
1644 
1645 static int do_move_pages_to_node(struct mm_struct *mm,
1646 		struct list_head *pagelist, int node)
1647 {
1648 	int err;
1649 	struct migration_target_control mtc = {
1650 		.nid = node,
1651 		.gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
1652 	};
1653 
1654 	err = migrate_pages(pagelist, alloc_migration_target, NULL,
1655 		(unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL);
1656 	if (err)
1657 		putback_movable_pages(pagelist);
1658 	return err;
1659 }
1660 
1661 /*
1662  * Resolves the given address to a struct page, isolates it from the LRU and
1663  * puts it to the given pagelist.
1664  * Returns:
1665  *     errno - if the page cannot be found/isolated
1666  *     0 - when it doesn't have to be migrated because it is already on the
1667  *         target node
1668  *     1 - when it has been queued
1669  */
1670 static int add_page_for_migration(struct mm_struct *mm, unsigned long addr,
1671 		int node, struct list_head *pagelist, bool migrate_all)
1672 {
1673 	struct vm_area_struct *vma;
1674 	struct page *page;
1675 	int err;
1676 
1677 	mmap_read_lock(mm);
1678 	err = -EFAULT;
1679 	vma = vma_lookup(mm, addr);
1680 	if (!vma || !vma_migratable(vma))
1681 		goto out;
1682 
1683 	/* FOLL_DUMP to ignore special (like zero) pages */
1684 	page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
1685 
1686 	err = PTR_ERR(page);
1687 	if (IS_ERR(page))
1688 		goto out;
1689 
1690 	err = -ENOENT;
1691 	if (!page || is_zone_device_page(page))
1692 		goto out;
1693 
1694 	err = 0;
1695 	if (page_to_nid(page) == node)
1696 		goto out_putpage;
1697 
1698 	err = -EACCES;
1699 	if (page_mapcount(page) > 1 && !migrate_all)
1700 		goto out_putpage;
1701 
1702 	if (PageHuge(page)) {
1703 		if (PageHead(page)) {
1704 			err = isolate_hugetlb(page, pagelist);
1705 			if (!err)
1706 				err = 1;
1707 		}
1708 	} else {
1709 		struct page *head;
1710 
1711 		head = compound_head(page);
1712 		err = isolate_lru_page(head);
1713 		if (err)
1714 			goto out_putpage;
1715 
1716 		err = 1;
1717 		list_add_tail(&head->lru, pagelist);
1718 		mod_node_page_state(page_pgdat(head),
1719 			NR_ISOLATED_ANON + page_is_file_lru(head),
1720 			thp_nr_pages(head));
1721 	}
1722 out_putpage:
1723 	/*
1724 	 * Either remove the duplicate refcount from
1725 	 * isolate_lru_page() or drop the page ref if it was
1726 	 * not isolated.
1727 	 */
1728 	put_page(page);
1729 out:
1730 	mmap_read_unlock(mm);
1731 	return err;
1732 }
1733 
1734 static int move_pages_and_store_status(struct mm_struct *mm, int node,
1735 		struct list_head *pagelist, int __user *status,
1736 		int start, int i, unsigned long nr_pages)
1737 {
1738 	int err;
1739 
1740 	if (list_empty(pagelist))
1741 		return 0;
1742 
1743 	err = do_move_pages_to_node(mm, pagelist, node);
1744 	if (err) {
1745 		/*
1746 		 * Positive err means the number of failed
1747 		 * pages to migrate.  Since we are going to
1748 		 * abort and return the number of non-migrated
1749 		 * pages, so need to include the rest of the
1750 		 * nr_pages that have not been attempted as
1751 		 * well.
1752 		 */
1753 		if (err > 0)
1754 			err += nr_pages - i - 1;
1755 		return err;
1756 	}
1757 	return store_status(status, start, node, i - start);
1758 }
1759 
1760 /*
1761  * Migrate an array of page address onto an array of nodes and fill
1762  * the corresponding array of status.
1763  */
1764 static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
1765 			 unsigned long nr_pages,
1766 			 const void __user * __user *pages,
1767 			 const int __user *nodes,
1768 			 int __user *status, int flags)
1769 {
1770 	int current_node = NUMA_NO_NODE;
1771 	LIST_HEAD(pagelist);
1772 	int start, i;
1773 	int err = 0, err1;
1774 
1775 	lru_cache_disable();
1776 
1777 	for (i = start = 0; i < nr_pages; i++) {
1778 		const void __user *p;
1779 		unsigned long addr;
1780 		int node;
1781 
1782 		err = -EFAULT;
1783 		if (get_user(p, pages + i))
1784 			goto out_flush;
1785 		if (get_user(node, nodes + i))
1786 			goto out_flush;
1787 		addr = (unsigned long)untagged_addr(p);
1788 
1789 		err = -ENODEV;
1790 		if (node < 0 || node >= MAX_NUMNODES)
1791 			goto out_flush;
1792 		if (!node_state(node, N_MEMORY))
1793 			goto out_flush;
1794 
1795 		err = -EACCES;
1796 		if (!node_isset(node, task_nodes))
1797 			goto out_flush;
1798 
1799 		if (current_node == NUMA_NO_NODE) {
1800 			current_node = node;
1801 			start = i;
1802 		} else if (node != current_node) {
1803 			err = move_pages_and_store_status(mm, current_node,
1804 					&pagelist, status, start, i, nr_pages);
1805 			if (err)
1806 				goto out;
1807 			start = i;
1808 			current_node = node;
1809 		}
1810 
1811 		/*
1812 		 * Errors in the page lookup or isolation are not fatal and we simply
1813 		 * report them via status
1814 		 */
1815 		err = add_page_for_migration(mm, addr, current_node,
1816 				&pagelist, flags & MPOL_MF_MOVE_ALL);
1817 
1818 		if (err > 0) {
1819 			/* The page is successfully queued for migration */
1820 			continue;
1821 		}
1822 
1823 		/*
1824 		 * The move_pages() man page does not have an -EEXIST choice, so
1825 		 * use -EFAULT instead.
1826 		 */
1827 		if (err == -EEXIST)
1828 			err = -EFAULT;
1829 
1830 		/*
1831 		 * If the page is already on the target node (!err), store the
1832 		 * node, otherwise, store the err.
1833 		 */
1834 		err = store_status(status, i, err ? : current_node, 1);
1835 		if (err)
1836 			goto out_flush;
1837 
1838 		err = move_pages_and_store_status(mm, current_node, &pagelist,
1839 				status, start, i, nr_pages);
1840 		if (err)
1841 			goto out;
1842 		current_node = NUMA_NO_NODE;
1843 	}
1844 out_flush:
1845 	/* Make sure we do not overwrite the existing error */
1846 	err1 = move_pages_and_store_status(mm, current_node, &pagelist,
1847 				status, start, i, nr_pages);
1848 	if (err >= 0)
1849 		err = err1;
1850 out:
1851 	lru_cache_enable();
1852 	return err;
1853 }
1854 
1855 /*
1856  * Determine the nodes of an array of pages and store it in an array of status.
1857  */
1858 static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1859 				const void __user **pages, int *status)
1860 {
1861 	unsigned long i;
1862 
1863 	mmap_read_lock(mm);
1864 
1865 	for (i = 0; i < nr_pages; i++) {
1866 		unsigned long addr = (unsigned long)(*pages);
1867 		unsigned int foll_flags = FOLL_DUMP;
1868 		struct vm_area_struct *vma;
1869 		struct page *page;
1870 		int err = -EFAULT;
1871 
1872 		vma = vma_lookup(mm, addr);
1873 		if (!vma)
1874 			goto set_status;
1875 
1876 		/* Not all huge page follow APIs support 'FOLL_GET' */
1877 		if (!is_vm_hugetlb_page(vma))
1878 			foll_flags |= FOLL_GET;
1879 
1880 		/* FOLL_DUMP to ignore special (like zero) pages */
1881 		page = follow_page(vma, addr, foll_flags);
1882 
1883 		err = PTR_ERR(page);
1884 		if (IS_ERR(page))
1885 			goto set_status;
1886 
1887 		if (page && !is_zone_device_page(page)) {
1888 			err = page_to_nid(page);
1889 			if (foll_flags & FOLL_GET)
1890 				put_page(page);
1891 		} else {
1892 			err = -ENOENT;
1893 		}
1894 set_status:
1895 		*status = err;
1896 
1897 		pages++;
1898 		status++;
1899 	}
1900 
1901 	mmap_read_unlock(mm);
1902 }
1903 
1904 static int get_compat_pages_array(const void __user *chunk_pages[],
1905 				  const void __user * __user *pages,
1906 				  unsigned long chunk_nr)
1907 {
1908 	compat_uptr_t __user *pages32 = (compat_uptr_t __user *)pages;
1909 	compat_uptr_t p;
1910 	int i;
1911 
1912 	for (i = 0; i < chunk_nr; i++) {
1913 		if (get_user(p, pages32 + i))
1914 			return -EFAULT;
1915 		chunk_pages[i] = compat_ptr(p);
1916 	}
1917 
1918 	return 0;
1919 }
1920 
1921 /*
1922  * Determine the nodes of a user array of pages and store it in
1923  * a user array of status.
1924  */
1925 static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1926 			 const void __user * __user *pages,
1927 			 int __user *status)
1928 {
1929 #define DO_PAGES_STAT_CHUNK_NR 16UL
1930 	const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1931 	int chunk_status[DO_PAGES_STAT_CHUNK_NR];
1932 
1933 	while (nr_pages) {
1934 		unsigned long chunk_nr = min(nr_pages, DO_PAGES_STAT_CHUNK_NR);
1935 
1936 		if (in_compat_syscall()) {
1937 			if (get_compat_pages_array(chunk_pages, pages,
1938 						   chunk_nr))
1939 				break;
1940 		} else {
1941 			if (copy_from_user(chunk_pages, pages,
1942 				      chunk_nr * sizeof(*chunk_pages)))
1943 				break;
1944 		}
1945 
1946 		do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1947 
1948 		if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1949 			break;
1950 
1951 		pages += chunk_nr;
1952 		status += chunk_nr;
1953 		nr_pages -= chunk_nr;
1954 	}
1955 	return nr_pages ? -EFAULT : 0;
1956 }
1957 
1958 static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
1959 {
1960 	struct task_struct *task;
1961 	struct mm_struct *mm;
1962 
1963 	/*
1964 	 * There is no need to check if current process has the right to modify
1965 	 * the specified process when they are same.
1966 	 */
1967 	if (!pid) {
1968 		mmget(current->mm);
1969 		*mem_nodes = cpuset_mems_allowed(current);
1970 		return current->mm;
1971 	}
1972 
1973 	/* Find the mm_struct */
1974 	rcu_read_lock();
1975 	task = find_task_by_vpid(pid);
1976 	if (!task) {
1977 		rcu_read_unlock();
1978 		return ERR_PTR(-ESRCH);
1979 	}
1980 	get_task_struct(task);
1981 
1982 	/*
1983 	 * Check if this process has the right to modify the specified
1984 	 * process. Use the regular "ptrace_may_access()" checks.
1985 	 */
1986 	if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
1987 		rcu_read_unlock();
1988 		mm = ERR_PTR(-EPERM);
1989 		goto out;
1990 	}
1991 	rcu_read_unlock();
1992 
1993 	mm = ERR_PTR(security_task_movememory(task));
1994 	if (IS_ERR(mm))
1995 		goto out;
1996 	*mem_nodes = cpuset_mems_allowed(task);
1997 	mm = get_task_mm(task);
1998 out:
1999 	put_task_struct(task);
2000 	if (!mm)
2001 		mm = ERR_PTR(-EINVAL);
2002 	return mm;
2003 }
2004 
2005 /*
2006  * Move a list of pages in the address space of the currently executing
2007  * process.
2008  */
2009 static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
2010 			     const void __user * __user *pages,
2011 			     const int __user *nodes,
2012 			     int __user *status, int flags)
2013 {
2014 	struct mm_struct *mm;
2015 	int err;
2016 	nodemask_t task_nodes;
2017 
2018 	/* Check flags */
2019 	if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
2020 		return -EINVAL;
2021 
2022 	if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
2023 		return -EPERM;
2024 
2025 	mm = find_mm_struct(pid, &task_nodes);
2026 	if (IS_ERR(mm))
2027 		return PTR_ERR(mm);
2028 
2029 	if (nodes)
2030 		err = do_pages_move(mm, task_nodes, nr_pages, pages,
2031 				    nodes, status, flags);
2032 	else
2033 		err = do_pages_stat(mm, nr_pages, pages, status);
2034 
2035 	mmput(mm);
2036 	return err;
2037 }
2038 
2039 SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
2040 		const void __user * __user *, pages,
2041 		const int __user *, nodes,
2042 		int __user *, status, int, flags)
2043 {
2044 	return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
2045 }
2046 
2047 #ifdef CONFIG_NUMA_BALANCING
2048 /*
2049  * Returns true if this is a safe migration target node for misplaced NUMA
2050  * pages. Currently it only checks the watermarks which is crude.
2051  */
2052 static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
2053 				   unsigned long nr_migrate_pages)
2054 {
2055 	int z;
2056 
2057 	for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2058 		struct zone *zone = pgdat->node_zones + z;
2059 
2060 		if (!managed_zone(zone))
2061 			continue;
2062 
2063 		/* Avoid waking kswapd by allocating pages_to_migrate pages. */
2064 		if (!zone_watermark_ok(zone, 0,
2065 				       high_wmark_pages(zone) +
2066 				       nr_migrate_pages,
2067 				       ZONE_MOVABLE, 0))
2068 			continue;
2069 		return true;
2070 	}
2071 	return false;
2072 }
2073 
2074 static struct page *alloc_misplaced_dst_page(struct page *page,
2075 					   unsigned long data)
2076 {
2077 	int nid = (int) data;
2078 	int order = compound_order(page);
2079 	gfp_t gfp = __GFP_THISNODE;
2080 	struct folio *new;
2081 
2082 	if (order > 0)
2083 		gfp |= GFP_TRANSHUGE_LIGHT;
2084 	else {
2085 		gfp |= GFP_HIGHUSER_MOVABLE | __GFP_NOMEMALLOC | __GFP_NORETRY |
2086 			__GFP_NOWARN;
2087 		gfp &= ~__GFP_RECLAIM;
2088 	}
2089 	new = __folio_alloc_node(gfp, order, nid);
2090 
2091 	return &new->page;
2092 }
2093 
2094 static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
2095 {
2096 	int nr_pages = thp_nr_pages(page);
2097 	int order = compound_order(page);
2098 
2099 	VM_BUG_ON_PAGE(order && !PageTransHuge(page), page);
2100 
2101 	/* Do not migrate THP mapped by multiple processes */
2102 	if (PageTransHuge(page) && total_mapcount(page) > 1)
2103 		return 0;
2104 
2105 	/* Avoid migrating to a node that is nearly full */
2106 	if (!migrate_balanced_pgdat(pgdat, nr_pages)) {
2107 		int z;
2108 
2109 		if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING))
2110 			return 0;
2111 		for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2112 			if (managed_zone(pgdat->node_zones + z))
2113 				break;
2114 		}
2115 		wakeup_kswapd(pgdat->node_zones + z, 0, order, ZONE_MOVABLE);
2116 		return 0;
2117 	}
2118 
2119 	if (isolate_lru_page(page))
2120 		return 0;
2121 
2122 	mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON + page_is_file_lru(page),
2123 			    nr_pages);
2124 
2125 	/*
2126 	 * Isolating the page has taken another reference, so the
2127 	 * caller's reference can be safely dropped without the page
2128 	 * disappearing underneath us during migration.
2129 	 */
2130 	put_page(page);
2131 	return 1;
2132 }
2133 
2134 /*
2135  * Attempt to migrate a misplaced page to the specified destination
2136  * node. Caller is expected to have an elevated reference count on
2137  * the page that will be dropped by this function before returning.
2138  */
2139 int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
2140 			   int node)
2141 {
2142 	pg_data_t *pgdat = NODE_DATA(node);
2143 	int isolated;
2144 	int nr_remaining;
2145 	unsigned int nr_succeeded;
2146 	LIST_HEAD(migratepages);
2147 	int nr_pages = thp_nr_pages(page);
2148 
2149 	/*
2150 	 * Don't migrate file pages that are mapped in multiple processes
2151 	 * with execute permissions as they are probably shared libraries.
2152 	 */
2153 	if (page_mapcount(page) != 1 && page_is_file_lru(page) &&
2154 	    (vma->vm_flags & VM_EXEC))
2155 		goto out;
2156 
2157 	/*
2158 	 * Also do not migrate dirty pages as not all filesystems can move
2159 	 * dirty pages in MIGRATE_ASYNC mode which is a waste of cycles.
2160 	 */
2161 	if (page_is_file_lru(page) && PageDirty(page))
2162 		goto out;
2163 
2164 	isolated = numamigrate_isolate_page(pgdat, page);
2165 	if (!isolated)
2166 		goto out;
2167 
2168 	list_add(&page->lru, &migratepages);
2169 	nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
2170 				     NULL, node, MIGRATE_ASYNC,
2171 				     MR_NUMA_MISPLACED, &nr_succeeded);
2172 	if (nr_remaining) {
2173 		if (!list_empty(&migratepages)) {
2174 			list_del(&page->lru);
2175 			mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
2176 					page_is_file_lru(page), -nr_pages);
2177 			putback_lru_page(page);
2178 		}
2179 		isolated = 0;
2180 	}
2181 	if (nr_succeeded) {
2182 		count_vm_numa_events(NUMA_PAGE_MIGRATE, nr_succeeded);
2183 		if (!node_is_toptier(page_to_nid(page)) && node_is_toptier(node))
2184 			mod_node_page_state(pgdat, PGPROMOTE_SUCCESS,
2185 					    nr_succeeded);
2186 	}
2187 	BUG_ON(!list_empty(&migratepages));
2188 	return isolated;
2189 
2190 out:
2191 	put_page(page);
2192 	return 0;
2193 }
2194 #endif /* CONFIG_NUMA_BALANCING */
2195 
2196 /*
2197  * node_demotion[] example:
2198  *
2199  * Consider a system with two sockets.  Each socket has
2200  * three classes of memory attached: fast, medium and slow.
2201  * Each memory class is placed in its own NUMA node.  The
2202  * CPUs are placed in the node with the "fast" memory.  The
2203  * 6 NUMA nodes (0-5) might be split among the sockets like
2204  * this:
2205  *
2206  *	Socket A: 0, 1, 2
2207  *	Socket B: 3, 4, 5
2208  *
2209  * When Node 0 fills up, its memory should be migrated to
2210  * Node 1.  When Node 1 fills up, it should be migrated to
2211  * Node 2.  The migration path start on the nodes with the
2212  * processors (since allocations default to this node) and
2213  * fast memory, progress through medium and end with the
2214  * slow memory:
2215  *
2216  *	0 -> 1 -> 2 -> stop
2217  *	3 -> 4 -> 5 -> stop
2218  *
2219  * This is represented in the node_demotion[] like this:
2220  *
2221  *	{  nr=1, nodes[0]=1 }, // Node 0 migrates to 1
2222  *	{  nr=1, nodes[0]=2 }, // Node 1 migrates to 2
2223  *	{  nr=0, nodes[0]=-1 }, // Node 2 does not migrate
2224  *	{  nr=1, nodes[0]=4 }, // Node 3 migrates to 4
2225  *	{  nr=1, nodes[0]=5 }, // Node 4 migrates to 5
2226  *	{  nr=0, nodes[0]=-1 }, // Node 5 does not migrate
2227  *
2228  * Moreover some systems may have multiple slow memory nodes.
2229  * Suppose a system has one socket with 3 memory nodes, node 0
2230  * is fast memory type, and node 1/2 both are slow memory
2231  * type, and the distance between fast memory node and slow
2232  * memory node is same. So the migration path should be:
2233  *
2234  *	0 -> 1/2 -> stop
2235  *
2236  * This is represented in the node_demotion[] like this:
2237  *	{ nr=2, {nodes[0]=1, nodes[1]=2} }, // Node 0 migrates to node 1 and node 2
2238  *	{ nr=0, nodes[0]=-1, }, // Node 1 dose not migrate
2239  *	{ nr=0, nodes[0]=-1, }, // Node 2 does not migrate
2240  */
2241 
2242 /*
2243  * Writes to this array occur without locking.  Cycles are
2244  * not allowed: Node X demotes to Y which demotes to X...
2245  *
2246  * If multiple reads are performed, a single rcu_read_lock()
2247  * must be held over all reads to ensure that no cycles are
2248  * observed.
2249  */
2250 #define DEFAULT_DEMOTION_TARGET_NODES 15
2251 
2252 #if MAX_NUMNODES < DEFAULT_DEMOTION_TARGET_NODES
2253 #define DEMOTION_TARGET_NODES	(MAX_NUMNODES - 1)
2254 #else
2255 #define DEMOTION_TARGET_NODES	DEFAULT_DEMOTION_TARGET_NODES
2256 #endif
2257 
2258 struct demotion_nodes {
2259 	unsigned short nr;
2260 	short nodes[DEMOTION_TARGET_NODES];
2261 };
2262 
2263 static struct demotion_nodes *node_demotion __read_mostly;
2264 
2265 /**
2266  * next_demotion_node() - Get the next node in the demotion path
2267  * @node: The starting node to lookup the next node
2268  *
2269  * Return: node id for next memory node in the demotion path hierarchy
2270  * from @node; NUMA_NO_NODE if @node is terminal.  This does not keep
2271  * @node online or guarantee that it *continues* to be the next demotion
2272  * target.
2273  */
2274 int next_demotion_node(int node)
2275 {
2276 	struct demotion_nodes *nd;
2277 	unsigned short target_nr, index;
2278 	int target;
2279 
2280 	if (!node_demotion)
2281 		return NUMA_NO_NODE;
2282 
2283 	nd = &node_demotion[node];
2284 
2285 	/*
2286 	 * node_demotion[] is updated without excluding this
2287 	 * function from running.  RCU doesn't provide any
2288 	 * compiler barriers, so the READ_ONCE() is required
2289 	 * to avoid compiler reordering or read merging.
2290 	 *
2291 	 * Make sure to use RCU over entire code blocks if
2292 	 * node_demotion[] reads need to be consistent.
2293 	 */
2294 	rcu_read_lock();
2295 	target_nr = READ_ONCE(nd->nr);
2296 
2297 	switch (target_nr) {
2298 	case 0:
2299 		target = NUMA_NO_NODE;
2300 		goto out;
2301 	case 1:
2302 		index = 0;
2303 		break;
2304 	default:
2305 		/*
2306 		 * If there are multiple target nodes, just select one
2307 		 * target node randomly.
2308 		 *
2309 		 * In addition, we can also use round-robin to select
2310 		 * target node, but we should introduce another variable
2311 		 * for node_demotion[] to record last selected target node,
2312 		 * that may cause cache ping-pong due to the changing of
2313 		 * last target node. Or introducing per-cpu data to avoid
2314 		 * caching issue, which seems more complicated. So selecting
2315 		 * target node randomly seems better until now.
2316 		 */
2317 		index = get_random_int() % target_nr;
2318 		break;
2319 	}
2320 
2321 	target = READ_ONCE(nd->nodes[index]);
2322 
2323 out:
2324 	rcu_read_unlock();
2325 	return target;
2326 }
2327 
2328 /* Disable reclaim-based migration. */
2329 static void __disable_all_migrate_targets(void)
2330 {
2331 	int node, i;
2332 
2333 	if (!node_demotion)
2334 		return;
2335 
2336 	for_each_online_node(node) {
2337 		node_demotion[node].nr = 0;
2338 		for (i = 0; i < DEMOTION_TARGET_NODES; i++)
2339 			node_demotion[node].nodes[i] = NUMA_NO_NODE;
2340 	}
2341 }
2342 
2343 static void disable_all_migrate_targets(void)
2344 {
2345 	__disable_all_migrate_targets();
2346 
2347 	/*
2348 	 * Ensure that the "disable" is visible across the system.
2349 	 * Readers will see either a combination of before+disable
2350 	 * state or disable+after.  They will never see before and
2351 	 * after state together.
2352 	 *
2353 	 * The before+after state together might have cycles and
2354 	 * could cause readers to do things like loop until this
2355 	 * function finishes.  This ensures they can only see a
2356 	 * single "bad" read and would, for instance, only loop
2357 	 * once.
2358 	 */
2359 	synchronize_rcu();
2360 }
2361 
2362 /*
2363  * Find an automatic demotion target for 'node'.
2364  * Failing here is OK.  It might just indicate
2365  * being at the end of a chain.
2366  */
2367 static int establish_migrate_target(int node, nodemask_t *used,
2368 				    int best_distance)
2369 {
2370 	int migration_target, index, val;
2371 	struct demotion_nodes *nd;
2372 
2373 	if (!node_demotion)
2374 		return NUMA_NO_NODE;
2375 
2376 	nd = &node_demotion[node];
2377 
2378 	migration_target = find_next_best_node(node, used);
2379 	if (migration_target == NUMA_NO_NODE)
2380 		return NUMA_NO_NODE;
2381 
2382 	/*
2383 	 * If the node has been set a migration target node before,
2384 	 * which means it's the best distance between them. Still
2385 	 * check if this node can be demoted to other target nodes
2386 	 * if they have a same best distance.
2387 	 */
2388 	if (best_distance != -1) {
2389 		val = node_distance(node, migration_target);
2390 		if (val > best_distance)
2391 			goto out_clear;
2392 	}
2393 
2394 	index = nd->nr;
2395 	if (WARN_ONCE(index >= DEMOTION_TARGET_NODES,
2396 		      "Exceeds maximum demotion target nodes\n"))
2397 		goto out_clear;
2398 
2399 	nd->nodes[index] = migration_target;
2400 	nd->nr++;
2401 
2402 	return migration_target;
2403 out_clear:
2404 	node_clear(migration_target, *used);
2405 	return NUMA_NO_NODE;
2406 }
2407 
2408 /*
2409  * When memory fills up on a node, memory contents can be
2410  * automatically migrated to another node instead of
2411  * discarded at reclaim.
2412  *
2413  * Establish a "migration path" which will start at nodes
2414  * with CPUs and will follow the priorities used to build the
2415  * page allocator zonelists.
2416  *
2417  * The difference here is that cycles must be avoided.  If
2418  * node0 migrates to node1, then neither node1, nor anything
2419  * node1 migrates to can migrate to node0. Also one node can
2420  * be migrated to multiple nodes if the target nodes all have
2421  * a same best-distance against the source node.
2422  *
2423  * This function can run simultaneously with readers of
2424  * node_demotion[].  However, it can not run simultaneously
2425  * with itself.  Exclusion is provided by memory hotplug events
2426  * being single-threaded.
2427  */
2428 static void __set_migration_target_nodes(void)
2429 {
2430 	nodemask_t next_pass;
2431 	nodemask_t this_pass;
2432 	nodemask_t used_targets = NODE_MASK_NONE;
2433 	int node, best_distance;
2434 
2435 	/*
2436 	 * Avoid any oddities like cycles that could occur
2437 	 * from changes in the topology.  This will leave
2438 	 * a momentary gap when migration is disabled.
2439 	 */
2440 	disable_all_migrate_targets();
2441 
2442 	/*
2443 	 * Allocations go close to CPUs, first.  Assume that
2444 	 * the migration path starts at the nodes with CPUs.
2445 	 */
2446 	next_pass = node_states[N_CPU];
2447 again:
2448 	this_pass = next_pass;
2449 	next_pass = NODE_MASK_NONE;
2450 	/*
2451 	 * To avoid cycles in the migration "graph", ensure
2452 	 * that migration sources are not future targets by
2453 	 * setting them in 'used_targets'.  Do this only
2454 	 * once per pass so that multiple source nodes can
2455 	 * share a target node.
2456 	 *
2457 	 * 'used_targets' will become unavailable in future
2458 	 * passes.  This limits some opportunities for
2459 	 * multiple source nodes to share a destination.
2460 	 */
2461 	nodes_or(used_targets, used_targets, this_pass);
2462 
2463 	for_each_node_mask(node, this_pass) {
2464 		best_distance = -1;
2465 
2466 		/*
2467 		 * Try to set up the migration path for the node, and the target
2468 		 * migration nodes can be multiple, so doing a loop to find all
2469 		 * the target nodes if they all have a best node distance.
2470 		 */
2471 		do {
2472 			int target_node =
2473 				establish_migrate_target(node, &used_targets,
2474 							 best_distance);
2475 
2476 			if (target_node == NUMA_NO_NODE)
2477 				break;
2478 
2479 			if (best_distance == -1)
2480 				best_distance = node_distance(node, target_node);
2481 
2482 			/*
2483 			 * Visit targets from this pass in the next pass.
2484 			 * Eventually, every node will have been part of
2485 			 * a pass, and will become set in 'used_targets'.
2486 			 */
2487 			node_set(target_node, next_pass);
2488 		} while (1);
2489 	}
2490 	/*
2491 	 * 'next_pass' contains nodes which became migration
2492 	 * targets in this pass.  Make additional passes until
2493 	 * no more migrations targets are available.
2494 	 */
2495 	if (!nodes_empty(next_pass))
2496 		goto again;
2497 }
2498 
2499 /*
2500  * For callers that do not hold get_online_mems() already.
2501  */
2502 void set_migration_target_nodes(void)
2503 {
2504 	get_online_mems();
2505 	__set_migration_target_nodes();
2506 	put_online_mems();
2507 }
2508 
2509 /*
2510  * This leaves migrate-on-reclaim transiently disabled between
2511  * the MEM_GOING_OFFLINE and MEM_OFFLINE events.  This runs
2512  * whether reclaim-based migration is enabled or not, which
2513  * ensures that the user can turn reclaim-based migration at
2514  * any time without needing to recalculate migration targets.
2515  *
2516  * These callbacks already hold get_online_mems().  That is why
2517  * __set_migration_target_nodes() can be used as opposed to
2518  * set_migration_target_nodes().
2519  */
2520 #ifdef CONFIG_MEMORY_HOTPLUG
2521 static int __meminit migrate_on_reclaim_callback(struct notifier_block *self,
2522 						 unsigned long action, void *_arg)
2523 {
2524 	struct memory_notify *arg = _arg;
2525 
2526 	/*
2527 	 * Only update the node migration order when a node is
2528 	 * changing status, like online->offline.  This avoids
2529 	 * the overhead of synchronize_rcu() in most cases.
2530 	 */
2531 	if (arg->status_change_nid < 0)
2532 		return notifier_from_errno(0);
2533 
2534 	switch (action) {
2535 	case MEM_GOING_OFFLINE:
2536 		/*
2537 		 * Make sure there are not transient states where
2538 		 * an offline node is a migration target.  This
2539 		 * will leave migration disabled until the offline
2540 		 * completes and the MEM_OFFLINE case below runs.
2541 		 */
2542 		disable_all_migrate_targets();
2543 		break;
2544 	case MEM_OFFLINE:
2545 	case MEM_ONLINE:
2546 		/*
2547 		 * Recalculate the target nodes once the node
2548 		 * reaches its final state (online or offline).
2549 		 */
2550 		__set_migration_target_nodes();
2551 		break;
2552 	case MEM_CANCEL_OFFLINE:
2553 		/*
2554 		 * MEM_GOING_OFFLINE disabled all the migration
2555 		 * targets.  Reenable them.
2556 		 */
2557 		__set_migration_target_nodes();
2558 		break;
2559 	case MEM_GOING_ONLINE:
2560 	case MEM_CANCEL_ONLINE:
2561 		break;
2562 	}
2563 
2564 	return notifier_from_errno(0);
2565 }
2566 #endif
2567 
2568 void __init migrate_on_reclaim_init(void)
2569 {
2570 	node_demotion = kcalloc(nr_node_ids,
2571 				sizeof(struct demotion_nodes),
2572 				GFP_KERNEL);
2573 	WARN_ON(!node_demotion);
2574 #ifdef CONFIG_MEMORY_HOTPLUG
2575 	hotplug_memory_notifier(migrate_on_reclaim_callback, 100);
2576 #endif
2577 	/*
2578 	 * At this point, all numa nodes with memory/CPus have their state
2579 	 * properly set, so we can build the demotion order now.
2580 	 * Let us hold the cpu_hotplug lock just, as we could possibily have
2581 	 * CPU hotplug events during boot.
2582 	 */
2583 	cpus_read_lock();
2584 	set_migration_target_nodes();
2585 	cpus_read_unlock();
2586 }
2587 
2588 bool numa_demotion_enabled = false;
2589 
2590 #ifdef CONFIG_SYSFS
2591 static ssize_t numa_demotion_enabled_show(struct kobject *kobj,
2592 					  struct kobj_attribute *attr, char *buf)
2593 {
2594 	return sysfs_emit(buf, "%s\n",
2595 			  numa_demotion_enabled ? "true" : "false");
2596 }
2597 
2598 static ssize_t numa_demotion_enabled_store(struct kobject *kobj,
2599 					   struct kobj_attribute *attr,
2600 					   const char *buf, size_t count)
2601 {
2602 	ssize_t ret;
2603 
2604 	ret = kstrtobool(buf, &numa_demotion_enabled);
2605 	if (ret)
2606 		return ret;
2607 
2608 	return count;
2609 }
2610 
2611 static struct kobj_attribute numa_demotion_enabled_attr =
2612 	__ATTR(demotion_enabled, 0644, numa_demotion_enabled_show,
2613 	       numa_demotion_enabled_store);
2614 
2615 static struct attribute *numa_attrs[] = {
2616 	&numa_demotion_enabled_attr.attr,
2617 	NULL,
2618 };
2619 
2620 static const struct attribute_group numa_attr_group = {
2621 	.attrs = numa_attrs,
2622 };
2623 
2624 static int __init numa_init_sysfs(void)
2625 {
2626 	int err;
2627 	struct kobject *numa_kobj;
2628 
2629 	numa_kobj = kobject_create_and_add("numa", mm_kobj);
2630 	if (!numa_kobj) {
2631 		pr_err("failed to create numa kobject\n");
2632 		return -ENOMEM;
2633 	}
2634 	err = sysfs_create_group(numa_kobj, &numa_attr_group);
2635 	if (err) {
2636 		pr_err("failed to register numa group\n");
2637 		goto delete_obj;
2638 	}
2639 	return 0;
2640 
2641 delete_obj:
2642 	kobject_put(numa_kobj);
2643 	return err;
2644 }
2645 subsys_initcall(numa_init_sysfs);
2646 #endif /* CONFIG_SYSFS */
2647 #endif /* CONFIG_NUMA */
2648