- Update to 2.6.37-rc1.
[linux-flexiantxendom0-3.2.10.git] / mm / migrate.c
1 /*
2  * Memory Migration functionality - linux/mm/migration.c
3  *
4  * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
5  *
6  * Page migration was first developed in the context of the memory hotplug
7  * project. The main authors of the migration code are:
8  *
9  * IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
10  * Hirokazu Takahashi <taka@valinux.co.jp>
11  * Dave Hansen <haveblue@us.ibm.com>
12  * Christoph Lameter
13  */
14
15 #include <linux/migrate.h>
16 #include <linux/module.h>
17 #include <linux/swap.h>
18 #include <linux/swapops.h>
19 #include <linux/pagemap.h>
20 #include <linux/buffer_head.h>
21 #include <linux/mm_inline.h>
22 #include <linux/nsproxy.h>
23 #include <linux/pagevec.h>
24 #include <linux/ksm.h>
25 #include <linux/rmap.h>
26 #include <linux/topology.h>
27 #include <linux/cpu.h>
28 #include <linux/cpuset.h>
29 #include <linux/writeback.h>
30 #include <linux/mempolicy.h>
31 #include <linux/vmalloc.h>
32 #include <linux/security.h>
33 #include <linux/memcontrol.h>
34 #include <linux/syscalls.h>
35 #include <linux/hugetlb.h>
36 #include <linux/gfp.h>
37
38 #include "internal.h"
39
40 #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
41
42 /*
43  * migrate_prep() needs to be called before we start compiling a list of pages
44  * to be migrated using isolate_lru_page(). If scheduling work on other CPUs is
45  * undesirable, use migrate_prep_local()
46  */
47 int migrate_prep(void)
48 {
49         /*
50          * Clear the LRU lists so pages can be isolated.
51          * Note that pages may be moved off the LRU after we have
52          * drained them. Those pages will fail to migrate like other
53          * pages that may be busy.
54          */
55         lru_add_drain_all();
56
57         return 0;
58 }
59
60 /* Do the necessary work of migrate_prep but not if it involves other CPUs */
61 int migrate_prep_local(void)
62 {
63         lru_add_drain();
64
65         return 0;
66 }
67 EXPORT_SYMBOL(migrate_prep);
68
69 /*
70  * Add isolated pages on the list back to the LRU under page lock
71  * to avoid leaking evictable pages back onto unevictable list.
72  */
73 void putback_lru_pages(struct list_head *l)
74 {
75         struct page *page;
76         struct page *page2;
77
78         list_for_each_entry_safe(page, page2, l, lru) {
79                 list_del(&page->lru);
80                 dec_zone_page_state(page, NR_ISOLATED_ANON +
81                                 page_is_file_cache(page));
82                 putback_lru_page(page);
83         }
84 }
85 EXPORT_SYMBOL(putback_lru_pages);
86
87 /*
88  * Restore a potential migration pte to a working pte entry
89  */
90 static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
91                                  unsigned long addr, void *old)
92 {
93         struct mm_struct *mm = vma->vm_mm;
94         swp_entry_t entry;
95         pgd_t *pgd;
96         pud_t *pud;
97         pmd_t *pmd;
98         pte_t *ptep, pte;
99         spinlock_t *ptl;
100
101         if (unlikely(PageHuge(new))) {
102                 ptep = huge_pte_offset(mm, addr);
103                 if (!ptep)
104                         goto out;
105                 ptl = &mm->page_table_lock;
106         } else {
107                 pgd = pgd_offset(mm, addr);
108                 if (!pgd_present(*pgd))
109                         goto out;
110
111                 pud = pud_offset(pgd, addr);
112                 if (!pud_present(*pud))
113                         goto out;
114
115                 pmd = pmd_offset(pud, addr);
116                 if (!pmd_present(*pmd))
117                         goto out;
118
119                 ptep = pte_offset_map(pmd, addr);
120
121                 if (!is_swap_pte(*ptep)) {
122                         pte_unmap(ptep);
123                         goto out;
124                 }
125
126                 ptl = pte_lockptr(mm, pmd);
127         }
128
129         spin_lock(ptl);
130         pte = *ptep;
131         if (!is_swap_pte(pte))
132                 goto unlock;
133
134         entry = pte_to_swp_entry(pte);
135
136         if (!is_migration_entry(entry) ||
137             migration_entry_to_page(entry) != old)
138                 goto unlock;
139
140         get_page(new);
141         pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
142         if (is_write_migration_entry(entry))
143                 pte = pte_mkwrite(pte);
144 #ifdef CONFIG_HUGETLB_PAGE
145         if (PageHuge(new))
146                 pte = pte_mkhuge(pte);
147 #endif
148         flush_cache_page(vma, addr, pte_pfn(pte));
149         set_pte_at(mm, addr, ptep, pte);
150
151         if (PageHuge(new)) {
152                 if (PageAnon(new))
153                         hugepage_add_anon_rmap(new, vma, addr);
154                 else
155                         page_dup_rmap(new);
156         } else if (PageAnon(new))
157                 page_add_anon_rmap(new, vma, addr);
158         else
159                 page_add_file_rmap(new);
160
161         /* No need to invalidate - it was non-present before */
162         update_mmu_cache(vma, addr, ptep);
163 unlock:
164         pte_unmap_unlock(ptep, ptl);
165 out:
166         return SWAP_AGAIN;
167 }
168
169 /*
170  * Get rid of all migration entries and replace them by
171  * references to the indicated page.
172  */
173 static void remove_migration_ptes(struct page *old, struct page *new)
174 {
175         rmap_walk(new, remove_migration_pte, old);
176 }
177
178 /*
179  * Something used the pte of a page under migration. We need to
180  * get to the page and wait until migration is finished.
181  * When we return from this function the fault will be retried.
182  *
183  * This function is called from do_swap_page().
184  */
185 void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
186                                 unsigned long address)
187 {
188         pte_t *ptep, pte;
189         spinlock_t *ptl;
190         swp_entry_t entry;
191         struct page *page;
192
193         ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
194         pte = *ptep;
195         if (!is_swap_pte(pte))
196                 goto out;
197
198         entry = pte_to_swp_entry(pte);
199         if (!is_migration_entry(entry))
200                 goto out;
201
202         page = migration_entry_to_page(entry);
203
204         /*
205          * Once radix-tree replacement of page migration started, page_count
206          * *must* be zero. And, we don't want to call wait_on_page_locked()
207          * against a page without get_page().
208          * So, we use get_page_unless_zero(), here. Even failed, page fault
209          * will occur again.
210          */
211         if (!get_page_unless_zero(page))
212                 goto out;
213         pte_unmap_unlock(ptep, ptl);
214         wait_on_page_locked(page);
215         put_page(page);
216         return;
217 out:
218         pte_unmap_unlock(ptep, ptl);
219 }
220
221 /*
222  * Replace the page in the mapping.
223  *
224  * The number of remaining references must be:
225  * 1 for anonymous pages without a mapping
226  * 2 for pages with a mapping
227  * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
228  */
229 static int migrate_page_move_mapping(struct address_space *mapping,
230                 struct page *newpage, struct page *page)
231 {
232         int expected_count;
233         void **pslot;
234
235         if (!mapping) {
236                 /* Anonymous page without mapping */
237                 if (page_count(page) != 1)
238                         return -EAGAIN;
239                 return 0;
240         }
241
242         spin_lock_irq(&mapping->tree_lock);
243
244         pslot = radix_tree_lookup_slot(&mapping->page_tree,
245                                         page_index(page));
246
247         expected_count = 2 + page_has_private(page);
248         if (page_count(page) != expected_count ||
249                         (struct page *)radix_tree_deref_slot(pslot) != page) {
250                 spin_unlock_irq(&mapping->tree_lock);
251                 return -EAGAIN;
252         }
253
254         if (!page_freeze_refs(page, expected_count)) {
255                 spin_unlock_irq(&mapping->tree_lock);
256                 return -EAGAIN;
257         }
258
259         /*
260          * Now we know that no one else is looking at the page.
261          */
262         get_page(newpage);      /* add cache reference */
263         if (PageSwapCache(page)) {
264                 SetPageSwapCache(newpage);
265                 set_page_private(newpage, page_private(page));
266         }
267
268         radix_tree_replace_slot(pslot, newpage);
269
270         page_unfreeze_refs(page, expected_count);
271         /*
272          * Drop cache reference from old page.
273          * We know this isn't the last reference.
274          */
275         __put_page(page);
276
277         /*
278          * If moved to a different zone then also account
279          * the page for that zone. Other VM counters will be
280          * taken care of when we establish references to the
281          * new page and drop references to the old page.
282          *
283          * Note that anonymous pages are accounted for
284          * via NR_FILE_PAGES and NR_ANON_PAGES if they
285          * are mapped to swap space.
286          */
287         __dec_zone_page_state(page, NR_FILE_PAGES);
288         __inc_zone_page_state(newpage, NR_FILE_PAGES);
289         if (PageSwapBacked(page)) {
290                 __dec_zone_page_state(page, NR_SHMEM);
291                 __inc_zone_page_state(newpage, NR_SHMEM);
292         }
293         spin_unlock_irq(&mapping->tree_lock);
294
295         return 0;
296 }
297
298 /*
299  * The expected number of remaining references is the same as that
300  * of migrate_page_move_mapping().
301  */
302 int migrate_huge_page_move_mapping(struct address_space *mapping,
303                                    struct page *newpage, struct page *page)
304 {
305         int expected_count;
306         void **pslot;
307
308         if (!mapping) {
309                 if (page_count(page) != 1)
310                         return -EAGAIN;
311                 return 0;
312         }
313
314         spin_lock_irq(&mapping->tree_lock);
315
316         pslot = radix_tree_lookup_slot(&mapping->page_tree,
317                                         page_index(page));
318
319         expected_count = 2 + page_has_private(page);
320         if (page_count(page) != expected_count ||
321             (struct page *)radix_tree_deref_slot(pslot) != page) {
322                 spin_unlock_irq(&mapping->tree_lock);
323                 return -EAGAIN;
324         }
325
326         if (!page_freeze_refs(page, expected_count)) {
327                 spin_unlock_irq(&mapping->tree_lock);
328                 return -EAGAIN;
329         }
330
331         get_page(newpage);
332
333         radix_tree_replace_slot(pslot, newpage);
334
335         page_unfreeze_refs(page, expected_count);
336
337         __put_page(page);
338
339         spin_unlock_irq(&mapping->tree_lock);
340         return 0;
341 }
342
343 /*
344  * Copy the page to its new location
345  */
346 void migrate_page_copy(struct page *newpage, struct page *page)
347 {
348         if (PageHuge(page))
349                 copy_huge_page(newpage, page);
350         else
351                 copy_highpage(newpage, page);
352
353         if (PageError(page))
354                 SetPageError(newpage);
355         if (PageReferenced(page))
356                 SetPageReferenced(newpage);
357         if (PageUptodate(page))
358                 SetPageUptodate(newpage);
359         if (TestClearPageActive(page)) {
360                 VM_BUG_ON(PageUnevictable(page));
361                 SetPageActive(newpage);
362         } else if (TestClearPageUnevictable(page))
363                 SetPageUnevictable(newpage);
364         if (PageChecked(page))
365                 SetPageChecked(newpage);
366         if (PageMappedToDisk(page))
367                 SetPageMappedToDisk(newpage);
368
369         if (PageDirty(page)) {
370                 clear_page_dirty_for_io(page);
371                 /*
372                  * Want to mark the page and the radix tree as dirty, and
373                  * redo the accounting that clear_page_dirty_for_io undid,
374                  * but we can't use set_page_dirty because that function
375                  * is actually a signal that all of the page has become dirty.
376                  * Wheras only part of our page may be dirty.
377                  */
378                 __set_page_dirty_nobuffers(newpage);
379         }
380
381         mlock_migrate_page(newpage, page);
382         ksm_migrate_page(newpage, page);
383
384         ClearPageSwapCache(page);
385         ClearPagePrivate(page);
386         set_page_private(page, 0);
387         page->mapping = NULL;
388
389         /*
390          * If any waiters have accumulated on the new page then
391          * wake them up.
392          */
393         if (PageWriteback(newpage))
394                 end_page_writeback(newpage);
395 }
396
397 /************************************************************
398  *                    Migration functions
399  ***********************************************************/
400
401 /* Always fail migration. Used for mappings that are not movable */
402 int fail_migrate_page(struct address_space *mapping,
403                         struct page *newpage, struct page *page)
404 {
405         return -EIO;
406 }
407 EXPORT_SYMBOL(fail_migrate_page);
408
409 /*
410  * Common logic to directly migrate a single page suitable for
411  * pages that do not use PagePrivate/PagePrivate2.
412  *
413  * Pages are locked upon entry and exit.
414  */
415 int migrate_page(struct address_space *mapping,
416                 struct page *newpage, struct page *page)
417 {
418         int rc;
419
420         BUG_ON(PageWriteback(page));    /* Writeback must be complete */
421
422         rc = migrate_page_move_mapping(mapping, newpage, page);
423
424         if (rc)
425                 return rc;
426
427         migrate_page_copy(newpage, page);
428         return 0;
429 }
430 EXPORT_SYMBOL(migrate_page);
431
432 #ifdef CONFIG_BLOCK
433 /*
434  * Migration function for pages with buffers. This function can only be used
435  * if the underlying filesystem guarantees that no other references to "page"
436  * exist.
437  */
438 int buffer_migrate_page(struct address_space *mapping,
439                 struct page *newpage, struct page *page)
440 {
441         struct buffer_head *bh, *head;
442         int rc;
443
444         if (!page_has_buffers(page))
445                 return migrate_page(mapping, newpage, page);
446
447         head = page_buffers(page);
448
449         rc = migrate_page_move_mapping(mapping, newpage, page);
450
451         if (rc)
452                 return rc;
453
454         bh = head;
455         do {
456                 get_bh(bh);
457                 lock_buffer(bh);
458                 bh = bh->b_this_page;
459
460         } while (bh != head);
461
462         ClearPagePrivate(page);
463         set_page_private(newpage, page_private(page));
464         set_page_private(page, 0);
465         put_page(page);
466         get_page(newpage);
467
468         bh = head;
469         do {
470                 set_bh_page(bh, newpage, bh_offset(bh));
471                 bh = bh->b_this_page;
472
473         } while (bh != head);
474
475         SetPagePrivate(newpage);
476
477         migrate_page_copy(newpage, page);
478
479         bh = head;
480         do {
481                 unlock_buffer(bh);
482                 put_bh(bh);
483                 bh = bh->b_this_page;
484
485         } while (bh != head);
486
487         return 0;
488 }
489 EXPORT_SYMBOL(buffer_migrate_page);
490 #endif
491
492 /*
493  * Writeback a page to clean the dirty state
494  */
495 static int writeout(struct address_space *mapping, struct page *page)
496 {
497         struct writeback_control wbc = {
498                 .sync_mode = WB_SYNC_NONE,
499                 .nr_to_write = 1,
500                 .range_start = 0,
501                 .range_end = LLONG_MAX,
502                 .for_reclaim = 1
503         };
504         int rc;
505
506         if (!mapping->a_ops->writepage)
507                 /* No write method for the address space */
508                 return -EINVAL;
509
510         if (!clear_page_dirty_for_io(page))
511                 /* Someone else already triggered a write */
512                 return -EAGAIN;
513
514         /*
515          * A dirty page may imply that the underlying filesystem has
516          * the page on some queue. So the page must be clean for
517          * migration. Writeout may mean we loose the lock and the
518          * page state is no longer what we checked for earlier.
519          * At this point we know that the migration attempt cannot
520          * be successful.
521          */
522         remove_migration_ptes(page, page);
523
524         rc = mapping->a_ops->writepage(page, &wbc);
525
526         if (rc != AOP_WRITEPAGE_ACTIVATE)
527                 /* unlocked. Relock */
528                 lock_page(page);
529
530         return (rc < 0) ? -EIO : -EAGAIN;
531 }
532
533 /*
534  * Default handling if a filesystem does not provide a migration function.
535  */
536 static int fallback_migrate_page(struct address_space *mapping,
537         struct page *newpage, struct page *page)
538 {
539         if (PageDirty(page))
540                 return writeout(mapping, page);
541
542         /*
543          * Buffers may be managed in a filesystem specific way.
544          * We must have no buffers or drop them.
545          */
546         if (page_has_private(page) &&
547             !try_to_release_page(page, GFP_KERNEL))
548                 return -EAGAIN;
549
550         return migrate_page(mapping, newpage, page);
551 }
552
553 /*
554  * Move a page to a newly allocated page
555  * The page is locked and all ptes have been successfully removed.
556  *
557  * The new page will have replaced the old page if this function
558  * is successful.
559  *
560  * Return value:
561  *   < 0 - error code
562  *  == 0 - success
563  */
564 static int move_to_new_page(struct page *newpage, struct page *page,
565                                                 int remap_swapcache)
566 {
567         struct address_space *mapping;
568         int rc;
569
570         /*
571          * Block others from accessing the page when we get around to
572          * establishing additional references. We are the only one
573          * holding a reference to the new page at this point.
574          */
575         if (!trylock_page(newpage))
576                 BUG();
577
578         /* Prepare mapping for the new page.*/
579         newpage->index = page->index;
580         newpage->mapping = page->mapping;
581         if (PageSwapBacked(page))
582                 SetPageSwapBacked(newpage);
583
584         mapping = page_mapping(page);
585         if (!mapping)
586                 rc = migrate_page(mapping, newpage, page);
587         else if (mapping->a_ops->migratepage)
588                 /*
589                  * Most pages have a mapping and most filesystems
590                  * should provide a migration function. Anonymous
591                  * pages are part of swap space which also has its
592                  * own migration function. This is the most common
593                  * path for page migration.
594                  */
595                 rc = mapping->a_ops->migratepage(mapping,
596                                                 newpage, page);
597         else
598                 rc = fallback_migrate_page(mapping, newpage, page);
599
600         if (rc) {
601                 newpage->mapping = NULL;
602         } else {
603                 if (remap_swapcache)
604                         remove_migration_ptes(page, newpage);
605         }
606
607         unlock_page(newpage);
608
609         return rc;
610 }
611
612 /*
613  * Obtain the lock on page, remove all ptes and migrate the page
614  * to the newly allocated page in newpage.
615  */
616 static int unmap_and_move(new_page_t get_new_page, unsigned long private,
617                         struct page *page, int force, int offlining)
618 {
619         int rc = 0;
620         int *result = NULL;
621         struct page *newpage = get_new_page(page, private, &result);
622         int remap_swapcache = 1;
623         int rcu_locked = 0;
624         int charge = 0;
625         struct mem_cgroup *mem = NULL;
626         struct anon_vma *anon_vma = NULL;
627
628         if (!newpage)
629                 return -ENOMEM;
630
631         if (page_count(page) == 1) {
632                 /* page was freed from under us. So we are done. */
633                 goto move_newpage;
634         }
635
636         /* prepare cgroup just returns 0 or -ENOMEM */
637         rc = -EAGAIN;
638
639         if (!trylock_page(page)) {
640                 if (!force)
641                         goto move_newpage;
642                 lock_page(page);
643         }
644
645         /*
646          * Only memory hotplug's offline_pages() caller has locked out KSM,
647          * and can safely migrate a KSM page.  The other cases have skipped
648          * PageKsm along with PageReserved - but it is only now when we have
649          * the page lock that we can be certain it will not go KSM beneath us
650          * (KSM will not upgrade a page from PageAnon to PageKsm when it sees
651          * its pagecount raised, but only here do we take the page lock which
652          * serializes that).
653          */
654         if (PageKsm(page) && !offlining) {
655                 rc = -EBUSY;
656                 goto unlock;
657         }
658
659         /* charge against new page */
660         charge = mem_cgroup_prepare_migration(page, newpage, &mem);
661         if (charge == -ENOMEM) {
662                 rc = -ENOMEM;
663                 goto unlock;
664         }
665         BUG_ON(charge);
666
667         if (PageWriteback(page)) {
668                 if (!force)
669                         goto uncharge;
670                 wait_on_page_writeback(page);
671         }
672         /*
673          * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
674          * we cannot notice that anon_vma is freed while we migrates a page.
675          * This rcu_read_lock() delays freeing anon_vma pointer until the end
676          * of migration. File cache pages are no problem because of page_lock()
677          * File Caches may use write_page() or lock_page() in migration, then,
678          * just care Anon page here.
679          */
680         if (PageAnon(page)) {
681                 rcu_read_lock();
682                 rcu_locked = 1;
683
684                 /* Determine how to safely use anon_vma */
685                 if (!page_mapped(page)) {
686                         if (!PageSwapCache(page))
687                                 goto rcu_unlock;
688
689                         /*
690                          * We cannot be sure that the anon_vma of an unmapped
691                          * swapcache page is safe to use because we don't
692                          * know in advance if the VMA that this page belonged
693                          * to still exists. If the VMA and others sharing the
694                          * data have been freed, then the anon_vma could
695                          * already be invalid.
696                          *
697                          * To avoid this possibility, swapcache pages get
698                          * migrated but are not remapped when migration
699                          * completes
700                          */
701                         remap_swapcache = 0;
702                 } else {
703                         /*
704                          * Take a reference count on the anon_vma if the
705                          * page is mapped so that it is guaranteed to
706                          * exist when the page is remapped later
707                          */
708                         anon_vma = page_anon_vma(page);
709                         get_anon_vma(anon_vma);
710                 }
711         }
712
713         /*
714          * Corner case handling:
715          * 1. When a new swap-cache page is read into, it is added to the LRU
716          * and treated as swapcache but it has no rmap yet.
717          * Calling try_to_unmap() against a page->mapping==NULL page will
718          * trigger a BUG.  So handle it here.
719          * 2. An orphaned page (see truncate_complete_page) might have
720          * fs-private metadata. The page can be picked up due to memory
721          * offlining.  Everywhere else except page reclaim, the page is
722          * invisible to the vm, so the page can not be migrated.  So try to
723          * free the metadata, so the page can be freed.
724          */
725         if (!page->mapping) {
726                 if (!PageAnon(page) && page_has_private(page)) {
727                         /*
728                          * Go direct to try_to_free_buffers() here because
729                          * a) that's what try_to_release_page() would do anyway
730                          * b) we may be under rcu_read_lock() here, so we can't
731                          *    use GFP_KERNEL which is what try_to_release_page()
732                          *    needs to be effective.
733                          */
734                         try_to_free_buffers(page);
735                         goto rcu_unlock;
736                 }
737                 goto skip_unmap;
738         }
739
740         /* Establish migration ptes or remove ptes */
741         try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
742
743 skip_unmap:
744         if (!page_mapped(page))
745                 rc = move_to_new_page(newpage, page, remap_swapcache);
746
747         if (rc && remap_swapcache)
748                 remove_migration_ptes(page, page);
749 rcu_unlock:
750
751         /* Drop an anon_vma reference if we took one */
752         if (anon_vma)
753                 drop_anon_vma(anon_vma);
754
755         if (rcu_locked)
756                 rcu_read_unlock();
757 uncharge:
758         if (!charge)
759                 mem_cgroup_end_migration(mem, page, newpage);
760 unlock:
761         unlock_page(page);
762
763         if (rc != -EAGAIN) {
764                 /*
765                  * A page that has been migrated has all references
766                  * removed and will be freed. A page that has not been
767                  * migrated will have kepts its references and be
768                  * restored.
769                  */
770                 list_del(&page->lru);
771                 if (PageMemError(page)) {
772                         if (rc == 0)
773                                 /*
774                                  * A page with a memory error that has
775                                  * been migrated will not be moved to
776                                  * the LRU.
777                                  */
778                                 goto move_newpage;
779                         else
780                                 /*
781                                  * The page failed to migrate and will not
782                                  * be added to the bad page list.  Clearing
783                                  * the error bit will allow another attempt
784                                  * to migrate if it gets another correctable
785                                  * error.
786                                  */
787                                 ClearPageMemError(page);
788                 }
789
790                 dec_zone_page_state(page, NR_ISOLATED_ANON +
791                                 page_is_file_cache(page));
792                 putback_lru_page(page);
793         }
794
795 move_newpage:
796
797         /*
798          * Move the new page to the LRU. If migration was not successful
799          * then this will free the page.
800          */
801         putback_lru_page(newpage);
802
803         if (result) {
804                 if (rc)
805                         *result = rc;
806                 else
807                         *result = page_to_nid(newpage);
808         }
809         return rc;
810 }
811
812 /*
813  * Counterpart of unmap_and_move_page() for hugepage migration.
814  *
815  * This function doesn't wait the completion of hugepage I/O
816  * because there is no race between I/O and migration for hugepage.
817  * Note that currently hugepage I/O occurs only in direct I/O
818  * where no lock is held and PG_writeback is irrelevant,
819  * and writeback status of all subpages are counted in the reference
820  * count of the head page (i.e. if all subpages of a 2MB hugepage are
821  * under direct I/O, the reference of the head page is 512 and a bit more.)
822  * This means that when we try to migrate hugepage whose subpages are
823  * doing direct I/O, some references remain after try_to_unmap() and
824  * hugepage migration fails without data corruption.
825  *
826  * There is also no race when direct I/O is issued on the page under migration,
827  * because then pte is replaced with migration swap entry and direct I/O code
828  * will wait in the page fault for migration to complete.
829  */
830 static int unmap_and_move_huge_page(new_page_t get_new_page,
831                                 unsigned long private, struct page *hpage,
832                                 int force, int offlining)
833 {
834         int rc = 0;
835         int *result = NULL;
836         struct page *new_hpage = get_new_page(hpage, private, &result);
837         int rcu_locked = 0;
838         struct anon_vma *anon_vma = NULL;
839
840         if (!new_hpage)
841                 return -ENOMEM;
842
843         rc = -EAGAIN;
844
845         if (!trylock_page(hpage)) {
846                 if (!force)
847                         goto out;
848                 lock_page(hpage);
849         }
850
851         if (PageAnon(hpage)) {
852                 rcu_read_lock();
853                 rcu_locked = 1;
854
855                 if (page_mapped(hpage)) {
856                         anon_vma = page_anon_vma(hpage);
857                         atomic_inc(&anon_vma->external_refcount);
858                 }
859         }
860
861         try_to_unmap(hpage, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
862
863         if (!page_mapped(hpage))
864                 rc = move_to_new_page(new_hpage, hpage, 1);
865
866         if (rc)
867                 remove_migration_ptes(hpage, hpage);
868
869         if (anon_vma && atomic_dec_and_lock(&anon_vma->external_refcount,
870                                             &anon_vma->lock)) {
871                 int empty = list_empty(&anon_vma->head);
872                 spin_unlock(&anon_vma->lock);
873                 if (empty)
874                         anon_vma_free(anon_vma);
875         }
876
877         if (rcu_locked)
878                 rcu_read_unlock();
879 out:
880         unlock_page(hpage);
881
882         if (rc != -EAGAIN) {
883                 list_del(&hpage->lru);
884                 put_page(hpage);
885         }
886
887         put_page(new_hpage);
888
889         if (result) {
890                 if (rc)
891                         *result = rc;
892                 else
893                         *result = page_to_nid(new_hpage);
894         }
895         return rc;
896 }
897
898 /*
899  * migrate_pages
900  *
901  * The function takes one list of pages to migrate and a function
902  * that determines from the page to be migrated and the private data
903  * the target of the move and allocates the page.
904  *
905  * The function returns after 10 attempts or if no pages
906  * are movable anymore because to has become empty
907  * or no retryable pages exist anymore.
908  * Caller should call putback_lru_pages to return pages to the LRU
909  * or free list.
910  *
911  * Return: Number of pages not migrated or error code.
912  */
913 int migrate_pages(struct list_head *from,
914                 new_page_t get_new_page, unsigned long private, int offlining)
915 {
916         int retry = 1;
917         int nr_failed = 0;
918         int pass = 0;
919         struct page *page;
920         struct page *page2;
921         int swapwrite = current->flags & PF_SWAPWRITE;
922         int rc;
923
924         if (!swapwrite)
925                 current->flags |= PF_SWAPWRITE;
926
927         for(pass = 0; pass < 10 && retry; pass++) {
928                 retry = 0;
929
930                 list_for_each_entry_safe(page, page2, from, lru) {
931                         cond_resched();
932
933                         rc = unmap_and_move(get_new_page, private,
934                                                 page, pass > 2, offlining);
935
936                         switch(rc) {
937                         case -ENOMEM:
938                                 goto out;
939                         case -EAGAIN:
940                                 retry++;
941                                 break;
942                         case 0:
943                                 break;
944                         default:
945                                 /* Permanent failure */
946                                 nr_failed++;
947                                 break;
948                         }
949                 }
950         }
951
952         if (rc != 0)
953                 list_for_each_entry_safe(page, page2, from, lru)
954                         if (PageMemError(page))
955                                 /*
956                                  * The page failed to migrate.  Clearing
957                                  * the error bit will allow another attempt
958                                  * to migrate if it gets another correctable
959                                  * error.
960                                  */
961                                 ClearPageMemError(page);
962         rc = 0;
963 out:
964         if (!swapwrite)
965                 current->flags &= ~PF_SWAPWRITE;
966
967         if (rc)
968                 return rc;
969
970         return nr_failed + retry;
971 }
972
973 int migrate_huge_pages(struct list_head *from,
974                 new_page_t get_new_page, unsigned long private, int offlining)
975 {
976         int retry = 1;
977         int nr_failed = 0;
978         int pass = 0;
979         struct page *page;
980         struct page *page2;
981         int rc;
982
983         for (pass = 0; pass < 10 && retry; pass++) {
984                 retry = 0;
985
986                 list_for_each_entry_safe(page, page2, from, lru) {
987                         cond_resched();
988
989                         rc = unmap_and_move_huge_page(get_new_page,
990                                         private, page, pass > 2, offlining);
991
992                         switch(rc) {
993                         case -ENOMEM:
994                                 goto out;
995                         case -EAGAIN:
996                                 retry++;
997                                 break;
998                         case 0:
999                                 break;
1000                         default:
1001                                 /* Permanent failure */
1002                                 nr_failed++;
1003                                 break;
1004                         }
1005                 }
1006         }
1007         rc = 0;
1008 out:
1009
1010         list_for_each_entry_safe(page, page2, from, lru)
1011                 put_page(page);
1012
1013         if (rc)
1014                 return rc;
1015
1016         return nr_failed + retry;
1017 }
1018 EXPORT_SYMBOL(migrate_pages);
1019
1020 #ifdef CONFIG_NUMA
1021 /*
1022  * Move a list of individual pages
1023  */
1024 struct page_to_node {
1025         unsigned long addr;
1026         struct page *page;
1027         int node;
1028         int status;
1029 };
1030
1031 static struct page *new_page_node(struct page *p, unsigned long private,
1032                 int **result)
1033 {
1034         struct page_to_node *pm = (struct page_to_node *)private;
1035
1036         while (pm->node != MAX_NUMNODES && pm->page != p)
1037                 pm++;
1038
1039         if (pm->node == MAX_NUMNODES)
1040                 return NULL;
1041
1042         *result = &pm->status;
1043
1044         return alloc_pages_exact_node(pm->node,
1045                                 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
1046 }
1047
1048 /*
1049  * Move a set of pages as indicated in the pm array. The addr
1050  * field must be set to the virtual address of the page to be moved
1051  * and the node number must contain a valid target node.
1052  * The pm array ends with node = MAX_NUMNODES.
1053  */
1054 static int do_move_page_to_node_array(struct mm_struct *mm,
1055                                       struct page_to_node *pm,
1056                                       int migrate_all)
1057 {
1058         int err;
1059         struct page_to_node *pp;
1060         LIST_HEAD(pagelist);
1061
1062         down_read(&mm->mmap_sem);
1063
1064         /*
1065          * Build a list of pages to migrate
1066          */
1067         for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1068                 struct vm_area_struct *vma;
1069                 struct page *page;
1070
1071                 err = -EFAULT;
1072                 vma = find_vma(mm, pp->addr);
1073                 if (!vma || pp->addr < vma->vm_start || !vma_migratable(vma))
1074                         goto set_status;
1075
1076                 page = follow_page(vma, pp->addr, FOLL_GET);
1077
1078                 err = PTR_ERR(page);
1079                 if (IS_ERR(page))
1080                         goto set_status;
1081
1082                 err = -ENOENT;
1083                 if (!page)
1084                         goto set_status;
1085
1086                 /* Use PageReserved to check for zero page */
1087                 if (PageReserved(page) || PageKsm(page))
1088                         goto put_and_set;
1089
1090                 pp->page = page;
1091                 err = page_to_nid(page);
1092
1093                 if (err == pp->node)
1094                         /*
1095                          * Node already in the right place
1096                          */
1097                         goto put_and_set;
1098
1099                 err = -EACCES;
1100                 if (page_mapcount(page) > 1 &&
1101                                 !migrate_all)
1102                         goto put_and_set;
1103
1104                 err = isolate_lru_page(page);
1105                 if (!err) {
1106                         list_add_tail(&page->lru, &pagelist);
1107                         inc_zone_page_state(page, NR_ISOLATED_ANON +
1108                                             page_is_file_cache(page));
1109                 }
1110 put_and_set:
1111                 /*
1112                  * Either remove the duplicate refcount from
1113                  * isolate_lru_page() or drop the page ref if it was
1114                  * not isolated.
1115                  */
1116                 put_page(page);
1117 set_status:
1118                 pp->status = err;
1119         }
1120
1121         err = 0;
1122         if (!list_empty(&pagelist)) {
1123                 err = migrate_pages(&pagelist, new_page_node,
1124                                 (unsigned long)pm, 0);
1125                 if (err)
1126                         putback_lru_pages(&pagelist);
1127         }
1128
1129         up_read(&mm->mmap_sem);
1130         return err;
1131 }
1132
1133 /*
1134  * Migrate an array of page address onto an array of nodes and fill
1135  * the corresponding array of status.
1136  */
1137 static int do_pages_move(struct mm_struct *mm, struct task_struct *task,
1138                          unsigned long nr_pages,
1139                          const void __user * __user *pages,
1140                          const int __user *nodes,
1141                          int __user *status, int flags)
1142 {
1143         struct page_to_node *pm;
1144         nodemask_t task_nodes;
1145         unsigned long chunk_nr_pages;
1146         unsigned long chunk_start;
1147         int err;
1148
1149         task_nodes = cpuset_mems_allowed(task);
1150
1151         err = -ENOMEM;
1152         pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1153         if (!pm)
1154                 goto out;
1155
1156         migrate_prep();
1157
1158         /*
1159          * Store a chunk of page_to_node array in a page,
1160          * but keep the last one as a marker
1161          */
1162         chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
1163
1164         for (chunk_start = 0;
1165              chunk_start < nr_pages;
1166              chunk_start += chunk_nr_pages) {
1167                 int j;
1168
1169                 if (chunk_start + chunk_nr_pages > nr_pages)
1170                         chunk_nr_pages = nr_pages - chunk_start;
1171
1172                 /* fill the chunk pm with addrs and nodes from user-space */
1173                 for (j = 0; j < chunk_nr_pages; j++) {
1174                         const void __user *p;
1175                         int node;
1176
1177                         err = -EFAULT;
1178                         if (get_user(p, pages + j + chunk_start))
1179                                 goto out_pm;
1180                         pm[j].addr = (unsigned long) p;
1181
1182                         if (get_user(node, nodes + j + chunk_start))
1183                                 goto out_pm;
1184
1185                         err = -ENODEV;
1186                         if (node < 0 || node >= MAX_NUMNODES)
1187                                 goto out_pm;
1188
1189                         if (!node_state(node, N_HIGH_MEMORY))
1190                                 goto out_pm;
1191
1192                         err = -EACCES;
1193                         if (!node_isset(node, task_nodes))
1194                                 goto out_pm;
1195
1196                         pm[j].node = node;
1197                 }
1198
1199                 /* End marker for this chunk */
1200                 pm[chunk_nr_pages].node = MAX_NUMNODES;
1201
1202                 /* Migrate this chunk */
1203                 err = do_move_page_to_node_array(mm, pm,
1204                                                  flags & MPOL_MF_MOVE_ALL);
1205                 if (err < 0)
1206                         goto out_pm;
1207
1208                 /* Return status information */
1209                 for (j = 0; j < chunk_nr_pages; j++)
1210                         if (put_user(pm[j].status, status + j + chunk_start)) {
1211                                 err = -EFAULT;
1212                                 goto out_pm;
1213                         }
1214         }
1215         err = 0;
1216
1217 out_pm:
1218         free_page((unsigned long)pm);
1219 out:
1220         return err;
1221 }
1222
1223 /*
1224  * Determine the nodes of an array of pages and store it in an array of status.
1225  */
1226 static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1227                                 const void __user **pages, int *status)
1228 {
1229         unsigned long i;
1230
1231         down_read(&mm->mmap_sem);
1232
1233         for (i = 0; i < nr_pages; i++) {
1234                 unsigned long addr = (unsigned long)(*pages);
1235                 struct vm_area_struct *vma;
1236                 struct page *page;
1237                 int err = -EFAULT;
1238
1239                 vma = find_vma(mm, addr);
1240                 if (!vma || addr < vma->vm_start)
1241                         goto set_status;
1242
1243                 page = follow_page(vma, addr, 0);
1244
1245                 err = PTR_ERR(page);
1246                 if (IS_ERR(page))
1247                         goto set_status;
1248
1249                 err = -ENOENT;
1250                 /* Use PageReserved to check for zero page */
1251                 if (!page || PageReserved(page) || PageKsm(page))
1252                         goto set_status;
1253
1254                 err = page_to_nid(page);
1255 set_status:
1256                 *status = err;
1257
1258                 pages++;
1259                 status++;
1260         }
1261
1262         up_read(&mm->mmap_sem);
1263 }
1264
1265 /*
1266  * Determine the nodes of a user array of pages and store it in
1267  * a user array of status.
1268  */
1269 static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1270                          const void __user * __user *pages,
1271                          int __user *status)
1272 {
1273 #define DO_PAGES_STAT_CHUNK_NR 16
1274         const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1275         int chunk_status[DO_PAGES_STAT_CHUNK_NR];
1276
1277         while (nr_pages) {
1278                 unsigned long chunk_nr;
1279
1280                 chunk_nr = nr_pages;
1281                 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1282                         chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1283
1284                 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1285                         break;
1286
1287                 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1288
1289                 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1290                         break;
1291
1292                 pages += chunk_nr;
1293                 status += chunk_nr;
1294                 nr_pages -= chunk_nr;
1295         }
1296         return nr_pages ? -EFAULT : 0;
1297 }
1298
1299 /*
1300  * Move a list of pages in the address space of the currently executing
1301  * process.
1302  */
1303 SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1304                 const void __user * __user *, pages,
1305                 const int __user *, nodes,
1306                 int __user *, status, int, flags)
1307 {
1308         const struct cred *cred = current_cred(), *tcred;
1309         struct task_struct *task;
1310         struct mm_struct *mm;
1311         int err;
1312
1313         /* Check flags */
1314         if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1315                 return -EINVAL;
1316
1317         if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1318                 return -EPERM;
1319
1320         /* Find the mm_struct */
1321         read_lock(&tasklist_lock);
1322         task = pid ? find_task_by_vpid(pid) : current;
1323         if (!task) {
1324                 read_unlock(&tasklist_lock);
1325                 return -ESRCH;
1326         }
1327         mm = get_task_mm(task);
1328         read_unlock(&tasklist_lock);
1329
1330         if (!mm)
1331                 return -EINVAL;
1332
1333         /*
1334          * Check if this process has the right to modify the specified
1335          * process. The right exists if the process has administrative
1336          * capabilities, superuser privileges or the same
1337          * userid as the target process.
1338          */
1339         rcu_read_lock();
1340         tcred = __task_cred(task);
1341         if (cred->euid != tcred->suid && cred->euid != tcred->uid &&
1342             cred->uid  != tcred->suid && cred->uid  != tcred->uid &&
1343             !capable(CAP_SYS_NICE)) {
1344                 rcu_read_unlock();
1345                 err = -EPERM;
1346                 goto out;
1347         }
1348         rcu_read_unlock();
1349
1350         err = security_task_movememory(task);
1351         if (err)
1352                 goto out;
1353
1354         if (nodes) {
1355                 err = do_pages_move(mm, task, nr_pages, pages, nodes, status,
1356                                     flags);
1357         } else {
1358                 err = do_pages_stat(mm, nr_pages, pages, status);
1359         }
1360
1361 out:
1362         mmput(mm);
1363         return err;
1364 }
1365
1366 /*
1367  * Call migration functions in the vma_ops that may prepare
1368  * memory in a vm for migration. migration functions may perform
1369  * the migration for vmas that do not have an underlying page struct.
1370  */
1371 int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1372         const nodemask_t *from, unsigned long flags)
1373 {
1374         struct vm_area_struct *vma;
1375         int err = 0;
1376
1377         for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
1378                 if (vma->vm_ops && vma->vm_ops->migrate) {
1379                         err = vma->vm_ops->migrate(vma, to, from, flags);
1380                         if (err)
1381                                 break;
1382                 }
1383         }
1384         return err;
1385 }
1386 #endif