blob: 21c5f4ff722935e6c5d699ba192ff3f9d9e4ce78 [file] [log] [blame]
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001/*
Izik Eidus31dbd012009-09-21 17:02:03 -07002 * Memory merging support.
3 *
4 * This code enables dynamic sharing of identical pages found in different
5 * memory areas, even if they are not shared by fork()
6 *
Izik Eidus36b25282009-09-21 17:02:06 -07007 * Copyright (C) 2008-2009 Red Hat, Inc.
Izik Eidus31dbd012009-09-21 17:02:03 -07008 * Authors:
9 * Izik Eidus
10 * Andrea Arcangeli
11 * Chris Wright
Izik Eidus36b25282009-09-21 17:02:06 -070012 * Hugh Dickins
Izik Eidus31dbd012009-09-21 17:02:03 -070013 *
14 * This work is licensed under the terms of the GNU GPL, version 2.
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070015 */
16
17#include <linux/errno.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070018#include <linux/mm.h>
19#include <linux/fs.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070020#include <linux/mman.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070021#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010022#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010023#include <linux/sched/coredump.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070024#include <linux/rwsem.h>
25#include <linux/pagemap.h>
26#include <linux/rmap.h>
27#include <linux/spinlock.h>
28#include <linux/jhash.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>
Hugh Dickins62b61f62009-12-14 17:59:33 -080034#include <linux/memory.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070035#include <linux/mmu_notifier.h>
Izik Eidus2c6854f2009-09-23 15:56:04 -070036#include <linux/swap.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070037#include <linux/ksm.h>
Sasha Levin4ca3a692013-02-22 16:32:28 -080038#include <linux/hashtable.h>
Andrea Arcangeli878aee72011-01-13 15:47:10 -080039#include <linux/freezer.h>
David Rientjes72788c32011-05-24 17:11:40 -070040#include <linux/oom.h>
Petr Holasek90bd6fd2013-02-22 16:35:00 -080041#include <linux/numa.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070042
Izik Eidus31dbd012009-09-21 17:02:03 -070043#include <asm/tlbflush.h>
Hugh Dickins73848b42009-12-14 17:59:22 -080044#include "internal.h"
Izik Eidus31dbd012009-09-21 17:02:03 -070045
Hugh Dickinse850dcf2013-02-22 16:35:03 -080046#ifdef CONFIG_NUMA
47#define NUMA(x) (x)
48#define DO_NUMA(x) do { (x); } while (0)
49#else
50#define NUMA(x) (0)
51#define DO_NUMA(x) do { } while (0)
52#endif
53
Izik Eidus31dbd012009-09-21 17:02:03 -070054/*
55 * A few notes about the KSM scanning process,
56 * to make it easier to understand the data structures below:
57 *
58 * In order to reduce excessive scanning, KSM sorts the memory pages by their
59 * contents into a data structure that holds pointers to the pages' locations.
60 *
61 * Since the contents of the pages may change at any moment, KSM cannot just
62 * insert the pages into a normal sorted tree and expect it to find anything.
63 * Therefore KSM uses two data structures - the stable and the unstable tree.
64 *
65 * The stable tree holds pointers to all the merged pages (ksm pages), sorted
66 * by their contents. Because each such page is write-protected, searching on
67 * this tree is fully assured to be working (except when pages are unmapped),
68 * and therefore this tree is called the stable tree.
69 *
70 * In addition to the stable tree, KSM uses a second data structure called the
71 * unstable tree: this tree holds pointers to pages which have been found to
72 * be "unchanged for a period of time". The unstable tree sorts these pages
73 * by their contents, but since they are not write-protected, KSM cannot rely
74 * upon the unstable tree to work correctly - the unstable tree is liable to
75 * be corrupted as its contents are modified, and so it is called unstable.
76 *
77 * KSM solves this problem by several techniques:
78 *
79 * 1) The unstable tree is flushed every time KSM completes scanning all
80 * memory areas, and then the tree is rebuilt again from the beginning.
81 * 2) KSM will only insert into the unstable tree, pages whose hash value
82 * has not changed since the previous scan of all memory areas.
83 * 3) The unstable tree is a RedBlack Tree - so its balancing is based on the
84 * colors of the nodes and not on their contents, assuring that even when
85 * the tree gets "corrupted" it won't get out of balance, so scanning time
86 * remains the same (also, searching and inserting nodes in an rbtree uses
87 * the same algorithm, so we have no overhead when we flush and rebuild).
88 * 4) KSM never flushes the stable tree, which means that even if it were to
89 * take 10 attempts to find a page in the unstable tree, once it is found,
90 * it is secured in the stable tree. (When we scan a new page, we first
91 * compare it against the stable tree, and then against the unstable tree.)
Hugh Dickins8fdb3db2013-02-22 16:36:03 -080092 *
93 * If the merge_across_nodes tunable is unset, then KSM maintains multiple
94 * stable trees and multiple unstable trees: one of each for each NUMA node.
Izik Eidus31dbd012009-09-21 17:02:03 -070095 */
96
97/**
98 * struct mm_slot - ksm information per mm that is being scanned
99 * @link: link to the mm_slots hash list
100 * @mm_list: link into the mm_slots list, rooted in ksm_mm_head
Hugh Dickins6514d512009-12-14 17:59:19 -0800101 * @rmap_list: head for this mm_slot's singly-linked list of rmap_items
Izik Eidus31dbd012009-09-21 17:02:03 -0700102 * @mm: the mm that this information is valid for
103 */
104struct mm_slot {
105 struct hlist_node link;
106 struct list_head mm_list;
Hugh Dickins6514d512009-12-14 17:59:19 -0800107 struct rmap_item *rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700108 struct mm_struct *mm;
109};
110
111/**
112 * struct ksm_scan - cursor for scanning
113 * @mm_slot: the current mm_slot we are scanning
114 * @address: the next address inside that to be scanned
Hugh Dickins6514d512009-12-14 17:59:19 -0800115 * @rmap_list: link to the next rmap to be scanned in the rmap_list
Izik Eidus31dbd012009-09-21 17:02:03 -0700116 * @seqnr: count of completed full scans (needed when removing unstable node)
117 *
118 * There is only the one ksm_scan instance of this cursor structure.
119 */
120struct ksm_scan {
121 struct mm_slot *mm_slot;
122 unsigned long address;
Hugh Dickins6514d512009-12-14 17:59:19 -0800123 struct rmap_item **rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700124 unsigned long seqnr;
125};
126
127/**
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800128 * struct stable_node - node of the stable rbtree
129 * @node: rb node of this ksm page in the stable tree
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800130 * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700131 * @hlist_dup: linked into the stable_node->hlist with a stable_node chain
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800132 * @list: linked into migrate_nodes, pending placement in the proper node tree
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800133 * @hlist: hlist head of rmap_items using this ksm page
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800134 * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700135 * @chain_prune_time: time of the last full garbage collection
136 * @rmap_hlist_len: number of rmap_item entries in hlist or STABLE_NODE_CHAIN
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800137 * @nid: NUMA node id of stable tree in which linked (may not match kpfn)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800138 */
139struct stable_node {
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800140 union {
141 struct rb_node node; /* when node of stable tree */
142 struct { /* when listed for migration */
143 struct list_head *head;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700144 struct {
145 struct hlist_node hlist_dup;
146 struct list_head list;
147 };
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800148 };
149 };
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800150 struct hlist_head hlist;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700151 union {
152 unsigned long kpfn;
153 unsigned long chain_prune_time;
154 };
155 /*
156 * STABLE_NODE_CHAIN can be any negative number in
157 * rmap_hlist_len negative range, but better not -1 to be able
158 * to reliably detect underflows.
159 */
160#define STABLE_NODE_CHAIN -1024
161 int rmap_hlist_len;
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800162#ifdef CONFIG_NUMA
163 int nid;
164#endif
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800165};
166
167/**
Izik Eidus31dbd012009-09-21 17:02:03 -0700168 * struct rmap_item - reverse mapping item for virtual addresses
Hugh Dickins6514d512009-12-14 17:59:19 -0800169 * @rmap_list: next rmap_item in mm_slot's singly-linked rmap_list
Hugh Dickinsdb114b82009-12-14 17:59:25 -0800170 * @anon_vma: pointer to anon_vma for this mm,address, when in stable tree
Hugh Dickinsbc566202013-02-22 16:36:06 -0800171 * @nid: NUMA node id of unstable tree in which linked (may not match page)
Izik Eidus31dbd012009-09-21 17:02:03 -0700172 * @mm: the memory structure this rmap_item is pointing into
173 * @address: the virtual address this rmap_item tracks (+ flags in low bits)
174 * @oldchecksum: previous checksum of the page at that virtual address
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800175 * @node: rb node of this rmap_item in the unstable tree
176 * @head: pointer to stable_node heading this list in the stable tree
177 * @hlist: link into hlist of rmap_items hanging off that stable_node
Izik Eidus31dbd012009-09-21 17:02:03 -0700178 */
179struct rmap_item {
Hugh Dickins6514d512009-12-14 17:59:19 -0800180 struct rmap_item *rmap_list;
Hugh Dickinsbc566202013-02-22 16:36:06 -0800181 union {
182 struct anon_vma *anon_vma; /* when stable */
183#ifdef CONFIG_NUMA
184 int nid; /* when node of unstable tree */
185#endif
186 };
Izik Eidus31dbd012009-09-21 17:02:03 -0700187 struct mm_struct *mm;
188 unsigned long address; /* + low bits used for flags below */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800189 unsigned int oldchecksum; /* when unstable */
Izik Eidus31dbd012009-09-21 17:02:03 -0700190 union {
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800191 struct rb_node node; /* when node of unstable tree */
192 struct { /* when listed from stable tree */
193 struct stable_node *head;
194 struct hlist_node hlist;
195 };
Izik Eidus31dbd012009-09-21 17:02:03 -0700196 };
197};
198
199#define SEQNR_MASK 0x0ff /* low bits of unstable tree seqnr */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800200#define UNSTABLE_FLAG 0x100 /* is a node of the unstable tree */
201#define STABLE_FLAG 0x200 /* is listed from the stable tree */
Izik Eidus31dbd012009-09-21 17:02:03 -0700202
203/* The stable and unstable tree heads */
Hugh Dickinsef53d162013-02-22 16:36:12 -0800204static struct rb_root one_stable_tree[1] = { RB_ROOT };
205static struct rb_root one_unstable_tree[1] = { RB_ROOT };
206static struct rb_root *root_stable_tree = one_stable_tree;
207static struct rb_root *root_unstable_tree = one_unstable_tree;
Izik Eidus31dbd012009-09-21 17:02:03 -0700208
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800209/* Recently migrated nodes of stable tree, pending proper placement */
210static LIST_HEAD(migrate_nodes);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700211#define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev)
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800212
Sasha Levin4ca3a692013-02-22 16:32:28 -0800213#define MM_SLOTS_HASH_BITS 10
214static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
Izik Eidus31dbd012009-09-21 17:02:03 -0700215
216static struct mm_slot ksm_mm_head = {
217 .mm_list = LIST_HEAD_INIT(ksm_mm_head.mm_list),
218};
219static struct ksm_scan ksm_scan = {
220 .mm_slot = &ksm_mm_head,
221};
222
223static struct kmem_cache *rmap_item_cache;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800224static struct kmem_cache *stable_node_cache;
Izik Eidus31dbd012009-09-21 17:02:03 -0700225static struct kmem_cache *mm_slot_cache;
226
227/* The number of nodes in the stable tree */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700228static unsigned long ksm_pages_shared;
Izik Eidus31dbd012009-09-21 17:02:03 -0700229
Hugh Dickinse178dfd2009-09-21 17:02:10 -0700230/* The number of page slots additionally sharing those nodes */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700231static unsigned long ksm_pages_sharing;
Izik Eidus31dbd012009-09-21 17:02:03 -0700232
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700233/* The number of nodes in the unstable tree */
234static unsigned long ksm_pages_unshared;
235
236/* The number of rmap_items in use: to calculate pages_volatile */
237static unsigned long ksm_rmap_items;
238
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700239/* The number of stable_node chains */
240static unsigned long ksm_stable_node_chains;
241
242/* The number of stable_node dups linked to the stable_node chains */
243static unsigned long ksm_stable_node_dups;
244
245/* Delay in pruning stale stable_node_dups in the stable_node_chains */
246static int ksm_stable_node_chains_prune_millisecs = 2000;
247
248/* Maximum number of page slots sharing a stable node */
249static int ksm_max_page_sharing = 256;
250
Izik Eidus31dbd012009-09-21 17:02:03 -0700251/* Number of pages ksmd should scan in one batch */
Izik Eidus2c6854f2009-09-23 15:56:04 -0700252static unsigned int ksm_thread_pages_to_scan = 100;
Izik Eidus31dbd012009-09-21 17:02:03 -0700253
254/* Milliseconds ksmd should sleep between batches */
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700255static unsigned int ksm_thread_sleep_millisecs = 20;
Izik Eidus31dbd012009-09-21 17:02:03 -0700256
Claudio Imbrendae86c59b2017-02-24 14:55:39 -0800257/* Checksum of an empty (zeroed) page */
258static unsigned int zero_checksum __read_mostly;
259
260/* Whether to merge empty (zeroed) pages with actual zero pages */
261static bool ksm_use_zero_pages __read_mostly;
262
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800263#ifdef CONFIG_NUMA
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800264/* Zeroed when merging across nodes is not allowed */
265static unsigned int ksm_merge_across_nodes = 1;
Hugh Dickinsef53d162013-02-22 16:36:12 -0800266static int ksm_nr_node_ids = 1;
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800267#else
268#define ksm_merge_across_nodes 1U
Hugh Dickinsef53d162013-02-22 16:36:12 -0800269#define ksm_nr_node_ids 1
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800270#endif
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800271
Izik Eidus31dbd012009-09-21 17:02:03 -0700272#define KSM_RUN_STOP 0
273#define KSM_RUN_MERGE 1
274#define KSM_RUN_UNMERGE 2
Hugh Dickinsef4d43a2013-02-22 16:35:16 -0800275#define KSM_RUN_OFFLINE 4
276static unsigned long ksm_run = KSM_RUN_STOP;
277static void wait_while_offlining(void);
Izik Eidus31dbd012009-09-21 17:02:03 -0700278
279static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait);
280static DEFINE_MUTEX(ksm_thread_mutex);
281static DEFINE_SPINLOCK(ksm_mmlist_lock);
282
283#define KSM_KMEM_CACHE(__struct, __flags) kmem_cache_create("ksm_"#__struct,\
284 sizeof(struct __struct), __alignof__(struct __struct),\
285 (__flags), NULL)
286
287static int __init ksm_slab_init(void)
288{
289 rmap_item_cache = KSM_KMEM_CACHE(rmap_item, 0);
290 if (!rmap_item_cache)
291 goto out;
292
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800293 stable_node_cache = KSM_KMEM_CACHE(stable_node, 0);
294 if (!stable_node_cache)
295 goto out_free1;
296
Izik Eidus31dbd012009-09-21 17:02:03 -0700297 mm_slot_cache = KSM_KMEM_CACHE(mm_slot, 0);
298 if (!mm_slot_cache)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800299 goto out_free2;
Izik Eidus31dbd012009-09-21 17:02:03 -0700300
301 return 0;
302
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800303out_free2:
304 kmem_cache_destroy(stable_node_cache);
305out_free1:
Izik Eidus31dbd012009-09-21 17:02:03 -0700306 kmem_cache_destroy(rmap_item_cache);
307out:
308 return -ENOMEM;
309}
310
311static void __init ksm_slab_free(void)
312{
313 kmem_cache_destroy(mm_slot_cache);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800314 kmem_cache_destroy(stable_node_cache);
Izik Eidus31dbd012009-09-21 17:02:03 -0700315 kmem_cache_destroy(rmap_item_cache);
316 mm_slot_cache = NULL;
317}
318
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700319static __always_inline bool is_stable_node_chain(struct stable_node *chain)
320{
321 return chain->rmap_hlist_len == STABLE_NODE_CHAIN;
322}
323
324static __always_inline bool is_stable_node_dup(struct stable_node *dup)
325{
326 return dup->head == STABLE_NODE_DUP_HEAD;
327}
328
329static inline void stable_node_chain_add_dup(struct stable_node *dup,
330 struct stable_node *chain)
331{
332 VM_BUG_ON(is_stable_node_dup(dup));
333 dup->head = STABLE_NODE_DUP_HEAD;
334 VM_BUG_ON(!is_stable_node_chain(chain));
335 hlist_add_head(&dup->hlist_dup, &chain->hlist);
336 ksm_stable_node_dups++;
337}
338
339static inline void __stable_node_dup_del(struct stable_node *dup)
340{
341 hlist_del(&dup->hlist_dup);
342 ksm_stable_node_dups--;
343}
344
345static inline void stable_node_dup_del(struct stable_node *dup)
346{
347 VM_BUG_ON(is_stable_node_chain(dup));
348 if (is_stable_node_dup(dup))
349 __stable_node_dup_del(dup);
350 else
351 rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid));
352#ifdef CONFIG_DEBUG_VM
353 dup->head = NULL;
354#endif
355}
356
Izik Eidus31dbd012009-09-21 17:02:03 -0700357static inline struct rmap_item *alloc_rmap_item(void)
358{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700359 struct rmap_item *rmap_item;
360
zhong jiang5b398e42016-09-28 15:22:30 -0700361 rmap_item = kmem_cache_zalloc(rmap_item_cache, GFP_KERNEL |
362 __GFP_NORETRY | __GFP_NOWARN);
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700363 if (rmap_item)
364 ksm_rmap_items++;
365 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -0700366}
367
368static inline void free_rmap_item(struct rmap_item *rmap_item)
369{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700370 ksm_rmap_items--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700371 rmap_item->mm = NULL; /* debug safety */
372 kmem_cache_free(rmap_item_cache, rmap_item);
373}
374
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800375static inline struct stable_node *alloc_stable_node(void)
376{
zhong jiang62130552016-10-07 17:01:19 -0700377 /*
378 * The allocation can take too long with GFP_KERNEL when memory is under
379 * pressure, which may lead to hung task warnings. Adding __GFP_HIGH
380 * grants access to memory reserves, helping to avoid this problem.
381 */
382 return kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800383}
384
385static inline void free_stable_node(struct stable_node *stable_node)
386{
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700387 VM_BUG_ON(stable_node->rmap_hlist_len &&
388 !is_stable_node_chain(stable_node));
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800389 kmem_cache_free(stable_node_cache, stable_node);
390}
391
Izik Eidus31dbd012009-09-21 17:02:03 -0700392static inline struct mm_slot *alloc_mm_slot(void)
393{
394 if (!mm_slot_cache) /* initialization failed */
395 return NULL;
396 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
397}
398
399static inline void free_mm_slot(struct mm_slot *mm_slot)
400{
401 kmem_cache_free(mm_slot_cache, mm_slot);
402}
403
Izik Eidus31dbd012009-09-21 17:02:03 -0700404static struct mm_slot *get_mm_slot(struct mm_struct *mm)
405{
Sasha Levin4ca3a692013-02-22 16:32:28 -0800406 struct mm_slot *slot;
Izik Eidus31dbd012009-09-21 17:02:03 -0700407
Sasha Levinb67bfe02013-02-27 17:06:00 -0800408 hash_for_each_possible(mm_slots_hash, slot, link, (unsigned long)mm)
Sasha Levin4ca3a692013-02-22 16:32:28 -0800409 if (slot->mm == mm)
410 return slot;
411
Izik Eidus31dbd012009-09-21 17:02:03 -0700412 return NULL;
413}
414
415static void insert_to_mm_slots_hash(struct mm_struct *mm,
416 struct mm_slot *mm_slot)
417{
Izik Eidus31dbd012009-09-21 17:02:03 -0700418 mm_slot->mm = mm;
Sasha Levin4ca3a692013-02-22 16:32:28 -0800419 hash_add(mm_slots_hash, &mm_slot->link, (unsigned long)mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700420}
421
Izik Eidus31dbd012009-09-21 17:02:03 -0700422/*
Hugh Dickinsa913e182009-09-21 17:02:26 -0700423 * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's
424 * page tables after it has passed through ksm_exit() - which, if necessary,
425 * takes mmap_sem briefly to serialize against them. ksm_exit() does not set
426 * a special flag: they can just back out as soon as mm_users goes to zero.
427 * ksm_test_exit() is used throughout to make this test for exit: in some
428 * places for correctness, in some places just to avoid unnecessary work.
429 */
430static inline bool ksm_test_exit(struct mm_struct *mm)
431{
432 return atomic_read(&mm->mm_users) == 0;
433}
434
435/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700436 * We use break_ksm to break COW on a ksm page: it's a stripped down
437 *
Dave Hansend4edcf02016-02-12 13:01:56 -0800438 * if (get_user_pages(addr, 1, 1, 1, &page, NULL) == 1)
Izik Eidus31dbd012009-09-21 17:02:03 -0700439 * put_page(page);
440 *
441 * but taking great care only to touch a ksm page, in a VM_MERGEABLE vma,
442 * in case the application has unmapped and remapped mm,addr meanwhile.
443 * Could a ksm page appear anywhere else? Actually yes, in a VM_PFNMAP
444 * mmap of /dev/mem or /dev/kmem, where we would not want to touch it.
Dave Hansen1b2ee122016-02-12 13:02:21 -0800445 *
446 * FAULT_FLAG/FOLL_REMOTE are because we do this outside the context
447 * of the process that owns 'vma'. We also do not want to enforce
448 * protection keys here anyway.
Izik Eidus31dbd012009-09-21 17:02:03 -0700449 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700450static int break_ksm(struct vm_area_struct *vma, unsigned long addr)
Izik Eidus31dbd012009-09-21 17:02:03 -0700451{
452 struct page *page;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700453 int ret = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700454
455 do {
456 cond_resched();
Dave Hansen1b2ee122016-02-12 13:02:21 -0800457 page = follow_page(vma, addr,
458 FOLL_GET | FOLL_MIGRATION | FOLL_REMOTE);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400459 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700460 break;
461 if (PageKsm(page))
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700462 ret = handle_mm_fault(vma, addr,
463 FAULT_FLAG_WRITE | FAULT_FLAG_REMOTE);
Izik Eidus31dbd012009-09-21 17:02:03 -0700464 else
465 ret = VM_FAULT_WRITE;
466 put_page(page);
Linus Torvalds33692f22015-01-29 10:51:32 -0800467 } while (!(ret & (VM_FAULT_WRITE | VM_FAULT_SIGBUS | VM_FAULT_SIGSEGV | VM_FAULT_OOM)));
Hugh Dickinsd952b792009-09-21 17:02:16 -0700468 /*
469 * We must loop because handle_mm_fault() may back out if there's
470 * any difficulty e.g. if pte accessed bit gets updated concurrently.
471 *
472 * VM_FAULT_WRITE is what we have been hoping for: it indicates that
473 * COW has been broken, even if the vma does not permit VM_WRITE;
474 * but note that a concurrent fault might break PageKsm for us.
475 *
476 * VM_FAULT_SIGBUS could occur if we race with truncation of the
477 * backing file, which also invalidates anonymous pages: that's
478 * okay, that truncation will have unmapped the PageKsm for us.
479 *
480 * VM_FAULT_OOM: at the time of writing (late July 2009), setting
481 * aside mem_cgroup limits, VM_FAULT_OOM would only be set if the
482 * current task has TIF_MEMDIE set, and will be OOM killed on return
483 * to user; and ksmd, having no mm, would never be chosen for that.
484 *
485 * But if the mm is in a limited mem_cgroup, then the fault may fail
486 * with VM_FAULT_OOM even if the current task is not TIF_MEMDIE; and
487 * even ksmd can fail in this way - though it's usually breaking ksm
488 * just to undo a merge it made a moment before, so unlikely to oom.
489 *
490 * That's a pity: we might therefore have more kernel pages allocated
491 * than we're counting as nodes in the stable tree; but ksm_do_scan
492 * will retry to break_cow on each pass, so should recover the page
493 * in due course. The important thing is to not let VM_MERGEABLE
494 * be cleared while any such pages might remain in the area.
495 */
496 return (ret & VM_FAULT_OOM) ? -ENOMEM : 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700497}
498
Bob Liuef694222012-03-21 16:34:11 -0700499static struct vm_area_struct *find_mergeable_vma(struct mm_struct *mm,
500 unsigned long addr)
501{
502 struct vm_area_struct *vma;
503 if (ksm_test_exit(mm))
504 return NULL;
505 vma = find_vma(mm, addr);
506 if (!vma || vma->vm_start > addr)
507 return NULL;
508 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
509 return NULL;
510 return vma;
511}
512
Hugh Dickins8dd35572009-12-14 17:59:18 -0800513static void break_cow(struct rmap_item *rmap_item)
Izik Eidus31dbd012009-09-21 17:02:03 -0700514{
Hugh Dickins8dd35572009-12-14 17:59:18 -0800515 struct mm_struct *mm = rmap_item->mm;
516 unsigned long addr = rmap_item->address;
Izik Eidus31dbd012009-09-21 17:02:03 -0700517 struct vm_area_struct *vma;
518
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800519 /*
520 * It is not an accident that whenever we want to break COW
521 * to undo, we also need to drop a reference to the anon_vma.
522 */
Peter Zijlstra9e601092011-03-22 16:32:46 -0700523 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800524
Hugh Dickins81464e302009-09-21 17:02:15 -0700525 down_read(&mm->mmap_sem);
Bob Liuef694222012-03-21 16:34:11 -0700526 vma = find_mergeable_vma(mm, addr);
527 if (vma)
528 break_ksm(vma, addr);
Izik Eidus31dbd012009-09-21 17:02:03 -0700529 up_read(&mm->mmap_sem);
530}
531
532static struct page *get_mergeable_page(struct rmap_item *rmap_item)
533{
534 struct mm_struct *mm = rmap_item->mm;
535 unsigned long addr = rmap_item->address;
536 struct vm_area_struct *vma;
537 struct page *page;
538
539 down_read(&mm->mmap_sem);
Bob Liuef694222012-03-21 16:34:11 -0700540 vma = find_mergeable_vma(mm, addr);
541 if (!vma)
Izik Eidus31dbd012009-09-21 17:02:03 -0700542 goto out;
543
544 page = follow_page(vma, addr, FOLL_GET);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400545 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700546 goto out;
Kirill A. Shutemovf765f542016-01-15 16:53:03 -0800547 if (PageAnon(page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700548 flush_anon_page(vma, page, addr);
549 flush_dcache_page(page);
550 } else {
551 put_page(page);
Andrea Arcangelic8f95ed2015-11-05 18:49:19 -0800552out:
553 page = NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -0700554 }
555 up_read(&mm->mmap_sem);
556 return page;
557}
558
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800559/*
560 * This helper is used for getting right index into array of tree roots.
561 * When merge_across_nodes knob is set to 1, there are only two rb-trees for
562 * stable and unstable pages from all nodes with roots in index 0. Otherwise,
563 * every node has its own stable and unstable tree.
564 */
565static inline int get_kpfn_nid(unsigned long kpfn)
566{
Hugh Dickinsd8fc16a2013-03-08 12:43:34 -0800567 return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn));
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800568}
569
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700570static struct stable_node *alloc_stable_node_chain(struct stable_node *dup,
571 struct rb_root *root)
572{
573 struct stable_node *chain = alloc_stable_node();
574 VM_BUG_ON(is_stable_node_chain(dup));
575 if (likely(chain)) {
576 INIT_HLIST_HEAD(&chain->hlist);
577 chain->chain_prune_time = jiffies;
578 chain->rmap_hlist_len = STABLE_NODE_CHAIN;
579#if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA)
580 chain->nid = -1; /* debug */
581#endif
582 ksm_stable_node_chains++;
583
584 /*
585 * Put the stable node chain in the first dimension of
586 * the stable tree and at the same time remove the old
587 * stable node.
588 */
589 rb_replace_node(&dup->node, &chain->node, root);
590
591 /*
592 * Move the old stable node to the second dimension
593 * queued in the hlist_dup. The invariant is that all
594 * dup stable_nodes in the chain->hlist point to pages
595 * that are wrprotected and have the exact same
596 * content.
597 */
598 stable_node_chain_add_dup(dup, chain);
599 }
600 return chain;
601}
602
603static inline void free_stable_node_chain(struct stable_node *chain,
604 struct rb_root *root)
605{
606 rb_erase(&chain->node, root);
607 free_stable_node(chain);
608 ksm_stable_node_chains--;
609}
610
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800611static void remove_node_from_stable_tree(struct stable_node *stable_node)
612{
613 struct rmap_item *rmap_item;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800614
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700615 /* check it's not STABLE_NODE_CHAIN or negative */
616 BUG_ON(stable_node->rmap_hlist_len < 0);
617
Sasha Levinb67bfe02013-02-27 17:06:00 -0800618 hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800619 if (rmap_item->hlist.next)
620 ksm_pages_sharing--;
621 else
622 ksm_pages_shared--;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700623 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
624 stable_node->rmap_hlist_len--;
Peter Zijlstra9e601092011-03-22 16:32:46 -0700625 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800626 rmap_item->address &= PAGE_MASK;
627 cond_resched();
628 }
629
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700630 /*
631 * We need the second aligned pointer of the migrate_nodes
632 * list_head to stay clear from the rb_parent_color union
633 * (aligned and different than any node) and also different
634 * from &migrate_nodes. This will verify that future list.h changes
635 * don't break STABLE_NODE_DUP_HEAD.
636 */
637#if GCC_VERSION >= 40903 /* only recent gcc can handle it */
638 BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes);
639 BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1);
640#endif
641
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800642 if (stable_node->head == &migrate_nodes)
643 list_del(&stable_node->list);
644 else
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700645 stable_node_dup_del(stable_node);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800646 free_stable_node(stable_node);
647}
648
649/*
650 * get_ksm_page: checks if the page indicated by the stable node
651 * is still its ksm page, despite having held no reference to it.
652 * In which case we can trust the content of the page, and it
653 * returns the gotten page; but if the page has now been zapped,
654 * remove the stale node from the stable tree and return NULL.
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800655 * But beware, the stable node's page might be being migrated.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800656 *
657 * You would expect the stable_node to hold a reference to the ksm page.
658 * But if it increments the page's count, swapping out has to wait for
659 * ksmd to come around again before it can free the page, which may take
660 * seconds or even minutes: much too unresponsive. So instead we use a
661 * "keyhole reference": access to the ksm page from the stable node peeps
662 * out through its keyhole to see if that page still holds the right key,
663 * pointing back to this stable node. This relies on freeing a PageAnon
664 * page to reset its page->mapping to NULL, and relies on no other use of
665 * a page to put something that might look like our key in page->mapping.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800666 * is on its way to being freed; but it is an anomaly to bear in mind.
667 */
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800668static struct page *get_ksm_page(struct stable_node *stable_node, bool lock_it)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800669{
670 struct page *page;
671 void *expected_mapping;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800672 unsigned long kpfn;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800673
Minchan Kimbda807d2016-07-26 15:23:05 -0700674 expected_mapping = (void *)((unsigned long)stable_node |
675 PAGE_MAPPING_KSM);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800676again:
Jason Low4db0c3c2015-04-15 16:14:08 -0700677 kpfn = READ_ONCE(stable_node->kpfn);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800678 page = pfn_to_page(kpfn);
679
680 /*
681 * page is computed from kpfn, so on most architectures reading
682 * page->mapping is naturally ordered after reading node->kpfn,
683 * but on Alpha we need to be more careful.
684 */
685 smp_read_barrier_depends();
Jason Low4db0c3c2015-04-15 16:14:08 -0700686 if (READ_ONCE(page->mapping) != expected_mapping)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800687 goto stale;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800688
689 /*
690 * We cannot do anything with the page while its refcount is 0.
691 * Usually 0 means free, or tail of a higher-order page: in which
692 * case this node is no longer referenced, and should be freed;
693 * however, it might mean that the page is under page_freeze_refs().
694 * The __remove_mapping() case is easy, again the node is now stale;
695 * but if page is swapcache in migrate_page_move_mapping(), it might
696 * still be our page, in which case it's essential to keep the node.
697 */
698 while (!get_page_unless_zero(page)) {
699 /*
700 * Another check for page->mapping != expected_mapping would
701 * work here too. We have chosen the !PageSwapCache test to
702 * optimize the common case, when the page is or is about to
703 * be freed: PageSwapCache is cleared (under spin_lock_irq)
704 * in the freeze_refs section of __remove_mapping(); but Anon
705 * page->mapping reset to NULL later, in free_pages_prepare().
706 */
707 if (!PageSwapCache(page))
708 goto stale;
709 cpu_relax();
710 }
711
Jason Low4db0c3c2015-04-15 16:14:08 -0700712 if (READ_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800713 put_page(page);
714 goto stale;
715 }
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800716
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800717 if (lock_it) {
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800718 lock_page(page);
Jason Low4db0c3c2015-04-15 16:14:08 -0700719 if (READ_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800720 unlock_page(page);
721 put_page(page);
722 goto stale;
723 }
724 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800725 return page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800726
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800727stale:
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800728 /*
729 * We come here from above when page->mapping or !PageSwapCache
730 * suggests that the node is stale; but it might be under migration.
731 * We need smp_rmb(), matching the smp_wmb() in ksm_migrate_page(),
732 * before checking whether node->kpfn has been changed.
733 */
734 smp_rmb();
Jason Low4db0c3c2015-04-15 16:14:08 -0700735 if (READ_ONCE(stable_node->kpfn) != kpfn)
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800736 goto again;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800737 remove_node_from_stable_tree(stable_node);
738 return NULL;
739}
740
Izik Eidus31dbd012009-09-21 17:02:03 -0700741/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700742 * Removing rmap_item from stable or unstable tree.
743 * This function will clean the information from the stable/unstable tree.
744 */
745static void remove_rmap_item_from_tree(struct rmap_item *rmap_item)
746{
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800747 if (rmap_item->address & STABLE_FLAG) {
748 struct stable_node *stable_node;
Hugh Dickins5ad64682009-12-14 17:59:24 -0800749 struct page *page;
Izik Eidus31dbd012009-09-21 17:02:03 -0700750
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800751 stable_node = rmap_item->head;
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800752 page = get_ksm_page(stable_node, true);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800753 if (!page)
754 goto out;
755
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800756 hlist_del(&rmap_item->hlist);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800757 unlock_page(page);
758 put_page(page);
Hugh Dickins08beca42009-12-14 17:59:21 -0800759
Andrea Arcangeli98666f8a2015-11-05 18:49:13 -0800760 if (!hlist_empty(&stable_node->hlist))
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800761 ksm_pages_sharing--;
762 else
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800763 ksm_pages_shared--;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700764 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
765 stable_node->rmap_hlist_len--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700766
Peter Zijlstra9e601092011-03-22 16:32:46 -0700767 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins93d17712009-12-14 17:59:16 -0800768 rmap_item->address &= PAGE_MASK;
Izik Eidus31dbd012009-09-21 17:02:03 -0700769
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800770 } else if (rmap_item->address & UNSTABLE_FLAG) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700771 unsigned char age;
772 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -0700773 * Usually ksmd can and must skip the rb_erase, because
Izik Eidus31dbd012009-09-21 17:02:03 -0700774 * root_unstable_tree was already reset to RB_ROOT.
Hugh Dickins9ba69292009-09-21 17:02:20 -0700775 * But be careful when an mm is exiting: do the rb_erase
776 * if this rmap_item was inserted by this scan, rather
777 * than left over from before.
Izik Eidus31dbd012009-09-21 17:02:03 -0700778 */
779 age = (unsigned char)(ksm_scan.seqnr - rmap_item->address);
Hugh Dickinscd551f92009-09-21 17:02:17 -0700780 BUG_ON(age > 1);
Izik Eidus31dbd012009-09-21 17:02:03 -0700781 if (!age)
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800782 rb_erase(&rmap_item->node,
Hugh Dickinsef53d162013-02-22 16:36:12 -0800783 root_unstable_tree + NUMA(rmap_item->nid));
Hugh Dickins93d17712009-12-14 17:59:16 -0800784 ksm_pages_unshared--;
785 rmap_item->address &= PAGE_MASK;
786 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800787out:
Izik Eidus31dbd012009-09-21 17:02:03 -0700788 cond_resched(); /* we're called from many long loops */
789}
790
Izik Eidus31dbd012009-09-21 17:02:03 -0700791static void remove_trailing_rmap_items(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -0800792 struct rmap_item **rmap_list)
Izik Eidus31dbd012009-09-21 17:02:03 -0700793{
Hugh Dickins6514d512009-12-14 17:59:19 -0800794 while (*rmap_list) {
795 struct rmap_item *rmap_item = *rmap_list;
796 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700797 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -0700798 free_rmap_item(rmap_item);
799 }
800}
801
802/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800803 * Though it's very tempting to unmerge rmap_items from stable tree rather
Izik Eidus31dbd012009-09-21 17:02:03 -0700804 * than check every pte of a given vma, the locking doesn't quite work for
805 * that - an rmap_item is assigned to the stable tree after inserting ksm
806 * page and upping mmap_sem. Nor does it fit with the way we skip dup'ing
807 * rmap_items from parent to child at fork time (so as not to waste time
808 * if exit comes before the next scan reaches it).
Hugh Dickins81464e302009-09-21 17:02:15 -0700809 *
810 * Similarly, although we'd like to remove rmap_items (so updating counts
811 * and freeing memory) when unmerging an area, it's easier to leave that
812 * to the next pass of ksmd - consider, for example, how ksmd might be
813 * in cmp_and_merge_page on one of the rmap_items we would be removing.
Izik Eidus31dbd012009-09-21 17:02:03 -0700814 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700815static int unmerge_ksm_pages(struct vm_area_struct *vma,
816 unsigned long start, unsigned long end)
Izik Eidus31dbd012009-09-21 17:02:03 -0700817{
818 unsigned long addr;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700819 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700820
Hugh Dickinsd952b792009-09-21 17:02:16 -0700821 for (addr = start; addr < end && !err; addr += PAGE_SIZE) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700822 if (ksm_test_exit(vma->vm_mm))
823 break;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700824 if (signal_pending(current))
825 err = -ERESTARTSYS;
826 else
827 err = break_ksm(vma, addr);
828 }
829 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -0700830}
831
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700832#ifdef CONFIG_SYSFS
833/*
834 * Only called through the sysfs control interface:
835 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800836static int remove_stable_node(struct stable_node *stable_node)
837{
838 struct page *page;
839 int err;
840
841 page = get_ksm_page(stable_node, true);
842 if (!page) {
843 /*
844 * get_ksm_page did remove_node_from_stable_tree itself.
845 */
846 return 0;
847 }
848
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800849 if (WARN_ON_ONCE(page_mapped(page))) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800850 /*
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800851 * This should not happen: but if it does, just refuse to let
852 * merge_across_nodes be switched - there is no need to panic.
853 */
854 err = -EBUSY;
855 } else {
856 /*
857 * The stable node did not yet appear stale to get_ksm_page(),
858 * since that allows for an unmapped ksm page to be recognized
859 * right up until it is freed; but the node is safe to remove.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800860 * This page might be in a pagevec waiting to be freed,
861 * or it might be PageSwapCache (perhaps under writeback),
862 * or it might have been removed from swapcache a moment ago.
863 */
864 set_page_stable_node(page, NULL);
865 remove_node_from_stable_tree(stable_node);
866 err = 0;
867 }
868
869 unlock_page(page);
870 put_page(page);
871 return err;
872}
873
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700874static int remove_stable_node_chain(struct stable_node *stable_node,
875 struct rb_root *root)
876{
877 struct stable_node *dup;
878 struct hlist_node *hlist_safe;
879
880 if (!is_stable_node_chain(stable_node)) {
881 VM_BUG_ON(is_stable_node_dup(stable_node));
882 if (remove_stable_node(stable_node))
883 return true;
884 else
885 return false;
886 }
887
888 hlist_for_each_entry_safe(dup, hlist_safe,
889 &stable_node->hlist, hlist_dup) {
890 VM_BUG_ON(!is_stable_node_dup(dup));
891 if (remove_stable_node(dup))
892 return true;
893 }
894 BUG_ON(!hlist_empty(&stable_node->hlist));
895 free_stable_node_chain(stable_node, root);
896 return false;
897}
898
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800899static int remove_all_stable_nodes(void)
900{
Geliang Tang03640412016-01-14 15:20:54 -0800901 struct stable_node *stable_node, *next;
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800902 int nid;
903 int err = 0;
904
Hugh Dickinsef53d162013-02-22 16:36:12 -0800905 for (nid = 0; nid < ksm_nr_node_ids; nid++) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800906 while (root_stable_tree[nid].rb_node) {
907 stable_node = rb_entry(root_stable_tree[nid].rb_node,
908 struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700909 if (remove_stable_node_chain(stable_node,
910 root_stable_tree + nid)) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800911 err = -EBUSY;
912 break; /* proceed to next nid */
913 }
914 cond_resched();
915 }
916 }
Geliang Tang03640412016-01-14 15:20:54 -0800917 list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800918 if (remove_stable_node(stable_node))
919 err = -EBUSY;
920 cond_resched();
921 }
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800922 return err;
923}
924
Hugh Dickinsd952b792009-09-21 17:02:16 -0700925static int unmerge_and_remove_all_rmap_items(void)
Izik Eidus31dbd012009-09-21 17:02:03 -0700926{
927 struct mm_slot *mm_slot;
928 struct mm_struct *mm;
929 struct vm_area_struct *vma;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700930 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700931
Hugh Dickinsd952b792009-09-21 17:02:16 -0700932 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700933 ksm_scan.mm_slot = list_entry(ksm_mm_head.mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700934 struct mm_slot, mm_list);
935 spin_unlock(&ksm_mmlist_lock);
936
Hugh Dickins9ba69292009-09-21 17:02:20 -0700937 for (mm_slot = ksm_scan.mm_slot;
938 mm_slot != &ksm_mm_head; mm_slot = ksm_scan.mm_slot) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700939 mm = mm_slot->mm;
940 down_read(&mm->mmap_sem);
941 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700942 if (ksm_test_exit(mm))
943 break;
Izik Eidus31dbd012009-09-21 17:02:03 -0700944 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
945 continue;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700946 err = unmerge_ksm_pages(vma,
947 vma->vm_start, vma->vm_end);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700948 if (err)
949 goto error;
Izik Eidus31dbd012009-09-21 17:02:03 -0700950 }
Hugh Dickins9ba69292009-09-21 17:02:20 -0700951
Hugh Dickins6514d512009-12-14 17:59:19 -0800952 remove_trailing_rmap_items(mm_slot, &mm_slot->rmap_list);
Zhou Chengming7496fea2016-05-12 15:42:21 -0700953 up_read(&mm->mmap_sem);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700954
955 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700956 ksm_scan.mm_slot = list_entry(mm_slot->mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700957 struct mm_slot, mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700958 if (ksm_test_exit(mm)) {
Sasha Levin4ca3a692013-02-22 16:32:28 -0800959 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700960 list_del(&mm_slot->mm_list);
961 spin_unlock(&ksm_mmlist_lock);
962
963 free_mm_slot(mm_slot);
964 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700965 mmdrop(mm);
Zhou Chengming7496fea2016-05-12 15:42:21 -0700966 } else
Hugh Dickins9ba69292009-09-21 17:02:20 -0700967 spin_unlock(&ksm_mmlist_lock);
Izik Eidus31dbd012009-09-21 17:02:03 -0700968 }
969
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800970 /* Clean up stable nodes, but don't worry if some are still busy */
971 remove_all_stable_nodes();
Hugh Dickinsd952b792009-09-21 17:02:16 -0700972 ksm_scan.seqnr = 0;
Hugh Dickins9ba69292009-09-21 17:02:20 -0700973 return 0;
974
975error:
976 up_read(&mm->mmap_sem);
Izik Eidus31dbd012009-09-21 17:02:03 -0700977 spin_lock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700978 ksm_scan.mm_slot = &ksm_mm_head;
Izik Eidus31dbd012009-09-21 17:02:03 -0700979 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700980 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -0700981}
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700982#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -0700983
Izik Eidus31dbd012009-09-21 17:02:03 -0700984static u32 calc_checksum(struct page *page)
985{
986 u32 checksum;
Cong Wang9b04c5f2011-11-25 23:14:39 +0800987 void *addr = kmap_atomic(page);
Izik Eidus31dbd012009-09-21 17:02:03 -0700988 checksum = jhash2(addr, PAGE_SIZE / 4, 17);
Cong Wang9b04c5f2011-11-25 23:14:39 +0800989 kunmap_atomic(addr);
Izik Eidus31dbd012009-09-21 17:02:03 -0700990 return checksum;
991}
992
993static int memcmp_pages(struct page *page1, struct page *page2)
994{
995 char *addr1, *addr2;
996 int ret;
997
Cong Wang9b04c5f2011-11-25 23:14:39 +0800998 addr1 = kmap_atomic(page1);
999 addr2 = kmap_atomic(page2);
Izik Eidus31dbd012009-09-21 17:02:03 -07001000 ret = memcmp(addr1, addr2, PAGE_SIZE);
Cong Wang9b04c5f2011-11-25 23:14:39 +08001001 kunmap_atomic(addr2);
1002 kunmap_atomic(addr1);
Izik Eidus31dbd012009-09-21 17:02:03 -07001003 return ret;
1004}
1005
1006static inline int pages_identical(struct page *page1, struct page *page2)
1007{
1008 return !memcmp_pages(page1, page2);
1009}
1010
1011static int write_protect_page(struct vm_area_struct *vma, struct page *page,
1012 pte_t *orig_pte)
1013{
1014 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001015 struct page_vma_mapped_walk pvmw = {
1016 .page = page,
1017 .vma = vma,
1018 };
Izik Eidus31dbd012009-09-21 17:02:03 -07001019 int swapped;
1020 int err = -EFAULT;
Haggai Eran6bdb9132012-10-08 16:33:35 -07001021 unsigned long mmun_start; /* For mmu_notifiers */
1022 unsigned long mmun_end; /* For mmu_notifiers */
Izik Eidus31dbd012009-09-21 17:02:03 -07001023
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001024 pvmw.address = page_address_in_vma(page, vma);
1025 if (pvmw.address == -EFAULT)
Izik Eidus31dbd012009-09-21 17:02:03 -07001026 goto out;
1027
Andrea Arcangeli29ad7682011-01-13 15:47:19 -08001028 BUG_ON(PageTransCompound(page));
Haggai Eran6bdb9132012-10-08 16:33:35 -07001029
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001030 mmun_start = pvmw.address;
1031 mmun_end = pvmw.address + PAGE_SIZE;
Haggai Eran6bdb9132012-10-08 16:33:35 -07001032 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
1033
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001034 if (!page_vma_mapped_walk(&pvmw))
Haggai Eran6bdb9132012-10-08 16:33:35 -07001035 goto out_mn;
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001036 if (WARN_ONCE(!pvmw.pte, "Unexpected PMD mapping?"))
1037 goto out_unlock;
Izik Eidus31dbd012009-09-21 17:02:03 -07001038
Aneesh Kumar K.V595cd8f2017-02-24 14:59:19 -08001039 if (pte_write(*pvmw.pte) || pte_dirty(*pvmw.pte) ||
1040 (pte_protnone(*pvmw.pte) && pte_savedwrite(*pvmw.pte))) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001041 pte_t entry;
1042
1043 swapped = PageSwapCache(page);
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001044 flush_cache_page(vma, pvmw.address, page_to_pfn(page));
Izik Eidus31dbd012009-09-21 17:02:03 -07001045 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001046 * Ok this is tricky, when get_user_pages_fast() run it doesn't
Izik Eidus31dbd012009-09-21 17:02:03 -07001047 * take any lock, therefore the check that we are going to make
1048 * with the pagecount against the mapcount is racey and
1049 * O_DIRECT can happen right after the check.
1050 * So we clear the pte and flush the tlb before the check
1051 * this assure us that no O_DIRECT can happen after the check
1052 * or in the middle of the check.
1053 */
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001054 entry = ptep_clear_flush_notify(vma, pvmw.address, pvmw.pte);
Izik Eidus31dbd012009-09-21 17:02:03 -07001055 /*
1056 * Check that no O_DIRECT or similar I/O is in progress on the
1057 * page
1058 */
Hugh Dickins31e855e2009-12-14 17:59:17 -08001059 if (page_mapcount(page) + 1 + swapped != page_count(page)) {
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001060 set_pte_at(mm, pvmw.address, pvmw.pte, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -07001061 goto out_unlock;
1062 }
Hugh Dickins4e316352010-10-02 17:49:08 -07001063 if (pte_dirty(entry))
1064 set_page_dirty(page);
Aneesh Kumar K.V595cd8f2017-02-24 14:59:19 -08001065
1066 if (pte_protnone(entry))
1067 entry = pte_mkclean(pte_clear_savedwrite(entry));
1068 else
1069 entry = pte_mkclean(pte_wrprotect(entry));
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001070 set_pte_at_notify(mm, pvmw.address, pvmw.pte, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -07001071 }
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001072 *orig_pte = *pvmw.pte;
Izik Eidus31dbd012009-09-21 17:02:03 -07001073 err = 0;
1074
1075out_unlock:
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001076 page_vma_mapped_walk_done(&pvmw);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001077out_mn:
1078 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Izik Eidus31dbd012009-09-21 17:02:03 -07001079out:
1080 return err;
1081}
1082
1083/**
1084 * replace_page - replace page in vma by new ksm page
Hugh Dickins8dd35572009-12-14 17:59:18 -08001085 * @vma: vma that holds the pte pointing to page
1086 * @page: the page we are replacing by kpage
1087 * @kpage: the ksm page we replace page by
Izik Eidus31dbd012009-09-21 17:02:03 -07001088 * @orig_pte: the original value of the pte
1089 *
1090 * Returns 0 on success, -EFAULT on failure.
1091 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001092static int replace_page(struct vm_area_struct *vma, struct page *page,
1093 struct page *kpage, pte_t orig_pte)
Izik Eidus31dbd012009-09-21 17:02:03 -07001094{
1095 struct mm_struct *mm = vma->vm_mm;
Izik Eidus31dbd012009-09-21 17:02:03 -07001096 pmd_t *pmd;
1097 pte_t *ptep;
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001098 pte_t newpte;
Izik Eidus31dbd012009-09-21 17:02:03 -07001099 spinlock_t *ptl;
1100 unsigned long addr;
Izik Eidus31dbd012009-09-21 17:02:03 -07001101 int err = -EFAULT;
Haggai Eran6bdb9132012-10-08 16:33:35 -07001102 unsigned long mmun_start; /* For mmu_notifiers */
1103 unsigned long mmun_end; /* For mmu_notifiers */
Izik Eidus31dbd012009-09-21 17:02:03 -07001104
Hugh Dickins8dd35572009-12-14 17:59:18 -08001105 addr = page_address_in_vma(page, vma);
Izik Eidus31dbd012009-09-21 17:02:03 -07001106 if (addr == -EFAULT)
1107 goto out;
1108
Bob Liu62190492012-12-11 16:00:37 -08001109 pmd = mm_find_pmd(mm, addr);
1110 if (!pmd)
Izik Eidus31dbd012009-09-21 17:02:03 -07001111 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001112
Haggai Eran6bdb9132012-10-08 16:33:35 -07001113 mmun_start = addr;
1114 mmun_end = addr + PAGE_SIZE;
1115 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
1116
Izik Eidus31dbd012009-09-21 17:02:03 -07001117 ptep = pte_offset_map_lock(mm, pmd, addr, &ptl);
1118 if (!pte_same(*ptep, orig_pte)) {
1119 pte_unmap_unlock(ptep, ptl);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001120 goto out_mn;
Izik Eidus31dbd012009-09-21 17:02:03 -07001121 }
1122
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001123 /*
1124 * No need to check ksm_use_zero_pages here: we can only have a
1125 * zero_page here if ksm_use_zero_pages was enabled alreaady.
1126 */
1127 if (!is_zero_pfn(page_to_pfn(kpage))) {
1128 get_page(kpage);
1129 page_add_anon_rmap(kpage, vma, addr, false);
1130 newpte = mk_pte(kpage, vma->vm_page_prot);
1131 } else {
1132 newpte = pte_mkspecial(pfn_pte(page_to_pfn(kpage),
1133 vma->vm_page_prot));
1134 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001135
1136 flush_cache_page(vma, addr, pte_pfn(*ptep));
Joerg Roedel34ee6452014-11-13 13:46:09 +11001137 ptep_clear_flush_notify(vma, addr, ptep);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001138 set_pte_at_notify(mm, addr, ptep, newpte);
Izik Eidus31dbd012009-09-21 17:02:03 -07001139
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001140 page_remove_rmap(page, false);
Hugh Dickinsae52a2a2011-01-13 15:46:28 -08001141 if (!page_mapped(page))
1142 try_to_free_swap(page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001143 put_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001144
1145 pte_unmap_unlock(ptep, ptl);
1146 err = 0;
Haggai Eran6bdb9132012-10-08 16:33:35 -07001147out_mn:
1148 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Izik Eidus31dbd012009-09-21 17:02:03 -07001149out:
1150 return err;
1151}
1152
1153/*
1154 * try_to_merge_one_page - take two pages and merge them into one
Hugh Dickins8dd35572009-12-14 17:59:18 -08001155 * @vma: the vma that holds the pte pointing to page
1156 * @page: the PageAnon page that we want to replace with kpage
Hugh Dickins80e148222009-12-14 17:59:29 -08001157 * @kpage: the PageKsm page that we want to map instead of page,
1158 * or NULL the first time when we want to use page as kpage.
Izik Eidus31dbd012009-09-21 17:02:03 -07001159 *
1160 * This function returns 0 if the pages were merged, -EFAULT otherwise.
1161 */
1162static int try_to_merge_one_page(struct vm_area_struct *vma,
Hugh Dickins8dd35572009-12-14 17:59:18 -08001163 struct page *page, struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001164{
1165 pte_t orig_pte = __pte(0);
1166 int err = -EFAULT;
1167
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001168 if (page == kpage) /* ksm page forked */
1169 return 0;
1170
Hugh Dickins8dd35572009-12-14 17:59:18 -08001171 if (!PageAnon(page))
Izik Eidus31dbd012009-09-21 17:02:03 -07001172 goto out;
1173
Izik Eidus31dbd012009-09-21 17:02:03 -07001174 /*
1175 * We need the page lock to read a stable PageSwapCache in
1176 * write_protect_page(). We use trylock_page() instead of
1177 * lock_page() because we don't want to wait here - we
1178 * prefer to continue scanning and merging different pages,
1179 * then come back to this page when it is unlocked.
1180 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001181 if (!trylock_page(page))
Hugh Dickins31e855e2009-12-14 17:59:17 -08001182 goto out;
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001183
1184 if (PageTransCompound(page)) {
Andrea Arcangelia7306c32017-06-02 14:46:11 -07001185 if (split_huge_page(page))
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001186 goto out_unlock;
1187 }
1188
Izik Eidus31dbd012009-09-21 17:02:03 -07001189 /*
1190 * If this anonymous page is mapped only here, its pte may need
1191 * to be write-protected. If it's mapped elsewhere, all of its
1192 * ptes are necessarily already write-protected. But in either
1193 * case, we need to lock and check page_count is not raised.
1194 */
Hugh Dickins80e148222009-12-14 17:59:29 -08001195 if (write_protect_page(vma, page, &orig_pte) == 0) {
1196 if (!kpage) {
1197 /*
1198 * While we hold page lock, upgrade page from
1199 * PageAnon+anon_vma to PageKsm+NULL stable_node:
1200 * stable_tree_insert() will update stable_node.
1201 */
1202 set_page_stable_node(page, NULL);
1203 mark_page_accessed(page);
Minchan Kim337ed7e2016-01-15 16:55:15 -08001204 /*
1205 * Page reclaim just frees a clean page with no dirty
1206 * ptes: make sure that the ksm page would be swapped.
1207 */
1208 if (!PageDirty(page))
1209 SetPageDirty(page);
Hugh Dickins80e148222009-12-14 17:59:29 -08001210 err = 0;
1211 } else if (pages_identical(page, kpage))
1212 err = replace_page(vma, page, kpage, orig_pte);
1213 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001214
Hugh Dickins80e148222009-12-14 17:59:29 -08001215 if ((vma->vm_flags & VM_LOCKED) && kpage && !err) {
Hugh Dickins73848b42009-12-14 17:59:22 -08001216 munlock_vma_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001217 if (!PageMlocked(kpage)) {
1218 unlock_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001219 lock_page(kpage);
1220 mlock_vma_page(kpage);
1221 page = kpage; /* for final unlock */
1222 }
1223 }
Hugh Dickins73848b42009-12-14 17:59:22 -08001224
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001225out_unlock:
Hugh Dickins8dd35572009-12-14 17:59:18 -08001226 unlock_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001227out:
1228 return err;
1229}
1230
1231/*
Hugh Dickins81464e302009-09-21 17:02:15 -07001232 * try_to_merge_with_ksm_page - like try_to_merge_two_pages,
1233 * but no new kernel page is allocated: kpage must already be a ksm page.
Hugh Dickins8dd35572009-12-14 17:59:18 -08001234 *
1235 * This function returns 0 if the pages were merged, -EFAULT otherwise.
Hugh Dickins81464e302009-09-21 17:02:15 -07001236 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001237static int try_to_merge_with_ksm_page(struct rmap_item *rmap_item,
1238 struct page *page, struct page *kpage)
Hugh Dickins81464e302009-09-21 17:02:15 -07001239{
Hugh Dickins8dd35572009-12-14 17:59:18 -08001240 struct mm_struct *mm = rmap_item->mm;
Hugh Dickins81464e302009-09-21 17:02:15 -07001241 struct vm_area_struct *vma;
1242 int err = -EFAULT;
1243
Hugh Dickins8dd35572009-12-14 17:59:18 -08001244 down_read(&mm->mmap_sem);
Andrea Arcangeli85c6e8d2015-11-05 18:49:16 -08001245 vma = find_mergeable_vma(mm, rmap_item->address);
1246 if (!vma)
Hugh Dickins9ba69292009-09-21 17:02:20 -07001247 goto out;
1248
Hugh Dickins8dd35572009-12-14 17:59:18 -08001249 err = try_to_merge_one_page(vma, page, kpage);
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001250 if (err)
1251 goto out;
1252
Hugh Dickinsbc566202013-02-22 16:36:06 -08001253 /* Unstable nid is in union with stable anon_vma: remove first */
1254 remove_rmap_item_from_tree(rmap_item);
1255
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001256 /* Must get reference to anon_vma while still holding mmap_sem */
Peter Zijlstra9e601092011-03-22 16:32:46 -07001257 rmap_item->anon_vma = vma->anon_vma;
1258 get_anon_vma(vma->anon_vma);
Hugh Dickins81464e302009-09-21 17:02:15 -07001259out:
Hugh Dickins8dd35572009-12-14 17:59:18 -08001260 up_read(&mm->mmap_sem);
Hugh Dickins81464e302009-09-21 17:02:15 -07001261 return err;
1262}
1263
1264/*
Izik Eidus31dbd012009-09-21 17:02:03 -07001265 * try_to_merge_two_pages - take two identical pages and prepare them
1266 * to be merged into one page.
1267 *
Hugh Dickins8dd35572009-12-14 17:59:18 -08001268 * This function returns the kpage if we successfully merged two identical
1269 * pages into one ksm page, NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001270 *
Hugh Dickins80e148222009-12-14 17:59:29 -08001271 * Note that this function upgrades page to ksm page: if one of the pages
Izik Eidus31dbd012009-09-21 17:02:03 -07001272 * is already a ksm page, try_to_merge_with_ksm_page should be used.
1273 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001274static struct page *try_to_merge_two_pages(struct rmap_item *rmap_item,
1275 struct page *page,
1276 struct rmap_item *tree_rmap_item,
1277 struct page *tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001278{
Hugh Dickins80e148222009-12-14 17:59:29 -08001279 int err;
Izik Eidus31dbd012009-09-21 17:02:03 -07001280
Hugh Dickins80e148222009-12-14 17:59:29 -08001281 err = try_to_merge_with_ksm_page(rmap_item, page, NULL);
Izik Eidus31dbd012009-09-21 17:02:03 -07001282 if (!err) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001283 err = try_to_merge_with_ksm_page(tree_rmap_item,
Hugh Dickins80e148222009-12-14 17:59:29 -08001284 tree_page, page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001285 /*
Hugh Dickins81464e302009-09-21 17:02:15 -07001286 * If that fails, we have a ksm page with only one pte
1287 * pointing to it: so break it.
Izik Eidus31dbd012009-09-21 17:02:03 -07001288 */
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001289 if (err)
Hugh Dickins8dd35572009-12-14 17:59:18 -08001290 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001291 }
Hugh Dickins80e148222009-12-14 17:59:29 -08001292 return err ? NULL : page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001293}
1294
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001295static __always_inline
1296bool __is_page_sharing_candidate(struct stable_node *stable_node, int offset)
1297{
1298 VM_BUG_ON(stable_node->rmap_hlist_len < 0);
1299 /*
1300 * Check that at least one mapping still exists, otherwise
1301 * there's no much point to merge and share with this
1302 * stable_node, as the underlying tree_page of the other
1303 * sharer is going to be freed soon.
1304 */
1305 return stable_node->rmap_hlist_len &&
1306 stable_node->rmap_hlist_len + offset < ksm_max_page_sharing;
1307}
1308
1309static __always_inline
1310bool is_page_sharing_candidate(struct stable_node *stable_node)
1311{
1312 return __is_page_sharing_candidate(stable_node, 0);
1313}
1314
1315static struct stable_node *stable_node_dup(struct stable_node *stable_node,
1316 struct page **tree_page,
1317 struct rb_root *root,
1318 bool prune_stale_stable_nodes)
1319{
1320 struct stable_node *dup, *found = NULL;
1321 struct hlist_node *hlist_safe;
1322 struct page *_tree_page;
1323 int nr = 0;
1324 int found_rmap_hlist_len;
1325
1326 if (!prune_stale_stable_nodes ||
1327 time_before(jiffies, stable_node->chain_prune_time +
1328 msecs_to_jiffies(
1329 ksm_stable_node_chains_prune_millisecs)))
1330 prune_stale_stable_nodes = false;
1331 else
1332 stable_node->chain_prune_time = jiffies;
1333
1334 hlist_for_each_entry_safe(dup, hlist_safe,
1335 &stable_node->hlist, hlist_dup) {
1336 cond_resched();
1337 /*
1338 * We must walk all stable_node_dup to prune the stale
1339 * stable nodes during lookup.
1340 *
1341 * get_ksm_page can drop the nodes from the
1342 * stable_node->hlist if they point to freed pages
1343 * (that's why we do a _safe walk). The "dup"
1344 * stable_node parameter itself will be freed from
1345 * under us if it returns NULL.
1346 */
1347 _tree_page = get_ksm_page(dup, false);
1348 if (!_tree_page)
1349 continue;
1350 nr += 1;
1351 if (is_page_sharing_candidate(dup)) {
1352 if (!found ||
1353 dup->rmap_hlist_len > found_rmap_hlist_len) {
1354 if (found)
1355 put_page(*tree_page);
1356 found = dup;
1357 found_rmap_hlist_len = found->rmap_hlist_len;
1358 *tree_page = _tree_page;
1359
1360 if (!prune_stale_stable_nodes)
1361 break;
1362 /* skip put_page */
1363 continue;
1364 }
1365 }
1366 put_page(_tree_page);
1367 }
1368
1369 /*
1370 * nr is relevant only if prune_stale_stable_nodes is true,
1371 * otherwise we may break the loop at nr == 1 even if there
1372 * are multiple entries.
1373 */
1374 if (prune_stale_stable_nodes && found) {
1375 if (nr == 1) {
1376 /*
1377 * If there's not just one entry it would
1378 * corrupt memory, better BUG_ON. In KSM
1379 * context with no lock held it's not even
1380 * fatal.
1381 */
1382 BUG_ON(stable_node->hlist.first->next);
1383
1384 /*
1385 * There's just one entry and it is below the
1386 * deduplication limit so drop the chain.
1387 */
1388 rb_replace_node(&stable_node->node, &found->node,
1389 root);
1390 free_stable_node(stable_node);
1391 ksm_stable_node_chains--;
1392 ksm_stable_node_dups--;
1393 } else if (__is_page_sharing_candidate(found, 1)) {
1394 /*
1395 * Refile our candidate at the head
1396 * after the prune if our candidate
1397 * can accept one more future sharing
1398 * in addition to the one underway.
1399 */
1400 hlist_del(&found->hlist_dup);
1401 hlist_add_head(&found->hlist_dup,
1402 &stable_node->hlist);
1403 }
1404 }
1405
1406 return found;
1407}
1408
1409static struct stable_node *stable_node_dup_any(struct stable_node *stable_node,
1410 struct rb_root *root)
1411{
1412 if (!is_stable_node_chain(stable_node))
1413 return stable_node;
1414 if (hlist_empty(&stable_node->hlist)) {
1415 free_stable_node_chain(stable_node, root);
1416 return NULL;
1417 }
1418 return hlist_entry(stable_node->hlist.first,
1419 typeof(*stable_node), hlist_dup);
1420}
1421
1422static struct stable_node *__stable_node_chain(struct stable_node *stable_node,
1423 struct page **tree_page,
1424 struct rb_root *root,
1425 bool prune_stale_stable_nodes)
1426{
1427 if (!is_stable_node_chain(stable_node)) {
1428 if (is_page_sharing_candidate(stable_node)) {
1429 *tree_page = get_ksm_page(stable_node, false);
1430 return stable_node;
1431 }
1432 return NULL;
1433 }
1434 return stable_node_dup(stable_node, tree_page, root,
1435 prune_stale_stable_nodes);
1436}
1437
1438static __always_inline struct stable_node *chain_prune(struct stable_node *s_n,
1439 struct page **t_p,
1440 struct rb_root *root)
1441{
1442 return __stable_node_chain(s_n, t_p, root, true);
1443}
1444
1445static __always_inline struct stable_node *chain(struct stable_node *s_n,
1446 struct page **t_p,
1447 struct rb_root *root)
1448{
1449 return __stable_node_chain(s_n, t_p, root, false);
1450}
1451
Izik Eidus31dbd012009-09-21 17:02:03 -07001452/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001453 * stable_tree_search - search for page inside the stable tree
Izik Eidus31dbd012009-09-21 17:02:03 -07001454 *
1455 * This function checks if there is a page inside the stable tree
1456 * with identical content to the page that we are scanning right now.
1457 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001458 * This function returns the stable tree node of identical content if found,
Izik Eidus31dbd012009-09-21 17:02:03 -07001459 * NULL otherwise.
1460 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001461static struct page *stable_tree_search(struct page *page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001462{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001463 int nid;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001464 struct rb_root *root;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001465 struct rb_node **new;
1466 struct rb_node *parent;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001467 struct stable_node *stable_node, *stable_node_dup, *stable_node_any;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001468 struct stable_node *page_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001469
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001470 page_node = page_stable_node(page);
1471 if (page_node && page_node->head != &migrate_nodes) {
1472 /* ksm page forked */
Hugh Dickins08beca42009-12-14 17:59:21 -08001473 get_page(page);
Hugh Dickins62b61f62009-12-14 17:59:33 -08001474 return page;
Hugh Dickins08beca42009-12-14 17:59:21 -08001475 }
1476
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001477 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickinsef53d162013-02-22 16:36:12 -08001478 root = root_stable_tree + nid;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001479again:
Hugh Dickinsef53d162013-02-22 16:36:12 -08001480 new = &root->rb_node;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001481 parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001482
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001483 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001484 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001485 int ret;
1486
Hugh Dickins08beca42009-12-14 17:59:21 -08001487 cond_resched();
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001488 stable_node = rb_entry(*new, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001489 stable_node_any = NULL;
1490 stable_node_dup = chain_prune(stable_node, &tree_page, root);
1491 if (!stable_node_dup) {
1492 /*
1493 * Either all stable_node dups were full in
1494 * this stable_node chain, or this chain was
1495 * empty and should be rb_erased.
1496 */
1497 stable_node_any = stable_node_dup_any(stable_node,
1498 root);
1499 if (!stable_node_any) {
1500 /* rb_erase just run */
1501 goto again;
1502 }
1503 /*
1504 * Take any of the stable_node dups page of
1505 * this stable_node chain to let the tree walk
1506 * continue. All KSM pages belonging to the
1507 * stable_node dups in a stable_node chain
1508 * have the same content and they're
1509 * wrprotected at all times. Any will work
1510 * fine to continue the walk.
1511 */
1512 tree_page = get_ksm_page(stable_node_any, false);
1513 }
1514 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001515 if (!tree_page) {
1516 /*
1517 * If we walked over a stale stable_node,
1518 * get_ksm_page() will call rb_erase() and it
1519 * may rebalance the tree from under us. So
1520 * restart the search from scratch. Returning
1521 * NULL would be safe too, but we'd generate
1522 * false negative insertions just because some
1523 * stable_node was stale.
1524 */
1525 goto again;
1526 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001527
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001528 ret = memcmp_pages(page, tree_page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001529 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001530
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001531 parent = *new;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001532 if (ret < 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001533 new = &parent->rb_left;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001534 else if (ret > 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001535 new = &parent->rb_right;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001536 else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001537 if (page_node) {
1538 VM_BUG_ON(page_node->head != &migrate_nodes);
1539 /*
1540 * Test if the migrated page should be merged
1541 * into a stable node dup. If the mapcount is
1542 * 1 we can migrate it with another KSM page
1543 * without adding it to the chain.
1544 */
1545 if (page_mapcount(page) > 1)
1546 goto chain_append;
1547 }
1548
1549 if (!stable_node_dup) {
1550 /*
1551 * If the stable_node is a chain and
1552 * we got a payload match in memcmp
1553 * but we cannot merge the scanned
1554 * page in any of the existing
1555 * stable_node dups because they're
1556 * all full, we need to wait the
1557 * scanned page to find itself a match
1558 * in the unstable tree to create a
1559 * brand new KSM page to add later to
1560 * the dups of this stable_node.
1561 */
1562 return NULL;
1563 }
1564
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001565 /*
1566 * Lock and unlock the stable_node's page (which
1567 * might already have been migrated) so that page
1568 * migration is sure to notice its raised count.
1569 * It would be more elegant to return stable_node
1570 * than kpage, but that involves more changes.
1571 */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001572 tree_page = get_ksm_page(stable_node_dup, true);
1573 if (unlikely(!tree_page))
1574 /*
1575 * The tree may have been rebalanced,
1576 * so re-evaluate parent and new.
1577 */
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001578 goto again;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001579 unlock_page(tree_page);
1580
1581 if (get_kpfn_nid(stable_node_dup->kpfn) !=
1582 NUMA(stable_node_dup->nid)) {
1583 put_page(tree_page);
1584 goto replace;
1585 }
1586 return tree_page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001587 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001588 }
1589
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001590 if (!page_node)
1591 return NULL;
1592
1593 list_del(&page_node->list);
1594 DO_NUMA(page_node->nid = nid);
1595 rb_link_node(&page_node->node, parent, new);
Hugh Dickinsef53d162013-02-22 16:36:12 -08001596 rb_insert_color(&page_node->node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001597out:
1598 if (is_page_sharing_candidate(page_node)) {
1599 get_page(page);
1600 return page;
1601 } else
1602 return NULL;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001603
1604replace:
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001605 if (stable_node_dup == stable_node) {
1606 /* there is no chain */
1607 if (page_node) {
1608 VM_BUG_ON(page_node->head != &migrate_nodes);
1609 list_del(&page_node->list);
1610 DO_NUMA(page_node->nid = nid);
1611 rb_replace_node(&stable_node->node, &page_node->node,
1612 root);
1613 if (is_page_sharing_candidate(page_node))
1614 get_page(page);
1615 else
1616 page = NULL;
1617 } else {
1618 rb_erase(&stable_node->node, root);
1619 page = NULL;
1620 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001621 } else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001622 VM_BUG_ON(!is_stable_node_chain(stable_node));
1623 __stable_node_dup_del(stable_node_dup);
1624 if (page_node) {
1625 VM_BUG_ON(page_node->head != &migrate_nodes);
1626 list_del(&page_node->list);
1627 DO_NUMA(page_node->nid = nid);
1628 stable_node_chain_add_dup(page_node, stable_node);
1629 if (is_page_sharing_candidate(page_node))
1630 get_page(page);
1631 else
1632 page = NULL;
1633 } else {
1634 page = NULL;
1635 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001636 }
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001637 stable_node_dup->head = &migrate_nodes;
1638 list_add(&stable_node_dup->list, stable_node_dup->head);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001639 return page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001640
1641chain_append:
1642 /* stable_node_dup could be null if it reached the limit */
1643 if (!stable_node_dup)
1644 stable_node_dup = stable_node_any;
1645 if (stable_node_dup == stable_node) {
1646 /* chain is missing so create it */
1647 stable_node = alloc_stable_node_chain(stable_node_dup,
1648 root);
1649 if (!stable_node)
1650 return NULL;
1651 }
1652 /*
1653 * Add this stable_node dup that was
1654 * migrated to the stable_node chain
1655 * of the current nid for this page
1656 * content.
1657 */
1658 VM_BUG_ON(page_node->head != &migrate_nodes);
1659 list_del(&page_node->list);
1660 DO_NUMA(page_node->nid = nid);
1661 stable_node_chain_add_dup(page_node, stable_node);
1662 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001663}
1664
1665/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001666 * stable_tree_insert - insert stable tree node pointing to new ksm page
Izik Eidus31dbd012009-09-21 17:02:03 -07001667 * into the stable tree.
1668 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001669 * This function returns the stable tree node just allocated on success,
1670 * NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001671 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001672static struct stable_node *stable_tree_insert(struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001673{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001674 int nid;
1675 unsigned long kpfn;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001676 struct rb_root *root;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001677 struct rb_node **new;
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001678 struct rb_node *parent;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001679 struct stable_node *stable_node, *stable_node_dup, *stable_node_any;
1680 bool need_chain = false;
Izik Eidus31dbd012009-09-21 17:02:03 -07001681
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001682 kpfn = page_to_pfn(kpage);
1683 nid = get_kpfn_nid(kpfn);
Hugh Dickinsef53d162013-02-22 16:36:12 -08001684 root = root_stable_tree + nid;
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001685again:
1686 parent = NULL;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001687 new = &root->rb_node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001688
Izik Eidus31dbd012009-09-21 17:02:03 -07001689 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001690 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001691 int ret;
1692
Hugh Dickins08beca42009-12-14 17:59:21 -08001693 cond_resched();
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001694 stable_node = rb_entry(*new, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001695 stable_node_any = NULL;
1696 stable_node_dup = chain(stable_node, &tree_page, root);
1697 if (!stable_node_dup) {
1698 /*
1699 * Either all stable_node dups were full in
1700 * this stable_node chain, or this chain was
1701 * empty and should be rb_erased.
1702 */
1703 stable_node_any = stable_node_dup_any(stable_node,
1704 root);
1705 if (!stable_node_any) {
1706 /* rb_erase just run */
1707 goto again;
1708 }
1709 /*
1710 * Take any of the stable_node dups page of
1711 * this stable_node chain to let the tree walk
1712 * continue. All KSM pages belonging to the
1713 * stable_node dups in a stable_node chain
1714 * have the same content and they're
1715 * wrprotected at all times. Any will work
1716 * fine to continue the walk.
1717 */
1718 tree_page = get_ksm_page(stable_node_any, false);
1719 }
1720 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001721 if (!tree_page) {
1722 /*
1723 * If we walked over a stale stable_node,
1724 * get_ksm_page() will call rb_erase() and it
1725 * may rebalance the tree from under us. So
1726 * restart the search from scratch. Returning
1727 * NULL would be safe too, but we'd generate
1728 * false negative insertions just because some
1729 * stable_node was stale.
1730 */
1731 goto again;
1732 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001733
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001734 ret = memcmp_pages(kpage, tree_page);
1735 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001736
1737 parent = *new;
1738 if (ret < 0)
1739 new = &parent->rb_left;
1740 else if (ret > 0)
1741 new = &parent->rb_right;
1742 else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001743 need_chain = true;
1744 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07001745 }
1746 }
1747
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001748 stable_node_dup = alloc_stable_node();
1749 if (!stable_node_dup)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001750 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001751
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001752 INIT_HLIST_HEAD(&stable_node_dup->hlist);
1753 stable_node_dup->kpfn = kpfn;
1754 set_page_stable_node(kpage, stable_node_dup);
1755 stable_node_dup->rmap_hlist_len = 0;
1756 DO_NUMA(stable_node_dup->nid = nid);
1757 if (!need_chain) {
1758 rb_link_node(&stable_node_dup->node, parent, new);
1759 rb_insert_color(&stable_node_dup->node, root);
1760 } else {
1761 if (!is_stable_node_chain(stable_node)) {
1762 struct stable_node *orig = stable_node;
1763 /* chain is missing so create it */
1764 stable_node = alloc_stable_node_chain(orig, root);
1765 if (!stable_node) {
1766 free_stable_node(stable_node_dup);
1767 return NULL;
1768 }
1769 }
1770 stable_node_chain_add_dup(stable_node_dup, stable_node);
1771 }
Hugh Dickins08beca42009-12-14 17:59:21 -08001772
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001773 return stable_node_dup;
Izik Eidus31dbd012009-09-21 17:02:03 -07001774}
1775
1776/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001777 * unstable_tree_search_insert - search for identical page,
1778 * else insert rmap_item into the unstable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07001779 *
1780 * This function searches for a page in the unstable tree identical to the
1781 * page currently being scanned; and if no identical page is found in the
1782 * tree, we insert rmap_item as a new object into the unstable tree.
1783 *
1784 * This function returns pointer to rmap_item found to be identical
1785 * to the currently scanned page, NULL otherwise.
1786 *
1787 * This function does both searching and inserting, because they share
1788 * the same walking algorithm in an rbtree.
1789 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001790static
1791struct rmap_item *unstable_tree_search_insert(struct rmap_item *rmap_item,
1792 struct page *page,
1793 struct page **tree_pagep)
Izik Eidus31dbd012009-09-21 17:02:03 -07001794{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001795 struct rb_node **new;
1796 struct rb_root *root;
Izik Eidus31dbd012009-09-21 17:02:03 -07001797 struct rb_node *parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001798 int nid;
1799
1800 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickinsef53d162013-02-22 16:36:12 -08001801 root = root_unstable_tree + nid;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001802 new = &root->rb_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001803
1804 while (*new) {
1805 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001806 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001807 int ret;
1808
Hugh Dickinsd178f272009-11-09 15:58:23 +00001809 cond_resched();
Izik Eidus31dbd012009-09-21 17:02:03 -07001810 tree_rmap_item = rb_entry(*new, struct rmap_item, node);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001811 tree_page = get_mergeable_page(tree_rmap_item);
Andrea Arcangelic8f95ed2015-11-05 18:49:19 -08001812 if (!tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001813 return NULL;
1814
1815 /*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001816 * Don't substitute a ksm page for a forked page.
Izik Eidus31dbd012009-09-21 17:02:03 -07001817 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001818 if (page == tree_page) {
1819 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001820 return NULL;
1821 }
1822
Hugh Dickins8dd35572009-12-14 17:59:18 -08001823 ret = memcmp_pages(page, tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001824
1825 parent = *new;
1826 if (ret < 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001827 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001828 new = &parent->rb_left;
1829 } else if (ret > 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001830 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001831 new = &parent->rb_right;
Hugh Dickinsb599cbd2013-02-22 16:36:05 -08001832 } else if (!ksm_merge_across_nodes &&
1833 page_to_nid(tree_page) != nid) {
1834 /*
1835 * If tree_page has been migrated to another NUMA node,
1836 * it will be flushed out and put in the right unstable
1837 * tree next time: only merge with it when across_nodes.
1838 */
1839 put_page(tree_page);
1840 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001841 } else {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001842 *tree_pagep = tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001843 return tree_rmap_item;
1844 }
1845 }
1846
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001847 rmap_item->address |= UNSTABLE_FLAG;
Izik Eidus31dbd012009-09-21 17:02:03 -07001848 rmap_item->address |= (ksm_scan.seqnr & SEQNR_MASK);
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001849 DO_NUMA(rmap_item->nid = nid);
Izik Eidus31dbd012009-09-21 17:02:03 -07001850 rb_link_node(&rmap_item->node, parent, new);
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001851 rb_insert_color(&rmap_item->node, root);
Izik Eidus31dbd012009-09-21 17:02:03 -07001852
Hugh Dickins473b0ce2009-09-21 17:02:11 -07001853 ksm_pages_unshared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07001854 return NULL;
1855}
1856
1857/*
1858 * stable_tree_append - add another rmap_item to the linked list of
1859 * rmap_items hanging off a given node of the stable tree, all sharing
1860 * the same ksm page.
1861 */
1862static void stable_tree_append(struct rmap_item *rmap_item,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001863 struct stable_node *stable_node,
1864 bool max_page_sharing_bypass)
Izik Eidus31dbd012009-09-21 17:02:03 -07001865{
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001866 /*
1867 * rmap won't find this mapping if we don't insert the
1868 * rmap_item in the right stable_node
1869 * duplicate. page_migration could break later if rmap breaks,
1870 * so we can as well crash here. We really need to check for
1871 * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check
1872 * for other negative values as an undeflow if detected here
1873 * for the first time (and not when decreasing rmap_hlist_len)
1874 * would be sign of memory corruption in the stable_node.
1875 */
1876 BUG_ON(stable_node->rmap_hlist_len < 0);
1877
1878 stable_node->rmap_hlist_len++;
1879 if (!max_page_sharing_bypass)
1880 /* possibly non fatal but unexpected overflow, only warn */
1881 WARN_ON_ONCE(stable_node->rmap_hlist_len >
1882 ksm_max_page_sharing);
1883
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001884 rmap_item->head = stable_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001885 rmap_item->address |= STABLE_FLAG;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001886 hlist_add_head(&rmap_item->hlist, &stable_node->hlist);
Hugh Dickinse178dfd2009-09-21 17:02:10 -07001887
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001888 if (rmap_item->hlist.next)
1889 ksm_pages_sharing++;
1890 else
1891 ksm_pages_shared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07001892}
1893
1894/*
Hugh Dickins81464e302009-09-21 17:02:15 -07001895 * cmp_and_merge_page - first see if page can be merged into the stable tree;
1896 * if not, compare checksum to previous and if it's the same, see if page can
1897 * be inserted into the unstable tree, or merged with a page already there and
1898 * both transferred to the stable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07001899 *
1900 * @page: the page that we are searching identical page to.
1901 * @rmap_item: the reverse mapping into the virtual address of this page
1902 */
1903static void cmp_and_merge_page(struct page *page, struct rmap_item *rmap_item)
1904{
Izik Eidus31dbd012009-09-21 17:02:03 -07001905 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001906 struct page *tree_page = NULL;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001907 struct stable_node *stable_node;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001908 struct page *kpage;
Izik Eidus31dbd012009-09-21 17:02:03 -07001909 unsigned int checksum;
1910 int err;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001911 bool max_page_sharing_bypass = false;
Izik Eidus31dbd012009-09-21 17:02:03 -07001912
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001913 stable_node = page_stable_node(page);
1914 if (stable_node) {
1915 if (stable_node->head != &migrate_nodes &&
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001916 get_kpfn_nid(READ_ONCE(stable_node->kpfn)) !=
1917 NUMA(stable_node->nid)) {
1918 stable_node_dup_del(stable_node);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001919 stable_node->head = &migrate_nodes;
1920 list_add(&stable_node->list, stable_node->head);
1921 }
1922 if (stable_node->head != &migrate_nodes &&
1923 rmap_item->head == stable_node)
1924 return;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001925 /*
1926 * If it's a KSM fork, allow it to go over the sharing limit
1927 * without warnings.
1928 */
1929 if (!is_page_sharing_candidate(stable_node))
1930 max_page_sharing_bypass = true;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001931 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001932
1933 /* We first start with searching the page inside the stable tree */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001934 kpage = stable_tree_search(page);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001935 if (kpage == page && rmap_item->head == stable_node) {
1936 put_page(kpage);
1937 return;
1938 }
1939
1940 remove_rmap_item_from_tree(rmap_item);
1941
Hugh Dickins62b61f62009-12-14 17:59:33 -08001942 if (kpage) {
Hugh Dickins08beca42009-12-14 17:59:21 -08001943 err = try_to_merge_with_ksm_page(rmap_item, page, kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07001944 if (!err) {
1945 /*
1946 * The page was successfully merged:
1947 * add its rmap_item to the stable tree.
1948 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08001949 lock_page(kpage);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001950 stable_tree_append(rmap_item, page_stable_node(kpage),
1951 max_page_sharing_bypass);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001952 unlock_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07001953 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08001954 put_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07001955 return;
1956 }
1957
1958 /*
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001959 * If the hash value of the page has changed from the last time
1960 * we calculated it, this page is changing frequently: therefore we
1961 * don't want to insert it in the unstable tree, and we don't want
1962 * to waste our time searching for something identical to it there.
Izik Eidus31dbd012009-09-21 17:02:03 -07001963 */
1964 checksum = calc_checksum(page);
1965 if (rmap_item->oldchecksum != checksum) {
1966 rmap_item->oldchecksum = checksum;
1967 return;
1968 }
1969
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001970 /*
1971 * Same checksum as an empty page. We attempt to merge it with the
1972 * appropriate zero page if the user enabled this via sysfs.
1973 */
1974 if (ksm_use_zero_pages && (checksum == zero_checksum)) {
1975 struct vm_area_struct *vma;
1976
1977 vma = find_mergeable_vma(rmap_item->mm, rmap_item->address);
1978 err = try_to_merge_one_page(vma, page,
1979 ZERO_PAGE(rmap_item->address));
1980 /*
1981 * In case of failure, the page was not really empty, so we
1982 * need to continue. Otherwise we're done.
1983 */
1984 if (!err)
1985 return;
1986 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08001987 tree_rmap_item =
1988 unstable_tree_search_insert(rmap_item, page, &tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001989 if (tree_rmap_item) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001990 kpage = try_to_merge_two_pages(rmap_item, page,
1991 tree_rmap_item, tree_page);
1992 put_page(tree_page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001993 if (kpage) {
Hugh Dickinsbc566202013-02-22 16:36:06 -08001994 /*
1995 * The pages were successfully merged: insert new
1996 * node in the stable tree and add both rmap_items.
1997 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08001998 lock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001999 stable_node = stable_tree_insert(kpage);
2000 if (stable_node) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002001 stable_tree_append(tree_rmap_item, stable_node,
2002 false);
2003 stable_tree_append(rmap_item, stable_node,
2004 false);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002005 }
Hugh Dickins5ad64682009-12-14 17:59:24 -08002006 unlock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002007
Izik Eidus31dbd012009-09-21 17:02:03 -07002008 /*
2009 * If we fail to insert the page into the stable tree,
2010 * we will have 2 virtual addresses that are pointing
2011 * to a ksm page left outside the stable tree,
2012 * in which case we need to break_cow on both.
2013 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002014 if (!stable_node) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08002015 break_cow(tree_rmap_item);
2016 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002017 }
2018 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002019 }
2020}
2021
2022static struct rmap_item *get_next_rmap_item(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08002023 struct rmap_item **rmap_list,
Izik Eidus31dbd012009-09-21 17:02:03 -07002024 unsigned long addr)
2025{
2026 struct rmap_item *rmap_item;
2027
Hugh Dickins6514d512009-12-14 17:59:19 -08002028 while (*rmap_list) {
2029 rmap_item = *rmap_list;
Hugh Dickins93d17712009-12-14 17:59:16 -08002030 if ((rmap_item->address & PAGE_MASK) == addr)
Izik Eidus31dbd012009-09-21 17:02:03 -07002031 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07002032 if (rmap_item->address > addr)
2033 break;
Hugh Dickins6514d512009-12-14 17:59:19 -08002034 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002035 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002036 free_rmap_item(rmap_item);
2037 }
2038
2039 rmap_item = alloc_rmap_item();
2040 if (rmap_item) {
2041 /* It has already been zeroed */
2042 rmap_item->mm = mm_slot->mm;
2043 rmap_item->address = addr;
Hugh Dickins6514d512009-12-14 17:59:19 -08002044 rmap_item->rmap_list = *rmap_list;
2045 *rmap_list = rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07002046 }
2047 return rmap_item;
2048}
2049
2050static struct rmap_item *scan_get_next_rmap_item(struct page **page)
2051{
2052 struct mm_struct *mm;
2053 struct mm_slot *slot;
2054 struct vm_area_struct *vma;
2055 struct rmap_item *rmap_item;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002056 int nid;
Izik Eidus31dbd012009-09-21 17:02:03 -07002057
2058 if (list_empty(&ksm_mm_head.mm_list))
2059 return NULL;
2060
2061 slot = ksm_scan.mm_slot;
2062 if (slot == &ksm_mm_head) {
Hugh Dickins2919bfd2011-01-13 15:47:29 -08002063 /*
2064 * A number of pages can hang around indefinitely on per-cpu
2065 * pagevecs, raised page count preventing write_protect_page
2066 * from merging them. Though it doesn't really matter much,
2067 * it is puzzling to see some stuck in pages_volatile until
2068 * other activity jostles them out, and they also prevented
2069 * LTP's KSM test from succeeding deterministically; so drain
2070 * them here (here rather than on entry to ksm_do_scan(),
2071 * so we don't IPI too often when pages_to_scan is set low).
2072 */
2073 lru_add_drain_all();
2074
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002075 /*
2076 * Whereas stale stable_nodes on the stable_tree itself
2077 * get pruned in the regular course of stable_tree_search(),
2078 * those moved out to the migrate_nodes list can accumulate:
2079 * so prune them once before each full scan.
2080 */
2081 if (!ksm_merge_across_nodes) {
Geliang Tang03640412016-01-14 15:20:54 -08002082 struct stable_node *stable_node, *next;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002083 struct page *page;
2084
Geliang Tang03640412016-01-14 15:20:54 -08002085 list_for_each_entry_safe(stable_node, next,
2086 &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002087 page = get_ksm_page(stable_node, false);
2088 if (page)
2089 put_page(page);
2090 cond_resched();
2091 }
2092 }
2093
Hugh Dickinsef53d162013-02-22 16:36:12 -08002094 for (nid = 0; nid < ksm_nr_node_ids; nid++)
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002095 root_unstable_tree[nid] = RB_ROOT;
Izik Eidus31dbd012009-09-21 17:02:03 -07002096
2097 spin_lock(&ksm_mmlist_lock);
2098 slot = list_entry(slot->mm_list.next, struct mm_slot, mm_list);
2099 ksm_scan.mm_slot = slot;
2100 spin_unlock(&ksm_mmlist_lock);
Hugh Dickins2b472612011-06-15 15:08:58 -07002101 /*
2102 * Although we tested list_empty() above, a racing __ksm_exit
2103 * of the last mm on the list may have removed it since then.
2104 */
2105 if (slot == &ksm_mm_head)
2106 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07002107next_mm:
2108 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08002109 ksm_scan.rmap_list = &slot->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002110 }
2111
2112 mm = slot->mm;
2113 down_read(&mm->mmap_sem);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002114 if (ksm_test_exit(mm))
2115 vma = NULL;
2116 else
2117 vma = find_vma(mm, ksm_scan.address);
2118
2119 for (; vma; vma = vma->vm_next) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002120 if (!(vma->vm_flags & VM_MERGEABLE))
2121 continue;
2122 if (ksm_scan.address < vma->vm_start)
2123 ksm_scan.address = vma->vm_start;
2124 if (!vma->anon_vma)
2125 ksm_scan.address = vma->vm_end;
2126
2127 while (ksm_scan.address < vma->vm_end) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002128 if (ksm_test_exit(mm))
2129 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07002130 *page = follow_page(vma, ksm_scan.address, FOLL_GET);
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08002131 if (IS_ERR_OR_NULL(*page)) {
2132 ksm_scan.address += PAGE_SIZE;
2133 cond_resched();
2134 continue;
2135 }
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08002136 if (PageAnon(*page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002137 flush_anon_page(vma, *page, ksm_scan.address);
2138 flush_dcache_page(*page);
2139 rmap_item = get_next_rmap_item(slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08002140 ksm_scan.rmap_list, ksm_scan.address);
Izik Eidus31dbd012009-09-21 17:02:03 -07002141 if (rmap_item) {
Hugh Dickins6514d512009-12-14 17:59:19 -08002142 ksm_scan.rmap_list =
2143 &rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002144 ksm_scan.address += PAGE_SIZE;
2145 } else
2146 put_page(*page);
2147 up_read(&mm->mmap_sem);
2148 return rmap_item;
2149 }
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08002150 put_page(*page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002151 ksm_scan.address += PAGE_SIZE;
2152 cond_resched();
2153 }
2154 }
2155
Hugh Dickins9ba69292009-09-21 17:02:20 -07002156 if (ksm_test_exit(mm)) {
2157 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08002158 ksm_scan.rmap_list = &slot->rmap_list;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002159 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002160 /*
2161 * Nuke all the rmap_items that are above this current rmap:
2162 * because there were no VM_MERGEABLE vmas with such addresses.
2163 */
Hugh Dickins6514d512009-12-14 17:59:19 -08002164 remove_trailing_rmap_items(slot, ksm_scan.rmap_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07002165
2166 spin_lock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002167 ksm_scan.mm_slot = list_entry(slot->mm_list.next,
2168 struct mm_slot, mm_list);
2169 if (ksm_scan.address == 0) {
2170 /*
2171 * We've completed a full scan of all vmas, holding mmap_sem
2172 * throughout, and found no VM_MERGEABLE: so do the same as
2173 * __ksm_exit does to remove this mm from all our lists now.
Hugh Dickins9ba69292009-09-21 17:02:20 -07002174 * This applies either when cleaning up after __ksm_exit
2175 * (but beware: we can reach here even before __ksm_exit),
2176 * or when all VM_MERGEABLE areas have been unmapped (and
2177 * mmap_sem then protects against race with MADV_MERGEABLE).
Hugh Dickinscd551f92009-09-21 17:02:17 -07002178 */
Sasha Levin4ca3a692013-02-22 16:32:28 -08002179 hash_del(&slot->link);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002180 list_del(&slot->mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002181 spin_unlock(&ksm_mmlist_lock);
2182
Hugh Dickinscd551f92009-09-21 17:02:17 -07002183 free_mm_slot(slot);
2184 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002185 up_read(&mm->mmap_sem);
2186 mmdrop(mm);
2187 } else {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002188 up_read(&mm->mmap_sem);
Zhou Chengming7496fea2016-05-12 15:42:21 -07002189 /*
2190 * up_read(&mm->mmap_sem) first because after
2191 * spin_unlock(&ksm_mmlist_lock) run, the "mm" may
2192 * already have been freed under us by __ksm_exit()
2193 * because the "mm_slot" is still hashed and
2194 * ksm_scan.mm_slot doesn't point to it anymore.
2195 */
2196 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002197 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002198
2199 /* Repeat until we've completed scanning the whole list */
Hugh Dickinscd551f92009-09-21 17:02:17 -07002200 slot = ksm_scan.mm_slot;
Izik Eidus31dbd012009-09-21 17:02:03 -07002201 if (slot != &ksm_mm_head)
2202 goto next_mm;
2203
Izik Eidus31dbd012009-09-21 17:02:03 -07002204 ksm_scan.seqnr++;
2205 return NULL;
2206}
2207
2208/**
2209 * ksm_do_scan - the ksm scanner main worker function.
2210 * @scan_npages - number of pages we want to scan before we return.
2211 */
2212static void ksm_do_scan(unsigned int scan_npages)
2213{
2214 struct rmap_item *rmap_item;
Dan Carpenter22eccdd2010-04-23 13:18:10 -04002215 struct page *uninitialized_var(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002216
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002217 while (scan_npages-- && likely(!freezing(current))) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002218 cond_resched();
2219 rmap_item = scan_get_next_rmap_item(&page);
2220 if (!rmap_item)
2221 return;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002222 cmp_and_merge_page(page, rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002223 put_page(page);
2224 }
2225}
2226
Hugh Dickins6e1583842009-09-21 17:02:14 -07002227static int ksmd_should_run(void)
2228{
2229 return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.mm_list);
2230}
2231
Izik Eidus31dbd012009-09-21 17:02:03 -07002232static int ksm_scan_thread(void *nothing)
2233{
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002234 set_freezable();
Izik Eidus339aa622009-09-21 17:02:07 -07002235 set_user_nice(current, 5);
Izik Eidus31dbd012009-09-21 17:02:03 -07002236
2237 while (!kthread_should_stop()) {
Hugh Dickins6e1583842009-09-21 17:02:14 -07002238 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002239 wait_while_offlining();
Hugh Dickins6e1583842009-09-21 17:02:14 -07002240 if (ksmd_should_run())
Izik Eidus31dbd012009-09-21 17:02:03 -07002241 ksm_do_scan(ksm_thread_pages_to_scan);
Hugh Dickins6e1583842009-09-21 17:02:14 -07002242 mutex_unlock(&ksm_thread_mutex);
2243
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002244 try_to_freeze();
2245
Hugh Dickins6e1583842009-09-21 17:02:14 -07002246 if (ksmd_should_run()) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002247 schedule_timeout_interruptible(
2248 msecs_to_jiffies(ksm_thread_sleep_millisecs));
2249 } else {
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002250 wait_event_freezable(ksm_thread_wait,
Hugh Dickins6e1583842009-09-21 17:02:14 -07002251 ksmd_should_run() || kthread_should_stop());
Izik Eidus31dbd012009-09-21 17:02:03 -07002252 }
2253 }
2254 return 0;
2255}
2256
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002257int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
2258 unsigned long end, int advice, unsigned long *vm_flags)
2259{
2260 struct mm_struct *mm = vma->vm_mm;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002261 int err;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002262
2263 switch (advice) {
2264 case MADV_MERGEABLE:
2265 /*
2266 * Be somewhat over-protective for now!
2267 */
2268 if (*vm_flags & (VM_MERGEABLE | VM_SHARED | VM_MAYSHARE |
2269 VM_PFNMAP | VM_IO | VM_DONTEXPAND |
Kirill A. Shutemov0661a332015-02-10 14:10:04 -08002270 VM_HUGETLB | VM_MIXEDMAP))
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002271 return 0; /* just ignore the advice */
2272
Konstantin Khlebnikovcc2383e2012-10-08 16:28:37 -07002273#ifdef VM_SAO
2274 if (*vm_flags & VM_SAO)
2275 return 0;
2276#endif
2277
Hugh Dickinsd952b792009-09-21 17:02:16 -07002278 if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
2279 err = __ksm_enter(mm);
2280 if (err)
2281 return err;
2282 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002283
2284 *vm_flags |= VM_MERGEABLE;
2285 break;
2286
2287 case MADV_UNMERGEABLE:
2288 if (!(*vm_flags & VM_MERGEABLE))
2289 return 0; /* just ignore the advice */
2290
Hugh Dickinsd952b792009-09-21 17:02:16 -07002291 if (vma->anon_vma) {
2292 err = unmerge_ksm_pages(vma, start, end);
2293 if (err)
2294 return err;
2295 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002296
2297 *vm_flags &= ~VM_MERGEABLE;
2298 break;
2299 }
2300
2301 return 0;
2302}
2303
2304int __ksm_enter(struct mm_struct *mm)
2305{
Hugh Dickins6e1583842009-09-21 17:02:14 -07002306 struct mm_slot *mm_slot;
2307 int needs_wakeup;
2308
2309 mm_slot = alloc_mm_slot();
Izik Eidus31dbd012009-09-21 17:02:03 -07002310 if (!mm_slot)
2311 return -ENOMEM;
2312
Hugh Dickins6e1583842009-09-21 17:02:14 -07002313 /* Check ksm_run too? Would need tighter locking */
2314 needs_wakeup = list_empty(&ksm_mm_head.mm_list);
2315
Izik Eidus31dbd012009-09-21 17:02:03 -07002316 spin_lock(&ksm_mmlist_lock);
2317 insert_to_mm_slots_hash(mm, mm_slot);
2318 /*
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002319 * When KSM_RUN_MERGE (or KSM_RUN_STOP),
2320 * insert just behind the scanning cursor, to let the area settle
Izik Eidus31dbd012009-09-21 17:02:03 -07002321 * down a little; when fork is followed by immediate exec, we don't
2322 * want ksmd to waste time setting up and tearing down an rmap_list.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002323 *
2324 * But when KSM_RUN_UNMERGE, it's important to insert ahead of its
2325 * scanning cursor, otherwise KSM pages in newly forked mms will be
2326 * missed: then we might as well insert at the end of the list.
Izik Eidus31dbd012009-09-21 17:02:03 -07002327 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002328 if (ksm_run & KSM_RUN_UNMERGE)
2329 list_add_tail(&mm_slot->mm_list, &ksm_mm_head.mm_list);
2330 else
2331 list_add_tail(&mm_slot->mm_list, &ksm_scan.mm_slot->mm_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07002332 spin_unlock(&ksm_mmlist_lock);
2333
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002334 set_bit(MMF_VM_MERGEABLE, &mm->flags);
Vegard Nossumf1f10072017-02-27 14:30:07 -08002335 mmgrab(mm);
Hugh Dickins6e1583842009-09-21 17:02:14 -07002336
2337 if (needs_wakeup)
2338 wake_up_interruptible(&ksm_thread_wait);
2339
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002340 return 0;
2341}
2342
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07002343void __ksm_exit(struct mm_struct *mm)
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002344{
Hugh Dickinscd551f92009-09-21 17:02:17 -07002345 struct mm_slot *mm_slot;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002346 int easy_to_free = 0;
Hugh Dickinscd551f92009-09-21 17:02:17 -07002347
Izik Eidus31dbd012009-09-21 17:02:03 -07002348 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -07002349 * This process is exiting: if it's straightforward (as is the
2350 * case when ksmd was never running), free mm_slot immediately.
2351 * But if it's at the cursor or has rmap_items linked to it, use
2352 * mmap_sem to synchronize with any break_cows before pagetables
2353 * are freed, and leave the mm_slot on the list for ksmd to free.
2354 * Beware: ksm may already have noticed it exiting and freed the slot.
Izik Eidus31dbd012009-09-21 17:02:03 -07002355 */
Hugh Dickins9ba69292009-09-21 17:02:20 -07002356
Hugh Dickinscd551f92009-09-21 17:02:17 -07002357 spin_lock(&ksm_mmlist_lock);
2358 mm_slot = get_mm_slot(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002359 if (mm_slot && ksm_scan.mm_slot != mm_slot) {
Hugh Dickins6514d512009-12-14 17:59:19 -08002360 if (!mm_slot->rmap_list) {
Sasha Levin4ca3a692013-02-22 16:32:28 -08002361 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002362 list_del(&mm_slot->mm_list);
2363 easy_to_free = 1;
2364 } else {
2365 list_move(&mm_slot->mm_list,
2366 &ksm_scan.mm_slot->mm_list);
2367 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07002368 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07002369 spin_unlock(&ksm_mmlist_lock);
2370
Hugh Dickins9ba69292009-09-21 17:02:20 -07002371 if (easy_to_free) {
2372 free_mm_slot(mm_slot);
2373 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
2374 mmdrop(mm);
2375 } else if (mm_slot) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002376 down_write(&mm->mmap_sem);
2377 up_write(&mm->mmap_sem);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002378 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002379}
Izik Eidus31dbd012009-09-21 17:02:03 -07002380
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002381struct page *ksm_might_need_to_copy(struct page *page,
Hugh Dickins5ad64682009-12-14 17:59:24 -08002382 struct vm_area_struct *vma, unsigned long address)
2383{
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002384 struct anon_vma *anon_vma = page_anon_vma(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002385 struct page *new_page;
2386
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002387 if (PageKsm(page)) {
2388 if (page_stable_node(page) &&
2389 !(ksm_run & KSM_RUN_UNMERGE))
2390 return page; /* no need to copy it */
2391 } else if (!anon_vma) {
2392 return page; /* no need to copy it */
2393 } else if (anon_vma->root == vma->anon_vma->root &&
2394 page->index == linear_page_index(vma, address)) {
2395 return page; /* still no need to copy it */
2396 }
2397 if (!PageUptodate(page))
2398 return page; /* let do_swap_page report the error */
2399
Hugh Dickins5ad64682009-12-14 17:59:24 -08002400 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
2401 if (new_page) {
2402 copy_user_highpage(new_page, page, address, vma);
2403
2404 SetPageDirty(new_page);
2405 __SetPageUptodate(new_page);
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08002406 __SetPageLocked(new_page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002407 }
2408
Hugh Dickins5ad64682009-12-14 17:59:24 -08002409 return new_page;
2410}
2411
Minchan Kim1df631a2017-05-03 14:54:23 -07002412void rmap_walk_ksm(struct page *page, struct rmap_walk_control *rwc)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002413{
2414 struct stable_node *stable_node;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002415 struct rmap_item *rmap_item;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002416 int search_new_forks = 0;
2417
Sasha Levin309381fea2014-01-23 15:52:54 -08002418 VM_BUG_ON_PAGE(!PageKsm(page), page);
Joonsoo Kim9f326242014-01-21 15:49:53 -08002419
2420 /*
2421 * Rely on the page lock to protect against concurrent modifications
2422 * to that page's node of the stable tree.
2423 */
Sasha Levin309381fea2014-01-23 15:52:54 -08002424 VM_BUG_ON_PAGE(!PageLocked(page), page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002425
2426 stable_node = page_stable_node(page);
2427 if (!stable_node)
Minchan Kim1df631a2017-05-03 14:54:23 -07002428 return;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002429again:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002430 hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002431 struct anon_vma *anon_vma = rmap_item->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002432 struct anon_vma_chain *vmac;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002433 struct vm_area_struct *vma;
2434
Andrea Arcangeliad126952015-11-05 18:49:07 -08002435 cond_resched();
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002436 anon_vma_lock_read(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002437 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
2438 0, ULONG_MAX) {
Andrea Arcangeliad126952015-11-05 18:49:07 -08002439 cond_resched();
Rik van Riel5beb4932010-03-05 13:42:07 -08002440 vma = vmac->vma;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002441 if (rmap_item->address < vma->vm_start ||
2442 rmap_item->address >= vma->vm_end)
2443 continue;
2444 /*
2445 * Initially we examine only the vma which covers this
2446 * rmap_item; but later, if there is still work to do,
2447 * we examine covering vmas in other mms: in case they
2448 * were forked from the original since ksmd passed.
2449 */
2450 if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
2451 continue;
2452
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002453 if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
2454 continue;
2455
Minchan Kime4b82222017-05-03 14:54:27 -07002456 if (!rwc->rmap_one(page, vma,
Minchan Kim1df631a2017-05-03 14:54:23 -07002457 rmap_item->address, rwc->arg)) {
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002458 anon_vma_unlock_read(anon_vma);
Minchan Kim1df631a2017-05-03 14:54:23 -07002459 return;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002460 }
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002461 if (rwc->done && rwc->done(page)) {
2462 anon_vma_unlock_read(anon_vma);
Minchan Kim1df631a2017-05-03 14:54:23 -07002463 return;
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002464 }
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002465 }
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002466 anon_vma_unlock_read(anon_vma);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002467 }
2468 if (!search_new_forks++)
2469 goto again;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002470}
2471
Joonsoo Kim52629502014-01-21 15:49:50 -08002472#ifdef CONFIG_MIGRATION
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002473void ksm_migrate_page(struct page *newpage, struct page *oldpage)
2474{
2475 struct stable_node *stable_node;
2476
Sasha Levin309381fea2014-01-23 15:52:54 -08002477 VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage);
2478 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
2479 VM_BUG_ON_PAGE(newpage->mapping != oldpage->mapping, newpage);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002480
2481 stable_node = page_stable_node(newpage);
2482 if (stable_node) {
Sasha Levin309381fea2014-01-23 15:52:54 -08002483 VM_BUG_ON_PAGE(stable_node->kpfn != page_to_pfn(oldpage), oldpage);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002484 stable_node->kpfn = page_to_pfn(newpage);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08002485 /*
2486 * newpage->mapping was set in advance; now we need smp_wmb()
2487 * to make sure that the new stable_node->kpfn is visible
2488 * to get_ksm_page() before it can see that oldpage->mapping
2489 * has gone stale (or that PageSwapCache has been cleared).
2490 */
2491 smp_wmb();
2492 set_page_stable_node(oldpage, NULL);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002493 }
2494}
2495#endif /* CONFIG_MIGRATION */
2496
Hugh Dickins62b61f62009-12-14 17:59:33 -08002497#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002498static void wait_while_offlining(void)
2499{
2500 while (ksm_run & KSM_RUN_OFFLINE) {
2501 mutex_unlock(&ksm_thread_mutex);
2502 wait_on_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE),
NeilBrown74316202014-07-07 15:16:04 +10002503 TASK_UNINTERRUPTIBLE);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002504 mutex_lock(&ksm_thread_mutex);
2505 }
2506}
2507
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002508static bool stable_node_dup_remove_range(struct stable_node *stable_node,
2509 unsigned long start_pfn,
2510 unsigned long end_pfn)
2511{
2512 if (stable_node->kpfn >= start_pfn &&
2513 stable_node->kpfn < end_pfn) {
2514 /*
2515 * Don't get_ksm_page, page has already gone:
2516 * which is why we keep kpfn instead of page*
2517 */
2518 remove_node_from_stable_tree(stable_node);
2519 return true;
2520 }
2521 return false;
2522}
2523
2524static bool stable_node_chain_remove_range(struct stable_node *stable_node,
2525 unsigned long start_pfn,
2526 unsigned long end_pfn,
2527 struct rb_root *root)
2528{
2529 struct stable_node *dup;
2530 struct hlist_node *hlist_safe;
2531
2532 if (!is_stable_node_chain(stable_node)) {
2533 VM_BUG_ON(is_stable_node_dup(stable_node));
2534 return stable_node_dup_remove_range(stable_node, start_pfn,
2535 end_pfn);
2536 }
2537
2538 hlist_for_each_entry_safe(dup, hlist_safe,
2539 &stable_node->hlist, hlist_dup) {
2540 VM_BUG_ON(!is_stable_node_dup(dup));
2541 stable_node_dup_remove_range(dup, start_pfn, end_pfn);
2542 }
2543 if (hlist_empty(&stable_node->hlist)) {
2544 free_stable_node_chain(stable_node, root);
2545 return true; /* notify caller that tree was rebalanced */
2546 } else
2547 return false;
2548}
2549
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002550static void ksm_check_stable_tree(unsigned long start_pfn,
2551 unsigned long end_pfn)
Hugh Dickins62b61f62009-12-14 17:59:33 -08002552{
Geliang Tang03640412016-01-14 15:20:54 -08002553 struct stable_node *stable_node, *next;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002554 struct rb_node *node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002555 int nid;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002556
Hugh Dickinsef53d162013-02-22 16:36:12 -08002557 for (nid = 0; nid < ksm_nr_node_ids; nid++) {
2558 node = rb_first(root_stable_tree + nid);
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002559 while (node) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002560 stable_node = rb_entry(node, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002561 if (stable_node_chain_remove_range(stable_node,
2562 start_pfn, end_pfn,
2563 root_stable_tree +
2564 nid))
Hugh Dickinsef53d162013-02-22 16:36:12 -08002565 node = rb_first(root_stable_tree + nid);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002566 else
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002567 node = rb_next(node);
2568 cond_resched();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002569 }
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002570 }
Geliang Tang03640412016-01-14 15:20:54 -08002571 list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002572 if (stable_node->kpfn >= start_pfn &&
2573 stable_node->kpfn < end_pfn)
2574 remove_node_from_stable_tree(stable_node);
2575 cond_resched();
2576 }
Hugh Dickins62b61f62009-12-14 17:59:33 -08002577}
2578
2579static int ksm_memory_callback(struct notifier_block *self,
2580 unsigned long action, void *arg)
2581{
2582 struct memory_notify *mn = arg;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002583
2584 switch (action) {
2585 case MEM_GOING_OFFLINE:
2586 /*
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002587 * Prevent ksm_do_scan(), unmerge_and_remove_all_rmap_items()
2588 * and remove_all_stable_nodes() while memory is going offline:
2589 * it is unsafe for them to touch the stable tree at this time.
2590 * But unmerge_ksm_pages(), rmap lookups and other entry points
2591 * which do not need the ksm_thread_mutex are all safe.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002592 */
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002593 mutex_lock(&ksm_thread_mutex);
2594 ksm_run |= KSM_RUN_OFFLINE;
2595 mutex_unlock(&ksm_thread_mutex);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002596 break;
2597
2598 case MEM_OFFLINE:
2599 /*
2600 * Most of the work is done by page migration; but there might
2601 * be a few stable_nodes left over, still pointing to struct
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002602 * pages which have been offlined: prune those from the tree,
2603 * otherwise get_ksm_page() might later try to access a
2604 * non-existent struct page.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002605 */
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002606 ksm_check_stable_tree(mn->start_pfn,
2607 mn->start_pfn + mn->nr_pages);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002608 /* fallthrough */
2609
2610 case MEM_CANCEL_OFFLINE:
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002611 mutex_lock(&ksm_thread_mutex);
2612 ksm_run &= ~KSM_RUN_OFFLINE;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002613 mutex_unlock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002614
2615 smp_mb(); /* wake_up_bit advises this */
2616 wake_up_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE));
Hugh Dickins62b61f62009-12-14 17:59:33 -08002617 break;
2618 }
2619 return NOTIFY_OK;
2620}
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002621#else
2622static void wait_while_offlining(void)
2623{
2624}
Hugh Dickins62b61f62009-12-14 17:59:33 -08002625#endif /* CONFIG_MEMORY_HOTREMOVE */
2626
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002627#ifdef CONFIG_SYSFS
2628/*
2629 * This all compiles without CONFIG_SYSFS, but is a waste of space.
2630 */
2631
Izik Eidus31dbd012009-09-21 17:02:03 -07002632#define KSM_ATTR_RO(_name) \
2633 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
2634#define KSM_ATTR(_name) \
2635 static struct kobj_attribute _name##_attr = \
2636 __ATTR(_name, 0644, _name##_show, _name##_store)
2637
2638static ssize_t sleep_millisecs_show(struct kobject *kobj,
2639 struct kobj_attribute *attr, char *buf)
2640{
2641 return sprintf(buf, "%u\n", ksm_thread_sleep_millisecs);
2642}
2643
2644static ssize_t sleep_millisecs_store(struct kobject *kobj,
2645 struct kobj_attribute *attr,
2646 const char *buf, size_t count)
2647{
2648 unsigned long msecs;
2649 int err;
2650
Jingoo Han3dbb95f2013-09-11 14:20:25 -07002651 err = kstrtoul(buf, 10, &msecs);
Izik Eidus31dbd012009-09-21 17:02:03 -07002652 if (err || msecs > UINT_MAX)
2653 return -EINVAL;
2654
2655 ksm_thread_sleep_millisecs = msecs;
2656
2657 return count;
2658}
2659KSM_ATTR(sleep_millisecs);
2660
2661static ssize_t pages_to_scan_show(struct kobject *kobj,
2662 struct kobj_attribute *attr, char *buf)
2663{
2664 return sprintf(buf, "%u\n", ksm_thread_pages_to_scan);
2665}
2666
2667static ssize_t pages_to_scan_store(struct kobject *kobj,
2668 struct kobj_attribute *attr,
2669 const char *buf, size_t count)
2670{
2671 int err;
2672 unsigned long nr_pages;
2673
Jingoo Han3dbb95f2013-09-11 14:20:25 -07002674 err = kstrtoul(buf, 10, &nr_pages);
Izik Eidus31dbd012009-09-21 17:02:03 -07002675 if (err || nr_pages > UINT_MAX)
2676 return -EINVAL;
2677
2678 ksm_thread_pages_to_scan = nr_pages;
2679
2680 return count;
2681}
2682KSM_ATTR(pages_to_scan);
2683
2684static ssize_t run_show(struct kobject *kobj, struct kobj_attribute *attr,
2685 char *buf)
2686{
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002687 return sprintf(buf, "%lu\n", ksm_run);
Izik Eidus31dbd012009-09-21 17:02:03 -07002688}
2689
2690static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr,
2691 const char *buf, size_t count)
2692{
2693 int err;
2694 unsigned long flags;
2695
Jingoo Han3dbb95f2013-09-11 14:20:25 -07002696 err = kstrtoul(buf, 10, &flags);
Izik Eidus31dbd012009-09-21 17:02:03 -07002697 if (err || flags > UINT_MAX)
2698 return -EINVAL;
2699 if (flags > KSM_RUN_UNMERGE)
2700 return -EINVAL;
2701
2702 /*
2703 * KSM_RUN_MERGE sets ksmd running, and 0 stops it running.
2704 * KSM_RUN_UNMERGE stops it running and unmerges all rmap_items,
Hugh Dickinsd0f209f2009-12-14 17:59:34 -08002705 * breaking COW to free the pages_shared (but leaves mm_slots
2706 * on the list for when ksmd may be set running again).
Izik Eidus31dbd012009-09-21 17:02:03 -07002707 */
2708
2709 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002710 wait_while_offlining();
Izik Eidus31dbd012009-09-21 17:02:03 -07002711 if (ksm_run != flags) {
2712 ksm_run = flags;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002713 if (flags & KSM_RUN_UNMERGE) {
David Rientjese1e12d22012-12-11 16:02:56 -08002714 set_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002715 err = unmerge_and_remove_all_rmap_items();
David Rientjese1e12d22012-12-11 16:02:56 -08002716 clear_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002717 if (err) {
2718 ksm_run = KSM_RUN_STOP;
2719 count = err;
2720 }
2721 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002722 }
2723 mutex_unlock(&ksm_thread_mutex);
2724
2725 if (flags & KSM_RUN_MERGE)
2726 wake_up_interruptible(&ksm_thread_wait);
2727
2728 return count;
2729}
2730KSM_ATTR(run);
2731
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002732#ifdef CONFIG_NUMA
2733static ssize_t merge_across_nodes_show(struct kobject *kobj,
2734 struct kobj_attribute *attr, char *buf)
2735{
2736 return sprintf(buf, "%u\n", ksm_merge_across_nodes);
2737}
2738
2739static ssize_t merge_across_nodes_store(struct kobject *kobj,
2740 struct kobj_attribute *attr,
2741 const char *buf, size_t count)
2742{
2743 int err;
2744 unsigned long knob;
2745
2746 err = kstrtoul(buf, 10, &knob);
2747 if (err)
2748 return err;
2749 if (knob > 1)
2750 return -EINVAL;
2751
2752 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002753 wait_while_offlining();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002754 if (ksm_merge_across_nodes != knob) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002755 if (ksm_pages_shared || remove_all_stable_nodes())
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002756 err = -EBUSY;
Hugh Dickinsef53d162013-02-22 16:36:12 -08002757 else if (root_stable_tree == one_stable_tree) {
2758 struct rb_root *buf;
2759 /*
2760 * This is the first time that we switch away from the
2761 * default of merging across nodes: must now allocate
2762 * a buffer to hold as many roots as may be needed.
2763 * Allocate stable and unstable together:
2764 * MAXSMP NODES_SHIFT 10 will use 16kB.
2765 */
Joe Perchesbafe1e12013-11-12 15:07:10 -08002766 buf = kcalloc(nr_node_ids + nr_node_ids, sizeof(*buf),
2767 GFP_KERNEL);
Hugh Dickinsef53d162013-02-22 16:36:12 -08002768 /* Let us assume that RB_ROOT is NULL is zero */
2769 if (!buf)
2770 err = -ENOMEM;
2771 else {
2772 root_stable_tree = buf;
2773 root_unstable_tree = buf + nr_node_ids;
2774 /* Stable tree is empty but not the unstable */
2775 root_unstable_tree[0] = one_unstable_tree[0];
2776 }
2777 }
2778 if (!err) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002779 ksm_merge_across_nodes = knob;
Hugh Dickinsef53d162013-02-22 16:36:12 -08002780 ksm_nr_node_ids = knob ? 1 : nr_node_ids;
2781 }
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002782 }
2783 mutex_unlock(&ksm_thread_mutex);
2784
2785 return err ? err : count;
2786}
2787KSM_ATTR(merge_across_nodes);
2788#endif
2789
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002790static ssize_t use_zero_pages_show(struct kobject *kobj,
2791 struct kobj_attribute *attr, char *buf)
2792{
2793 return sprintf(buf, "%u\n", ksm_use_zero_pages);
2794}
2795static ssize_t use_zero_pages_store(struct kobject *kobj,
2796 struct kobj_attribute *attr,
2797 const char *buf, size_t count)
2798{
2799 int err;
2800 bool value;
2801
2802 err = kstrtobool(buf, &value);
2803 if (err)
2804 return -EINVAL;
2805
2806 ksm_use_zero_pages = value;
2807
2808 return count;
2809}
2810KSM_ATTR(use_zero_pages);
2811
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002812static ssize_t max_page_sharing_show(struct kobject *kobj,
2813 struct kobj_attribute *attr, char *buf)
2814{
2815 return sprintf(buf, "%u\n", ksm_max_page_sharing);
2816}
2817
2818static ssize_t max_page_sharing_store(struct kobject *kobj,
2819 struct kobj_attribute *attr,
2820 const char *buf, size_t count)
2821{
2822 int err;
2823 int knob;
2824
2825 err = kstrtoint(buf, 10, &knob);
2826 if (err)
2827 return err;
2828 /*
2829 * When a KSM page is created it is shared by 2 mappings. This
2830 * being a signed comparison, it implicitly verifies it's not
2831 * negative.
2832 */
2833 if (knob < 2)
2834 return -EINVAL;
2835
2836 if (READ_ONCE(ksm_max_page_sharing) == knob)
2837 return count;
2838
2839 mutex_lock(&ksm_thread_mutex);
2840 wait_while_offlining();
2841 if (ksm_max_page_sharing != knob) {
2842 if (ksm_pages_shared || remove_all_stable_nodes())
2843 err = -EBUSY;
2844 else
2845 ksm_max_page_sharing = knob;
2846 }
2847 mutex_unlock(&ksm_thread_mutex);
2848
2849 return err ? err : count;
2850}
2851KSM_ATTR(max_page_sharing);
2852
Hugh Dickinsb4028262009-09-21 17:02:09 -07002853static ssize_t pages_shared_show(struct kobject *kobj,
2854 struct kobj_attribute *attr, char *buf)
2855{
2856 return sprintf(buf, "%lu\n", ksm_pages_shared);
2857}
2858KSM_ATTR_RO(pages_shared);
2859
2860static ssize_t pages_sharing_show(struct kobject *kobj,
2861 struct kobj_attribute *attr, char *buf)
2862{
Hugh Dickinse178dfd2009-09-21 17:02:10 -07002863 return sprintf(buf, "%lu\n", ksm_pages_sharing);
Hugh Dickinsb4028262009-09-21 17:02:09 -07002864}
2865KSM_ATTR_RO(pages_sharing);
2866
Hugh Dickins473b0ce2009-09-21 17:02:11 -07002867static ssize_t pages_unshared_show(struct kobject *kobj,
2868 struct kobj_attribute *attr, char *buf)
2869{
2870 return sprintf(buf, "%lu\n", ksm_pages_unshared);
2871}
2872KSM_ATTR_RO(pages_unshared);
2873
2874static ssize_t pages_volatile_show(struct kobject *kobj,
2875 struct kobj_attribute *attr, char *buf)
2876{
2877 long ksm_pages_volatile;
2878
2879 ksm_pages_volatile = ksm_rmap_items - ksm_pages_shared
2880 - ksm_pages_sharing - ksm_pages_unshared;
2881 /*
2882 * It was not worth any locking to calculate that statistic,
2883 * but it might therefore sometimes be negative: conceal that.
2884 */
2885 if (ksm_pages_volatile < 0)
2886 ksm_pages_volatile = 0;
2887 return sprintf(buf, "%ld\n", ksm_pages_volatile);
2888}
2889KSM_ATTR_RO(pages_volatile);
2890
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002891static ssize_t stable_node_dups_show(struct kobject *kobj,
2892 struct kobj_attribute *attr, char *buf)
2893{
2894 return sprintf(buf, "%lu\n", ksm_stable_node_dups);
2895}
2896KSM_ATTR_RO(stable_node_dups);
2897
2898static ssize_t stable_node_chains_show(struct kobject *kobj,
2899 struct kobj_attribute *attr, char *buf)
2900{
2901 return sprintf(buf, "%lu\n", ksm_stable_node_chains);
2902}
2903KSM_ATTR_RO(stable_node_chains);
2904
2905static ssize_t
2906stable_node_chains_prune_millisecs_show(struct kobject *kobj,
2907 struct kobj_attribute *attr,
2908 char *buf)
2909{
2910 return sprintf(buf, "%u\n", ksm_stable_node_chains_prune_millisecs);
2911}
2912
2913static ssize_t
2914stable_node_chains_prune_millisecs_store(struct kobject *kobj,
2915 struct kobj_attribute *attr,
2916 const char *buf, size_t count)
2917{
2918 unsigned long msecs;
2919 int err;
2920
2921 err = kstrtoul(buf, 10, &msecs);
2922 if (err || msecs > UINT_MAX)
2923 return -EINVAL;
2924
2925 ksm_stable_node_chains_prune_millisecs = msecs;
2926
2927 return count;
2928}
2929KSM_ATTR(stable_node_chains_prune_millisecs);
2930
Hugh Dickins473b0ce2009-09-21 17:02:11 -07002931static ssize_t full_scans_show(struct kobject *kobj,
2932 struct kobj_attribute *attr, char *buf)
2933{
2934 return sprintf(buf, "%lu\n", ksm_scan.seqnr);
2935}
2936KSM_ATTR_RO(full_scans);
2937
Izik Eidus31dbd012009-09-21 17:02:03 -07002938static struct attribute *ksm_attrs[] = {
2939 &sleep_millisecs_attr.attr,
2940 &pages_to_scan_attr.attr,
2941 &run_attr.attr,
Hugh Dickinsb4028262009-09-21 17:02:09 -07002942 &pages_shared_attr.attr,
2943 &pages_sharing_attr.attr,
Hugh Dickins473b0ce2009-09-21 17:02:11 -07002944 &pages_unshared_attr.attr,
2945 &pages_volatile_attr.attr,
2946 &full_scans_attr.attr,
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002947#ifdef CONFIG_NUMA
2948 &merge_across_nodes_attr.attr,
2949#endif
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002950 &max_page_sharing_attr.attr,
2951 &stable_node_chains_attr.attr,
2952 &stable_node_dups_attr.attr,
2953 &stable_node_chains_prune_millisecs_attr.attr,
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002954 &use_zero_pages_attr.attr,
Izik Eidus31dbd012009-09-21 17:02:03 -07002955 NULL,
2956};
2957
2958static struct attribute_group ksm_attr_group = {
2959 .attrs = ksm_attrs,
2960 .name = "ksm",
2961};
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002962#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07002963
2964static int __init ksm_init(void)
2965{
2966 struct task_struct *ksm_thread;
2967 int err;
2968
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002969 /* The correct value depends on page size and endianness */
2970 zero_checksum = calc_checksum(ZERO_PAGE(0));
2971 /* Default to false for backwards compatibility */
2972 ksm_use_zero_pages = false;
2973
Izik Eidus31dbd012009-09-21 17:02:03 -07002974 err = ksm_slab_init();
2975 if (err)
2976 goto out;
2977
Izik Eidus31dbd012009-09-21 17:02:03 -07002978 ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd");
2979 if (IS_ERR(ksm_thread)) {
Paul McQuade25acde32014-10-09 15:29:09 -07002980 pr_err("ksm: creating kthread failed\n");
Izik Eidus31dbd012009-09-21 17:02:03 -07002981 err = PTR_ERR(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07002982 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07002983 }
2984
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002985#ifdef CONFIG_SYSFS
Izik Eidus31dbd012009-09-21 17:02:03 -07002986 err = sysfs_create_group(mm_kobj, &ksm_attr_group);
2987 if (err) {
Paul McQuade25acde32014-10-09 15:29:09 -07002988 pr_err("ksm: register sysfs failed\n");
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002989 kthread_stop(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07002990 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07002991 }
Hugh Dickinsc73602a2009-10-07 16:32:22 -07002992#else
2993 ksm_run = KSM_RUN_MERGE; /* no way for user to start it */
2994
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002995#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07002996
Hugh Dickins62b61f62009-12-14 17:59:33 -08002997#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002998 /* There is no significance to this priority 100 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08002999 hotplug_memory_notifier(ksm_memory_callback, 100);
3000#endif
Izik Eidus31dbd012009-09-21 17:02:03 -07003001 return 0;
3002
Lai Jiangshand9f89842010-08-09 17:20:02 -07003003out_free:
Izik Eidus31dbd012009-09-21 17:02:03 -07003004 ksm_slab_free();
3005out:
3006 return err;
3007}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003008subsys_initcall(ksm_init);