]> Git Repo - linux.git/blob - mm/ksm.c
mm/pagewalk: walk_pte_range() allow for pte_offset_map()
[linux.git] / mm / ksm.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Memory merging support.
4  *
5  * This code enables dynamic sharing of identical pages found in different
6  * memory areas, even if they are not shared by fork()
7  *
8  * Copyright (C) 2008-2009 Red Hat, Inc.
9  * Authors:
10  *      Izik Eidus
11  *      Andrea Arcangeli
12  *      Chris Wright
13  *      Hugh Dickins
14  */
15
16 #include <linux/errno.h>
17 #include <linux/mm.h>
18 #include <linux/mm_inline.h>
19 #include <linux/fs.h>
20 #include <linux/mman.h>
21 #include <linux/sched.h>
22 #include <linux/sched/mm.h>
23 #include <linux/sched/coredump.h>
24 #include <linux/rwsem.h>
25 #include <linux/pagemap.h>
26 #include <linux/rmap.h>
27 #include <linux/spinlock.h>
28 #include <linux/xxhash.h>
29 #include <linux/delay.h>
30 #include <linux/kthread.h>
31 #include <linux/wait.h>
32 #include <linux/slab.h>
33 #include <linux/rbtree.h>
34 #include <linux/memory.h>
35 #include <linux/mmu_notifier.h>
36 #include <linux/swap.h>
37 #include <linux/ksm.h>
38 #include <linux/hashtable.h>
39 #include <linux/freezer.h>
40 #include <linux/oom.h>
41 #include <linux/numa.h>
42 #include <linux/pagewalk.h>
43
44 #include <asm/tlbflush.h>
45 #include "internal.h"
46 #include "mm_slot.h"
47
48 #define CREATE_TRACE_POINTS
49 #include <trace/events/ksm.h>
50
51 #ifdef CONFIG_NUMA
52 #define NUMA(x)         (x)
53 #define DO_NUMA(x)      do { (x); } while (0)
54 #else
55 #define NUMA(x)         (0)
56 #define DO_NUMA(x)      do { } while (0)
57 #endif
58
59 /**
60  * DOC: Overview
61  *
62  * A few notes about the KSM scanning process,
63  * to make it easier to understand the data structures below:
64  *
65  * In order to reduce excessive scanning, KSM sorts the memory pages by their
66  * contents into a data structure that holds pointers to the pages' locations.
67  *
68  * Since the contents of the pages may change at any moment, KSM cannot just
69  * insert the pages into a normal sorted tree and expect it to find anything.
70  * Therefore KSM uses two data structures - the stable and the unstable tree.
71  *
72  * The stable tree holds pointers to all the merged pages (ksm pages), sorted
73  * by their contents.  Because each such page is write-protected, searching on
74  * this tree is fully assured to be working (except when pages are unmapped),
75  * and therefore this tree is called the stable tree.
76  *
77  * The stable tree node includes information required for reverse
78  * mapping from a KSM page to virtual addresses that map this page.
79  *
80  * In order to avoid large latencies of the rmap walks on KSM pages,
81  * KSM maintains two types of nodes in the stable tree:
82  *
83  * * the regular nodes that keep the reverse mapping structures in a
84  *   linked list
85  * * the "chains" that link nodes ("dups") that represent the same
86  *   write protected memory content, but each "dup" corresponds to a
87  *   different KSM page copy of that content
88  *
89  * Internally, the regular nodes, "dups" and "chains" are represented
90  * using the same struct ksm_stable_node structure.
91  *
92  * In addition to the stable tree, KSM uses a second data structure called the
93  * unstable tree: this tree holds pointers to pages which have been found to
94  * be "unchanged for a period of time".  The unstable tree sorts these pages
95  * by their contents, but since they are not write-protected, KSM cannot rely
96  * upon the unstable tree to work correctly - the unstable tree is liable to
97  * be corrupted as its contents are modified, and so it is called unstable.
98  *
99  * KSM solves this problem by several techniques:
100  *
101  * 1) The unstable tree is flushed every time KSM completes scanning all
102  *    memory areas, and then the tree is rebuilt again from the beginning.
103  * 2) KSM will only insert into the unstable tree, pages whose hash value
104  *    has not changed since the previous scan of all memory areas.
105  * 3) The unstable tree is a RedBlack Tree - so its balancing is based on the
106  *    colors of the nodes and not on their contents, assuring that even when
107  *    the tree gets "corrupted" it won't get out of balance, so scanning time
108  *    remains the same (also, searching and inserting nodes in an rbtree uses
109  *    the same algorithm, so we have no overhead when we flush and rebuild).
110  * 4) KSM never flushes the stable tree, which means that even if it were to
111  *    take 10 attempts to find a page in the unstable tree, once it is found,
112  *    it is secured in the stable tree.  (When we scan a new page, we first
113  *    compare it against the stable tree, and then against the unstable tree.)
114  *
115  * If the merge_across_nodes tunable is unset, then KSM maintains multiple
116  * stable trees and multiple unstable trees: one of each for each NUMA node.
117  */
118
119 /**
120  * struct ksm_mm_slot - ksm information per mm that is being scanned
121  * @slot: hash lookup from mm to mm_slot
122  * @rmap_list: head for this mm_slot's singly-linked list of rmap_items
123  */
124 struct ksm_mm_slot {
125         struct mm_slot slot;
126         struct ksm_rmap_item *rmap_list;
127 };
128
129 /**
130  * struct ksm_scan - cursor for scanning
131  * @mm_slot: the current mm_slot we are scanning
132  * @address: the next address inside that to be scanned
133  * @rmap_list: link to the next rmap to be scanned in the rmap_list
134  * @seqnr: count of completed full scans (needed when removing unstable node)
135  *
136  * There is only the one ksm_scan instance of this cursor structure.
137  */
138 struct ksm_scan {
139         struct ksm_mm_slot *mm_slot;
140         unsigned long address;
141         struct ksm_rmap_item **rmap_list;
142         unsigned long seqnr;
143 };
144
145 /**
146  * struct ksm_stable_node - node of the stable rbtree
147  * @node: rb node of this ksm page in the stable tree
148  * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list
149  * @hlist_dup: linked into the stable_node->hlist with a stable_node chain
150  * @list: linked into migrate_nodes, pending placement in the proper node tree
151  * @hlist: hlist head of rmap_items using this ksm page
152  * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid)
153  * @chain_prune_time: time of the last full garbage collection
154  * @rmap_hlist_len: number of rmap_item entries in hlist or STABLE_NODE_CHAIN
155  * @nid: NUMA node id of stable tree in which linked (may not match kpfn)
156  */
157 struct ksm_stable_node {
158         union {
159                 struct rb_node node;    /* when node of stable tree */
160                 struct {                /* when listed for migration */
161                         struct list_head *head;
162                         struct {
163                                 struct hlist_node hlist_dup;
164                                 struct list_head list;
165                         };
166                 };
167         };
168         struct hlist_head hlist;
169         union {
170                 unsigned long kpfn;
171                 unsigned long chain_prune_time;
172         };
173         /*
174          * STABLE_NODE_CHAIN can be any negative number in
175          * rmap_hlist_len negative range, but better not -1 to be able
176          * to reliably detect underflows.
177          */
178 #define STABLE_NODE_CHAIN -1024
179         int rmap_hlist_len;
180 #ifdef CONFIG_NUMA
181         int nid;
182 #endif
183 };
184
185 /**
186  * struct ksm_rmap_item - reverse mapping item for virtual addresses
187  * @rmap_list: next rmap_item in mm_slot's singly-linked rmap_list
188  * @anon_vma: pointer to anon_vma for this mm,address, when in stable tree
189  * @nid: NUMA node id of unstable tree in which linked (may not match page)
190  * @mm: the memory structure this rmap_item is pointing into
191  * @address: the virtual address this rmap_item tracks (+ flags in low bits)
192  * @oldchecksum: previous checksum of the page at that virtual address
193  * @node: rb node of this rmap_item in the unstable tree
194  * @head: pointer to stable_node heading this list in the stable tree
195  * @hlist: link into hlist of rmap_items hanging off that stable_node
196  */
197 struct ksm_rmap_item {
198         struct ksm_rmap_item *rmap_list;
199         union {
200                 struct anon_vma *anon_vma;      /* when stable */
201 #ifdef CONFIG_NUMA
202                 int nid;                /* when node of unstable tree */
203 #endif
204         };
205         struct mm_struct *mm;
206         unsigned long address;          /* + low bits used for flags below */
207         unsigned int oldchecksum;       /* when unstable */
208         union {
209                 struct rb_node node;    /* when node of unstable tree */
210                 struct {                /* when listed from stable tree */
211                         struct ksm_stable_node *head;
212                         struct hlist_node hlist;
213                 };
214         };
215 };
216
217 #define SEQNR_MASK      0x0ff   /* low bits of unstable tree seqnr */
218 #define UNSTABLE_FLAG   0x100   /* is a node of the unstable tree */
219 #define STABLE_FLAG     0x200   /* is listed from the stable tree */
220
221 /* The stable and unstable tree heads */
222 static struct rb_root one_stable_tree[1] = { RB_ROOT };
223 static struct rb_root one_unstable_tree[1] = { RB_ROOT };
224 static struct rb_root *root_stable_tree = one_stable_tree;
225 static struct rb_root *root_unstable_tree = one_unstable_tree;
226
227 /* Recently migrated nodes of stable tree, pending proper placement */
228 static LIST_HEAD(migrate_nodes);
229 #define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev)
230
231 #define MM_SLOTS_HASH_BITS 10
232 static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
233
234 static struct ksm_mm_slot ksm_mm_head = {
235         .slot.mm_node = LIST_HEAD_INIT(ksm_mm_head.slot.mm_node),
236 };
237 static struct ksm_scan ksm_scan = {
238         .mm_slot = &ksm_mm_head,
239 };
240
241 static struct kmem_cache *rmap_item_cache;
242 static struct kmem_cache *stable_node_cache;
243 static struct kmem_cache *mm_slot_cache;
244
245 /* The number of nodes in the stable tree */
246 static unsigned long ksm_pages_shared;
247
248 /* The number of page slots additionally sharing those nodes */
249 static unsigned long ksm_pages_sharing;
250
251 /* The number of nodes in the unstable tree */
252 static unsigned long ksm_pages_unshared;
253
254 /* The number of rmap_items in use: to calculate pages_volatile */
255 static unsigned long ksm_rmap_items;
256
257 /* The number of stable_node chains */
258 static unsigned long ksm_stable_node_chains;
259
260 /* The number of stable_node dups linked to the stable_node chains */
261 static unsigned long ksm_stable_node_dups;
262
263 /* Delay in pruning stale stable_node_dups in the stable_node_chains */
264 static unsigned int ksm_stable_node_chains_prune_millisecs = 2000;
265
266 /* Maximum number of page slots sharing a stable node */
267 static int ksm_max_page_sharing = 256;
268
269 /* Number of pages ksmd should scan in one batch */
270 static unsigned int ksm_thread_pages_to_scan = 100;
271
272 /* Milliseconds ksmd should sleep between batches */
273 static unsigned int ksm_thread_sleep_millisecs = 20;
274
275 /* Checksum of an empty (zeroed) page */
276 static unsigned int zero_checksum __read_mostly;
277
278 /* Whether to merge empty (zeroed) pages with actual zero pages */
279 static bool ksm_use_zero_pages __read_mostly;
280
281 #ifdef CONFIG_NUMA
282 /* Zeroed when merging across nodes is not allowed */
283 static unsigned int ksm_merge_across_nodes = 1;
284 static int ksm_nr_node_ids = 1;
285 #else
286 #define ksm_merge_across_nodes  1U
287 #define ksm_nr_node_ids         1
288 #endif
289
290 #define KSM_RUN_STOP    0
291 #define KSM_RUN_MERGE   1
292 #define KSM_RUN_UNMERGE 2
293 #define KSM_RUN_OFFLINE 4
294 static unsigned long ksm_run = KSM_RUN_STOP;
295 static void wait_while_offlining(void);
296
297 static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait);
298 static DECLARE_WAIT_QUEUE_HEAD(ksm_iter_wait);
299 static DEFINE_MUTEX(ksm_thread_mutex);
300 static DEFINE_SPINLOCK(ksm_mmlist_lock);
301
302 #define KSM_KMEM_CACHE(__struct, __flags) kmem_cache_create(#__struct,\
303                 sizeof(struct __struct), __alignof__(struct __struct),\
304                 (__flags), NULL)
305
306 static int __init ksm_slab_init(void)
307 {
308         rmap_item_cache = KSM_KMEM_CACHE(ksm_rmap_item, 0);
309         if (!rmap_item_cache)
310                 goto out;
311
312         stable_node_cache = KSM_KMEM_CACHE(ksm_stable_node, 0);
313         if (!stable_node_cache)
314                 goto out_free1;
315
316         mm_slot_cache = KSM_KMEM_CACHE(ksm_mm_slot, 0);
317         if (!mm_slot_cache)
318                 goto out_free2;
319
320         return 0;
321
322 out_free2:
323         kmem_cache_destroy(stable_node_cache);
324 out_free1:
325         kmem_cache_destroy(rmap_item_cache);
326 out:
327         return -ENOMEM;
328 }
329
330 static void __init ksm_slab_free(void)
331 {
332         kmem_cache_destroy(mm_slot_cache);
333         kmem_cache_destroy(stable_node_cache);
334         kmem_cache_destroy(rmap_item_cache);
335         mm_slot_cache = NULL;
336 }
337
338 static __always_inline bool is_stable_node_chain(struct ksm_stable_node *chain)
339 {
340         return chain->rmap_hlist_len == STABLE_NODE_CHAIN;
341 }
342
343 static __always_inline bool is_stable_node_dup(struct ksm_stable_node *dup)
344 {
345         return dup->head == STABLE_NODE_DUP_HEAD;
346 }
347
348 static inline void stable_node_chain_add_dup(struct ksm_stable_node *dup,
349                                              struct ksm_stable_node *chain)
350 {
351         VM_BUG_ON(is_stable_node_dup(dup));
352         dup->head = STABLE_NODE_DUP_HEAD;
353         VM_BUG_ON(!is_stable_node_chain(chain));
354         hlist_add_head(&dup->hlist_dup, &chain->hlist);
355         ksm_stable_node_dups++;
356 }
357
358 static inline void __stable_node_dup_del(struct ksm_stable_node *dup)
359 {
360         VM_BUG_ON(!is_stable_node_dup(dup));
361         hlist_del(&dup->hlist_dup);
362         ksm_stable_node_dups--;
363 }
364
365 static inline void stable_node_dup_del(struct ksm_stable_node *dup)
366 {
367         VM_BUG_ON(is_stable_node_chain(dup));
368         if (is_stable_node_dup(dup))
369                 __stable_node_dup_del(dup);
370         else
371                 rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid));
372 #ifdef CONFIG_DEBUG_VM
373         dup->head = NULL;
374 #endif
375 }
376
377 static inline struct ksm_rmap_item *alloc_rmap_item(void)
378 {
379         struct ksm_rmap_item *rmap_item;
380
381         rmap_item = kmem_cache_zalloc(rmap_item_cache, GFP_KERNEL |
382                                                 __GFP_NORETRY | __GFP_NOWARN);
383         if (rmap_item)
384                 ksm_rmap_items++;
385         return rmap_item;
386 }
387
388 static inline void free_rmap_item(struct ksm_rmap_item *rmap_item)
389 {
390         ksm_rmap_items--;
391         rmap_item->mm->ksm_rmap_items--;
392         rmap_item->mm = NULL;   /* debug safety */
393         kmem_cache_free(rmap_item_cache, rmap_item);
394 }
395
396 static inline struct ksm_stable_node *alloc_stable_node(void)
397 {
398         /*
399          * The allocation can take too long with GFP_KERNEL when memory is under
400          * pressure, which may lead to hung task warnings.  Adding __GFP_HIGH
401          * grants access to memory reserves, helping to avoid this problem.
402          */
403         return kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH);
404 }
405
406 static inline void free_stable_node(struct ksm_stable_node *stable_node)
407 {
408         VM_BUG_ON(stable_node->rmap_hlist_len &&
409                   !is_stable_node_chain(stable_node));
410         kmem_cache_free(stable_node_cache, stable_node);
411 }
412
413 /*
414  * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's
415  * page tables after it has passed through ksm_exit() - which, if necessary,
416  * takes mmap_lock briefly to serialize against them.  ksm_exit() does not set
417  * a special flag: they can just back out as soon as mm_users goes to zero.
418  * ksm_test_exit() is used throughout to make this test for exit: in some
419  * places for correctness, in some places just to avoid unnecessary work.
420  */
421 static inline bool ksm_test_exit(struct mm_struct *mm)
422 {
423         return atomic_read(&mm->mm_users) == 0;
424 }
425
426 static int break_ksm_pmd_entry(pmd_t *pmd, unsigned long addr, unsigned long next,
427                         struct mm_walk *walk)
428 {
429         struct page *page = NULL;
430         spinlock_t *ptl;
431         pte_t *pte;
432         int ret;
433
434         if (pmd_leaf(*pmd) || !pmd_present(*pmd))
435                 return 0;
436
437         pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
438         if (pte_present(*pte)) {
439                 page = vm_normal_page(walk->vma, addr, *pte);
440         } else if (!pte_none(*pte)) {
441                 swp_entry_t entry = pte_to_swp_entry(*pte);
442
443                 /*
444                  * As KSM pages remain KSM pages until freed, no need to wait
445                  * here for migration to end.
446                  */
447                 if (is_migration_entry(entry))
448                         page = pfn_swap_entry_to_page(entry);
449         }
450         ret = page && PageKsm(page);
451         pte_unmap_unlock(pte, ptl);
452         return ret;
453 }
454
455 static const struct mm_walk_ops break_ksm_ops = {
456         .pmd_entry = break_ksm_pmd_entry,
457 };
458
459 /*
460  * We use break_ksm to break COW on a ksm page by triggering unsharing,
461  * such that the ksm page will get replaced by an exclusive anonymous page.
462  *
463  * We take great care only to touch a ksm page, in a VM_MERGEABLE vma,
464  * in case the application has unmapped and remapped mm,addr meanwhile.
465  * Could a ksm page appear anywhere else?  Actually yes, in a VM_PFNMAP
466  * mmap of /dev/mem, where we would not want to touch it.
467  *
468  * FAULT_FLAG_REMOTE/FOLL_REMOTE are because we do this outside the context
469  * of the process that owns 'vma'.  We also do not want to enforce
470  * protection keys here anyway.
471  */
472 static int break_ksm(struct vm_area_struct *vma, unsigned long addr)
473 {
474         vm_fault_t ret = 0;
475
476         do {
477                 int ksm_page;
478
479                 cond_resched();
480                 ksm_page = walk_page_range_vma(vma, addr, addr + 1,
481                                                &break_ksm_ops, NULL);
482                 if (WARN_ON_ONCE(ksm_page < 0))
483                         return ksm_page;
484                 if (!ksm_page)
485                         return 0;
486                 ret = handle_mm_fault(vma, addr,
487                                       FAULT_FLAG_UNSHARE | FAULT_FLAG_REMOTE,
488                                       NULL);
489         } while (!(ret & (VM_FAULT_SIGBUS | VM_FAULT_SIGSEGV | VM_FAULT_OOM)));
490         /*
491          * We must loop until we no longer find a KSM page because
492          * handle_mm_fault() may back out if there's any difficulty e.g. if
493          * pte accessed bit gets updated concurrently.
494          *
495          * VM_FAULT_SIGBUS could occur if we race with truncation of the
496          * backing file, which also invalidates anonymous pages: that's
497          * okay, that truncation will have unmapped the PageKsm for us.
498          *
499          * VM_FAULT_OOM: at the time of writing (late July 2009), setting
500          * aside mem_cgroup limits, VM_FAULT_OOM would only be set if the
501          * current task has TIF_MEMDIE set, and will be OOM killed on return
502          * to user; and ksmd, having no mm, would never be chosen for that.
503          *
504          * But if the mm is in a limited mem_cgroup, then the fault may fail
505          * with VM_FAULT_OOM even if the current task is not TIF_MEMDIE; and
506          * even ksmd can fail in this way - though it's usually breaking ksm
507          * just to undo a merge it made a moment before, so unlikely to oom.
508          *
509          * That's a pity: we might therefore have more kernel pages allocated
510          * than we're counting as nodes in the stable tree; but ksm_do_scan
511          * will retry to break_cow on each pass, so should recover the page
512          * in due course.  The important thing is to not let VM_MERGEABLE
513          * be cleared while any such pages might remain in the area.
514          */
515         return (ret & VM_FAULT_OOM) ? -ENOMEM : 0;
516 }
517
518 static bool vma_ksm_compatible(struct vm_area_struct *vma)
519 {
520         if (vma->vm_flags & (VM_SHARED  | VM_MAYSHARE   | VM_PFNMAP  |
521                              VM_IO      | VM_DONTEXPAND | VM_HUGETLB |
522                              VM_MIXEDMAP))
523                 return false;           /* just ignore the advice */
524
525         if (vma_is_dax(vma))
526                 return false;
527
528 #ifdef VM_SAO
529         if (vma->vm_flags & VM_SAO)
530                 return false;
531 #endif
532 #ifdef VM_SPARC_ADI
533         if (vma->vm_flags & VM_SPARC_ADI)
534                 return false;
535 #endif
536
537         return true;
538 }
539
540 static struct vm_area_struct *find_mergeable_vma(struct mm_struct *mm,
541                 unsigned long addr)
542 {
543         struct vm_area_struct *vma;
544         if (ksm_test_exit(mm))
545                 return NULL;
546         vma = vma_lookup(mm, addr);
547         if (!vma || !(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
548                 return NULL;
549         return vma;
550 }
551
552 static void break_cow(struct ksm_rmap_item *rmap_item)
553 {
554         struct mm_struct *mm = rmap_item->mm;
555         unsigned long addr = rmap_item->address;
556         struct vm_area_struct *vma;
557
558         /*
559          * It is not an accident that whenever we want to break COW
560          * to undo, we also need to drop a reference to the anon_vma.
561          */
562         put_anon_vma(rmap_item->anon_vma);
563
564         mmap_read_lock(mm);
565         vma = find_mergeable_vma(mm, addr);
566         if (vma)
567                 break_ksm(vma, addr);
568         mmap_read_unlock(mm);
569 }
570
571 static struct page *get_mergeable_page(struct ksm_rmap_item *rmap_item)
572 {
573         struct mm_struct *mm = rmap_item->mm;
574         unsigned long addr = rmap_item->address;
575         struct vm_area_struct *vma;
576         struct page *page;
577
578         mmap_read_lock(mm);
579         vma = find_mergeable_vma(mm, addr);
580         if (!vma)
581                 goto out;
582
583         page = follow_page(vma, addr, FOLL_GET);
584         if (IS_ERR_OR_NULL(page))
585                 goto out;
586         if (is_zone_device_page(page))
587                 goto out_putpage;
588         if (PageAnon(page)) {
589                 flush_anon_page(vma, page, addr);
590                 flush_dcache_page(page);
591         } else {
592 out_putpage:
593                 put_page(page);
594 out:
595                 page = NULL;
596         }
597         mmap_read_unlock(mm);
598         return page;
599 }
600
601 /*
602  * This helper is used for getting right index into array of tree roots.
603  * When merge_across_nodes knob is set to 1, there are only two rb-trees for
604  * stable and unstable pages from all nodes with roots in index 0. Otherwise,
605  * every node has its own stable and unstable tree.
606  */
607 static inline int get_kpfn_nid(unsigned long kpfn)
608 {
609         return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn));
610 }
611
612 static struct ksm_stable_node *alloc_stable_node_chain(struct ksm_stable_node *dup,
613                                                    struct rb_root *root)
614 {
615         struct ksm_stable_node *chain = alloc_stable_node();
616         VM_BUG_ON(is_stable_node_chain(dup));
617         if (likely(chain)) {
618                 INIT_HLIST_HEAD(&chain->hlist);
619                 chain->chain_prune_time = jiffies;
620                 chain->rmap_hlist_len = STABLE_NODE_CHAIN;
621 #if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA)
622                 chain->nid = NUMA_NO_NODE; /* debug */
623 #endif
624                 ksm_stable_node_chains++;
625
626                 /*
627                  * Put the stable node chain in the first dimension of
628                  * the stable tree and at the same time remove the old
629                  * stable node.
630                  */
631                 rb_replace_node(&dup->node, &chain->node, root);
632
633                 /*
634                  * Move the old stable node to the second dimension
635                  * queued in the hlist_dup. The invariant is that all
636                  * dup stable_nodes in the chain->hlist point to pages
637                  * that are write protected and have the exact same
638                  * content.
639                  */
640                 stable_node_chain_add_dup(dup, chain);
641         }
642         return chain;
643 }
644
645 static inline void free_stable_node_chain(struct ksm_stable_node *chain,
646                                           struct rb_root *root)
647 {
648         rb_erase(&chain->node, root);
649         free_stable_node(chain);
650         ksm_stable_node_chains--;
651 }
652
653 static void remove_node_from_stable_tree(struct ksm_stable_node *stable_node)
654 {
655         struct ksm_rmap_item *rmap_item;
656
657         /* check it's not STABLE_NODE_CHAIN or negative */
658         BUG_ON(stable_node->rmap_hlist_len < 0);
659
660         hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
661                 if (rmap_item->hlist.next) {
662                         ksm_pages_sharing--;
663                         trace_ksm_remove_rmap_item(stable_node->kpfn, rmap_item, rmap_item->mm);
664                 } else {
665                         ksm_pages_shared--;
666                 }
667
668                 rmap_item->mm->ksm_merging_pages--;
669
670                 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
671                 stable_node->rmap_hlist_len--;
672                 put_anon_vma(rmap_item->anon_vma);
673                 rmap_item->address &= PAGE_MASK;
674                 cond_resched();
675         }
676
677         /*
678          * We need the second aligned pointer of the migrate_nodes
679          * list_head to stay clear from the rb_parent_color union
680          * (aligned and different than any node) and also different
681          * from &migrate_nodes. This will verify that future list.h changes
682          * don't break STABLE_NODE_DUP_HEAD. Only recent gcc can handle it.
683          */
684         BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes);
685         BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1);
686
687         trace_ksm_remove_ksm_page(stable_node->kpfn);
688         if (stable_node->head == &migrate_nodes)
689                 list_del(&stable_node->list);
690         else
691                 stable_node_dup_del(stable_node);
692         free_stable_node(stable_node);
693 }
694
695 enum get_ksm_page_flags {
696         GET_KSM_PAGE_NOLOCK,
697         GET_KSM_PAGE_LOCK,
698         GET_KSM_PAGE_TRYLOCK
699 };
700
701 /*
702  * get_ksm_page: checks if the page indicated by the stable node
703  * is still its ksm page, despite having held no reference to it.
704  * In which case we can trust the content of the page, and it
705  * returns the gotten page; but if the page has now been zapped,
706  * remove the stale node from the stable tree and return NULL.
707  * But beware, the stable node's page might be being migrated.
708  *
709  * You would expect the stable_node to hold a reference to the ksm page.
710  * But if it increments the page's count, swapping out has to wait for
711  * ksmd to come around again before it can free the page, which may take
712  * seconds or even minutes: much too unresponsive.  So instead we use a
713  * "keyhole reference": access to the ksm page from the stable node peeps
714  * out through its keyhole to see if that page still holds the right key,
715  * pointing back to this stable node.  This relies on freeing a PageAnon
716  * page to reset its page->mapping to NULL, and relies on no other use of
717  * a page to put something that might look like our key in page->mapping.
718  * is on its way to being freed; but it is an anomaly to bear in mind.
719  */
720 static struct page *get_ksm_page(struct ksm_stable_node *stable_node,
721                                  enum get_ksm_page_flags flags)
722 {
723         struct page *page;
724         void *expected_mapping;
725         unsigned long kpfn;
726
727         expected_mapping = (void *)((unsigned long)stable_node |
728                                         PAGE_MAPPING_KSM);
729 again:
730         kpfn = READ_ONCE(stable_node->kpfn); /* Address dependency. */
731         page = pfn_to_page(kpfn);
732         if (READ_ONCE(page->mapping) != expected_mapping)
733                 goto stale;
734
735         /*
736          * We cannot do anything with the page while its refcount is 0.
737          * Usually 0 means free, or tail of a higher-order page: in which
738          * case this node is no longer referenced, and should be freed;
739          * however, it might mean that the page is under page_ref_freeze().
740          * The __remove_mapping() case is easy, again the node is now stale;
741          * the same is in reuse_ksm_page() case; but if page is swapcache
742          * in folio_migrate_mapping(), it might still be our page,
743          * in which case it's essential to keep the node.
744          */
745         while (!get_page_unless_zero(page)) {
746                 /*
747                  * Another check for page->mapping != expected_mapping would
748                  * work here too.  We have chosen the !PageSwapCache test to
749                  * optimize the common case, when the page is or is about to
750                  * be freed: PageSwapCache is cleared (under spin_lock_irq)
751                  * in the ref_freeze section of __remove_mapping(); but Anon
752                  * page->mapping reset to NULL later, in free_pages_prepare().
753                  */
754                 if (!PageSwapCache(page))
755                         goto stale;
756                 cpu_relax();
757         }
758
759         if (READ_ONCE(page->mapping) != expected_mapping) {
760                 put_page(page);
761                 goto stale;
762         }
763
764         if (flags == GET_KSM_PAGE_TRYLOCK) {
765                 if (!trylock_page(page)) {
766                         put_page(page);
767                         return ERR_PTR(-EBUSY);
768                 }
769         } else if (flags == GET_KSM_PAGE_LOCK)
770                 lock_page(page);
771
772         if (flags != GET_KSM_PAGE_NOLOCK) {
773                 if (READ_ONCE(page->mapping) != expected_mapping) {
774                         unlock_page(page);
775                         put_page(page);
776                         goto stale;
777                 }
778         }
779         return page;
780
781 stale:
782         /*
783          * We come here from above when page->mapping or !PageSwapCache
784          * suggests that the node is stale; but it might be under migration.
785          * We need smp_rmb(), matching the smp_wmb() in folio_migrate_ksm(),
786          * before checking whether node->kpfn has been changed.
787          */
788         smp_rmb();
789         if (READ_ONCE(stable_node->kpfn) != kpfn)
790                 goto again;
791         remove_node_from_stable_tree(stable_node);
792         return NULL;
793 }
794
795 /*
796  * Removing rmap_item from stable or unstable tree.
797  * This function will clean the information from the stable/unstable tree.
798  */
799 static void remove_rmap_item_from_tree(struct ksm_rmap_item *rmap_item)
800 {
801         if (rmap_item->address & STABLE_FLAG) {
802                 struct ksm_stable_node *stable_node;
803                 struct page *page;
804
805                 stable_node = rmap_item->head;
806                 page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK);
807                 if (!page)
808                         goto out;
809
810                 hlist_del(&rmap_item->hlist);
811                 unlock_page(page);
812                 put_page(page);
813
814                 if (!hlist_empty(&stable_node->hlist))
815                         ksm_pages_sharing--;
816                 else
817                         ksm_pages_shared--;
818
819                 rmap_item->mm->ksm_merging_pages--;
820
821                 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
822                 stable_node->rmap_hlist_len--;
823
824                 put_anon_vma(rmap_item->anon_vma);
825                 rmap_item->head = NULL;
826                 rmap_item->address &= PAGE_MASK;
827
828         } else if (rmap_item->address & UNSTABLE_FLAG) {
829                 unsigned char age;
830                 /*
831                  * Usually ksmd can and must skip the rb_erase, because
832                  * root_unstable_tree was already reset to RB_ROOT.
833                  * But be careful when an mm is exiting: do the rb_erase
834                  * if this rmap_item was inserted by this scan, rather
835                  * than left over from before.
836                  */
837                 age = (unsigned char)(ksm_scan.seqnr - rmap_item->address);
838                 BUG_ON(age > 1);
839                 if (!age)
840                         rb_erase(&rmap_item->node,
841                                  root_unstable_tree + NUMA(rmap_item->nid));
842                 ksm_pages_unshared--;
843                 rmap_item->address &= PAGE_MASK;
844         }
845 out:
846         cond_resched();         /* we're called from many long loops */
847 }
848
849 static void remove_trailing_rmap_items(struct ksm_rmap_item **rmap_list)
850 {
851         while (*rmap_list) {
852                 struct ksm_rmap_item *rmap_item = *rmap_list;
853                 *rmap_list = rmap_item->rmap_list;
854                 remove_rmap_item_from_tree(rmap_item);
855                 free_rmap_item(rmap_item);
856         }
857 }
858
859 /*
860  * Though it's very tempting to unmerge rmap_items from stable tree rather
861  * than check every pte of a given vma, the locking doesn't quite work for
862  * that - an rmap_item is assigned to the stable tree after inserting ksm
863  * page and upping mmap_lock.  Nor does it fit with the way we skip dup'ing
864  * rmap_items from parent to child at fork time (so as not to waste time
865  * if exit comes before the next scan reaches it).
866  *
867  * Similarly, although we'd like to remove rmap_items (so updating counts
868  * and freeing memory) when unmerging an area, it's easier to leave that
869  * to the next pass of ksmd - consider, for example, how ksmd might be
870  * in cmp_and_merge_page on one of the rmap_items we would be removing.
871  */
872 static int unmerge_ksm_pages(struct vm_area_struct *vma,
873                              unsigned long start, unsigned long end)
874 {
875         unsigned long addr;
876         int err = 0;
877
878         for (addr = start; addr < end && !err; addr += PAGE_SIZE) {
879                 if (ksm_test_exit(vma->vm_mm))
880                         break;
881                 if (signal_pending(current))
882                         err = -ERESTARTSYS;
883                 else
884                         err = break_ksm(vma, addr);
885         }
886         return err;
887 }
888
889 static inline struct ksm_stable_node *folio_stable_node(struct folio *folio)
890 {
891         return folio_test_ksm(folio) ? folio_raw_mapping(folio) : NULL;
892 }
893
894 static inline struct ksm_stable_node *page_stable_node(struct page *page)
895 {
896         return folio_stable_node(page_folio(page));
897 }
898
899 static inline void set_page_stable_node(struct page *page,
900                                         struct ksm_stable_node *stable_node)
901 {
902         VM_BUG_ON_PAGE(PageAnon(page) && PageAnonExclusive(page), page);
903         page->mapping = (void *)((unsigned long)stable_node | PAGE_MAPPING_KSM);
904 }
905
906 #ifdef CONFIG_SYSFS
907 /*
908  * Only called through the sysfs control interface:
909  */
910 static int remove_stable_node(struct ksm_stable_node *stable_node)
911 {
912         struct page *page;
913         int err;
914
915         page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK);
916         if (!page) {
917                 /*
918                  * get_ksm_page did remove_node_from_stable_tree itself.
919                  */
920                 return 0;
921         }
922
923         /*
924          * Page could be still mapped if this races with __mmput() running in
925          * between ksm_exit() and exit_mmap(). Just refuse to let
926          * merge_across_nodes/max_page_sharing be switched.
927          */
928         err = -EBUSY;
929         if (!page_mapped(page)) {
930                 /*
931                  * The stable node did not yet appear stale to get_ksm_page(),
932                  * since that allows for an unmapped ksm page to be recognized
933                  * right up until it is freed; but the node is safe to remove.
934                  * This page might be in a pagevec waiting to be freed,
935                  * or it might be PageSwapCache (perhaps under writeback),
936                  * or it might have been removed from swapcache a moment ago.
937                  */
938                 set_page_stable_node(page, NULL);
939                 remove_node_from_stable_tree(stable_node);
940                 err = 0;
941         }
942
943         unlock_page(page);
944         put_page(page);
945         return err;
946 }
947
948 static int remove_stable_node_chain(struct ksm_stable_node *stable_node,
949                                     struct rb_root *root)
950 {
951         struct ksm_stable_node *dup;
952         struct hlist_node *hlist_safe;
953
954         if (!is_stable_node_chain(stable_node)) {
955                 VM_BUG_ON(is_stable_node_dup(stable_node));
956                 if (remove_stable_node(stable_node))
957                         return true;
958                 else
959                         return false;
960         }
961
962         hlist_for_each_entry_safe(dup, hlist_safe,
963                                   &stable_node->hlist, hlist_dup) {
964                 VM_BUG_ON(!is_stable_node_dup(dup));
965                 if (remove_stable_node(dup))
966                         return true;
967         }
968         BUG_ON(!hlist_empty(&stable_node->hlist));
969         free_stable_node_chain(stable_node, root);
970         return false;
971 }
972
973 static int remove_all_stable_nodes(void)
974 {
975         struct ksm_stable_node *stable_node, *next;
976         int nid;
977         int err = 0;
978
979         for (nid = 0; nid < ksm_nr_node_ids; nid++) {
980                 while (root_stable_tree[nid].rb_node) {
981                         stable_node = rb_entry(root_stable_tree[nid].rb_node,
982                                                 struct ksm_stable_node, node);
983                         if (remove_stable_node_chain(stable_node,
984                                                      root_stable_tree + nid)) {
985                                 err = -EBUSY;
986                                 break;  /* proceed to next nid */
987                         }
988                         cond_resched();
989                 }
990         }
991         list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
992                 if (remove_stable_node(stable_node))
993                         err = -EBUSY;
994                 cond_resched();
995         }
996         return err;
997 }
998
999 static int unmerge_and_remove_all_rmap_items(void)
1000 {
1001         struct ksm_mm_slot *mm_slot;
1002         struct mm_slot *slot;
1003         struct mm_struct *mm;
1004         struct vm_area_struct *vma;
1005         int err = 0;
1006
1007         spin_lock(&ksm_mmlist_lock);
1008         slot = list_entry(ksm_mm_head.slot.mm_node.next,
1009                           struct mm_slot, mm_node);
1010         ksm_scan.mm_slot = mm_slot_entry(slot, struct ksm_mm_slot, slot);
1011         spin_unlock(&ksm_mmlist_lock);
1012
1013         for (mm_slot = ksm_scan.mm_slot; mm_slot != &ksm_mm_head;
1014              mm_slot = ksm_scan.mm_slot) {
1015                 VMA_ITERATOR(vmi, mm_slot->slot.mm, 0);
1016
1017                 mm = mm_slot->slot.mm;
1018                 mmap_read_lock(mm);
1019
1020                 /*
1021                  * Exit right away if mm is exiting to avoid lockdep issue in
1022                  * the maple tree
1023                  */
1024                 if (ksm_test_exit(mm))
1025                         goto mm_exiting;
1026
1027                 for_each_vma(vmi, vma) {
1028                         if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
1029                                 continue;
1030                         err = unmerge_ksm_pages(vma,
1031                                                 vma->vm_start, vma->vm_end);
1032                         if (err)
1033                                 goto error;
1034                 }
1035
1036 mm_exiting:
1037                 remove_trailing_rmap_items(&mm_slot->rmap_list);
1038                 mmap_read_unlock(mm);
1039
1040                 spin_lock(&ksm_mmlist_lock);
1041                 slot = list_entry(mm_slot->slot.mm_node.next,
1042                                   struct mm_slot, mm_node);
1043                 ksm_scan.mm_slot = mm_slot_entry(slot, struct ksm_mm_slot, slot);
1044                 if (ksm_test_exit(mm)) {
1045                         hash_del(&mm_slot->slot.hash);
1046                         list_del(&mm_slot->slot.mm_node);
1047                         spin_unlock(&ksm_mmlist_lock);
1048
1049                         mm_slot_free(mm_slot_cache, mm_slot);
1050                         clear_bit(MMF_VM_MERGEABLE, &mm->flags);
1051                         clear_bit(MMF_VM_MERGE_ANY, &mm->flags);
1052                         mmdrop(mm);
1053                 } else
1054                         spin_unlock(&ksm_mmlist_lock);
1055         }
1056
1057         /* Clean up stable nodes, but don't worry if some are still busy */
1058         remove_all_stable_nodes();
1059         ksm_scan.seqnr = 0;
1060         return 0;
1061
1062 error:
1063         mmap_read_unlock(mm);
1064         spin_lock(&ksm_mmlist_lock);
1065         ksm_scan.mm_slot = &ksm_mm_head;
1066         spin_unlock(&ksm_mmlist_lock);
1067         return err;
1068 }
1069 #endif /* CONFIG_SYSFS */
1070
1071 static u32 calc_checksum(struct page *page)
1072 {
1073         u32 checksum;
1074         void *addr = kmap_atomic(page);
1075         checksum = xxhash(addr, PAGE_SIZE, 0);
1076         kunmap_atomic(addr);
1077         return checksum;
1078 }
1079
1080 static int write_protect_page(struct vm_area_struct *vma, struct page *page,
1081                               pte_t *orig_pte)
1082 {
1083         struct mm_struct *mm = vma->vm_mm;
1084         DEFINE_PAGE_VMA_WALK(pvmw, page, vma, 0, 0);
1085         int swapped;
1086         int err = -EFAULT;
1087         struct mmu_notifier_range range;
1088         bool anon_exclusive;
1089
1090         pvmw.address = page_address_in_vma(page, vma);
1091         if (pvmw.address == -EFAULT)
1092                 goto out;
1093
1094         BUG_ON(PageTransCompound(page));
1095
1096         mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm, pvmw.address,
1097                                 pvmw.address + PAGE_SIZE);
1098         mmu_notifier_invalidate_range_start(&range);
1099
1100         if (!page_vma_mapped_walk(&pvmw))
1101                 goto out_mn;
1102         if (WARN_ONCE(!pvmw.pte, "Unexpected PMD mapping?"))
1103                 goto out_unlock;
1104
1105         anon_exclusive = PageAnonExclusive(page);
1106         if (pte_write(*pvmw.pte) || pte_dirty(*pvmw.pte) ||
1107             anon_exclusive || mm_tlb_flush_pending(mm)) {
1108                 pte_t entry;
1109
1110                 swapped = PageSwapCache(page);
1111                 flush_cache_page(vma, pvmw.address, page_to_pfn(page));
1112                 /*
1113                  * Ok this is tricky, when get_user_pages_fast() run it doesn't
1114                  * take any lock, therefore the check that we are going to make
1115                  * with the pagecount against the mapcount is racy and
1116                  * O_DIRECT can happen right after the check.
1117                  * So we clear the pte and flush the tlb before the check
1118                  * this assure us that no O_DIRECT can happen after the check
1119                  * or in the middle of the check.
1120                  *
1121                  * No need to notify as we are downgrading page table to read
1122                  * only not changing it to point to a new page.
1123                  *
1124                  * See Documentation/mm/mmu_notifier.rst
1125                  */
1126                 entry = ptep_clear_flush(vma, pvmw.address, pvmw.pte);
1127                 /*
1128                  * Check that no O_DIRECT or similar I/O is in progress on the
1129                  * page
1130                  */
1131                 if (page_mapcount(page) + 1 + swapped != page_count(page)) {
1132                         set_pte_at(mm, pvmw.address, pvmw.pte, entry);
1133                         goto out_unlock;
1134                 }
1135
1136                 /* See page_try_share_anon_rmap(): clear PTE first. */
1137                 if (anon_exclusive && page_try_share_anon_rmap(page)) {
1138                         set_pte_at(mm, pvmw.address, pvmw.pte, entry);
1139                         goto out_unlock;
1140                 }
1141
1142                 if (pte_dirty(entry))
1143                         set_page_dirty(page);
1144                 entry = pte_mkclean(entry);
1145
1146                 if (pte_write(entry))
1147                         entry = pte_wrprotect(entry);
1148
1149                 set_pte_at_notify(mm, pvmw.address, pvmw.pte, entry);
1150         }
1151         *orig_pte = *pvmw.pte;
1152         err = 0;
1153
1154 out_unlock:
1155         page_vma_mapped_walk_done(&pvmw);
1156 out_mn:
1157         mmu_notifier_invalidate_range_end(&range);
1158 out:
1159         return err;
1160 }
1161
1162 /**
1163  * replace_page - replace page in vma by new ksm page
1164  * @vma:      vma that holds the pte pointing to page
1165  * @page:     the page we are replacing by kpage
1166  * @kpage:    the ksm page we replace page by
1167  * @orig_pte: the original value of the pte
1168  *
1169  * Returns 0 on success, -EFAULT on failure.
1170  */
1171 static int replace_page(struct vm_area_struct *vma, struct page *page,
1172                         struct page *kpage, pte_t orig_pte)
1173 {
1174         struct mm_struct *mm = vma->vm_mm;
1175         struct folio *folio;
1176         pmd_t *pmd;
1177         pmd_t pmde;
1178         pte_t *ptep;
1179         pte_t newpte;
1180         spinlock_t *ptl;
1181         unsigned long addr;
1182         int err = -EFAULT;
1183         struct mmu_notifier_range range;
1184
1185         addr = page_address_in_vma(page, vma);
1186         if (addr == -EFAULT)
1187                 goto out;
1188
1189         pmd = mm_find_pmd(mm, addr);
1190         if (!pmd)
1191                 goto out;
1192         /*
1193          * Some THP functions use the sequence pmdp_huge_clear_flush(), set_pmd_at()
1194          * without holding anon_vma lock for write.  So when looking for a
1195          * genuine pmde (in which to find pte), test present and !THP together.
1196          */
1197         pmde = pmdp_get_lockless(pmd);
1198         if (!pmd_present(pmde) || pmd_trans_huge(pmde))
1199                 goto out;
1200
1201         mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, mm, addr,
1202                                 addr + PAGE_SIZE);
1203         mmu_notifier_invalidate_range_start(&range);
1204
1205         ptep = pte_offset_map_lock(mm, pmd, addr, &ptl);
1206         if (!pte_same(*ptep, orig_pte)) {
1207                 pte_unmap_unlock(ptep, ptl);
1208                 goto out_mn;
1209         }
1210         VM_BUG_ON_PAGE(PageAnonExclusive(page), page);
1211         VM_BUG_ON_PAGE(PageAnon(kpage) && PageAnonExclusive(kpage), kpage);
1212
1213         /*
1214          * No need to check ksm_use_zero_pages here: we can only have a
1215          * zero_page here if ksm_use_zero_pages was enabled already.
1216          */
1217         if (!is_zero_pfn(page_to_pfn(kpage))) {
1218                 get_page(kpage);
1219                 page_add_anon_rmap(kpage, vma, addr, RMAP_NONE);
1220                 newpte = mk_pte(kpage, vma->vm_page_prot);
1221         } else {
1222                 newpte = pte_mkspecial(pfn_pte(page_to_pfn(kpage),
1223                                                vma->vm_page_prot));
1224                 /*
1225                  * We're replacing an anonymous page with a zero page, which is
1226                  * not anonymous. We need to do proper accounting otherwise we
1227                  * will get wrong values in /proc, and a BUG message in dmesg
1228                  * when tearing down the mm.
1229                  */
1230                 dec_mm_counter(mm, MM_ANONPAGES);
1231         }
1232
1233         flush_cache_page(vma, addr, pte_pfn(*ptep));
1234         /*
1235          * No need to notify as we are replacing a read only page with another
1236          * read only page with the same content.
1237          *
1238          * See Documentation/mm/mmu_notifier.rst
1239          */
1240         ptep_clear_flush(vma, addr, ptep);
1241         set_pte_at_notify(mm, addr, ptep, newpte);
1242
1243         folio = page_folio(page);
1244         page_remove_rmap(page, vma, false);
1245         if (!folio_mapped(folio))
1246                 folio_free_swap(folio);
1247         folio_put(folio);
1248
1249         pte_unmap_unlock(ptep, ptl);
1250         err = 0;
1251 out_mn:
1252         mmu_notifier_invalidate_range_end(&range);
1253 out:
1254         return err;
1255 }
1256
1257 /*
1258  * try_to_merge_one_page - take two pages and merge them into one
1259  * @vma: the vma that holds the pte pointing to page
1260  * @page: the PageAnon page that we want to replace with kpage
1261  * @kpage: the PageKsm page that we want to map instead of page,
1262  *         or NULL the first time when we want to use page as kpage.
1263  *
1264  * This function returns 0 if the pages were merged, -EFAULT otherwise.
1265  */
1266 static int try_to_merge_one_page(struct vm_area_struct *vma,
1267                                  struct page *page, struct page *kpage)
1268 {
1269         pte_t orig_pte = __pte(0);
1270         int err = -EFAULT;
1271
1272         if (page == kpage)                      /* ksm page forked */
1273                 return 0;
1274
1275         if (!PageAnon(page))
1276                 goto out;
1277
1278         /*
1279          * We need the page lock to read a stable PageSwapCache in
1280          * write_protect_page().  We use trylock_page() instead of
1281          * lock_page() because we don't want to wait here - we
1282          * prefer to continue scanning and merging different pages,
1283          * then come back to this page when it is unlocked.
1284          */
1285         if (!trylock_page(page))
1286                 goto out;
1287
1288         if (PageTransCompound(page)) {
1289                 if (split_huge_page(page))
1290                         goto out_unlock;
1291         }
1292
1293         /*
1294          * If this anonymous page is mapped only here, its pte may need
1295          * to be write-protected.  If it's mapped elsewhere, all of its
1296          * ptes are necessarily already write-protected.  But in either
1297          * case, we need to lock and check page_count is not raised.
1298          */
1299         if (write_protect_page(vma, page, &orig_pte) == 0) {
1300                 if (!kpage) {
1301                         /*
1302                          * While we hold page lock, upgrade page from
1303                          * PageAnon+anon_vma to PageKsm+NULL stable_node:
1304                          * stable_tree_insert() will update stable_node.
1305                          */
1306                         set_page_stable_node(page, NULL);
1307                         mark_page_accessed(page);
1308                         /*
1309                          * Page reclaim just frees a clean page with no dirty
1310                          * ptes: make sure that the ksm page would be swapped.
1311                          */
1312                         if (!PageDirty(page))
1313                                 SetPageDirty(page);
1314                         err = 0;
1315                 } else if (pages_identical(page, kpage))
1316                         err = replace_page(vma, page, kpage, orig_pte);
1317         }
1318
1319 out_unlock:
1320         unlock_page(page);
1321 out:
1322         return err;
1323 }
1324
1325 /*
1326  * try_to_merge_with_ksm_page - like try_to_merge_two_pages,
1327  * but no new kernel page is allocated: kpage must already be a ksm page.
1328  *
1329  * This function returns 0 if the pages were merged, -EFAULT otherwise.
1330  */
1331 static int try_to_merge_with_ksm_page(struct ksm_rmap_item *rmap_item,
1332                                       struct page *page, struct page *kpage)
1333 {
1334         struct mm_struct *mm = rmap_item->mm;
1335         struct vm_area_struct *vma;
1336         int err = -EFAULT;
1337
1338         mmap_read_lock(mm);
1339         vma = find_mergeable_vma(mm, rmap_item->address);
1340         if (!vma)
1341                 goto out;
1342
1343         err = try_to_merge_one_page(vma, page, kpage);
1344         if (err)
1345                 goto out;
1346
1347         /* Unstable nid is in union with stable anon_vma: remove first */
1348         remove_rmap_item_from_tree(rmap_item);
1349
1350         /* Must get reference to anon_vma while still holding mmap_lock */
1351         rmap_item->anon_vma = vma->anon_vma;
1352         get_anon_vma(vma->anon_vma);
1353 out:
1354         mmap_read_unlock(mm);
1355         trace_ksm_merge_with_ksm_page(kpage, page_to_pfn(kpage ? kpage : page),
1356                                 rmap_item, mm, err);
1357         return err;
1358 }
1359
1360 /*
1361  * try_to_merge_two_pages - take two identical pages and prepare them
1362  * to be merged into one page.
1363  *
1364  * This function returns the kpage if we successfully merged two identical
1365  * pages into one ksm page, NULL otherwise.
1366  *
1367  * Note that this function upgrades page to ksm page: if one of the pages
1368  * is already a ksm page, try_to_merge_with_ksm_page should be used.
1369  */
1370 static struct page *try_to_merge_two_pages(struct ksm_rmap_item *rmap_item,
1371                                            struct page *page,
1372                                            struct ksm_rmap_item *tree_rmap_item,
1373                                            struct page *tree_page)
1374 {
1375         int err;
1376
1377         err = try_to_merge_with_ksm_page(rmap_item, page, NULL);
1378         if (!err) {
1379                 err = try_to_merge_with_ksm_page(tree_rmap_item,
1380                                                         tree_page, page);
1381                 /*
1382                  * If that fails, we have a ksm page with only one pte
1383                  * pointing to it: so break it.
1384                  */
1385                 if (err)
1386                         break_cow(rmap_item);
1387         }
1388         return err ? NULL : page;
1389 }
1390
1391 static __always_inline
1392 bool __is_page_sharing_candidate(struct ksm_stable_node *stable_node, int offset)
1393 {
1394         VM_BUG_ON(stable_node->rmap_hlist_len < 0);
1395         /*
1396          * Check that at least one mapping still exists, otherwise
1397          * there's no much point to merge and share with this
1398          * stable_node, as the underlying tree_page of the other
1399          * sharer is going to be freed soon.
1400          */
1401         return stable_node->rmap_hlist_len &&
1402                 stable_node->rmap_hlist_len + offset < ksm_max_page_sharing;
1403 }
1404
1405 static __always_inline
1406 bool is_page_sharing_candidate(struct ksm_stable_node *stable_node)
1407 {
1408         return __is_page_sharing_candidate(stable_node, 0);
1409 }
1410
1411 static struct page *stable_node_dup(struct ksm_stable_node **_stable_node_dup,
1412                                     struct ksm_stable_node **_stable_node,
1413                                     struct rb_root *root,
1414                                     bool prune_stale_stable_nodes)
1415 {
1416         struct ksm_stable_node *dup, *found = NULL, *stable_node = *_stable_node;
1417         struct hlist_node *hlist_safe;
1418         struct page *_tree_page, *tree_page = NULL;
1419         int nr = 0;
1420         int found_rmap_hlist_len;
1421
1422         if (!prune_stale_stable_nodes ||
1423             time_before(jiffies, stable_node->chain_prune_time +
1424                         msecs_to_jiffies(
1425                                 ksm_stable_node_chains_prune_millisecs)))
1426                 prune_stale_stable_nodes = false;
1427         else
1428                 stable_node->chain_prune_time = jiffies;
1429
1430         hlist_for_each_entry_safe(dup, hlist_safe,
1431                                   &stable_node->hlist, hlist_dup) {
1432                 cond_resched();
1433                 /*
1434                  * We must walk all stable_node_dup to prune the stale
1435                  * stable nodes during lookup.
1436                  *
1437                  * get_ksm_page can drop the nodes from the
1438                  * stable_node->hlist if they point to freed pages
1439                  * (that's why we do a _safe walk). The "dup"
1440                  * stable_node parameter itself will be freed from
1441                  * under us if it returns NULL.
1442                  */
1443                 _tree_page = get_ksm_page(dup, GET_KSM_PAGE_NOLOCK);
1444                 if (!_tree_page)
1445                         continue;
1446                 nr += 1;
1447                 if (is_page_sharing_candidate(dup)) {
1448                         if (!found ||
1449                             dup->rmap_hlist_len > found_rmap_hlist_len) {
1450                                 if (found)
1451                                         put_page(tree_page);
1452                                 found = dup;
1453                                 found_rmap_hlist_len = found->rmap_hlist_len;
1454                                 tree_page = _tree_page;
1455
1456                                 /* skip put_page for found dup */
1457                                 if (!prune_stale_stable_nodes)
1458                                         break;
1459                                 continue;
1460                         }
1461                 }
1462                 put_page(_tree_page);
1463         }
1464
1465         if (found) {
1466                 /*
1467                  * nr is counting all dups in the chain only if
1468                  * prune_stale_stable_nodes is true, otherwise we may
1469                  * break the loop at nr == 1 even if there are
1470                  * multiple entries.
1471                  */
1472                 if (prune_stale_stable_nodes && nr == 1) {
1473                         /*
1474                          * If there's not just one entry it would
1475                          * corrupt memory, better BUG_ON. In KSM
1476                          * context with no lock held it's not even
1477                          * fatal.
1478                          */
1479                         BUG_ON(stable_node->hlist.first->next);
1480
1481                         /*
1482                          * There's just one entry and it is below the
1483                          * deduplication limit so drop the chain.
1484                          */
1485                         rb_replace_node(&stable_node->node, &found->node,
1486                                         root);
1487                         free_stable_node(stable_node);
1488                         ksm_stable_node_chains--;
1489                         ksm_stable_node_dups--;
1490                         /*
1491                          * NOTE: the caller depends on the stable_node
1492                          * to be equal to stable_node_dup if the chain
1493                          * was collapsed.
1494                          */
1495                         *_stable_node = found;
1496                         /*
1497                          * Just for robustness, as stable_node is
1498                          * otherwise left as a stable pointer, the
1499                          * compiler shall optimize it away at build
1500                          * time.
1501                          */
1502                         stable_node = NULL;
1503                 } else if (stable_node->hlist.first != &found->hlist_dup &&
1504                            __is_page_sharing_candidate(found, 1)) {
1505                         /*
1506                          * If the found stable_node dup can accept one
1507                          * more future merge (in addition to the one
1508                          * that is underway) and is not at the head of
1509                          * the chain, put it there so next search will
1510                          * be quicker in the !prune_stale_stable_nodes
1511                          * case.
1512                          *
1513                          * NOTE: it would be inaccurate to use nr > 1
1514                          * instead of checking the hlist.first pointer
1515                          * directly, because in the
1516                          * prune_stale_stable_nodes case "nr" isn't
1517                          * the position of the found dup in the chain,
1518                          * but the total number of dups in the chain.
1519                          */
1520                         hlist_del(&found->hlist_dup);
1521                         hlist_add_head(&found->hlist_dup,
1522                                        &stable_node->hlist);
1523                 }
1524         }
1525
1526         *_stable_node_dup = found;
1527         return tree_page;
1528 }
1529
1530 static struct ksm_stable_node *stable_node_dup_any(struct ksm_stable_node *stable_node,
1531                                                struct rb_root *root)
1532 {
1533         if (!is_stable_node_chain(stable_node))
1534                 return stable_node;
1535         if (hlist_empty(&stable_node->hlist)) {
1536                 free_stable_node_chain(stable_node, root);
1537                 return NULL;
1538         }
1539         return hlist_entry(stable_node->hlist.first,
1540                            typeof(*stable_node), hlist_dup);
1541 }
1542
1543 /*
1544  * Like for get_ksm_page, this function can free the *_stable_node and
1545  * *_stable_node_dup if the returned tree_page is NULL.
1546  *
1547  * It can also free and overwrite *_stable_node with the found
1548  * stable_node_dup if the chain is collapsed (in which case
1549  * *_stable_node will be equal to *_stable_node_dup like if the chain
1550  * never existed). It's up to the caller to verify tree_page is not
1551  * NULL before dereferencing *_stable_node or *_stable_node_dup.
1552  *
1553  * *_stable_node_dup is really a second output parameter of this
1554  * function and will be overwritten in all cases, the caller doesn't
1555  * need to initialize it.
1556  */
1557 static struct page *__stable_node_chain(struct ksm_stable_node **_stable_node_dup,
1558                                         struct ksm_stable_node **_stable_node,
1559                                         struct rb_root *root,
1560                                         bool prune_stale_stable_nodes)
1561 {
1562         struct ksm_stable_node *stable_node = *_stable_node;
1563         if (!is_stable_node_chain(stable_node)) {
1564                 if (is_page_sharing_candidate(stable_node)) {
1565                         *_stable_node_dup = stable_node;
1566                         return get_ksm_page(stable_node, GET_KSM_PAGE_NOLOCK);
1567                 }
1568                 /*
1569                  * _stable_node_dup set to NULL means the stable_node
1570                  * reached the ksm_max_page_sharing limit.
1571                  */
1572                 *_stable_node_dup = NULL;
1573                 return NULL;
1574         }
1575         return stable_node_dup(_stable_node_dup, _stable_node, root,
1576                                prune_stale_stable_nodes);
1577 }
1578
1579 static __always_inline struct page *chain_prune(struct ksm_stable_node **s_n_d,
1580                                                 struct ksm_stable_node **s_n,
1581                                                 struct rb_root *root)
1582 {
1583         return __stable_node_chain(s_n_d, s_n, root, true);
1584 }
1585
1586 static __always_inline struct page *chain(struct ksm_stable_node **s_n_d,
1587                                           struct ksm_stable_node *s_n,
1588                                           struct rb_root *root)
1589 {
1590         struct ksm_stable_node *old_stable_node = s_n;
1591         struct page *tree_page;
1592
1593         tree_page = __stable_node_chain(s_n_d, &s_n, root, false);
1594         /* not pruning dups so s_n cannot have changed */
1595         VM_BUG_ON(s_n != old_stable_node);
1596         return tree_page;
1597 }
1598
1599 /*
1600  * stable_tree_search - search for page inside the stable tree
1601  *
1602  * This function checks if there is a page inside the stable tree
1603  * with identical content to the page that we are scanning right now.
1604  *
1605  * This function returns the stable tree node of identical content if found,
1606  * NULL otherwise.
1607  */
1608 static struct page *stable_tree_search(struct page *page)
1609 {
1610         int nid;
1611         struct rb_root *root;
1612         struct rb_node **new;
1613         struct rb_node *parent;
1614         struct ksm_stable_node *stable_node, *stable_node_dup, *stable_node_any;
1615         struct ksm_stable_node *page_node;
1616
1617         page_node = page_stable_node(page);
1618         if (page_node && page_node->head != &migrate_nodes) {
1619                 /* ksm page forked */
1620                 get_page(page);
1621                 return page;
1622         }
1623
1624         nid = get_kpfn_nid(page_to_pfn(page));
1625         root = root_stable_tree + nid;
1626 again:
1627         new = &root->rb_node;
1628         parent = NULL;
1629
1630         while (*new) {
1631                 struct page *tree_page;
1632                 int ret;
1633
1634                 cond_resched();
1635                 stable_node = rb_entry(*new, struct ksm_stable_node, node);
1636                 stable_node_any = NULL;
1637                 tree_page = chain_prune(&stable_node_dup, &stable_node, root);
1638                 /*
1639                  * NOTE: stable_node may have been freed by
1640                  * chain_prune() if the returned stable_node_dup is
1641                  * not NULL. stable_node_dup may have been inserted in
1642                  * the rbtree instead as a regular stable_node (in
1643                  * order to collapse the stable_node chain if a single
1644                  * stable_node dup was found in it). In such case the
1645                  * stable_node is overwritten by the callee to point
1646                  * to the stable_node_dup that was collapsed in the
1647                  * stable rbtree and stable_node will be equal to
1648                  * stable_node_dup like if the chain never existed.
1649                  */
1650                 if (!stable_node_dup) {
1651                         /*
1652                          * Either all stable_node dups were full in
1653                          * this stable_node chain, or this chain was
1654                          * empty and should be rb_erased.
1655                          */
1656                         stable_node_any = stable_node_dup_any(stable_node,
1657                                                               root);
1658                         if (!stable_node_any) {
1659                                 /* rb_erase just run */
1660                                 goto again;
1661                         }
1662                         /*
1663                          * Take any of the stable_node dups page of
1664                          * this stable_node chain to let the tree walk
1665                          * continue. All KSM pages belonging to the
1666                          * stable_node dups in a stable_node chain
1667                          * have the same content and they're
1668                          * write protected at all times. Any will work
1669                          * fine to continue the walk.
1670                          */
1671                         tree_page = get_ksm_page(stable_node_any,
1672                                                  GET_KSM_PAGE_NOLOCK);
1673                 }
1674                 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
1675                 if (!tree_page) {
1676                         /*
1677                          * If we walked over a stale stable_node,
1678                          * get_ksm_page() will call rb_erase() and it
1679                          * may rebalance the tree from under us. So
1680                          * restart the search from scratch. Returning
1681                          * NULL would be safe too, but we'd generate
1682                          * false negative insertions just because some
1683                          * stable_node was stale.
1684                          */
1685                         goto again;
1686                 }
1687
1688                 ret = memcmp_pages(page, tree_page);
1689                 put_page(tree_page);
1690
1691                 parent = *new;
1692                 if (ret < 0)
1693                         new = &parent->rb_left;
1694                 else if (ret > 0)
1695                         new = &parent->rb_right;
1696                 else {
1697                         if (page_node) {
1698                                 VM_BUG_ON(page_node->head != &migrate_nodes);
1699                                 /*
1700                                  * Test if the migrated page should be merged
1701                                  * into a stable node dup. If the mapcount is
1702                                  * 1 we can migrate it with another KSM page
1703                                  * without adding it to the chain.
1704                                  */
1705                                 if (page_mapcount(page) > 1)
1706                                         goto chain_append;
1707                         }
1708
1709                         if (!stable_node_dup) {
1710                                 /*
1711                                  * If the stable_node is a chain and
1712                                  * we got a payload match in memcmp
1713                                  * but we cannot merge the scanned
1714                                  * page in any of the existing
1715                                  * stable_node dups because they're
1716                                  * all full, we need to wait the
1717                                  * scanned page to find itself a match
1718                                  * in the unstable tree to create a
1719                                  * brand new KSM page to add later to
1720                                  * the dups of this stable_node.
1721                                  */
1722                                 return NULL;
1723                         }
1724
1725                         /*
1726                          * Lock and unlock the stable_node's page (which
1727                          * might already have been migrated) so that page
1728                          * migration is sure to notice its raised count.
1729                          * It would be more elegant to return stable_node
1730                          * than kpage, but that involves more changes.
1731                          */
1732                         tree_page = get_ksm_page(stable_node_dup,
1733                                                  GET_KSM_PAGE_TRYLOCK);
1734
1735                         if (PTR_ERR(tree_page) == -EBUSY)
1736                                 return ERR_PTR(-EBUSY);
1737
1738                         if (unlikely(!tree_page))
1739                                 /*
1740                                  * The tree may have been rebalanced,
1741                                  * so re-evaluate parent and new.
1742                                  */
1743                                 goto again;
1744                         unlock_page(tree_page);
1745
1746                         if (get_kpfn_nid(stable_node_dup->kpfn) !=
1747                             NUMA(stable_node_dup->nid)) {
1748                                 put_page(tree_page);
1749                                 goto replace;
1750                         }
1751                         return tree_page;
1752                 }
1753         }
1754
1755         if (!page_node)
1756                 return NULL;
1757
1758         list_del(&page_node->list);
1759         DO_NUMA(page_node->nid = nid);
1760         rb_link_node(&page_node->node, parent, new);
1761         rb_insert_color(&page_node->node, root);
1762 out:
1763         if (is_page_sharing_candidate(page_node)) {
1764                 get_page(page);
1765                 return page;
1766         } else
1767                 return NULL;
1768
1769 replace:
1770         /*
1771          * If stable_node was a chain and chain_prune collapsed it,
1772          * stable_node has been updated to be the new regular
1773          * stable_node. A collapse of the chain is indistinguishable
1774          * from the case there was no chain in the stable
1775          * rbtree. Otherwise stable_node is the chain and
1776          * stable_node_dup is the dup to replace.
1777          */
1778         if (stable_node_dup == stable_node) {
1779                 VM_BUG_ON(is_stable_node_chain(stable_node_dup));
1780                 VM_BUG_ON(is_stable_node_dup(stable_node_dup));
1781                 /* there is no chain */
1782                 if (page_node) {
1783                         VM_BUG_ON(page_node->head != &migrate_nodes);
1784                         list_del(&page_node->list);
1785                         DO_NUMA(page_node->nid = nid);
1786                         rb_replace_node(&stable_node_dup->node,
1787                                         &page_node->node,
1788                                         root);
1789                         if (is_page_sharing_candidate(page_node))
1790                                 get_page(page);
1791                         else
1792                                 page = NULL;
1793                 } else {
1794                         rb_erase(&stable_node_dup->node, root);
1795                         page = NULL;
1796                 }
1797         } else {
1798                 VM_BUG_ON(!is_stable_node_chain(stable_node));
1799                 __stable_node_dup_del(stable_node_dup);
1800                 if (page_node) {
1801                         VM_BUG_ON(page_node->head != &migrate_nodes);
1802                         list_del(&page_node->list);
1803                         DO_NUMA(page_node->nid = nid);
1804                         stable_node_chain_add_dup(page_node, stable_node);
1805                         if (is_page_sharing_candidate(page_node))
1806                                 get_page(page);
1807                         else
1808                                 page = NULL;
1809                 } else {
1810                         page = NULL;
1811                 }
1812         }
1813         stable_node_dup->head = &migrate_nodes;
1814         list_add(&stable_node_dup->list, stable_node_dup->head);
1815         return page;
1816
1817 chain_append:
1818         /* stable_node_dup could be null if it reached the limit */
1819         if (!stable_node_dup)
1820                 stable_node_dup = stable_node_any;
1821         /*
1822          * If stable_node was a chain and chain_prune collapsed it,
1823          * stable_node has been updated to be the new regular
1824          * stable_node. A collapse of the chain is indistinguishable
1825          * from the case there was no chain in the stable
1826          * rbtree. Otherwise stable_node is the chain and
1827          * stable_node_dup is the dup to replace.
1828          */
1829         if (stable_node_dup == stable_node) {
1830                 VM_BUG_ON(is_stable_node_dup(stable_node_dup));
1831                 /* chain is missing so create it */
1832                 stable_node = alloc_stable_node_chain(stable_node_dup,
1833                                                       root);
1834                 if (!stable_node)
1835                         return NULL;
1836         }
1837         /*
1838          * Add this stable_node dup that was
1839          * migrated to the stable_node chain
1840          * of the current nid for this page
1841          * content.
1842          */
1843         VM_BUG_ON(!is_stable_node_dup(stable_node_dup));
1844         VM_BUG_ON(page_node->head != &migrate_nodes);
1845         list_del(&page_node->list);
1846         DO_NUMA(page_node->nid = nid);
1847         stable_node_chain_add_dup(page_node, stable_node);
1848         goto out;
1849 }
1850
1851 /*
1852  * stable_tree_insert - insert stable tree node pointing to new ksm page
1853  * into the stable tree.
1854  *
1855  * This function returns the stable tree node just allocated on success,
1856  * NULL otherwise.
1857  */
1858 static struct ksm_stable_node *stable_tree_insert(struct page *kpage)
1859 {
1860         int nid;
1861         unsigned long kpfn;
1862         struct rb_root *root;
1863         struct rb_node **new;
1864         struct rb_node *parent;
1865         struct ksm_stable_node *stable_node, *stable_node_dup, *stable_node_any;
1866         bool need_chain = false;
1867
1868         kpfn = page_to_pfn(kpage);
1869         nid = get_kpfn_nid(kpfn);
1870         root = root_stable_tree + nid;
1871 again:
1872         parent = NULL;
1873         new = &root->rb_node;
1874
1875         while (*new) {
1876                 struct page *tree_page;
1877                 int ret;
1878
1879                 cond_resched();
1880                 stable_node = rb_entry(*new, struct ksm_stable_node, node);
1881                 stable_node_any = NULL;
1882                 tree_page = chain(&stable_node_dup, stable_node, root);
1883                 if (!stable_node_dup) {
1884                         /*
1885                          * Either all stable_node dups were full in
1886                          * this stable_node chain, or this chain was
1887                          * empty and should be rb_erased.
1888                          */
1889                         stable_node_any = stable_node_dup_any(stable_node,
1890                                                               root);
1891                         if (!stable_node_any) {
1892                                 /* rb_erase just run */
1893                                 goto again;
1894                         }
1895                         /*
1896                          * Take any of the stable_node dups page of
1897                          * this stable_node chain to let the tree walk
1898                          * continue. All KSM pages belonging to the
1899                          * stable_node dups in a stable_node chain
1900                          * have the same content and they're
1901                          * write protected at all times. Any will work
1902                          * fine to continue the walk.
1903                          */
1904                         tree_page = get_ksm_page(stable_node_any,
1905                                                  GET_KSM_PAGE_NOLOCK);
1906                 }
1907                 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
1908                 if (!tree_page) {
1909                         /*
1910                          * If we walked over a stale stable_node,
1911                          * get_ksm_page() will call rb_erase() and it
1912                          * may rebalance the tree from under us. So
1913                          * restart the search from scratch. Returning
1914                          * NULL would be safe too, but we'd generate
1915                          * false negative insertions just because some
1916                          * stable_node was stale.
1917                          */
1918                         goto again;
1919                 }
1920
1921                 ret = memcmp_pages(kpage, tree_page);
1922                 put_page(tree_page);
1923
1924                 parent = *new;
1925                 if (ret < 0)
1926                         new = &parent->rb_left;
1927                 else if (ret > 0)
1928                         new = &parent->rb_right;
1929                 else {
1930                         need_chain = true;
1931                         break;
1932                 }
1933         }
1934
1935         stable_node_dup = alloc_stable_node();
1936         if (!stable_node_dup)
1937                 return NULL;
1938
1939         INIT_HLIST_HEAD(&stable_node_dup->hlist);
1940         stable_node_dup->kpfn = kpfn;
1941         set_page_stable_node(kpage, stable_node_dup);
1942         stable_node_dup->rmap_hlist_len = 0;
1943         DO_NUMA(stable_node_dup->nid = nid);
1944         if (!need_chain) {
1945                 rb_link_node(&stable_node_dup->node, parent, new);
1946                 rb_insert_color(&stable_node_dup->node, root);
1947         } else {
1948                 if (!is_stable_node_chain(stable_node)) {
1949                         struct ksm_stable_node *orig = stable_node;
1950                         /* chain is missing so create it */
1951                         stable_node = alloc_stable_node_chain(orig, root);
1952                         if (!stable_node) {
1953                                 free_stable_node(stable_node_dup);
1954                                 return NULL;
1955                         }
1956                 }
1957                 stable_node_chain_add_dup(stable_node_dup, stable_node);
1958         }
1959
1960         return stable_node_dup;
1961 }
1962
1963 /*
1964  * unstable_tree_search_insert - search for identical page,
1965  * else insert rmap_item into the unstable tree.
1966  *
1967  * This function searches for a page in the unstable tree identical to the
1968  * page currently being scanned; and if no identical page is found in the
1969  * tree, we insert rmap_item as a new object into the unstable tree.
1970  *
1971  * This function returns pointer to rmap_item found to be identical
1972  * to the currently scanned page, NULL otherwise.
1973  *
1974  * This function does both searching and inserting, because they share
1975  * the same walking algorithm in an rbtree.
1976  */
1977 static
1978 struct ksm_rmap_item *unstable_tree_search_insert(struct ksm_rmap_item *rmap_item,
1979                                               struct page *page,
1980                                               struct page **tree_pagep)
1981 {
1982         struct rb_node **new;
1983         struct rb_root *root;
1984         struct rb_node *parent = NULL;
1985         int nid;
1986
1987         nid = get_kpfn_nid(page_to_pfn(page));
1988         root = root_unstable_tree + nid;
1989         new = &root->rb_node;
1990
1991         while (*new) {
1992                 struct ksm_rmap_item *tree_rmap_item;
1993                 struct page *tree_page;
1994                 int ret;
1995
1996                 cond_resched();
1997                 tree_rmap_item = rb_entry(*new, struct ksm_rmap_item, node);
1998                 tree_page = get_mergeable_page(tree_rmap_item);
1999                 if (!tree_page)
2000                         return NULL;
2001
2002                 /*
2003                  * Don't substitute a ksm page for a forked page.
2004                  */
2005                 if (page == tree_page) {
2006                         put_page(tree_page);
2007                         return NULL;
2008                 }
2009
2010                 ret = memcmp_pages(page, tree_page);
2011
2012                 parent = *new;
2013                 if (ret < 0) {
2014                         put_page(tree_page);
2015                         new = &parent->rb_left;
2016                 } else if (ret > 0) {
2017                         put_page(tree_page);
2018                         new = &parent->rb_right;
2019                 } else if (!ksm_merge_across_nodes &&
2020                            page_to_nid(tree_page) != nid) {
2021                         /*
2022                          * If tree_page has been migrated to another NUMA node,
2023                          * it will be flushed out and put in the right unstable
2024                          * tree next time: only merge with it when across_nodes.
2025                          */
2026                         put_page(tree_page);
2027                         return NULL;
2028                 } else {
2029                         *tree_pagep = tree_page;
2030                         return tree_rmap_item;
2031                 }
2032         }
2033
2034         rmap_item->address |= UNSTABLE_FLAG;
2035         rmap_item->address |= (ksm_scan.seqnr & SEQNR_MASK);
2036         DO_NUMA(rmap_item->nid = nid);
2037         rb_link_node(&rmap_item->node, parent, new);
2038         rb_insert_color(&rmap_item->node, root);
2039
2040         ksm_pages_unshared++;
2041         return NULL;
2042 }
2043
2044 /*
2045  * stable_tree_append - add another rmap_item to the linked list of
2046  * rmap_items hanging off a given node of the stable tree, all sharing
2047  * the same ksm page.
2048  */
2049 static void stable_tree_append(struct ksm_rmap_item *rmap_item,
2050                                struct ksm_stable_node *stable_node,
2051                                bool max_page_sharing_bypass)
2052 {
2053         /*
2054          * rmap won't find this mapping if we don't insert the
2055          * rmap_item in the right stable_node
2056          * duplicate. page_migration could break later if rmap breaks,
2057          * so we can as well crash here. We really need to check for
2058          * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check
2059          * for other negative values as an underflow if detected here
2060          * for the first time (and not when decreasing rmap_hlist_len)
2061          * would be sign of memory corruption in the stable_node.
2062          */
2063         BUG_ON(stable_node->rmap_hlist_len < 0);
2064
2065         stable_node->rmap_hlist_len++;
2066         if (!max_page_sharing_bypass)
2067                 /* possibly non fatal but unexpected overflow, only warn */
2068                 WARN_ON_ONCE(stable_node->rmap_hlist_len >
2069                              ksm_max_page_sharing);
2070
2071         rmap_item->head = stable_node;
2072         rmap_item->address |= STABLE_FLAG;
2073         hlist_add_head(&rmap_item->hlist, &stable_node->hlist);
2074
2075         if (rmap_item->hlist.next)
2076                 ksm_pages_sharing++;
2077         else
2078                 ksm_pages_shared++;
2079
2080         rmap_item->mm->ksm_merging_pages++;
2081 }
2082
2083 /*
2084  * cmp_and_merge_page - first see if page can be merged into the stable tree;
2085  * if not, compare checksum to previous and if it's the same, see if page can
2086  * be inserted into the unstable tree, or merged with a page already there and
2087  * both transferred to the stable tree.
2088  *
2089  * @page: the page that we are searching identical page to.
2090  * @rmap_item: the reverse mapping into the virtual address of this page
2091  */
2092 static void cmp_and_merge_page(struct page *page, struct ksm_rmap_item *rmap_item)
2093 {
2094         struct mm_struct *mm = rmap_item->mm;
2095         struct ksm_rmap_item *tree_rmap_item;
2096         struct page *tree_page = NULL;
2097         struct ksm_stable_node *stable_node;
2098         struct page *kpage;
2099         unsigned int checksum;
2100         int err;
2101         bool max_page_sharing_bypass = false;
2102
2103         stable_node = page_stable_node(page);
2104         if (stable_node) {
2105                 if (stable_node->head != &migrate_nodes &&
2106                     get_kpfn_nid(READ_ONCE(stable_node->kpfn)) !=
2107                     NUMA(stable_node->nid)) {
2108                         stable_node_dup_del(stable_node);
2109                         stable_node->head = &migrate_nodes;
2110                         list_add(&stable_node->list, stable_node->head);
2111                 }
2112                 if (stable_node->head != &migrate_nodes &&
2113                     rmap_item->head == stable_node)
2114                         return;
2115                 /*
2116                  * If it's a KSM fork, allow it to go over the sharing limit
2117                  * without warnings.
2118                  */
2119                 if (!is_page_sharing_candidate(stable_node))
2120                         max_page_sharing_bypass = true;
2121         }
2122
2123         /* We first start with searching the page inside the stable tree */
2124         kpage = stable_tree_search(page);
2125         if (kpage == page && rmap_item->head == stable_node) {
2126                 put_page(kpage);
2127                 return;
2128         }
2129
2130         remove_rmap_item_from_tree(rmap_item);
2131
2132         if (kpage) {
2133                 if (PTR_ERR(kpage) == -EBUSY)
2134                         return;
2135
2136                 err = try_to_merge_with_ksm_page(rmap_item, page, kpage);
2137                 if (!err) {
2138                         /*
2139                          * The page was successfully merged:
2140                          * add its rmap_item to the stable tree.
2141                          */
2142                         lock_page(kpage);
2143                         stable_tree_append(rmap_item, page_stable_node(kpage),
2144                                            max_page_sharing_bypass);
2145                         unlock_page(kpage);
2146                 }
2147                 put_page(kpage);
2148                 return;
2149         }
2150
2151         /*
2152          * If the hash value of the page has changed from the last time
2153          * we calculated it, this page is changing frequently: therefore we
2154          * don't want to insert it in the unstable tree, and we don't want
2155          * to waste our time searching for something identical to it there.
2156          */
2157         checksum = calc_checksum(page);
2158         if (rmap_item->oldchecksum != checksum) {
2159                 rmap_item->oldchecksum = checksum;
2160                 return;
2161         }
2162
2163         /*
2164          * Same checksum as an empty page. We attempt to merge it with the
2165          * appropriate zero page if the user enabled this via sysfs.
2166          */
2167         if (ksm_use_zero_pages && (checksum == zero_checksum)) {
2168                 struct vm_area_struct *vma;
2169
2170                 mmap_read_lock(mm);
2171                 vma = find_mergeable_vma(mm, rmap_item->address);
2172                 if (vma) {
2173                         err = try_to_merge_one_page(vma, page,
2174                                         ZERO_PAGE(rmap_item->address));
2175                         trace_ksm_merge_one_page(
2176                                 page_to_pfn(ZERO_PAGE(rmap_item->address)),
2177                                 rmap_item, mm, err);
2178                 } else {
2179                         /*
2180                          * If the vma is out of date, we do not need to
2181                          * continue.
2182                          */
2183                         err = 0;
2184                 }
2185                 mmap_read_unlock(mm);
2186                 /*
2187                  * In case of failure, the page was not really empty, so we
2188                  * need to continue. Otherwise we're done.
2189                  */
2190                 if (!err)
2191                         return;
2192         }
2193         tree_rmap_item =
2194                 unstable_tree_search_insert(rmap_item, page, &tree_page);
2195         if (tree_rmap_item) {
2196                 bool split;
2197
2198                 kpage = try_to_merge_two_pages(rmap_item, page,
2199                                                 tree_rmap_item, tree_page);
2200                 /*
2201                  * If both pages we tried to merge belong to the same compound
2202                  * page, then we actually ended up increasing the reference
2203                  * count of the same compound page twice, and split_huge_page
2204                  * failed.
2205                  * Here we set a flag if that happened, and we use it later to
2206                  * try split_huge_page again. Since we call put_page right
2207                  * afterwards, the reference count will be correct and
2208                  * split_huge_page should succeed.
2209                  */
2210                 split = PageTransCompound(page)
2211                         && compound_head(page) == compound_head(tree_page);
2212                 put_page(tree_page);
2213                 if (kpage) {
2214                         /*
2215                          * The pages were successfully merged: insert new
2216                          * node in the stable tree and add both rmap_items.
2217                          */
2218                         lock_page(kpage);
2219                         stable_node = stable_tree_insert(kpage);
2220                         if (stable_node) {
2221                                 stable_tree_append(tree_rmap_item, stable_node,
2222                                                    false);
2223                                 stable_tree_append(rmap_item, stable_node,
2224                                                    false);
2225                         }
2226                         unlock_page(kpage);
2227
2228                         /*
2229                          * If we fail to insert the page into the stable tree,
2230                          * we will have 2 virtual addresses that are pointing
2231                          * to a ksm page left outside the stable tree,
2232                          * in which case we need to break_cow on both.
2233                          */
2234                         if (!stable_node) {
2235                                 break_cow(tree_rmap_item);
2236                                 break_cow(rmap_item);
2237                         }
2238                 } else if (split) {
2239                         /*
2240                          * We are here if we tried to merge two pages and
2241                          * failed because they both belonged to the same
2242                          * compound page. We will split the page now, but no
2243                          * merging will take place.
2244                          * We do not want to add the cost of a full lock; if
2245                          * the page is locked, it is better to skip it and
2246                          * perhaps try again later.
2247                          */
2248                         if (!trylock_page(page))
2249                                 return;
2250                         split_huge_page(page);
2251                         unlock_page(page);
2252                 }
2253         }
2254 }
2255
2256 static struct ksm_rmap_item *get_next_rmap_item(struct ksm_mm_slot *mm_slot,
2257                                             struct ksm_rmap_item **rmap_list,
2258                                             unsigned long addr)
2259 {
2260         struct ksm_rmap_item *rmap_item;
2261
2262         while (*rmap_list) {
2263                 rmap_item = *rmap_list;
2264                 if ((rmap_item->address & PAGE_MASK) == addr)
2265                         return rmap_item;
2266                 if (rmap_item->address > addr)
2267                         break;
2268                 *rmap_list = rmap_item->rmap_list;
2269                 remove_rmap_item_from_tree(rmap_item);
2270                 free_rmap_item(rmap_item);
2271         }
2272
2273         rmap_item = alloc_rmap_item();
2274         if (rmap_item) {
2275                 /* It has already been zeroed */
2276                 rmap_item->mm = mm_slot->slot.mm;
2277                 rmap_item->mm->ksm_rmap_items++;
2278                 rmap_item->address = addr;
2279                 rmap_item->rmap_list = *rmap_list;
2280                 *rmap_list = rmap_item;
2281         }
2282         return rmap_item;
2283 }
2284
2285 static struct ksm_rmap_item *scan_get_next_rmap_item(struct page **page)
2286 {
2287         struct mm_struct *mm;
2288         struct ksm_mm_slot *mm_slot;
2289         struct mm_slot *slot;
2290         struct vm_area_struct *vma;
2291         struct ksm_rmap_item *rmap_item;
2292         struct vma_iterator vmi;
2293         int nid;
2294
2295         if (list_empty(&ksm_mm_head.slot.mm_node))
2296                 return NULL;
2297
2298         mm_slot = ksm_scan.mm_slot;
2299         if (mm_slot == &ksm_mm_head) {
2300                 trace_ksm_start_scan(ksm_scan.seqnr, ksm_rmap_items);
2301
2302                 /*
2303                  * A number of pages can hang around indefinitely on per-cpu
2304                  * pagevecs, raised page count preventing write_protect_page
2305                  * from merging them.  Though it doesn't really matter much,
2306                  * it is puzzling to see some stuck in pages_volatile until
2307                  * other activity jostles them out, and they also prevented
2308                  * LTP's KSM test from succeeding deterministically; so drain
2309                  * them here (here rather than on entry to ksm_do_scan(),
2310                  * so we don't IPI too often when pages_to_scan is set low).
2311                  */
2312                 lru_add_drain_all();
2313
2314                 /*
2315                  * Whereas stale stable_nodes on the stable_tree itself
2316                  * get pruned in the regular course of stable_tree_search(),
2317                  * those moved out to the migrate_nodes list can accumulate:
2318                  * so prune them once before each full scan.
2319                  */
2320                 if (!ksm_merge_across_nodes) {
2321                         struct ksm_stable_node *stable_node, *next;
2322                         struct page *page;
2323
2324                         list_for_each_entry_safe(stable_node, next,
2325                                                  &migrate_nodes, list) {
2326                                 page = get_ksm_page(stable_node,
2327                                                     GET_KSM_PAGE_NOLOCK);
2328                                 if (page)
2329                                         put_page(page);
2330                                 cond_resched();
2331                         }
2332                 }
2333
2334                 for (nid = 0; nid < ksm_nr_node_ids; nid++)
2335                         root_unstable_tree[nid] = RB_ROOT;
2336
2337                 spin_lock(&ksm_mmlist_lock);
2338                 slot = list_entry(mm_slot->slot.mm_node.next,
2339                                   struct mm_slot, mm_node);
2340                 mm_slot = mm_slot_entry(slot, struct ksm_mm_slot, slot);
2341                 ksm_scan.mm_slot = mm_slot;
2342                 spin_unlock(&ksm_mmlist_lock);
2343                 /*
2344                  * Although we tested list_empty() above, a racing __ksm_exit
2345                  * of the last mm on the list may have removed it since then.
2346                  */
2347                 if (mm_slot == &ksm_mm_head)
2348                         return NULL;
2349 next_mm:
2350                 ksm_scan.address = 0;
2351                 ksm_scan.rmap_list = &mm_slot->rmap_list;
2352         }
2353
2354         slot = &mm_slot->slot;
2355         mm = slot->mm;
2356         vma_iter_init(&vmi, mm, ksm_scan.address);
2357
2358         mmap_read_lock(mm);
2359         if (ksm_test_exit(mm))
2360                 goto no_vmas;
2361
2362         for_each_vma(vmi, vma) {
2363                 if (!(vma->vm_flags & VM_MERGEABLE))
2364                         continue;
2365                 if (ksm_scan.address < vma->vm_start)
2366                         ksm_scan.address = vma->vm_start;
2367                 if (!vma->anon_vma)
2368                         ksm_scan.address = vma->vm_end;
2369
2370                 while (ksm_scan.address < vma->vm_end) {
2371                         if (ksm_test_exit(mm))
2372                                 break;
2373                         *page = follow_page(vma, ksm_scan.address, FOLL_GET);
2374                         if (IS_ERR_OR_NULL(*page)) {
2375                                 ksm_scan.address += PAGE_SIZE;
2376                                 cond_resched();
2377                                 continue;
2378                         }
2379                         if (is_zone_device_page(*page))
2380                                 goto next_page;
2381                         if (PageAnon(*page)) {
2382                                 flush_anon_page(vma, *page, ksm_scan.address);
2383                                 flush_dcache_page(*page);
2384                                 rmap_item = get_next_rmap_item(mm_slot,
2385                                         ksm_scan.rmap_list, ksm_scan.address);
2386                                 if (rmap_item) {
2387                                         ksm_scan.rmap_list =
2388                                                         &rmap_item->rmap_list;
2389                                         ksm_scan.address += PAGE_SIZE;
2390                                 } else
2391                                         put_page(*page);
2392                                 mmap_read_unlock(mm);
2393                                 return rmap_item;
2394                         }
2395 next_page:
2396                         put_page(*page);
2397                         ksm_scan.address += PAGE_SIZE;
2398                         cond_resched();
2399                 }
2400         }
2401
2402         if (ksm_test_exit(mm)) {
2403 no_vmas:
2404                 ksm_scan.address = 0;
2405                 ksm_scan.rmap_list = &mm_slot->rmap_list;
2406         }
2407         /*
2408          * Nuke all the rmap_items that are above this current rmap:
2409          * because there were no VM_MERGEABLE vmas with such addresses.
2410          */
2411         remove_trailing_rmap_items(ksm_scan.rmap_list);
2412
2413         spin_lock(&ksm_mmlist_lock);
2414         slot = list_entry(mm_slot->slot.mm_node.next,
2415                           struct mm_slot, mm_node);
2416         ksm_scan.mm_slot = mm_slot_entry(slot, struct ksm_mm_slot, slot);
2417         if (ksm_scan.address == 0) {
2418                 /*
2419                  * We've completed a full scan of all vmas, holding mmap_lock
2420                  * throughout, and found no VM_MERGEABLE: so do the same as
2421                  * __ksm_exit does to remove this mm from all our lists now.
2422                  * This applies either when cleaning up after __ksm_exit
2423                  * (but beware: we can reach here even before __ksm_exit),
2424                  * or when all VM_MERGEABLE areas have been unmapped (and
2425                  * mmap_lock then protects against race with MADV_MERGEABLE).
2426                  */
2427                 hash_del(&mm_slot->slot.hash);
2428                 list_del(&mm_slot->slot.mm_node);
2429                 spin_unlock(&ksm_mmlist_lock);
2430
2431                 mm_slot_free(mm_slot_cache, mm_slot);
2432                 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
2433                 clear_bit(MMF_VM_MERGE_ANY, &mm->flags);
2434                 mmap_read_unlock(mm);
2435                 mmdrop(mm);
2436         } else {
2437                 mmap_read_unlock(mm);
2438                 /*
2439                  * mmap_read_unlock(mm) first because after
2440                  * spin_unlock(&ksm_mmlist_lock) run, the "mm" may
2441                  * already have been freed under us by __ksm_exit()
2442                  * because the "mm_slot" is still hashed and
2443                  * ksm_scan.mm_slot doesn't point to it anymore.
2444                  */
2445                 spin_unlock(&ksm_mmlist_lock);
2446         }
2447
2448         /* Repeat until we've completed scanning the whole list */
2449         mm_slot = ksm_scan.mm_slot;
2450         if (mm_slot != &ksm_mm_head)
2451                 goto next_mm;
2452
2453         trace_ksm_stop_scan(ksm_scan.seqnr, ksm_rmap_items);
2454         ksm_scan.seqnr++;
2455         return NULL;
2456 }
2457
2458 /**
2459  * ksm_do_scan  - the ksm scanner main worker function.
2460  * @scan_npages:  number of pages we want to scan before we return.
2461  */
2462 static void ksm_do_scan(unsigned int scan_npages)
2463 {
2464         struct ksm_rmap_item *rmap_item;
2465         struct page *page;
2466
2467         while (scan_npages-- && likely(!freezing(current))) {
2468                 cond_resched();
2469                 rmap_item = scan_get_next_rmap_item(&page);
2470                 if (!rmap_item)
2471                         return;
2472                 cmp_and_merge_page(page, rmap_item);
2473                 put_page(page);
2474         }
2475 }
2476
2477 static int ksmd_should_run(void)
2478 {
2479         return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.slot.mm_node);
2480 }
2481
2482 static int ksm_scan_thread(void *nothing)
2483 {
2484         unsigned int sleep_ms;
2485
2486         set_freezable();
2487         set_user_nice(current, 5);
2488
2489         while (!kthread_should_stop()) {
2490                 mutex_lock(&ksm_thread_mutex);
2491                 wait_while_offlining();
2492                 if (ksmd_should_run())
2493                         ksm_do_scan(ksm_thread_pages_to_scan);
2494                 mutex_unlock(&ksm_thread_mutex);
2495
2496                 try_to_freeze();
2497
2498                 if (ksmd_should_run()) {
2499                         sleep_ms = READ_ONCE(ksm_thread_sleep_millisecs);
2500                         wait_event_interruptible_timeout(ksm_iter_wait,
2501                                 sleep_ms != READ_ONCE(ksm_thread_sleep_millisecs),
2502                                 msecs_to_jiffies(sleep_ms));
2503                 } else {
2504                         wait_event_freezable(ksm_thread_wait,
2505                                 ksmd_should_run() || kthread_should_stop());
2506                 }
2507         }
2508         return 0;
2509 }
2510
2511 static void __ksm_add_vma(struct vm_area_struct *vma)
2512 {
2513         unsigned long vm_flags = vma->vm_flags;
2514
2515         if (vm_flags & VM_MERGEABLE)
2516                 return;
2517
2518         if (vma_ksm_compatible(vma))
2519                 vm_flags_set(vma, VM_MERGEABLE);
2520 }
2521
2522 static int __ksm_del_vma(struct vm_area_struct *vma)
2523 {
2524         int err;
2525
2526         if (!(vma->vm_flags & VM_MERGEABLE))
2527                 return 0;
2528
2529         if (vma->anon_vma) {
2530                 err = unmerge_ksm_pages(vma, vma->vm_start, vma->vm_end);
2531                 if (err)
2532                         return err;
2533         }
2534
2535         vm_flags_clear(vma, VM_MERGEABLE);
2536         return 0;
2537 }
2538 /**
2539  * ksm_add_vma - Mark vma as mergeable if compatible
2540  *
2541  * @vma:  Pointer to vma
2542  */
2543 void ksm_add_vma(struct vm_area_struct *vma)
2544 {
2545         struct mm_struct *mm = vma->vm_mm;
2546
2547         if (test_bit(MMF_VM_MERGE_ANY, &mm->flags))
2548                 __ksm_add_vma(vma);
2549 }
2550
2551 static void ksm_add_vmas(struct mm_struct *mm)
2552 {
2553         struct vm_area_struct *vma;
2554
2555         VMA_ITERATOR(vmi, mm, 0);
2556         for_each_vma(vmi, vma)
2557                 __ksm_add_vma(vma);
2558 }
2559
2560 static int ksm_del_vmas(struct mm_struct *mm)
2561 {
2562         struct vm_area_struct *vma;
2563         int err;
2564
2565         VMA_ITERATOR(vmi, mm, 0);
2566         for_each_vma(vmi, vma) {
2567                 err = __ksm_del_vma(vma);
2568                 if (err)
2569                         return err;
2570         }
2571         return 0;
2572 }
2573
2574 /**
2575  * ksm_enable_merge_any - Add mm to mm ksm list and enable merging on all
2576  *                        compatible VMA's
2577  *
2578  * @mm:  Pointer to mm
2579  *
2580  * Returns 0 on success, otherwise error code
2581  */
2582 int ksm_enable_merge_any(struct mm_struct *mm)
2583 {
2584         int err;
2585
2586         if (test_bit(MMF_VM_MERGE_ANY, &mm->flags))
2587                 return 0;
2588
2589         if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
2590                 err = __ksm_enter(mm);
2591                 if (err)
2592                         return err;
2593         }
2594
2595         set_bit(MMF_VM_MERGE_ANY, &mm->flags);
2596         ksm_add_vmas(mm);
2597
2598         return 0;
2599 }
2600
2601 /**
2602  * ksm_disable_merge_any - Disable merging on all compatible VMA's of the mm,
2603  *                         previously enabled via ksm_enable_merge_any().
2604  *
2605  * Disabling merging implies unmerging any merged pages, like setting
2606  * MADV_UNMERGEABLE would. If unmerging fails, the whole operation fails and
2607  * merging on all compatible VMA's remains enabled.
2608  *
2609  * @mm: Pointer to mm
2610  *
2611  * Returns 0 on success, otherwise error code
2612  */
2613 int ksm_disable_merge_any(struct mm_struct *mm)
2614 {
2615         int err;
2616
2617         if (!test_bit(MMF_VM_MERGE_ANY, &mm->flags))
2618                 return 0;
2619
2620         err = ksm_del_vmas(mm);
2621         if (err) {
2622                 ksm_add_vmas(mm);
2623                 return err;
2624         }
2625
2626         clear_bit(MMF_VM_MERGE_ANY, &mm->flags);
2627         return 0;
2628 }
2629
2630 int ksm_disable(struct mm_struct *mm)
2631 {
2632         mmap_assert_write_locked(mm);
2633
2634         if (!test_bit(MMF_VM_MERGEABLE, &mm->flags))
2635                 return 0;
2636         if (test_bit(MMF_VM_MERGE_ANY, &mm->flags))
2637                 return ksm_disable_merge_any(mm);
2638         return ksm_del_vmas(mm);
2639 }
2640
2641 int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
2642                 unsigned long end, int advice, unsigned long *vm_flags)
2643 {
2644         struct mm_struct *mm = vma->vm_mm;
2645         int err;
2646
2647         switch (advice) {
2648         case MADV_MERGEABLE:
2649                 if (vma->vm_flags & VM_MERGEABLE)
2650                         return 0;
2651                 if (!vma_ksm_compatible(vma))
2652                         return 0;
2653
2654                 if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
2655                         err = __ksm_enter(mm);
2656                         if (err)
2657                                 return err;
2658                 }
2659
2660                 *vm_flags |= VM_MERGEABLE;
2661                 break;
2662
2663         case MADV_UNMERGEABLE:
2664                 if (!(*vm_flags & VM_MERGEABLE))
2665                         return 0;               /* just ignore the advice */
2666
2667                 if (vma->anon_vma) {
2668                         err = unmerge_ksm_pages(vma, start, end);
2669                         if (err)
2670                                 return err;
2671                 }
2672
2673                 *vm_flags &= ~VM_MERGEABLE;
2674                 break;
2675         }
2676
2677         return 0;
2678 }
2679 EXPORT_SYMBOL_GPL(ksm_madvise);
2680
2681 int __ksm_enter(struct mm_struct *mm)
2682 {
2683         struct ksm_mm_slot *mm_slot;
2684         struct mm_slot *slot;
2685         int needs_wakeup;
2686
2687         mm_slot = mm_slot_alloc(mm_slot_cache);
2688         if (!mm_slot)
2689                 return -ENOMEM;
2690
2691         slot = &mm_slot->slot;
2692
2693         /* Check ksm_run too?  Would need tighter locking */
2694         needs_wakeup = list_empty(&ksm_mm_head.slot.mm_node);
2695
2696         spin_lock(&ksm_mmlist_lock);
2697         mm_slot_insert(mm_slots_hash, mm, slot);
2698         /*
2699          * When KSM_RUN_MERGE (or KSM_RUN_STOP),
2700          * insert just behind the scanning cursor, to let the area settle
2701          * down a little; when fork is followed by immediate exec, we don't
2702          * want ksmd to waste time setting up and tearing down an rmap_list.
2703          *
2704          * But when KSM_RUN_UNMERGE, it's important to insert ahead of its
2705          * scanning cursor, otherwise KSM pages in newly forked mms will be
2706          * missed: then we might as well insert at the end of the list.
2707          */
2708         if (ksm_run & KSM_RUN_UNMERGE)
2709                 list_add_tail(&slot->mm_node, &ksm_mm_head.slot.mm_node);
2710         else
2711                 list_add_tail(&slot->mm_node, &ksm_scan.mm_slot->slot.mm_node);
2712         spin_unlock(&ksm_mmlist_lock);
2713
2714         set_bit(MMF_VM_MERGEABLE, &mm->flags);
2715         mmgrab(mm);
2716
2717         if (needs_wakeup)
2718                 wake_up_interruptible(&ksm_thread_wait);
2719
2720         trace_ksm_enter(mm);
2721         return 0;
2722 }
2723
2724 void __ksm_exit(struct mm_struct *mm)
2725 {
2726         struct ksm_mm_slot *mm_slot;
2727         struct mm_slot *slot;
2728         int easy_to_free = 0;
2729
2730         /*
2731          * This process is exiting: if it's straightforward (as is the
2732          * case when ksmd was never running), free mm_slot immediately.
2733          * But if it's at the cursor or has rmap_items linked to it, use
2734          * mmap_lock to synchronize with any break_cows before pagetables
2735          * are freed, and leave the mm_slot on the list for ksmd to free.
2736          * Beware: ksm may already have noticed it exiting and freed the slot.
2737          */
2738
2739         spin_lock(&ksm_mmlist_lock);
2740         slot = mm_slot_lookup(mm_slots_hash, mm);
2741         mm_slot = mm_slot_entry(slot, struct ksm_mm_slot, slot);
2742         if (mm_slot && ksm_scan.mm_slot != mm_slot) {
2743                 if (!mm_slot->rmap_list) {
2744                         hash_del(&slot->hash);
2745                         list_del(&slot->mm_node);
2746                         easy_to_free = 1;
2747                 } else {
2748                         list_move(&slot->mm_node,
2749                                   &ksm_scan.mm_slot->slot.mm_node);
2750                 }
2751         }
2752         spin_unlock(&ksm_mmlist_lock);
2753
2754         if (easy_to_free) {
2755                 mm_slot_free(mm_slot_cache, mm_slot);
2756                 clear_bit(MMF_VM_MERGE_ANY, &mm->flags);
2757                 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
2758                 mmdrop(mm);
2759         } else if (mm_slot) {
2760                 mmap_write_lock(mm);
2761                 mmap_write_unlock(mm);
2762         }
2763
2764         trace_ksm_exit(mm);
2765 }
2766
2767 struct page *ksm_might_need_to_copy(struct page *page,
2768                         struct vm_area_struct *vma, unsigned long address)
2769 {
2770         struct folio *folio = page_folio(page);
2771         struct anon_vma *anon_vma = folio_anon_vma(folio);
2772         struct page *new_page;
2773
2774         if (PageKsm(page)) {
2775                 if (page_stable_node(page) &&
2776                     !(ksm_run & KSM_RUN_UNMERGE))
2777                         return page;    /* no need to copy it */
2778         } else if (!anon_vma) {
2779                 return page;            /* no need to copy it */
2780         } else if (page->index == linear_page_index(vma, address) &&
2781                         anon_vma->root == vma->anon_vma->root) {
2782                 return page;            /* still no need to copy it */
2783         }
2784         if (!PageUptodate(page))
2785                 return page;            /* let do_swap_page report the error */
2786
2787         new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
2788         if (new_page &&
2789             mem_cgroup_charge(page_folio(new_page), vma->vm_mm, GFP_KERNEL)) {
2790                 put_page(new_page);
2791                 new_page = NULL;
2792         }
2793         if (new_page) {
2794                 if (copy_mc_user_highpage(new_page, page, address, vma)) {
2795                         put_page(new_page);
2796                         memory_failure_queue(page_to_pfn(page), 0);
2797                         return ERR_PTR(-EHWPOISON);
2798                 }
2799                 SetPageDirty(new_page);
2800                 __SetPageUptodate(new_page);
2801                 __SetPageLocked(new_page);
2802 #ifdef CONFIG_SWAP
2803                 count_vm_event(KSM_SWPIN_COPY);
2804 #endif
2805         }
2806
2807         return new_page;
2808 }
2809
2810 void rmap_walk_ksm(struct folio *folio, struct rmap_walk_control *rwc)
2811 {
2812         struct ksm_stable_node *stable_node;
2813         struct ksm_rmap_item *rmap_item;
2814         int search_new_forks = 0;
2815
2816         VM_BUG_ON_FOLIO(!folio_test_ksm(folio), folio);
2817
2818         /*
2819          * Rely on the page lock to protect against concurrent modifications
2820          * to that page's node of the stable tree.
2821          */
2822         VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
2823
2824         stable_node = folio_stable_node(folio);
2825         if (!stable_node)
2826                 return;
2827 again:
2828         hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
2829                 struct anon_vma *anon_vma = rmap_item->anon_vma;
2830                 struct anon_vma_chain *vmac;
2831                 struct vm_area_struct *vma;
2832
2833                 cond_resched();
2834                 if (!anon_vma_trylock_read(anon_vma)) {
2835                         if (rwc->try_lock) {
2836                                 rwc->contended = true;
2837                                 return;
2838                         }
2839                         anon_vma_lock_read(anon_vma);
2840                 }
2841                 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
2842                                                0, ULONG_MAX) {
2843                         unsigned long addr;
2844
2845                         cond_resched();
2846                         vma = vmac->vma;
2847
2848                         /* Ignore the stable/unstable/sqnr flags */
2849                         addr = rmap_item->address & PAGE_MASK;
2850
2851                         if (addr < vma->vm_start || addr >= vma->vm_end)
2852                                 continue;
2853                         /*
2854                          * Initially we examine only the vma which covers this
2855                          * rmap_item; but later, if there is still work to do,
2856                          * we examine covering vmas in other mms: in case they
2857                          * were forked from the original since ksmd passed.
2858                          */
2859                         if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
2860                                 continue;
2861
2862                         if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
2863                                 continue;
2864
2865                         if (!rwc->rmap_one(folio, vma, addr, rwc->arg)) {
2866                                 anon_vma_unlock_read(anon_vma);
2867                                 return;
2868                         }
2869                         if (rwc->done && rwc->done(folio)) {
2870                                 anon_vma_unlock_read(anon_vma);
2871                                 return;
2872                         }
2873                 }
2874                 anon_vma_unlock_read(anon_vma);
2875         }
2876         if (!search_new_forks++)
2877                 goto again;
2878 }
2879
2880 #ifdef CONFIG_MEMORY_FAILURE
2881 /*
2882  * Collect processes when the error hit an ksm page.
2883  */
2884 void collect_procs_ksm(struct page *page, struct list_head *to_kill,
2885                        int force_early)
2886 {
2887         struct ksm_stable_node *stable_node;
2888         struct ksm_rmap_item *rmap_item;
2889         struct folio *folio = page_folio(page);
2890         struct vm_area_struct *vma;
2891         struct task_struct *tsk;
2892
2893         stable_node = folio_stable_node(folio);
2894         if (!stable_node)
2895                 return;
2896         hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
2897                 struct anon_vma *av = rmap_item->anon_vma;
2898
2899                 anon_vma_lock_read(av);
2900                 read_lock(&tasklist_lock);
2901                 for_each_process(tsk) {
2902                         struct anon_vma_chain *vmac;
2903                         unsigned long addr;
2904                         struct task_struct *t =
2905                                 task_early_kill(tsk, force_early);
2906                         if (!t)
2907                                 continue;
2908                         anon_vma_interval_tree_foreach(vmac, &av->rb_root, 0,
2909                                                        ULONG_MAX)
2910                         {
2911                                 vma = vmac->vma;
2912                                 if (vma->vm_mm == t->mm) {
2913                                         addr = rmap_item->address & PAGE_MASK;
2914                                         add_to_kill_ksm(t, page, vma, to_kill,
2915                                                         addr);
2916                                 }
2917                         }
2918                 }
2919                 read_unlock(&tasklist_lock);
2920                 anon_vma_unlock_read(av);
2921         }
2922 }
2923 #endif
2924
2925 #ifdef CONFIG_MIGRATION
2926 void folio_migrate_ksm(struct folio *newfolio, struct folio *folio)
2927 {
2928         struct ksm_stable_node *stable_node;
2929
2930         VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
2931         VM_BUG_ON_FOLIO(!folio_test_locked(newfolio), newfolio);
2932         VM_BUG_ON_FOLIO(newfolio->mapping != folio->mapping, newfolio);
2933
2934         stable_node = folio_stable_node(folio);
2935         if (stable_node) {
2936                 VM_BUG_ON_FOLIO(stable_node->kpfn != folio_pfn(folio), folio);
2937                 stable_node->kpfn = folio_pfn(newfolio);
2938                 /*
2939                  * newfolio->mapping was set in advance; now we need smp_wmb()
2940                  * to make sure that the new stable_node->kpfn is visible
2941                  * to get_ksm_page() before it can see that folio->mapping
2942                  * has gone stale (or that folio_test_swapcache has been cleared).
2943                  */
2944                 smp_wmb();
2945                 set_page_stable_node(&folio->page, NULL);
2946         }
2947 }
2948 #endif /* CONFIG_MIGRATION */
2949
2950 #ifdef CONFIG_MEMORY_HOTREMOVE
2951 static void wait_while_offlining(void)
2952 {
2953         while (ksm_run & KSM_RUN_OFFLINE) {
2954                 mutex_unlock(&ksm_thread_mutex);
2955                 wait_on_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE),
2956                             TASK_UNINTERRUPTIBLE);
2957                 mutex_lock(&ksm_thread_mutex);
2958         }
2959 }
2960
2961 static bool stable_node_dup_remove_range(struct ksm_stable_node *stable_node,
2962                                          unsigned long start_pfn,
2963                                          unsigned long end_pfn)
2964 {
2965         if (stable_node->kpfn >= start_pfn &&
2966             stable_node->kpfn < end_pfn) {
2967                 /*
2968                  * Don't get_ksm_page, page has already gone:
2969                  * which is why we keep kpfn instead of page*
2970                  */
2971                 remove_node_from_stable_tree(stable_node);
2972                 return true;
2973         }
2974         return false;
2975 }
2976
2977 static bool stable_node_chain_remove_range(struct ksm_stable_node *stable_node,
2978                                            unsigned long start_pfn,
2979                                            unsigned long end_pfn,
2980                                            struct rb_root *root)
2981 {
2982         struct ksm_stable_node *dup;
2983         struct hlist_node *hlist_safe;
2984
2985         if (!is_stable_node_chain(stable_node)) {
2986                 VM_BUG_ON(is_stable_node_dup(stable_node));
2987                 return stable_node_dup_remove_range(stable_node, start_pfn,
2988                                                     end_pfn);
2989         }
2990
2991         hlist_for_each_entry_safe(dup, hlist_safe,
2992                                   &stable_node->hlist, hlist_dup) {
2993                 VM_BUG_ON(!is_stable_node_dup(dup));
2994                 stable_node_dup_remove_range(dup, start_pfn, end_pfn);
2995         }
2996         if (hlist_empty(&stable_node->hlist)) {
2997                 free_stable_node_chain(stable_node, root);
2998                 return true; /* notify caller that tree was rebalanced */
2999         } else
3000                 return false;
3001 }
3002
3003 static void ksm_check_stable_tree(unsigned long start_pfn,
3004                                   unsigned long end_pfn)
3005 {
3006         struct ksm_stable_node *stable_node, *next;
3007         struct rb_node *node;
3008         int nid;
3009
3010         for (nid = 0; nid < ksm_nr_node_ids; nid++) {
3011                 node = rb_first(root_stable_tree + nid);
3012                 while (node) {
3013                         stable_node = rb_entry(node, struct ksm_stable_node, node);
3014                         if (stable_node_chain_remove_range(stable_node,
3015                                                            start_pfn, end_pfn,
3016                                                            root_stable_tree +
3017                                                            nid))
3018                                 node = rb_first(root_stable_tree + nid);
3019                         else
3020                                 node = rb_next(node);
3021                         cond_resched();
3022                 }
3023         }
3024         list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
3025                 if (stable_node->kpfn >= start_pfn &&
3026                     stable_node->kpfn < end_pfn)
3027                         remove_node_from_stable_tree(stable_node);
3028                 cond_resched();
3029         }
3030 }
3031
3032 static int ksm_memory_callback(struct notifier_block *self,
3033                                unsigned long action, void *arg)
3034 {
3035         struct memory_notify *mn = arg;
3036
3037         switch (action) {
3038         case MEM_GOING_OFFLINE:
3039                 /*
3040                  * Prevent ksm_do_scan(), unmerge_and_remove_all_rmap_items()
3041                  * and remove_all_stable_nodes() while memory is going offline:
3042                  * it is unsafe for them to touch the stable tree at this time.
3043                  * But unmerge_ksm_pages(), rmap lookups and other entry points
3044                  * which do not need the ksm_thread_mutex are all safe.
3045                  */
3046                 mutex_lock(&ksm_thread_mutex);
3047                 ksm_run |= KSM_RUN_OFFLINE;
3048                 mutex_unlock(&ksm_thread_mutex);
3049                 break;
3050
3051         case MEM_OFFLINE:
3052                 /*
3053                  * Most of the work is done by page migration; but there might
3054                  * be a few stable_nodes left over, still pointing to struct
3055                  * pages which have been offlined: prune those from the tree,
3056                  * otherwise get_ksm_page() might later try to access a
3057                  * non-existent struct page.
3058                  */
3059                 ksm_check_stable_tree(mn->start_pfn,
3060                                       mn->start_pfn + mn->nr_pages);
3061                 fallthrough;
3062         case MEM_CANCEL_OFFLINE:
3063                 mutex_lock(&ksm_thread_mutex);
3064                 ksm_run &= ~KSM_RUN_OFFLINE;
3065                 mutex_unlock(&ksm_thread_mutex);
3066
3067                 smp_mb();       /* wake_up_bit advises this */
3068                 wake_up_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE));
3069                 break;
3070         }
3071         return NOTIFY_OK;
3072 }
3073 #else
3074 static void wait_while_offlining(void)
3075 {
3076 }
3077 #endif /* CONFIG_MEMORY_HOTREMOVE */
3078
3079 #ifdef CONFIG_PROC_FS
3080 long ksm_process_profit(struct mm_struct *mm)
3081 {
3082         return mm->ksm_merging_pages * PAGE_SIZE -
3083                 mm->ksm_rmap_items * sizeof(struct ksm_rmap_item);
3084 }
3085 #endif /* CONFIG_PROC_FS */
3086
3087 #ifdef CONFIG_SYSFS
3088 /*
3089  * This all compiles without CONFIG_SYSFS, but is a waste of space.
3090  */
3091
3092 #define KSM_ATTR_RO(_name) \
3093         static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
3094 #define KSM_ATTR(_name) \
3095         static struct kobj_attribute _name##_attr = __ATTR_RW(_name)
3096
3097 static ssize_t sleep_millisecs_show(struct kobject *kobj,
3098                                     struct kobj_attribute *attr, char *buf)
3099 {
3100         return sysfs_emit(buf, "%u\n", ksm_thread_sleep_millisecs);
3101 }
3102
3103 static ssize_t sleep_millisecs_store(struct kobject *kobj,
3104                                      struct kobj_attribute *attr,
3105                                      const char *buf, size_t count)
3106 {
3107         unsigned int msecs;
3108         int err;
3109
3110         err = kstrtouint(buf, 10, &msecs);
3111         if (err)
3112                 return -EINVAL;
3113
3114         ksm_thread_sleep_millisecs = msecs;
3115         wake_up_interruptible(&ksm_iter_wait);
3116
3117         return count;
3118 }
3119 KSM_ATTR(sleep_millisecs);
3120
3121 static ssize_t pages_to_scan_show(struct kobject *kobj,
3122                                   struct kobj_attribute *attr, char *buf)
3123 {
3124         return sysfs_emit(buf, "%u\n", ksm_thread_pages_to_scan);
3125 }
3126
3127 static ssize_t pages_to_scan_store(struct kobject *kobj,
3128                                    struct kobj_attribute *attr,
3129                                    const char *buf, size_t count)
3130 {
3131         unsigned int nr_pages;
3132         int err;
3133
3134         err = kstrtouint(buf, 10, &nr_pages);
3135         if (err)
3136                 return -EINVAL;
3137
3138         ksm_thread_pages_to_scan = nr_pages;
3139
3140         return count;
3141 }
3142 KSM_ATTR(pages_to_scan);
3143
3144 static ssize_t run_show(struct kobject *kobj, struct kobj_attribute *attr,
3145                         char *buf)
3146 {
3147         return sysfs_emit(buf, "%lu\n", ksm_run);
3148 }
3149
3150 static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr,
3151                          const char *buf, size_t count)
3152 {
3153         unsigned int flags;
3154         int err;
3155
3156         err = kstrtouint(buf, 10, &flags);
3157         if (err)
3158                 return -EINVAL;
3159         if (flags > KSM_RUN_UNMERGE)
3160                 return -EINVAL;
3161
3162         /*
3163          * KSM_RUN_MERGE sets ksmd running, and 0 stops it running.
3164          * KSM_RUN_UNMERGE stops it running and unmerges all rmap_items,
3165          * breaking COW to free the pages_shared (but leaves mm_slots
3166          * on the list for when ksmd may be set running again).
3167          */
3168
3169         mutex_lock(&ksm_thread_mutex);
3170         wait_while_offlining();
3171         if (ksm_run != flags) {
3172                 ksm_run = flags;
3173                 if (flags & KSM_RUN_UNMERGE) {
3174                         set_current_oom_origin();
3175                         err = unmerge_and_remove_all_rmap_items();
3176                         clear_current_oom_origin();
3177                         if (err) {
3178                                 ksm_run = KSM_RUN_STOP;
3179                                 count = err;
3180                         }
3181                 }
3182         }
3183         mutex_unlock(&ksm_thread_mutex);
3184
3185         if (flags & KSM_RUN_MERGE)
3186                 wake_up_interruptible(&ksm_thread_wait);
3187
3188         return count;
3189 }
3190 KSM_ATTR(run);
3191
3192 #ifdef CONFIG_NUMA
3193 static ssize_t merge_across_nodes_show(struct kobject *kobj,
3194                                        struct kobj_attribute *attr, char *buf)
3195 {
3196         return sysfs_emit(buf, "%u\n", ksm_merge_across_nodes);
3197 }
3198
3199 static ssize_t merge_across_nodes_store(struct kobject *kobj,
3200                                    struct kobj_attribute *attr,
3201                                    const char *buf, size_t count)
3202 {
3203         int err;
3204         unsigned long knob;
3205
3206         err = kstrtoul(buf, 10, &knob);
3207         if (err)
3208                 return err;
3209         if (knob > 1)
3210                 return -EINVAL;
3211
3212         mutex_lock(&ksm_thread_mutex);
3213         wait_while_offlining();
3214         if (ksm_merge_across_nodes != knob) {
3215                 if (ksm_pages_shared || remove_all_stable_nodes())
3216                         err = -EBUSY;
3217                 else if (root_stable_tree == one_stable_tree) {
3218                         struct rb_root *buf;
3219                         /*
3220                          * This is the first time that we switch away from the
3221                          * default of merging across nodes: must now allocate
3222                          * a buffer to hold as many roots as may be needed.
3223                          * Allocate stable and unstable together:
3224                          * MAXSMP NODES_SHIFT 10 will use 16kB.
3225                          */
3226                         buf = kcalloc(nr_node_ids + nr_node_ids, sizeof(*buf),
3227                                       GFP_KERNEL);
3228                         /* Let us assume that RB_ROOT is NULL is zero */
3229                         if (!buf)
3230                                 err = -ENOMEM;
3231                         else {
3232                                 root_stable_tree = buf;
3233                                 root_unstable_tree = buf + nr_node_ids;
3234                                 /* Stable tree is empty but not the unstable */
3235                                 root_unstable_tree[0] = one_unstable_tree[0];
3236                         }
3237                 }
3238                 if (!err) {
3239                         ksm_merge_across_nodes = knob;
3240                         ksm_nr_node_ids = knob ? 1 : nr_node_ids;
3241                 }
3242         }
3243         mutex_unlock(&ksm_thread_mutex);
3244
3245         return err ? err : count;
3246 }
3247 KSM_ATTR(merge_across_nodes);
3248 #endif
3249
3250 static ssize_t use_zero_pages_show(struct kobject *kobj,
3251                                    struct kobj_attribute *attr, char *buf)
3252 {
3253         return sysfs_emit(buf, "%u\n", ksm_use_zero_pages);
3254 }
3255 static ssize_t use_zero_pages_store(struct kobject *kobj,
3256                                    struct kobj_attribute *attr,
3257                                    const char *buf, size_t count)
3258 {
3259         int err;
3260         bool value;
3261
3262         err = kstrtobool(buf, &value);
3263         if (err)
3264                 return -EINVAL;
3265
3266         ksm_use_zero_pages = value;
3267
3268         return count;
3269 }
3270 KSM_ATTR(use_zero_pages);
3271
3272 static ssize_t max_page_sharing_show(struct kobject *kobj,
3273                                      struct kobj_attribute *attr, char *buf)
3274 {
3275         return sysfs_emit(buf, "%u\n", ksm_max_page_sharing);
3276 }
3277
3278 static ssize_t max_page_sharing_store(struct kobject *kobj,
3279                                       struct kobj_attribute *attr,
3280                                       const char *buf, size_t count)
3281 {
3282         int err;
3283         int knob;
3284
3285         err = kstrtoint(buf, 10, &knob);
3286         if (err)
3287                 return err;
3288         /*
3289          * When a KSM page is created it is shared by 2 mappings. This
3290          * being a signed comparison, it implicitly verifies it's not
3291          * negative.
3292          */
3293         if (knob < 2)
3294                 return -EINVAL;
3295
3296         if (READ_ONCE(ksm_max_page_sharing) == knob)
3297                 return count;
3298
3299         mutex_lock(&ksm_thread_mutex);
3300         wait_while_offlining();
3301         if (ksm_max_page_sharing != knob) {
3302                 if (ksm_pages_shared || remove_all_stable_nodes())
3303                         err = -EBUSY;
3304                 else
3305                         ksm_max_page_sharing = knob;
3306         }
3307         mutex_unlock(&ksm_thread_mutex);
3308
3309         return err ? err : count;
3310 }
3311 KSM_ATTR(max_page_sharing);
3312
3313 static ssize_t pages_shared_show(struct kobject *kobj,
3314                                  struct kobj_attribute *attr, char *buf)
3315 {
3316         return sysfs_emit(buf, "%lu\n", ksm_pages_shared);
3317 }
3318 KSM_ATTR_RO(pages_shared);
3319
3320 static ssize_t pages_sharing_show(struct kobject *kobj,
3321                                   struct kobj_attribute *attr, char *buf)
3322 {
3323         return sysfs_emit(buf, "%lu\n", ksm_pages_sharing);
3324 }
3325 KSM_ATTR_RO(pages_sharing);
3326
3327 static ssize_t pages_unshared_show(struct kobject *kobj,
3328                                    struct kobj_attribute *attr, char *buf)
3329 {
3330         return sysfs_emit(buf, "%lu\n", ksm_pages_unshared);
3331 }
3332 KSM_ATTR_RO(pages_unshared);
3333
3334 static ssize_t pages_volatile_show(struct kobject *kobj,
3335                                    struct kobj_attribute *attr, char *buf)
3336 {
3337         long ksm_pages_volatile;
3338
3339         ksm_pages_volatile = ksm_rmap_items - ksm_pages_shared
3340                                 - ksm_pages_sharing - ksm_pages_unshared;
3341         /*
3342          * It was not worth any locking to calculate that statistic,
3343          * but it might therefore sometimes be negative: conceal that.
3344          */
3345         if (ksm_pages_volatile < 0)
3346                 ksm_pages_volatile = 0;
3347         return sysfs_emit(buf, "%ld\n", ksm_pages_volatile);
3348 }
3349 KSM_ATTR_RO(pages_volatile);
3350
3351 static ssize_t general_profit_show(struct kobject *kobj,
3352                                    struct kobj_attribute *attr, char *buf)
3353 {
3354         long general_profit;
3355
3356         general_profit = ksm_pages_sharing * PAGE_SIZE -
3357                                 ksm_rmap_items * sizeof(struct ksm_rmap_item);
3358
3359         return sysfs_emit(buf, "%ld\n", general_profit);
3360 }
3361 KSM_ATTR_RO(general_profit);
3362
3363 static ssize_t stable_node_dups_show(struct kobject *kobj,
3364                                      struct kobj_attribute *attr, char *buf)
3365 {
3366         return sysfs_emit(buf, "%lu\n", ksm_stable_node_dups);
3367 }
3368 KSM_ATTR_RO(stable_node_dups);
3369
3370 static ssize_t stable_node_chains_show(struct kobject *kobj,
3371                                        struct kobj_attribute *attr, char *buf)
3372 {
3373         return sysfs_emit(buf, "%lu\n", ksm_stable_node_chains);
3374 }
3375 KSM_ATTR_RO(stable_node_chains);
3376
3377 static ssize_t
3378 stable_node_chains_prune_millisecs_show(struct kobject *kobj,
3379                                         struct kobj_attribute *attr,
3380                                         char *buf)
3381 {
3382         return sysfs_emit(buf, "%u\n", ksm_stable_node_chains_prune_millisecs);
3383 }
3384
3385 static ssize_t
3386 stable_node_chains_prune_millisecs_store(struct kobject *kobj,
3387                                          struct kobj_attribute *attr,
3388                                          const char *buf, size_t count)
3389 {
3390         unsigned int msecs;
3391         int err;
3392
3393         err = kstrtouint(buf, 10, &msecs);
3394         if (err)
3395                 return -EINVAL;
3396
3397         ksm_stable_node_chains_prune_millisecs = msecs;
3398
3399         return count;
3400 }
3401 KSM_ATTR(stable_node_chains_prune_millisecs);
3402
3403 static ssize_t full_scans_show(struct kobject *kobj,
3404                                struct kobj_attribute *attr, char *buf)
3405 {
3406         return sysfs_emit(buf, "%lu\n", ksm_scan.seqnr);
3407 }
3408 KSM_ATTR_RO(full_scans);
3409
3410 static struct attribute *ksm_attrs[] = {
3411         &sleep_millisecs_attr.attr,
3412         &pages_to_scan_attr.attr,
3413         &run_attr.attr,
3414         &pages_shared_attr.attr,
3415         &pages_sharing_attr.attr,
3416         &pages_unshared_attr.attr,
3417         &pages_volatile_attr.attr,
3418         &full_scans_attr.attr,
3419 #ifdef CONFIG_NUMA
3420         &merge_across_nodes_attr.attr,
3421 #endif
3422         &max_page_sharing_attr.attr,
3423         &stable_node_chains_attr.attr,
3424         &stable_node_dups_attr.attr,
3425         &stable_node_chains_prune_millisecs_attr.attr,
3426         &use_zero_pages_attr.attr,
3427         &general_profit_attr.attr,
3428         NULL,
3429 };
3430
3431 static const struct attribute_group ksm_attr_group = {
3432         .attrs = ksm_attrs,
3433         .name = "ksm",
3434 };
3435 #endif /* CONFIG_SYSFS */
3436
3437 static int __init ksm_init(void)
3438 {
3439         struct task_struct *ksm_thread;
3440         int err;
3441
3442         /* The correct value depends on page size and endianness */
3443         zero_checksum = calc_checksum(ZERO_PAGE(0));
3444         /* Default to false for backwards compatibility */
3445         ksm_use_zero_pages = false;
3446
3447         err = ksm_slab_init();
3448         if (err)
3449                 goto out;
3450
3451         ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd");
3452         if (IS_ERR(ksm_thread)) {
3453                 pr_err("ksm: creating kthread failed\n");
3454                 err = PTR_ERR(ksm_thread);
3455                 goto out_free;
3456         }
3457
3458 #ifdef CONFIG_SYSFS
3459         err = sysfs_create_group(mm_kobj, &ksm_attr_group);
3460         if (err) {
3461                 pr_err("ksm: register sysfs failed\n");
3462                 kthread_stop(ksm_thread);
3463                 goto out_free;
3464         }
3465 #else
3466         ksm_run = KSM_RUN_MERGE;        /* no way for user to start it */
3467
3468 #endif /* CONFIG_SYSFS */
3469
3470 #ifdef CONFIG_MEMORY_HOTREMOVE
3471         /* There is no significance to this priority 100 */
3472         hotplug_memory_notifier(ksm_memory_callback, KSM_CALLBACK_PRI);
3473 #endif
3474         return 0;
3475
3476 out_free:
3477         ksm_slab_free();
3478 out:
3479         return err;
3480 }
3481 subsys_initcall(ksm_init);
This page took 0.212786 seconds and 4 git commands to generate.