blob: a5716fdec1aac0ac9bf6f2305d5369887e671e39 [file] [log] [blame]
Thomas Gleixner7a338472019-06-04 10:11:15 +02001// SPDX-License-Identifier: GPL-2.0-only
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002/*
Izik Eidus31dbd012009-09-21 17:02:03 -07003 * Memory merging support.
4 *
5 * This code enables dynamic sharing of identical pages found in different
6 * memory areas, even if they are not shared by fork()
7 *
Izik Eidus36b25282009-09-21 17:02:06 -07008 * Copyright (C) 2008-2009 Red Hat, Inc.
Izik Eidus31dbd012009-09-21 17:02:03 -07009 * Authors:
10 * Izik Eidus
11 * Andrea Arcangeli
12 * Chris Wright
Izik Eidus36b25282009-09-21 17:02:06 -070013 * Hugh Dickins
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070014 */
15
16#include <linux/errno.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070017#include <linux/mm.h>
18#include <linux/fs.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070019#include <linux/mman.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070020#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010021#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010022#include <linux/sched/coredump.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070023#include <linux/rwsem.h>
24#include <linux/pagemap.h>
25#include <linux/rmap.h>
26#include <linux/spinlock.h>
Timofey Titovets59e1a2f42018-12-28 00:34:05 -080027#include <linux/xxhash.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070028#include <linux/delay.h>
29#include <linux/kthread.h>
30#include <linux/wait.h>
31#include <linux/slab.h>
32#include <linux/rbtree.h>
Hugh Dickins62b61f62009-12-14 17:59:33 -080033#include <linux/memory.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070034#include <linux/mmu_notifier.h>
Izik Eidus2c6854f2009-09-23 15:56:04 -070035#include <linux/swap.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070036#include <linux/ksm.h>
Sasha Levin4ca3a692013-02-22 16:32:28 -080037#include <linux/hashtable.h>
Andrea Arcangeli878aee72011-01-13 15:47:10 -080038#include <linux/freezer.h>
David Rientjes72788c32011-05-24 17:11:40 -070039#include <linux/oom.h>
Petr Holasek90bd6fd2013-02-22 16:35:00 -080040#include <linux/numa.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070041
Izik Eidus31dbd012009-09-21 17:02:03 -070042#include <asm/tlbflush.h>
Hugh Dickins73848b42009-12-14 17:59:22 -080043#include "internal.h"
Izik Eidus31dbd012009-09-21 17:02:03 -070044
Hugh Dickinse850dcf2013-02-22 16:35:03 -080045#ifdef CONFIG_NUMA
46#define NUMA(x) (x)
47#define DO_NUMA(x) do { (x); } while (0)
48#else
49#define NUMA(x) (0)
50#define DO_NUMA(x) do { } while (0)
51#endif
52
Mike Rapoport5a2ca3e2018-04-24 09:40:22 +030053/**
54 * DOC: Overview
55 *
Izik Eidus31dbd012009-09-21 17:02:03 -070056 * A few notes about the KSM scanning process,
57 * to make it easier to understand the data structures below:
58 *
59 * In order to reduce excessive scanning, KSM sorts the memory pages by their
60 * contents into a data structure that holds pointers to the pages' locations.
61 *
62 * Since the contents of the pages may change at any moment, KSM cannot just
63 * insert the pages into a normal sorted tree and expect it to find anything.
64 * Therefore KSM uses two data structures - the stable and the unstable tree.
65 *
66 * The stable tree holds pointers to all the merged pages (ksm pages), sorted
67 * by their contents. Because each such page is write-protected, searching on
68 * this tree is fully assured to be working (except when pages are unmapped),
69 * and therefore this tree is called the stable tree.
70 *
Mike Rapoport5a2ca3e2018-04-24 09:40:22 +030071 * The stable tree node includes information required for reverse
72 * mapping from a KSM page to virtual addresses that map this page.
73 *
74 * In order to avoid large latencies of the rmap walks on KSM pages,
75 * KSM maintains two types of nodes in the stable tree:
76 *
77 * * the regular nodes that keep the reverse mapping structures in a
78 * linked list
79 * * the "chains" that link nodes ("dups") that represent the same
80 * write protected memory content, but each "dup" corresponds to a
81 * different KSM page copy of that content
82 *
83 * Internally, the regular nodes, "dups" and "chains" are represented
Mauro Carvalho Chehab9303c9d2020-09-25 12:01:25 +020084 * using the same struct stable_node structure.
Mike Rapoport5a2ca3e2018-04-24 09:40:22 +030085 *
Izik Eidus31dbd012009-09-21 17:02:03 -070086 * In addition to the stable tree, KSM uses a second data structure called the
87 * unstable tree: this tree holds pointers to pages which have been found to
88 * be "unchanged for a period of time". The unstable tree sorts these pages
89 * by their contents, but since they are not write-protected, KSM cannot rely
90 * upon the unstable tree to work correctly - the unstable tree is liable to
91 * be corrupted as its contents are modified, and so it is called unstable.
92 *
93 * KSM solves this problem by several techniques:
94 *
95 * 1) The unstable tree is flushed every time KSM completes scanning all
96 * memory areas, and then the tree is rebuilt again from the beginning.
97 * 2) KSM will only insert into the unstable tree, pages whose hash value
98 * has not changed since the previous scan of all memory areas.
99 * 3) The unstable tree is a RedBlack Tree - so its balancing is based on the
100 * colors of the nodes and not on their contents, assuring that even when
101 * the tree gets "corrupted" it won't get out of balance, so scanning time
102 * remains the same (also, searching and inserting nodes in an rbtree uses
103 * the same algorithm, so we have no overhead when we flush and rebuild).
104 * 4) KSM never flushes the stable tree, which means that even if it were to
105 * take 10 attempts to find a page in the unstable tree, once it is found,
106 * it is secured in the stable tree. (When we scan a new page, we first
107 * compare it against the stable tree, and then against the unstable tree.)
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800108 *
109 * If the merge_across_nodes tunable is unset, then KSM maintains multiple
110 * stable trees and multiple unstable trees: one of each for each NUMA node.
Izik Eidus31dbd012009-09-21 17:02:03 -0700111 */
112
113/**
114 * struct mm_slot - ksm information per mm that is being scanned
115 * @link: link to the mm_slots hash list
116 * @mm_list: link into the mm_slots list, rooted in ksm_mm_head
Hugh Dickins6514d512009-12-14 17:59:19 -0800117 * @rmap_list: head for this mm_slot's singly-linked list of rmap_items
Izik Eidus31dbd012009-09-21 17:02:03 -0700118 * @mm: the mm that this information is valid for
119 */
120struct mm_slot {
121 struct hlist_node link;
122 struct list_head mm_list;
Hugh Dickins6514d512009-12-14 17:59:19 -0800123 struct rmap_item *rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700124 struct mm_struct *mm;
125};
126
127/**
128 * struct ksm_scan - cursor for scanning
129 * @mm_slot: the current mm_slot we are scanning
130 * @address: the next address inside that to be scanned
Hugh Dickins6514d512009-12-14 17:59:19 -0800131 * @rmap_list: link to the next rmap to be scanned in the rmap_list
Izik Eidus31dbd012009-09-21 17:02:03 -0700132 * @seqnr: count of completed full scans (needed when removing unstable node)
133 *
134 * There is only the one ksm_scan instance of this cursor structure.
135 */
136struct ksm_scan {
137 struct mm_slot *mm_slot;
138 unsigned long address;
Hugh Dickins6514d512009-12-14 17:59:19 -0800139 struct rmap_item **rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700140 unsigned long seqnr;
141};
142
143/**
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800144 * struct stable_node - node of the stable rbtree
145 * @node: rb node of this ksm page in the stable tree
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800146 * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700147 * @hlist_dup: linked into the stable_node->hlist with a stable_node chain
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800148 * @list: linked into migrate_nodes, pending placement in the proper node tree
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800149 * @hlist: hlist head of rmap_items using this ksm page
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800150 * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700151 * @chain_prune_time: time of the last full garbage collection
152 * @rmap_hlist_len: number of rmap_item entries in hlist or STABLE_NODE_CHAIN
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800153 * @nid: NUMA node id of stable tree in which linked (may not match kpfn)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800154 */
155struct stable_node {
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800156 union {
157 struct rb_node node; /* when node of stable tree */
158 struct { /* when listed for migration */
159 struct list_head *head;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700160 struct {
161 struct hlist_node hlist_dup;
162 struct list_head list;
163 };
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800164 };
165 };
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800166 struct hlist_head hlist;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700167 union {
168 unsigned long kpfn;
169 unsigned long chain_prune_time;
170 };
171 /*
172 * STABLE_NODE_CHAIN can be any negative number in
173 * rmap_hlist_len negative range, but better not -1 to be able
174 * to reliably detect underflows.
175 */
176#define STABLE_NODE_CHAIN -1024
177 int rmap_hlist_len;
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800178#ifdef CONFIG_NUMA
179 int nid;
180#endif
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800181};
182
183/**
Izik Eidus31dbd012009-09-21 17:02:03 -0700184 * struct rmap_item - reverse mapping item for virtual addresses
Hugh Dickins6514d512009-12-14 17:59:19 -0800185 * @rmap_list: next rmap_item in mm_slot's singly-linked rmap_list
Hugh Dickinsdb114b82009-12-14 17:59:25 -0800186 * @anon_vma: pointer to anon_vma for this mm,address, when in stable tree
Hugh Dickinsbc566202013-02-22 16:36:06 -0800187 * @nid: NUMA node id of unstable tree in which linked (may not match page)
Izik Eidus31dbd012009-09-21 17:02:03 -0700188 * @mm: the memory structure this rmap_item is pointing into
189 * @address: the virtual address this rmap_item tracks (+ flags in low bits)
190 * @oldchecksum: previous checksum of the page at that virtual address
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800191 * @node: rb node of this rmap_item in the unstable tree
192 * @head: pointer to stable_node heading this list in the stable tree
193 * @hlist: link into hlist of rmap_items hanging off that stable_node
Izik Eidus31dbd012009-09-21 17:02:03 -0700194 */
195struct rmap_item {
Hugh Dickins6514d512009-12-14 17:59:19 -0800196 struct rmap_item *rmap_list;
Hugh Dickinsbc566202013-02-22 16:36:06 -0800197 union {
198 struct anon_vma *anon_vma; /* when stable */
199#ifdef CONFIG_NUMA
200 int nid; /* when node of unstable tree */
201#endif
202 };
Izik Eidus31dbd012009-09-21 17:02:03 -0700203 struct mm_struct *mm;
204 unsigned long address; /* + low bits used for flags below */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800205 unsigned int oldchecksum; /* when unstable */
Izik Eidus31dbd012009-09-21 17:02:03 -0700206 union {
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800207 struct rb_node node; /* when node of unstable tree */
208 struct { /* when listed from stable tree */
209 struct stable_node *head;
210 struct hlist_node hlist;
211 };
Izik Eidus31dbd012009-09-21 17:02:03 -0700212 };
213};
214
215#define SEQNR_MASK 0x0ff /* low bits of unstable tree seqnr */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800216#define UNSTABLE_FLAG 0x100 /* is a node of the unstable tree */
217#define STABLE_FLAG 0x200 /* is listed from the stable tree */
Izik Eidus31dbd012009-09-21 17:02:03 -0700218
219/* The stable and unstable tree heads */
Hugh Dickinsef53d162013-02-22 16:36:12 -0800220static struct rb_root one_stable_tree[1] = { RB_ROOT };
221static struct rb_root one_unstable_tree[1] = { RB_ROOT };
222static struct rb_root *root_stable_tree = one_stable_tree;
223static struct rb_root *root_unstable_tree = one_unstable_tree;
Izik Eidus31dbd012009-09-21 17:02:03 -0700224
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800225/* Recently migrated nodes of stable tree, pending proper placement */
226static LIST_HEAD(migrate_nodes);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700227#define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev)
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800228
Sasha Levin4ca3a692013-02-22 16:32:28 -0800229#define MM_SLOTS_HASH_BITS 10
230static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
Izik Eidus31dbd012009-09-21 17:02:03 -0700231
232static struct mm_slot ksm_mm_head = {
233 .mm_list = LIST_HEAD_INIT(ksm_mm_head.mm_list),
234};
235static struct ksm_scan ksm_scan = {
236 .mm_slot = &ksm_mm_head,
237};
238
239static struct kmem_cache *rmap_item_cache;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800240static struct kmem_cache *stable_node_cache;
Izik Eidus31dbd012009-09-21 17:02:03 -0700241static struct kmem_cache *mm_slot_cache;
242
243/* The number of nodes in the stable tree */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700244static unsigned long ksm_pages_shared;
Izik Eidus31dbd012009-09-21 17:02:03 -0700245
Hugh Dickinse178dfd2009-09-21 17:02:10 -0700246/* The number of page slots additionally sharing those nodes */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700247static unsigned long ksm_pages_sharing;
Izik Eidus31dbd012009-09-21 17:02:03 -0700248
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700249/* The number of nodes in the unstable tree */
250static unsigned long ksm_pages_unshared;
251
252/* The number of rmap_items in use: to calculate pages_volatile */
253static unsigned long ksm_rmap_items;
254
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700255/* The number of stable_node chains */
256static unsigned long ksm_stable_node_chains;
257
258/* The number of stable_node dups linked to the stable_node chains */
259static unsigned long ksm_stable_node_dups;
260
261/* Delay in pruning stale stable_node_dups in the stable_node_chains */
Zhansaya Bagdauletkyzy584ff0d2021-09-02 15:00:51 -0700262static unsigned int ksm_stable_node_chains_prune_millisecs = 2000;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700263
264/* Maximum number of page slots sharing a stable node */
265static int ksm_max_page_sharing = 256;
266
Izik Eidus31dbd012009-09-21 17:02:03 -0700267/* Number of pages ksmd should scan in one batch */
Izik Eidus2c6854f2009-09-23 15:56:04 -0700268static unsigned int ksm_thread_pages_to_scan = 100;
Izik Eidus31dbd012009-09-21 17:02:03 -0700269
270/* Milliseconds ksmd should sleep between batches */
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700271static unsigned int ksm_thread_sleep_millisecs = 20;
Izik Eidus31dbd012009-09-21 17:02:03 -0700272
Claudio Imbrendae86c59b2017-02-24 14:55:39 -0800273/* Checksum of an empty (zeroed) page */
274static unsigned int zero_checksum __read_mostly;
275
276/* Whether to merge empty (zeroed) pages with actual zero pages */
277static bool ksm_use_zero_pages __read_mostly;
278
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800279#ifdef CONFIG_NUMA
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800280/* Zeroed when merging across nodes is not allowed */
281static unsigned int ksm_merge_across_nodes = 1;
Hugh Dickinsef53d162013-02-22 16:36:12 -0800282static int ksm_nr_node_ids = 1;
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800283#else
284#define ksm_merge_across_nodes 1U
Hugh Dickinsef53d162013-02-22 16:36:12 -0800285#define ksm_nr_node_ids 1
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800286#endif
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800287
Izik Eidus31dbd012009-09-21 17:02:03 -0700288#define KSM_RUN_STOP 0
289#define KSM_RUN_MERGE 1
290#define KSM_RUN_UNMERGE 2
Hugh Dickinsef4d43a2013-02-22 16:35:16 -0800291#define KSM_RUN_OFFLINE 4
292static unsigned long ksm_run = KSM_RUN_STOP;
293static void wait_while_offlining(void);
Izik Eidus31dbd012009-09-21 17:02:03 -0700294
295static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait);
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -0800296static DECLARE_WAIT_QUEUE_HEAD(ksm_iter_wait);
Izik Eidus31dbd012009-09-21 17:02:03 -0700297static DEFINE_MUTEX(ksm_thread_mutex);
298static DEFINE_SPINLOCK(ksm_mmlist_lock);
299
300#define KSM_KMEM_CACHE(__struct, __flags) kmem_cache_create("ksm_"#__struct,\
301 sizeof(struct __struct), __alignof__(struct __struct),\
302 (__flags), NULL)
303
304static int __init ksm_slab_init(void)
305{
306 rmap_item_cache = KSM_KMEM_CACHE(rmap_item, 0);
307 if (!rmap_item_cache)
308 goto out;
309
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800310 stable_node_cache = KSM_KMEM_CACHE(stable_node, 0);
311 if (!stable_node_cache)
312 goto out_free1;
313
Izik Eidus31dbd012009-09-21 17:02:03 -0700314 mm_slot_cache = KSM_KMEM_CACHE(mm_slot, 0);
315 if (!mm_slot_cache)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800316 goto out_free2;
Izik Eidus31dbd012009-09-21 17:02:03 -0700317
318 return 0;
319
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800320out_free2:
321 kmem_cache_destroy(stable_node_cache);
322out_free1:
Izik Eidus31dbd012009-09-21 17:02:03 -0700323 kmem_cache_destroy(rmap_item_cache);
324out:
325 return -ENOMEM;
326}
327
328static void __init ksm_slab_free(void)
329{
330 kmem_cache_destroy(mm_slot_cache);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800331 kmem_cache_destroy(stable_node_cache);
Izik Eidus31dbd012009-09-21 17:02:03 -0700332 kmem_cache_destroy(rmap_item_cache);
333 mm_slot_cache = NULL;
334}
335
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700336static __always_inline bool is_stable_node_chain(struct stable_node *chain)
337{
338 return chain->rmap_hlist_len == STABLE_NODE_CHAIN;
339}
340
341static __always_inline bool is_stable_node_dup(struct stable_node *dup)
342{
343 return dup->head == STABLE_NODE_DUP_HEAD;
344}
345
346static inline void stable_node_chain_add_dup(struct stable_node *dup,
347 struct stable_node *chain)
348{
349 VM_BUG_ON(is_stable_node_dup(dup));
350 dup->head = STABLE_NODE_DUP_HEAD;
351 VM_BUG_ON(!is_stable_node_chain(chain));
352 hlist_add_head(&dup->hlist_dup, &chain->hlist);
353 ksm_stable_node_dups++;
354}
355
356static inline void __stable_node_dup_del(struct stable_node *dup)
357{
Andrea Arcangelib4fecc62017-07-06 15:36:59 -0700358 VM_BUG_ON(!is_stable_node_dup(dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700359 hlist_del(&dup->hlist_dup);
360 ksm_stable_node_dups--;
361}
362
363static inline void stable_node_dup_del(struct stable_node *dup)
364{
365 VM_BUG_ON(is_stable_node_chain(dup));
366 if (is_stable_node_dup(dup))
367 __stable_node_dup_del(dup);
368 else
369 rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid));
370#ifdef CONFIG_DEBUG_VM
371 dup->head = NULL;
372#endif
373}
374
Izik Eidus31dbd012009-09-21 17:02:03 -0700375static inline struct rmap_item *alloc_rmap_item(void)
376{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700377 struct rmap_item *rmap_item;
378
zhong jiang5b398e42016-09-28 15:22:30 -0700379 rmap_item = kmem_cache_zalloc(rmap_item_cache, GFP_KERNEL |
380 __GFP_NORETRY | __GFP_NOWARN);
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700381 if (rmap_item)
382 ksm_rmap_items++;
383 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -0700384}
385
386static inline void free_rmap_item(struct rmap_item *rmap_item)
387{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700388 ksm_rmap_items--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700389 rmap_item->mm = NULL; /* debug safety */
390 kmem_cache_free(rmap_item_cache, rmap_item);
391}
392
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800393static inline struct stable_node *alloc_stable_node(void)
394{
zhong jiang62130552016-10-07 17:01:19 -0700395 /*
396 * The allocation can take too long with GFP_KERNEL when memory is under
397 * pressure, which may lead to hung task warnings. Adding __GFP_HIGH
398 * grants access to memory reserves, helping to avoid this problem.
399 */
400 return kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800401}
402
403static inline void free_stable_node(struct stable_node *stable_node)
404{
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700405 VM_BUG_ON(stable_node->rmap_hlist_len &&
406 !is_stable_node_chain(stable_node));
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800407 kmem_cache_free(stable_node_cache, stable_node);
408}
409
Izik Eidus31dbd012009-09-21 17:02:03 -0700410static inline struct mm_slot *alloc_mm_slot(void)
411{
412 if (!mm_slot_cache) /* initialization failed */
413 return NULL;
414 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
415}
416
417static inline void free_mm_slot(struct mm_slot *mm_slot)
418{
419 kmem_cache_free(mm_slot_cache, mm_slot);
420}
421
Izik Eidus31dbd012009-09-21 17:02:03 -0700422static struct mm_slot *get_mm_slot(struct mm_struct *mm)
423{
Sasha Levin4ca3a692013-02-22 16:32:28 -0800424 struct mm_slot *slot;
Izik Eidus31dbd012009-09-21 17:02:03 -0700425
Sasha Levinb67bfe02013-02-27 17:06:00 -0800426 hash_for_each_possible(mm_slots_hash, slot, link, (unsigned long)mm)
Sasha Levin4ca3a692013-02-22 16:32:28 -0800427 if (slot->mm == mm)
428 return slot;
429
Izik Eidus31dbd012009-09-21 17:02:03 -0700430 return NULL;
431}
432
433static void insert_to_mm_slots_hash(struct mm_struct *mm,
434 struct mm_slot *mm_slot)
435{
Izik Eidus31dbd012009-09-21 17:02:03 -0700436 mm_slot->mm = mm;
Sasha Levin4ca3a692013-02-22 16:32:28 -0800437 hash_add(mm_slots_hash, &mm_slot->link, (unsigned long)mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700438}
439
Izik Eidus31dbd012009-09-21 17:02:03 -0700440/*
Hugh Dickinsa913e182009-09-21 17:02:26 -0700441 * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's
442 * page tables after it has passed through ksm_exit() - which, if necessary,
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700443 * takes mmap_lock briefly to serialize against them. ksm_exit() does not set
Hugh Dickinsa913e182009-09-21 17:02:26 -0700444 * a special flag: they can just back out as soon as mm_users goes to zero.
445 * ksm_test_exit() is used throughout to make this test for exit: in some
446 * places for correctness, in some places just to avoid unnecessary work.
447 */
448static inline bool ksm_test_exit(struct mm_struct *mm)
449{
450 return atomic_read(&mm->mm_users) == 0;
451}
452
453/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700454 * We use break_ksm to break COW on a ksm page: it's a stripped down
455 *
Li Chen7a9547f2020-04-06 20:04:38 -0700456 * if (get_user_pages(addr, 1, FOLL_WRITE, &page, NULL) == 1)
Izik Eidus31dbd012009-09-21 17:02:03 -0700457 * put_page(page);
458 *
459 * but taking great care only to touch a ksm page, in a VM_MERGEABLE vma,
460 * in case the application has unmapped and remapped mm,addr meanwhile.
461 * Could a ksm page appear anywhere else? Actually yes, in a VM_PFNMAP
David Hildenbrandbbcd53c2021-05-06 18:05:55 -0700462 * mmap of /dev/mem, where we would not want to touch it.
Dave Hansen1b2ee122016-02-12 13:02:21 -0800463 *
464 * FAULT_FLAG/FOLL_REMOTE are because we do this outside the context
465 * of the process that owns 'vma'. We also do not want to enforce
466 * protection keys here anyway.
Izik Eidus31dbd012009-09-21 17:02:03 -0700467 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700468static int break_ksm(struct vm_area_struct *vma, unsigned long addr)
Izik Eidus31dbd012009-09-21 17:02:03 -0700469{
470 struct page *page;
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700471 vm_fault_t ret = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700472
473 do {
474 cond_resched();
Dave Hansen1b2ee122016-02-12 13:02:21 -0800475 page = follow_page(vma, addr,
476 FOLL_GET | FOLL_MIGRATION | FOLL_REMOTE);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400477 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700478 break;
479 if (PageKsm(page))
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700480 ret = handle_mm_fault(vma, addr,
Peter Xubce617e2020-08-11 18:37:44 -0700481 FAULT_FLAG_WRITE | FAULT_FLAG_REMOTE,
482 NULL);
Izik Eidus31dbd012009-09-21 17:02:03 -0700483 else
484 ret = VM_FAULT_WRITE;
485 put_page(page);
Linus Torvalds33692f22015-01-29 10:51:32 -0800486 } while (!(ret & (VM_FAULT_WRITE | VM_FAULT_SIGBUS | VM_FAULT_SIGSEGV | VM_FAULT_OOM)));
Hugh Dickinsd952b792009-09-21 17:02:16 -0700487 /*
488 * We must loop because handle_mm_fault() may back out if there's
489 * any difficulty e.g. if pte accessed bit gets updated concurrently.
490 *
491 * VM_FAULT_WRITE is what we have been hoping for: it indicates that
492 * COW has been broken, even if the vma does not permit VM_WRITE;
493 * but note that a concurrent fault might break PageKsm for us.
494 *
495 * VM_FAULT_SIGBUS could occur if we race with truncation of the
496 * backing file, which also invalidates anonymous pages: that's
497 * okay, that truncation will have unmapped the PageKsm for us.
498 *
499 * VM_FAULT_OOM: at the time of writing (late July 2009), setting
500 * aside mem_cgroup limits, VM_FAULT_OOM would only be set if the
501 * current task has TIF_MEMDIE set, and will be OOM killed on return
502 * to user; and ksmd, having no mm, would never be chosen for that.
503 *
504 * But if the mm is in a limited mem_cgroup, then the fault may fail
505 * with VM_FAULT_OOM even if the current task is not TIF_MEMDIE; and
506 * even ksmd can fail in this way - though it's usually breaking ksm
507 * just to undo a merge it made a moment before, so unlikely to oom.
508 *
509 * That's a pity: we might therefore have more kernel pages allocated
510 * than we're counting as nodes in the stable tree; but ksm_do_scan
511 * will retry to break_cow on each pass, so should recover the page
512 * in due course. The important thing is to not let VM_MERGEABLE
513 * be cleared while any such pages might remain in the area.
514 */
515 return (ret & VM_FAULT_OOM) ? -ENOMEM : 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700516}
517
Bob Liuef694222012-03-21 16:34:11 -0700518static struct vm_area_struct *find_mergeable_vma(struct mm_struct *mm,
519 unsigned long addr)
520{
521 struct vm_area_struct *vma;
522 if (ksm_test_exit(mm))
523 return NULL;
Liam Howlettff69fb82021-06-28 19:39:41 -0700524 vma = vma_lookup(mm, addr);
525 if (!vma || !(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
Bob Liuef694222012-03-21 16:34:11 -0700526 return NULL;
527 return vma;
528}
529
Hugh Dickins8dd35572009-12-14 17:59:18 -0800530static void break_cow(struct rmap_item *rmap_item)
Izik Eidus31dbd012009-09-21 17:02:03 -0700531{
Hugh Dickins8dd35572009-12-14 17:59:18 -0800532 struct mm_struct *mm = rmap_item->mm;
533 unsigned long addr = rmap_item->address;
Izik Eidus31dbd012009-09-21 17:02:03 -0700534 struct vm_area_struct *vma;
535
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800536 /*
537 * It is not an accident that whenever we want to break COW
538 * to undo, we also need to drop a reference to the anon_vma.
539 */
Peter Zijlstra9e601092011-03-22 16:32:46 -0700540 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800541
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700542 mmap_read_lock(mm);
Bob Liuef694222012-03-21 16:34:11 -0700543 vma = find_mergeable_vma(mm, addr);
544 if (vma)
545 break_ksm(vma, addr);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700546 mmap_read_unlock(mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700547}
548
549static struct page *get_mergeable_page(struct rmap_item *rmap_item)
550{
551 struct mm_struct *mm = rmap_item->mm;
552 unsigned long addr = rmap_item->address;
553 struct vm_area_struct *vma;
554 struct page *page;
555
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700556 mmap_read_lock(mm);
Bob Liuef694222012-03-21 16:34:11 -0700557 vma = find_mergeable_vma(mm, addr);
558 if (!vma)
Izik Eidus31dbd012009-09-21 17:02:03 -0700559 goto out;
560
561 page = follow_page(vma, addr, FOLL_GET);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400562 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700563 goto out;
Kirill A. Shutemovf765f542016-01-15 16:53:03 -0800564 if (PageAnon(page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700565 flush_anon_page(vma, page, addr);
566 flush_dcache_page(page);
567 } else {
568 put_page(page);
Andrea Arcangelic8f95ed2015-11-05 18:49:19 -0800569out:
570 page = NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -0700571 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700572 mmap_read_unlock(mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700573 return page;
574}
575
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800576/*
577 * This helper is used for getting right index into array of tree roots.
578 * When merge_across_nodes knob is set to 1, there are only two rb-trees for
579 * stable and unstable pages from all nodes with roots in index 0. Otherwise,
580 * every node has its own stable and unstable tree.
581 */
582static inline int get_kpfn_nid(unsigned long kpfn)
583{
Hugh Dickinsd8fc16a2013-03-08 12:43:34 -0800584 return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn));
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800585}
586
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700587static struct stable_node *alloc_stable_node_chain(struct stable_node *dup,
588 struct rb_root *root)
589{
590 struct stable_node *chain = alloc_stable_node();
591 VM_BUG_ON(is_stable_node_chain(dup));
592 if (likely(chain)) {
593 INIT_HLIST_HEAD(&chain->hlist);
594 chain->chain_prune_time = jiffies;
595 chain->rmap_hlist_len = STABLE_NODE_CHAIN;
596#if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA)
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800597 chain->nid = NUMA_NO_NODE; /* debug */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700598#endif
599 ksm_stable_node_chains++;
600
601 /*
602 * Put the stable node chain in the first dimension of
603 * the stable tree and at the same time remove the old
604 * stable node.
605 */
606 rb_replace_node(&dup->node, &chain->node, root);
607
608 /*
609 * Move the old stable node to the second dimension
610 * queued in the hlist_dup. The invariant is that all
611 * dup stable_nodes in the chain->hlist point to pages
Ethon Paul457aef92020-06-04 16:49:01 -0700612 * that are write protected and have the exact same
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700613 * content.
614 */
615 stable_node_chain_add_dup(dup, chain);
616 }
617 return chain;
618}
619
620static inline void free_stable_node_chain(struct stable_node *chain,
621 struct rb_root *root)
622{
623 rb_erase(&chain->node, root);
624 free_stable_node(chain);
625 ksm_stable_node_chains--;
626}
627
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800628static void remove_node_from_stable_tree(struct stable_node *stable_node)
629{
630 struct rmap_item *rmap_item;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800631
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700632 /* check it's not STABLE_NODE_CHAIN or negative */
633 BUG_ON(stable_node->rmap_hlist_len < 0);
634
Sasha Levinb67bfe02013-02-27 17:06:00 -0800635 hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800636 if (rmap_item->hlist.next)
637 ksm_pages_sharing--;
638 else
639 ksm_pages_shared--;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700640 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
641 stable_node->rmap_hlist_len--;
Peter Zijlstra9e601092011-03-22 16:32:46 -0700642 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800643 rmap_item->address &= PAGE_MASK;
644 cond_resched();
645 }
646
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700647 /*
648 * We need the second aligned pointer of the migrate_nodes
649 * list_head to stay clear from the rb_parent_color union
650 * (aligned and different than any node) and also different
651 * from &migrate_nodes. This will verify that future list.h changes
Nick Desaulniers815f0dd2018-08-22 16:37:24 -0700652 * don't break STABLE_NODE_DUP_HEAD. Only recent gcc can handle it.
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700653 */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700654 BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes);
655 BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700656
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800657 if (stable_node->head == &migrate_nodes)
658 list_del(&stable_node->list);
659 else
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700660 stable_node_dup_del(stable_node);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800661 free_stable_node(stable_node);
662}
663
Yang Shi2cee57d12019-03-05 15:48:12 -0800664enum get_ksm_page_flags {
665 GET_KSM_PAGE_NOLOCK,
666 GET_KSM_PAGE_LOCK,
667 GET_KSM_PAGE_TRYLOCK
668};
669
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800670/*
671 * get_ksm_page: checks if the page indicated by the stable node
672 * is still its ksm page, despite having held no reference to it.
673 * In which case we can trust the content of the page, and it
674 * returns the gotten page; but if the page has now been zapped,
675 * remove the stale node from the stable tree and return NULL.
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800676 * But beware, the stable node's page might be being migrated.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800677 *
678 * You would expect the stable_node to hold a reference to the ksm page.
679 * But if it increments the page's count, swapping out has to wait for
680 * ksmd to come around again before it can free the page, which may take
681 * seconds or even minutes: much too unresponsive. So instead we use a
682 * "keyhole reference": access to the ksm page from the stable node peeps
683 * out through its keyhole to see if that page still holds the right key,
684 * pointing back to this stable node. This relies on freeing a PageAnon
685 * page to reset its page->mapping to NULL, and relies on no other use of
686 * a page to put something that might look like our key in page->mapping.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800687 * is on its way to being freed; but it is an anomaly to bear in mind.
688 */
Yang Shi2cee57d12019-03-05 15:48:12 -0800689static struct page *get_ksm_page(struct stable_node *stable_node,
690 enum get_ksm_page_flags flags)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800691{
692 struct page *page;
693 void *expected_mapping;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800694 unsigned long kpfn;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800695
Minchan Kimbda807d2016-07-26 15:23:05 -0700696 expected_mapping = (void *)((unsigned long)stable_node |
697 PAGE_MAPPING_KSM);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800698again:
Paul E. McKenney08df4772017-10-09 11:51:45 -0700699 kpfn = READ_ONCE(stable_node->kpfn); /* Address dependency. */
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800700 page = pfn_to_page(kpfn);
Jason Low4db0c3c2015-04-15 16:14:08 -0700701 if (READ_ONCE(page->mapping) != expected_mapping)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800702 goto stale;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800703
704 /*
705 * We cannot do anything with the page while its refcount is 0.
706 * Usually 0 means free, or tail of a higher-order page: in which
707 * case this node is no longer referenced, and should be freed;
Jiang Biao1c4c3b92018-08-21 21:53:13 -0700708 * however, it might mean that the page is under page_ref_freeze().
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800709 * The __remove_mapping() case is easy, again the node is now stale;
Kirill Tkhai52d1e602019-03-05 15:43:06 -0800710 * the same is in reuse_ksm_page() case; but if page is swapcache
711 * in migrate_page_move_mapping(), it might still be our page,
712 * in which case it's essential to keep the node.
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800713 */
714 while (!get_page_unless_zero(page)) {
715 /*
716 * Another check for page->mapping != expected_mapping would
717 * work here too. We have chosen the !PageSwapCache test to
718 * optimize the common case, when the page is or is about to
719 * be freed: PageSwapCache is cleared (under spin_lock_irq)
Jiang Biao1c4c3b92018-08-21 21:53:13 -0700720 * in the ref_freeze section of __remove_mapping(); but Anon
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800721 * page->mapping reset to NULL later, in free_pages_prepare().
722 */
723 if (!PageSwapCache(page))
724 goto stale;
725 cpu_relax();
726 }
727
Jason Low4db0c3c2015-04-15 16:14:08 -0700728 if (READ_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800729 put_page(page);
730 goto stale;
731 }
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800732
Yang Shi2cee57d12019-03-05 15:48:12 -0800733 if (flags == GET_KSM_PAGE_TRYLOCK) {
734 if (!trylock_page(page)) {
735 put_page(page);
736 return ERR_PTR(-EBUSY);
737 }
738 } else if (flags == GET_KSM_PAGE_LOCK)
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800739 lock_page(page);
Yang Shi2cee57d12019-03-05 15:48:12 -0800740
741 if (flags != GET_KSM_PAGE_NOLOCK) {
Jason Low4db0c3c2015-04-15 16:14:08 -0700742 if (READ_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800743 unlock_page(page);
744 put_page(page);
745 goto stale;
746 }
747 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800748 return page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800749
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800750stale:
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800751 /*
752 * We come here from above when page->mapping or !PageSwapCache
753 * suggests that the node is stale; but it might be under migration.
754 * We need smp_rmb(), matching the smp_wmb() in ksm_migrate_page(),
755 * before checking whether node->kpfn has been changed.
756 */
757 smp_rmb();
Jason Low4db0c3c2015-04-15 16:14:08 -0700758 if (READ_ONCE(stable_node->kpfn) != kpfn)
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800759 goto again;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800760 remove_node_from_stable_tree(stable_node);
761 return NULL;
762}
763
Izik Eidus31dbd012009-09-21 17:02:03 -0700764/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700765 * Removing rmap_item from stable or unstable tree.
766 * This function will clean the information from the stable/unstable tree.
767 */
768static void remove_rmap_item_from_tree(struct rmap_item *rmap_item)
769{
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800770 if (rmap_item->address & STABLE_FLAG) {
771 struct stable_node *stable_node;
Hugh Dickins5ad64682009-12-14 17:59:24 -0800772 struct page *page;
Izik Eidus31dbd012009-09-21 17:02:03 -0700773
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800774 stable_node = rmap_item->head;
Hugh Dickins62862292021-05-14 17:27:22 -0700775 page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800776 if (!page)
777 goto out;
778
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800779 hlist_del(&rmap_item->hlist);
Hugh Dickins62862292021-05-14 17:27:22 -0700780 unlock_page(page);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800781 put_page(page);
Hugh Dickins08beca42009-12-14 17:59:21 -0800782
Andrea Arcangeli98666f8a2015-11-05 18:49:13 -0800783 if (!hlist_empty(&stable_node->hlist))
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800784 ksm_pages_sharing--;
785 else
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800786 ksm_pages_shared--;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700787 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
788 stable_node->rmap_hlist_len--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700789
Peter Zijlstra9e601092011-03-22 16:32:46 -0700790 put_anon_vma(rmap_item->anon_vma);
Miaohe Linc89a3842021-05-04 18:37:45 -0700791 rmap_item->head = NULL;
Hugh Dickins93d17712009-12-14 17:59:16 -0800792 rmap_item->address &= PAGE_MASK;
Izik Eidus31dbd012009-09-21 17:02:03 -0700793
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800794 } else if (rmap_item->address & UNSTABLE_FLAG) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700795 unsigned char age;
796 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -0700797 * Usually ksmd can and must skip the rb_erase, because
Izik Eidus31dbd012009-09-21 17:02:03 -0700798 * root_unstable_tree was already reset to RB_ROOT.
Hugh Dickins9ba69292009-09-21 17:02:20 -0700799 * But be careful when an mm is exiting: do the rb_erase
800 * if this rmap_item was inserted by this scan, rather
801 * than left over from before.
Izik Eidus31dbd012009-09-21 17:02:03 -0700802 */
803 age = (unsigned char)(ksm_scan.seqnr - rmap_item->address);
Hugh Dickinscd551f92009-09-21 17:02:17 -0700804 BUG_ON(age > 1);
Izik Eidus31dbd012009-09-21 17:02:03 -0700805 if (!age)
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800806 rb_erase(&rmap_item->node,
Hugh Dickinsef53d162013-02-22 16:36:12 -0800807 root_unstable_tree + NUMA(rmap_item->nid));
Hugh Dickins93d17712009-12-14 17:59:16 -0800808 ksm_pages_unshared--;
809 rmap_item->address &= PAGE_MASK;
810 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800811out:
Izik Eidus31dbd012009-09-21 17:02:03 -0700812 cond_resched(); /* we're called from many long loops */
813}
814
Chengyang Fan420be4e2021-05-04 18:37:48 -0700815static void remove_trailing_rmap_items(struct rmap_item **rmap_list)
Izik Eidus31dbd012009-09-21 17:02:03 -0700816{
Hugh Dickins6514d512009-12-14 17:59:19 -0800817 while (*rmap_list) {
818 struct rmap_item *rmap_item = *rmap_list;
819 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700820 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -0700821 free_rmap_item(rmap_item);
822 }
823}
824
825/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800826 * Though it's very tempting to unmerge rmap_items from stable tree rather
Izik Eidus31dbd012009-09-21 17:02:03 -0700827 * than check every pte of a given vma, the locking doesn't quite work for
828 * that - an rmap_item is assigned to the stable tree after inserting ksm
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700829 * page and upping mmap_lock. Nor does it fit with the way we skip dup'ing
Izik Eidus31dbd012009-09-21 17:02:03 -0700830 * rmap_items from parent to child at fork time (so as not to waste time
831 * if exit comes before the next scan reaches it).
Hugh Dickins81464e302009-09-21 17:02:15 -0700832 *
833 * Similarly, although we'd like to remove rmap_items (so updating counts
834 * and freeing memory) when unmerging an area, it's easier to leave that
835 * to the next pass of ksmd - consider, for example, how ksmd might be
836 * in cmp_and_merge_page on one of the rmap_items we would be removing.
Izik Eidus31dbd012009-09-21 17:02:03 -0700837 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700838static int unmerge_ksm_pages(struct vm_area_struct *vma,
839 unsigned long start, unsigned long end)
Izik Eidus31dbd012009-09-21 17:02:03 -0700840{
841 unsigned long addr;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700842 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700843
Hugh Dickinsd952b792009-09-21 17:02:16 -0700844 for (addr = start; addr < end && !err; addr += PAGE_SIZE) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700845 if (ksm_test_exit(vma->vm_mm))
846 break;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700847 if (signal_pending(current))
848 err = -ERESTARTSYS;
849 else
850 err = break_ksm(vma, addr);
851 }
852 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -0700853}
854
Mike Rapoport88484822018-06-07 17:07:11 -0700855static inline struct stable_node *page_stable_node(struct page *page)
856{
857 return PageKsm(page) ? page_rmapping(page) : NULL;
858}
859
860static inline void set_page_stable_node(struct page *page,
861 struct stable_node *stable_node)
862{
863 page->mapping = (void *)((unsigned long)stable_node | PAGE_MAPPING_KSM);
864}
865
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700866#ifdef CONFIG_SYSFS
867/*
868 * Only called through the sysfs control interface:
869 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800870static int remove_stable_node(struct stable_node *stable_node)
871{
872 struct page *page;
873 int err;
874
Yang Shi2cee57d12019-03-05 15:48:12 -0800875 page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK);
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800876 if (!page) {
877 /*
878 * get_ksm_page did remove_node_from_stable_tree itself.
879 */
880 return 0;
881 }
882
Andrey Ryabinin9a632362019-11-21 17:54:01 -0800883 /*
884 * Page could be still mapped if this races with __mmput() running in
885 * between ksm_exit() and exit_mmap(). Just refuse to let
886 * merge_across_nodes/max_page_sharing be switched.
887 */
888 err = -EBUSY;
889 if (!page_mapped(page)) {
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800890 /*
891 * The stable node did not yet appear stale to get_ksm_page(),
892 * since that allows for an unmapped ksm page to be recognized
893 * right up until it is freed; but the node is safe to remove.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800894 * This page might be in a pagevec waiting to be freed,
895 * or it might be PageSwapCache (perhaps under writeback),
896 * or it might have been removed from swapcache a moment ago.
897 */
898 set_page_stable_node(page, NULL);
899 remove_node_from_stable_tree(stable_node);
900 err = 0;
901 }
902
903 unlock_page(page);
904 put_page(page);
905 return err;
906}
907
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700908static int remove_stable_node_chain(struct stable_node *stable_node,
909 struct rb_root *root)
910{
911 struct stable_node *dup;
912 struct hlist_node *hlist_safe;
913
914 if (!is_stable_node_chain(stable_node)) {
915 VM_BUG_ON(is_stable_node_dup(stable_node));
916 if (remove_stable_node(stable_node))
917 return true;
918 else
919 return false;
920 }
921
922 hlist_for_each_entry_safe(dup, hlist_safe,
923 &stable_node->hlist, hlist_dup) {
924 VM_BUG_ON(!is_stable_node_dup(dup));
925 if (remove_stable_node(dup))
926 return true;
927 }
928 BUG_ON(!hlist_empty(&stable_node->hlist));
929 free_stable_node_chain(stable_node, root);
930 return false;
931}
932
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800933static int remove_all_stable_nodes(void)
934{
Geliang Tang03640412016-01-14 15:20:54 -0800935 struct stable_node *stable_node, *next;
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800936 int nid;
937 int err = 0;
938
Hugh Dickinsef53d162013-02-22 16:36:12 -0800939 for (nid = 0; nid < ksm_nr_node_ids; nid++) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800940 while (root_stable_tree[nid].rb_node) {
941 stable_node = rb_entry(root_stable_tree[nid].rb_node,
942 struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700943 if (remove_stable_node_chain(stable_node,
944 root_stable_tree + nid)) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800945 err = -EBUSY;
946 break; /* proceed to next nid */
947 }
948 cond_resched();
949 }
950 }
Geliang Tang03640412016-01-14 15:20:54 -0800951 list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800952 if (remove_stable_node(stable_node))
953 err = -EBUSY;
954 cond_resched();
955 }
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800956 return err;
957}
958
Hugh Dickinsd952b792009-09-21 17:02:16 -0700959static int unmerge_and_remove_all_rmap_items(void)
Izik Eidus31dbd012009-09-21 17:02:03 -0700960{
961 struct mm_slot *mm_slot;
962 struct mm_struct *mm;
963 struct vm_area_struct *vma;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700964 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700965
Hugh Dickinsd952b792009-09-21 17:02:16 -0700966 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700967 ksm_scan.mm_slot = list_entry(ksm_mm_head.mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700968 struct mm_slot, mm_list);
969 spin_unlock(&ksm_mmlist_lock);
970
Hugh Dickins9ba69292009-09-21 17:02:20 -0700971 for (mm_slot = ksm_scan.mm_slot;
972 mm_slot != &ksm_mm_head; mm_slot = ksm_scan.mm_slot) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700973 mm = mm_slot->mm;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700974 mmap_read_lock(mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700975 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700976 if (ksm_test_exit(mm))
977 break;
Izik Eidus31dbd012009-09-21 17:02:03 -0700978 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
979 continue;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700980 err = unmerge_ksm_pages(vma,
981 vma->vm_start, vma->vm_end);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700982 if (err)
983 goto error;
Izik Eidus31dbd012009-09-21 17:02:03 -0700984 }
Hugh Dickins9ba69292009-09-21 17:02:20 -0700985
Chengyang Fan420be4e2021-05-04 18:37:48 -0700986 remove_trailing_rmap_items(&mm_slot->rmap_list);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700987 mmap_read_unlock(mm);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700988
989 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700990 ksm_scan.mm_slot = list_entry(mm_slot->mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700991 struct mm_slot, mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700992 if (ksm_test_exit(mm)) {
Sasha Levin4ca3a692013-02-22 16:32:28 -0800993 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700994 list_del(&mm_slot->mm_list);
995 spin_unlock(&ksm_mmlist_lock);
996
997 free_mm_slot(mm_slot);
998 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700999 mmdrop(mm);
Zhou Chengming7496fea2016-05-12 15:42:21 -07001000 } else
Hugh Dickins9ba69292009-09-21 17:02:20 -07001001 spin_unlock(&ksm_mmlist_lock);
Izik Eidus31dbd012009-09-21 17:02:03 -07001002 }
1003
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001004 /* Clean up stable nodes, but don't worry if some are still busy */
1005 remove_all_stable_nodes();
Hugh Dickinsd952b792009-09-21 17:02:16 -07001006 ksm_scan.seqnr = 0;
Hugh Dickins9ba69292009-09-21 17:02:20 -07001007 return 0;
1008
1009error:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001010 mmap_read_unlock(mm);
Izik Eidus31dbd012009-09-21 17:02:03 -07001011 spin_lock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -07001012 ksm_scan.mm_slot = &ksm_mm_head;
Izik Eidus31dbd012009-09-21 17:02:03 -07001013 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -07001014 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -07001015}
Hugh Dickins2ffd8672009-09-21 17:02:23 -07001016#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07001017
Izik Eidus31dbd012009-09-21 17:02:03 -07001018static u32 calc_checksum(struct page *page)
1019{
1020 u32 checksum;
Cong Wang9b04c5f2011-11-25 23:14:39 +08001021 void *addr = kmap_atomic(page);
Timofey Titovets59e1a2f42018-12-28 00:34:05 -08001022 checksum = xxhash(addr, PAGE_SIZE, 0);
Cong Wang9b04c5f2011-11-25 23:14:39 +08001023 kunmap_atomic(addr);
Izik Eidus31dbd012009-09-21 17:02:03 -07001024 return checksum;
1025}
1026
Izik Eidus31dbd012009-09-21 17:02:03 -07001027static int write_protect_page(struct vm_area_struct *vma, struct page *page,
1028 pte_t *orig_pte)
1029{
1030 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001031 struct page_vma_mapped_walk pvmw = {
1032 .page = page,
1033 .vma = vma,
1034 };
Izik Eidus31dbd012009-09-21 17:02:03 -07001035 int swapped;
1036 int err = -EFAULT;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001037 struct mmu_notifier_range range;
Izik Eidus31dbd012009-09-21 17:02:03 -07001038
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001039 pvmw.address = page_address_in_vma(page, vma);
1040 if (pvmw.address == -EFAULT)
Izik Eidus31dbd012009-09-21 17:02:03 -07001041 goto out;
1042
Andrea Arcangeli29ad7682011-01-13 15:47:19 -08001043 BUG_ON(PageTransCompound(page));
Haggai Eran6bdb9132012-10-08 16:33:35 -07001044
Jérôme Glisse7269f992019-05-13 17:20:53 -07001045 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001046 pvmw.address,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001047 pvmw.address + PAGE_SIZE);
1048 mmu_notifier_invalidate_range_start(&range);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001049
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001050 if (!page_vma_mapped_walk(&pvmw))
Haggai Eran6bdb9132012-10-08 16:33:35 -07001051 goto out_mn;
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001052 if (WARN_ONCE(!pvmw.pte, "Unexpected PMD mapping?"))
1053 goto out_unlock;
Izik Eidus31dbd012009-09-21 17:02:03 -07001054
Aneesh Kumar K.V595cd8f2017-02-24 14:59:19 -08001055 if (pte_write(*pvmw.pte) || pte_dirty(*pvmw.pte) ||
Minchan Kimb3a81d02017-08-10 15:24:15 -07001056 (pte_protnone(*pvmw.pte) && pte_savedwrite(*pvmw.pte)) ||
1057 mm_tlb_flush_pending(mm)) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001058 pte_t entry;
1059
1060 swapped = PageSwapCache(page);
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001061 flush_cache_page(vma, pvmw.address, page_to_pfn(page));
Izik Eidus31dbd012009-09-21 17:02:03 -07001062 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001063 * Ok this is tricky, when get_user_pages_fast() run it doesn't
Izik Eidus31dbd012009-09-21 17:02:03 -07001064 * take any lock, therefore the check that we are going to make
Ingo Molnarf0953a12021-05-06 18:06:47 -07001065 * with the pagecount against the mapcount is racy and
Izik Eidus31dbd012009-09-21 17:02:03 -07001066 * O_DIRECT can happen right after the check.
1067 * So we clear the pte and flush the tlb before the check
1068 * this assure us that no O_DIRECT can happen after the check
1069 * or in the middle of the check.
Jérôme Glisse0f108512017-11-15 17:34:07 -08001070 *
1071 * No need to notify as we are downgrading page table to read
1072 * only not changing it to point to a new page.
1073 *
Mike Rapoportad56b732018-03-21 21:22:47 +02001074 * See Documentation/vm/mmu_notifier.rst
Izik Eidus31dbd012009-09-21 17:02:03 -07001075 */
Jérôme Glisse0f108512017-11-15 17:34:07 -08001076 entry = ptep_clear_flush(vma, pvmw.address, pvmw.pte);
Izik Eidus31dbd012009-09-21 17:02:03 -07001077 /*
1078 * Check that no O_DIRECT or similar I/O is in progress on the
1079 * page
1080 */
Hugh Dickins31e855e2009-12-14 17:59:17 -08001081 if (page_mapcount(page) + 1 + swapped != page_count(page)) {
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001082 set_pte_at(mm, pvmw.address, pvmw.pte, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -07001083 goto out_unlock;
1084 }
Hugh Dickins4e316352010-10-02 17:49:08 -07001085 if (pte_dirty(entry))
1086 set_page_dirty(page);
Aneesh Kumar K.V595cd8f2017-02-24 14:59:19 -08001087
1088 if (pte_protnone(entry))
1089 entry = pte_mkclean(pte_clear_savedwrite(entry));
1090 else
1091 entry = pte_mkclean(pte_wrprotect(entry));
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001092 set_pte_at_notify(mm, pvmw.address, pvmw.pte, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -07001093 }
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001094 *orig_pte = *pvmw.pte;
Izik Eidus31dbd012009-09-21 17:02:03 -07001095 err = 0;
1096
1097out_unlock:
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001098 page_vma_mapped_walk_done(&pvmw);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001099out_mn:
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001100 mmu_notifier_invalidate_range_end(&range);
Izik Eidus31dbd012009-09-21 17:02:03 -07001101out:
1102 return err;
1103}
1104
1105/**
1106 * replace_page - replace page in vma by new ksm page
Hugh Dickins8dd35572009-12-14 17:59:18 -08001107 * @vma: vma that holds the pte pointing to page
1108 * @page: the page we are replacing by kpage
1109 * @kpage: the ksm page we replace page by
Izik Eidus31dbd012009-09-21 17:02:03 -07001110 * @orig_pte: the original value of the pte
1111 *
1112 * Returns 0 on success, -EFAULT on failure.
1113 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001114static int replace_page(struct vm_area_struct *vma, struct page *page,
1115 struct page *kpage, pte_t orig_pte)
Izik Eidus31dbd012009-09-21 17:02:03 -07001116{
1117 struct mm_struct *mm = vma->vm_mm;
Izik Eidus31dbd012009-09-21 17:02:03 -07001118 pmd_t *pmd;
1119 pte_t *ptep;
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001120 pte_t newpte;
Izik Eidus31dbd012009-09-21 17:02:03 -07001121 spinlock_t *ptl;
1122 unsigned long addr;
Izik Eidus31dbd012009-09-21 17:02:03 -07001123 int err = -EFAULT;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001124 struct mmu_notifier_range range;
Izik Eidus31dbd012009-09-21 17:02:03 -07001125
Hugh Dickins8dd35572009-12-14 17:59:18 -08001126 addr = page_address_in_vma(page, vma);
Izik Eidus31dbd012009-09-21 17:02:03 -07001127 if (addr == -EFAULT)
1128 goto out;
1129
Bob Liu62190492012-12-11 16:00:37 -08001130 pmd = mm_find_pmd(mm, addr);
1131 if (!pmd)
Izik Eidus31dbd012009-09-21 17:02:03 -07001132 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001133
Jérôme Glisse7269f992019-05-13 17:20:53 -07001134 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, addr,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001135 addr + PAGE_SIZE);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001136 mmu_notifier_invalidate_range_start(&range);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001137
Izik Eidus31dbd012009-09-21 17:02:03 -07001138 ptep = pte_offset_map_lock(mm, pmd, addr, &ptl);
1139 if (!pte_same(*ptep, orig_pte)) {
1140 pte_unmap_unlock(ptep, ptl);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001141 goto out_mn;
Izik Eidus31dbd012009-09-21 17:02:03 -07001142 }
1143
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001144 /*
1145 * No need to check ksm_use_zero_pages here: we can only have a
Ethon Paul457aef92020-06-04 16:49:01 -07001146 * zero_page here if ksm_use_zero_pages was enabled already.
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001147 */
1148 if (!is_zero_pfn(page_to_pfn(kpage))) {
1149 get_page(kpage);
1150 page_add_anon_rmap(kpage, vma, addr, false);
1151 newpte = mk_pte(kpage, vma->vm_page_prot);
1152 } else {
1153 newpte = pte_mkspecial(pfn_pte(page_to_pfn(kpage),
1154 vma->vm_page_prot));
Claudio Imbrendaa38c0152018-04-10 16:29:41 -07001155 /*
1156 * We're replacing an anonymous page with a zero page, which is
1157 * not anonymous. We need to do proper accounting otherwise we
1158 * will get wrong values in /proc, and a BUG message in dmesg
1159 * when tearing down the mm.
1160 */
1161 dec_mm_counter(mm, MM_ANONPAGES);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001162 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001163
1164 flush_cache_page(vma, addr, pte_pfn(*ptep));
Jérôme Glisse0f108512017-11-15 17:34:07 -08001165 /*
1166 * No need to notify as we are replacing a read only page with another
1167 * read only page with the same content.
1168 *
Mike Rapoportad56b732018-03-21 21:22:47 +02001169 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08001170 */
1171 ptep_clear_flush(vma, addr, ptep);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001172 set_pte_at_notify(mm, addr, ptep, newpte);
Izik Eidus31dbd012009-09-21 17:02:03 -07001173
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001174 page_remove_rmap(page, false);
Hugh Dickinsae52a2a2011-01-13 15:46:28 -08001175 if (!page_mapped(page))
1176 try_to_free_swap(page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001177 put_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001178
1179 pte_unmap_unlock(ptep, ptl);
1180 err = 0;
Haggai Eran6bdb9132012-10-08 16:33:35 -07001181out_mn:
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001182 mmu_notifier_invalidate_range_end(&range);
Izik Eidus31dbd012009-09-21 17:02:03 -07001183out:
1184 return err;
1185}
1186
1187/*
1188 * try_to_merge_one_page - take two pages and merge them into one
Hugh Dickins8dd35572009-12-14 17:59:18 -08001189 * @vma: the vma that holds the pte pointing to page
1190 * @page: the PageAnon page that we want to replace with kpage
Hugh Dickins80e148222009-12-14 17:59:29 -08001191 * @kpage: the PageKsm page that we want to map instead of page,
1192 * or NULL the first time when we want to use page as kpage.
Izik Eidus31dbd012009-09-21 17:02:03 -07001193 *
1194 * This function returns 0 if the pages were merged, -EFAULT otherwise.
1195 */
1196static int try_to_merge_one_page(struct vm_area_struct *vma,
Hugh Dickins8dd35572009-12-14 17:59:18 -08001197 struct page *page, struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001198{
1199 pte_t orig_pte = __pte(0);
1200 int err = -EFAULT;
1201
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001202 if (page == kpage) /* ksm page forked */
1203 return 0;
1204
Hugh Dickins8dd35572009-12-14 17:59:18 -08001205 if (!PageAnon(page))
Izik Eidus31dbd012009-09-21 17:02:03 -07001206 goto out;
1207
Izik Eidus31dbd012009-09-21 17:02:03 -07001208 /*
1209 * We need the page lock to read a stable PageSwapCache in
1210 * write_protect_page(). We use trylock_page() instead of
1211 * lock_page() because we don't want to wait here - we
1212 * prefer to continue scanning and merging different pages,
1213 * then come back to this page when it is unlocked.
1214 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001215 if (!trylock_page(page))
Hugh Dickins31e855e2009-12-14 17:59:17 -08001216 goto out;
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001217
1218 if (PageTransCompound(page)) {
Andrea Arcangelia7306c32017-06-02 14:46:11 -07001219 if (split_huge_page(page))
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001220 goto out_unlock;
1221 }
1222
Izik Eidus31dbd012009-09-21 17:02:03 -07001223 /*
1224 * If this anonymous page is mapped only here, its pte may need
1225 * to be write-protected. If it's mapped elsewhere, all of its
1226 * ptes are necessarily already write-protected. But in either
1227 * case, we need to lock and check page_count is not raised.
1228 */
Hugh Dickins80e148222009-12-14 17:59:29 -08001229 if (write_protect_page(vma, page, &orig_pte) == 0) {
1230 if (!kpage) {
1231 /*
1232 * While we hold page lock, upgrade page from
1233 * PageAnon+anon_vma to PageKsm+NULL stable_node:
1234 * stable_tree_insert() will update stable_node.
1235 */
1236 set_page_stable_node(page, NULL);
1237 mark_page_accessed(page);
Minchan Kim337ed7e2016-01-15 16:55:15 -08001238 /*
1239 * Page reclaim just frees a clean page with no dirty
1240 * ptes: make sure that the ksm page would be swapped.
1241 */
1242 if (!PageDirty(page))
1243 SetPageDirty(page);
Hugh Dickins80e148222009-12-14 17:59:29 -08001244 err = 0;
1245 } else if (pages_identical(page, kpage))
1246 err = replace_page(vma, page, kpage, orig_pte);
1247 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001248
Hugh Dickins80e148222009-12-14 17:59:29 -08001249 if ((vma->vm_flags & VM_LOCKED) && kpage && !err) {
Hugh Dickins73848b42009-12-14 17:59:22 -08001250 munlock_vma_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001251 if (!PageMlocked(kpage)) {
1252 unlock_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001253 lock_page(kpage);
1254 mlock_vma_page(kpage);
1255 page = kpage; /* for final unlock */
1256 }
1257 }
Hugh Dickins73848b42009-12-14 17:59:22 -08001258
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001259out_unlock:
Hugh Dickins8dd35572009-12-14 17:59:18 -08001260 unlock_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001261out:
1262 return err;
1263}
1264
1265/*
Hugh Dickins81464e302009-09-21 17:02:15 -07001266 * try_to_merge_with_ksm_page - like try_to_merge_two_pages,
1267 * but no new kernel page is allocated: kpage must already be a ksm page.
Hugh Dickins8dd35572009-12-14 17:59:18 -08001268 *
1269 * This function returns 0 if the pages were merged, -EFAULT otherwise.
Hugh Dickins81464e302009-09-21 17:02:15 -07001270 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001271static int try_to_merge_with_ksm_page(struct rmap_item *rmap_item,
1272 struct page *page, struct page *kpage)
Hugh Dickins81464e302009-09-21 17:02:15 -07001273{
Hugh Dickins8dd35572009-12-14 17:59:18 -08001274 struct mm_struct *mm = rmap_item->mm;
Hugh Dickins81464e302009-09-21 17:02:15 -07001275 struct vm_area_struct *vma;
1276 int err = -EFAULT;
1277
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001278 mmap_read_lock(mm);
Andrea Arcangeli85c6e8d2015-11-05 18:49:16 -08001279 vma = find_mergeable_vma(mm, rmap_item->address);
1280 if (!vma)
Hugh Dickins9ba69292009-09-21 17:02:20 -07001281 goto out;
1282
Hugh Dickins8dd35572009-12-14 17:59:18 -08001283 err = try_to_merge_one_page(vma, page, kpage);
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001284 if (err)
1285 goto out;
1286
Hugh Dickinsbc566202013-02-22 16:36:06 -08001287 /* Unstable nid is in union with stable anon_vma: remove first */
1288 remove_rmap_item_from_tree(rmap_item);
1289
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001290 /* Must get reference to anon_vma while still holding mmap_lock */
Peter Zijlstra9e601092011-03-22 16:32:46 -07001291 rmap_item->anon_vma = vma->anon_vma;
1292 get_anon_vma(vma->anon_vma);
Hugh Dickins81464e302009-09-21 17:02:15 -07001293out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001294 mmap_read_unlock(mm);
Hugh Dickins81464e302009-09-21 17:02:15 -07001295 return err;
1296}
1297
1298/*
Izik Eidus31dbd012009-09-21 17:02:03 -07001299 * try_to_merge_two_pages - take two identical pages and prepare them
1300 * to be merged into one page.
1301 *
Hugh Dickins8dd35572009-12-14 17:59:18 -08001302 * This function returns the kpage if we successfully merged two identical
1303 * pages into one ksm page, NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001304 *
Hugh Dickins80e148222009-12-14 17:59:29 -08001305 * Note that this function upgrades page to ksm page: if one of the pages
Izik Eidus31dbd012009-09-21 17:02:03 -07001306 * is already a ksm page, try_to_merge_with_ksm_page should be used.
1307 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001308static struct page *try_to_merge_two_pages(struct rmap_item *rmap_item,
1309 struct page *page,
1310 struct rmap_item *tree_rmap_item,
1311 struct page *tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001312{
Hugh Dickins80e148222009-12-14 17:59:29 -08001313 int err;
Izik Eidus31dbd012009-09-21 17:02:03 -07001314
Hugh Dickins80e148222009-12-14 17:59:29 -08001315 err = try_to_merge_with_ksm_page(rmap_item, page, NULL);
Izik Eidus31dbd012009-09-21 17:02:03 -07001316 if (!err) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001317 err = try_to_merge_with_ksm_page(tree_rmap_item,
Hugh Dickins80e148222009-12-14 17:59:29 -08001318 tree_page, page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001319 /*
Hugh Dickins81464e302009-09-21 17:02:15 -07001320 * If that fails, we have a ksm page with only one pte
1321 * pointing to it: so break it.
Izik Eidus31dbd012009-09-21 17:02:03 -07001322 */
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001323 if (err)
Hugh Dickins8dd35572009-12-14 17:59:18 -08001324 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001325 }
Hugh Dickins80e148222009-12-14 17:59:29 -08001326 return err ? NULL : page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001327}
1328
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001329static __always_inline
1330bool __is_page_sharing_candidate(struct stable_node *stable_node, int offset)
1331{
1332 VM_BUG_ON(stable_node->rmap_hlist_len < 0);
1333 /*
1334 * Check that at least one mapping still exists, otherwise
1335 * there's no much point to merge and share with this
1336 * stable_node, as the underlying tree_page of the other
1337 * sharer is going to be freed soon.
1338 */
1339 return stable_node->rmap_hlist_len &&
1340 stable_node->rmap_hlist_len + offset < ksm_max_page_sharing;
1341}
1342
1343static __always_inline
1344bool is_page_sharing_candidate(struct stable_node *stable_node)
1345{
1346 return __is_page_sharing_candidate(stable_node, 0);
1347}
1348
Colin Ian Kingc01f0b52018-04-05 16:22:01 -07001349static struct page *stable_node_dup(struct stable_node **_stable_node_dup,
1350 struct stable_node **_stable_node,
1351 struct rb_root *root,
1352 bool prune_stale_stable_nodes)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001353{
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001354 struct stable_node *dup, *found = NULL, *stable_node = *_stable_node;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001355 struct hlist_node *hlist_safe;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001356 struct page *_tree_page, *tree_page = NULL;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001357 int nr = 0;
1358 int found_rmap_hlist_len;
1359
1360 if (!prune_stale_stable_nodes ||
1361 time_before(jiffies, stable_node->chain_prune_time +
1362 msecs_to_jiffies(
1363 ksm_stable_node_chains_prune_millisecs)))
1364 prune_stale_stable_nodes = false;
1365 else
1366 stable_node->chain_prune_time = jiffies;
1367
1368 hlist_for_each_entry_safe(dup, hlist_safe,
1369 &stable_node->hlist, hlist_dup) {
1370 cond_resched();
1371 /*
1372 * We must walk all stable_node_dup to prune the stale
1373 * stable nodes during lookup.
1374 *
1375 * get_ksm_page can drop the nodes from the
1376 * stable_node->hlist if they point to freed pages
1377 * (that's why we do a _safe walk). The "dup"
1378 * stable_node parameter itself will be freed from
1379 * under us if it returns NULL.
1380 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001381 _tree_page = get_ksm_page(dup, GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001382 if (!_tree_page)
1383 continue;
1384 nr += 1;
1385 if (is_page_sharing_candidate(dup)) {
1386 if (!found ||
1387 dup->rmap_hlist_len > found_rmap_hlist_len) {
1388 if (found)
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001389 put_page(tree_page);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001390 found = dup;
1391 found_rmap_hlist_len = found->rmap_hlist_len;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001392 tree_page = _tree_page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001393
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001394 /* skip put_page for found dup */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001395 if (!prune_stale_stable_nodes)
1396 break;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001397 continue;
1398 }
1399 }
1400 put_page(_tree_page);
1401 }
1402
Andrea Arcangeli80b18df2017-07-06 15:37:08 -07001403 if (found) {
1404 /*
1405 * nr is counting all dups in the chain only if
1406 * prune_stale_stable_nodes is true, otherwise we may
1407 * break the loop at nr == 1 even if there are
1408 * multiple entries.
1409 */
1410 if (prune_stale_stable_nodes && nr == 1) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001411 /*
1412 * If there's not just one entry it would
1413 * corrupt memory, better BUG_ON. In KSM
1414 * context with no lock held it's not even
1415 * fatal.
1416 */
1417 BUG_ON(stable_node->hlist.first->next);
1418
1419 /*
1420 * There's just one entry and it is below the
1421 * deduplication limit so drop the chain.
1422 */
1423 rb_replace_node(&stable_node->node, &found->node,
1424 root);
1425 free_stable_node(stable_node);
1426 ksm_stable_node_chains--;
1427 ksm_stable_node_dups--;
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001428 /*
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001429 * NOTE: the caller depends on the stable_node
1430 * to be equal to stable_node_dup if the chain
1431 * was collapsed.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001432 */
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001433 *_stable_node = found;
1434 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07001435 * Just for robustness, as stable_node is
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001436 * otherwise left as a stable pointer, the
1437 * compiler shall optimize it away at build
1438 * time.
1439 */
1440 stable_node = NULL;
Andrea Arcangeli80b18df2017-07-06 15:37:08 -07001441 } else if (stable_node->hlist.first != &found->hlist_dup &&
1442 __is_page_sharing_candidate(found, 1)) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001443 /*
Andrea Arcangeli80b18df2017-07-06 15:37:08 -07001444 * If the found stable_node dup can accept one
1445 * more future merge (in addition to the one
1446 * that is underway) and is not at the head of
1447 * the chain, put it there so next search will
1448 * be quicker in the !prune_stale_stable_nodes
1449 * case.
1450 *
1451 * NOTE: it would be inaccurate to use nr > 1
1452 * instead of checking the hlist.first pointer
1453 * directly, because in the
1454 * prune_stale_stable_nodes case "nr" isn't
1455 * the position of the found dup in the chain,
1456 * but the total number of dups in the chain.
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001457 */
1458 hlist_del(&found->hlist_dup);
1459 hlist_add_head(&found->hlist_dup,
1460 &stable_node->hlist);
1461 }
1462 }
1463
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001464 *_stable_node_dup = found;
1465 return tree_page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001466}
1467
1468static struct stable_node *stable_node_dup_any(struct stable_node *stable_node,
1469 struct rb_root *root)
1470{
1471 if (!is_stable_node_chain(stable_node))
1472 return stable_node;
1473 if (hlist_empty(&stable_node->hlist)) {
1474 free_stable_node_chain(stable_node, root);
1475 return NULL;
1476 }
1477 return hlist_entry(stable_node->hlist.first,
1478 typeof(*stable_node), hlist_dup);
1479}
1480
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001481/*
1482 * Like for get_ksm_page, this function can free the *_stable_node and
1483 * *_stable_node_dup if the returned tree_page is NULL.
1484 *
1485 * It can also free and overwrite *_stable_node with the found
1486 * stable_node_dup if the chain is collapsed (in which case
1487 * *_stable_node will be equal to *_stable_node_dup like if the chain
1488 * never existed). It's up to the caller to verify tree_page is not
1489 * NULL before dereferencing *_stable_node or *_stable_node_dup.
1490 *
1491 * *_stable_node_dup is really a second output parameter of this
1492 * function and will be overwritten in all cases, the caller doesn't
1493 * need to initialize it.
1494 */
1495static struct page *__stable_node_chain(struct stable_node **_stable_node_dup,
1496 struct stable_node **_stable_node,
1497 struct rb_root *root,
1498 bool prune_stale_stable_nodes)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001499{
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001500 struct stable_node *stable_node = *_stable_node;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001501 if (!is_stable_node_chain(stable_node)) {
1502 if (is_page_sharing_candidate(stable_node)) {
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001503 *_stable_node_dup = stable_node;
Yang Shi2cee57d12019-03-05 15:48:12 -08001504 return get_ksm_page(stable_node, GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001505 }
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001506 /*
1507 * _stable_node_dup set to NULL means the stable_node
1508 * reached the ksm_max_page_sharing limit.
1509 */
1510 *_stable_node_dup = NULL;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001511 return NULL;
1512 }
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001513 return stable_node_dup(_stable_node_dup, _stable_node, root,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001514 prune_stale_stable_nodes);
1515}
1516
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001517static __always_inline struct page *chain_prune(struct stable_node **s_n_d,
1518 struct stable_node **s_n,
1519 struct rb_root *root)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001520{
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001521 return __stable_node_chain(s_n_d, s_n, root, true);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001522}
1523
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001524static __always_inline struct page *chain(struct stable_node **s_n_d,
1525 struct stable_node *s_n,
1526 struct rb_root *root)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001527{
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001528 struct stable_node *old_stable_node = s_n;
1529 struct page *tree_page;
1530
1531 tree_page = __stable_node_chain(s_n_d, &s_n, root, false);
1532 /* not pruning dups so s_n cannot have changed */
1533 VM_BUG_ON(s_n != old_stable_node);
1534 return tree_page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001535}
1536
Izik Eidus31dbd012009-09-21 17:02:03 -07001537/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001538 * stable_tree_search - search for page inside the stable tree
Izik Eidus31dbd012009-09-21 17:02:03 -07001539 *
1540 * This function checks if there is a page inside the stable tree
1541 * with identical content to the page that we are scanning right now.
1542 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001543 * This function returns the stable tree node of identical content if found,
Izik Eidus31dbd012009-09-21 17:02:03 -07001544 * NULL otherwise.
1545 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001546static struct page *stable_tree_search(struct page *page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001547{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001548 int nid;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001549 struct rb_root *root;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001550 struct rb_node **new;
1551 struct rb_node *parent;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001552 struct stable_node *stable_node, *stable_node_dup, *stable_node_any;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001553 struct stable_node *page_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001554
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001555 page_node = page_stable_node(page);
1556 if (page_node && page_node->head != &migrate_nodes) {
1557 /* ksm page forked */
Hugh Dickins08beca42009-12-14 17:59:21 -08001558 get_page(page);
Hugh Dickins62b61f62009-12-14 17:59:33 -08001559 return page;
Hugh Dickins08beca42009-12-14 17:59:21 -08001560 }
1561
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001562 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickinsef53d162013-02-22 16:36:12 -08001563 root = root_stable_tree + nid;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001564again:
Hugh Dickinsef53d162013-02-22 16:36:12 -08001565 new = &root->rb_node;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001566 parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001567
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001568 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001569 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001570 int ret;
1571
Hugh Dickins08beca42009-12-14 17:59:21 -08001572 cond_resched();
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001573 stable_node = rb_entry(*new, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001574 stable_node_any = NULL;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001575 tree_page = chain_prune(&stable_node_dup, &stable_node, root);
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001576 /*
1577 * NOTE: stable_node may have been freed by
1578 * chain_prune() if the returned stable_node_dup is
1579 * not NULL. stable_node_dup may have been inserted in
1580 * the rbtree instead as a regular stable_node (in
1581 * order to collapse the stable_node chain if a single
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001582 * stable_node dup was found in it). In such case the
1583 * stable_node is overwritten by the calleee to point
1584 * to the stable_node_dup that was collapsed in the
1585 * stable rbtree and stable_node will be equal to
1586 * stable_node_dup like if the chain never existed.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001587 */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001588 if (!stable_node_dup) {
1589 /*
1590 * Either all stable_node dups were full in
1591 * this stable_node chain, or this chain was
1592 * empty and should be rb_erased.
1593 */
1594 stable_node_any = stable_node_dup_any(stable_node,
1595 root);
1596 if (!stable_node_any) {
1597 /* rb_erase just run */
1598 goto again;
1599 }
1600 /*
1601 * Take any of the stable_node dups page of
1602 * this stable_node chain to let the tree walk
1603 * continue. All KSM pages belonging to the
1604 * stable_node dups in a stable_node chain
1605 * have the same content and they're
Ethon Paul457aef92020-06-04 16:49:01 -07001606 * write protected at all times. Any will work
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001607 * fine to continue the walk.
1608 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001609 tree_page = get_ksm_page(stable_node_any,
1610 GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001611 }
1612 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001613 if (!tree_page) {
1614 /*
1615 * If we walked over a stale stable_node,
1616 * get_ksm_page() will call rb_erase() and it
1617 * may rebalance the tree from under us. So
1618 * restart the search from scratch. Returning
1619 * NULL would be safe too, but we'd generate
1620 * false negative insertions just because some
1621 * stable_node was stale.
1622 */
1623 goto again;
1624 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001625
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001626 ret = memcmp_pages(page, tree_page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001627 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001628
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001629 parent = *new;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001630 if (ret < 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001631 new = &parent->rb_left;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001632 else if (ret > 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001633 new = &parent->rb_right;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001634 else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001635 if (page_node) {
1636 VM_BUG_ON(page_node->head != &migrate_nodes);
1637 /*
1638 * Test if the migrated page should be merged
1639 * into a stable node dup. If the mapcount is
1640 * 1 we can migrate it with another KSM page
1641 * without adding it to the chain.
1642 */
1643 if (page_mapcount(page) > 1)
1644 goto chain_append;
1645 }
1646
1647 if (!stable_node_dup) {
1648 /*
1649 * If the stable_node is a chain and
1650 * we got a payload match in memcmp
1651 * but we cannot merge the scanned
1652 * page in any of the existing
1653 * stable_node dups because they're
1654 * all full, we need to wait the
1655 * scanned page to find itself a match
1656 * in the unstable tree to create a
1657 * brand new KSM page to add later to
1658 * the dups of this stable_node.
1659 */
1660 return NULL;
1661 }
1662
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001663 /*
1664 * Lock and unlock the stable_node's page (which
1665 * might already have been migrated) so that page
1666 * migration is sure to notice its raised count.
1667 * It would be more elegant to return stable_node
1668 * than kpage, but that involves more changes.
1669 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001670 tree_page = get_ksm_page(stable_node_dup,
1671 GET_KSM_PAGE_TRYLOCK);
1672
1673 if (PTR_ERR(tree_page) == -EBUSY)
1674 return ERR_PTR(-EBUSY);
1675
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001676 if (unlikely(!tree_page))
1677 /*
1678 * The tree may have been rebalanced,
1679 * so re-evaluate parent and new.
1680 */
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001681 goto again;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001682 unlock_page(tree_page);
1683
1684 if (get_kpfn_nid(stable_node_dup->kpfn) !=
1685 NUMA(stable_node_dup->nid)) {
1686 put_page(tree_page);
1687 goto replace;
1688 }
1689 return tree_page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001690 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001691 }
1692
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001693 if (!page_node)
1694 return NULL;
1695
1696 list_del(&page_node->list);
1697 DO_NUMA(page_node->nid = nid);
1698 rb_link_node(&page_node->node, parent, new);
Hugh Dickinsef53d162013-02-22 16:36:12 -08001699 rb_insert_color(&page_node->node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001700out:
1701 if (is_page_sharing_candidate(page_node)) {
1702 get_page(page);
1703 return page;
1704 } else
1705 return NULL;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001706
1707replace:
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001708 /*
1709 * If stable_node was a chain and chain_prune collapsed it,
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001710 * stable_node has been updated to be the new regular
1711 * stable_node. A collapse of the chain is indistinguishable
1712 * from the case there was no chain in the stable
1713 * rbtree. Otherwise stable_node is the chain and
1714 * stable_node_dup is the dup to replace.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001715 */
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001716 if (stable_node_dup == stable_node) {
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001717 VM_BUG_ON(is_stable_node_chain(stable_node_dup));
1718 VM_BUG_ON(is_stable_node_dup(stable_node_dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001719 /* there is no chain */
1720 if (page_node) {
1721 VM_BUG_ON(page_node->head != &migrate_nodes);
1722 list_del(&page_node->list);
1723 DO_NUMA(page_node->nid = nid);
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001724 rb_replace_node(&stable_node_dup->node,
1725 &page_node->node,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001726 root);
1727 if (is_page_sharing_candidate(page_node))
1728 get_page(page);
1729 else
1730 page = NULL;
1731 } else {
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001732 rb_erase(&stable_node_dup->node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001733 page = NULL;
1734 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001735 } else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001736 VM_BUG_ON(!is_stable_node_chain(stable_node));
1737 __stable_node_dup_del(stable_node_dup);
1738 if (page_node) {
1739 VM_BUG_ON(page_node->head != &migrate_nodes);
1740 list_del(&page_node->list);
1741 DO_NUMA(page_node->nid = nid);
1742 stable_node_chain_add_dup(page_node, stable_node);
1743 if (is_page_sharing_candidate(page_node))
1744 get_page(page);
1745 else
1746 page = NULL;
1747 } else {
1748 page = NULL;
1749 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001750 }
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001751 stable_node_dup->head = &migrate_nodes;
1752 list_add(&stable_node_dup->list, stable_node_dup->head);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001753 return page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001754
1755chain_append:
1756 /* stable_node_dup could be null if it reached the limit */
1757 if (!stable_node_dup)
1758 stable_node_dup = stable_node_any;
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001759 /*
1760 * If stable_node was a chain and chain_prune collapsed it,
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001761 * stable_node has been updated to be the new regular
1762 * stable_node. A collapse of the chain is indistinguishable
1763 * from the case there was no chain in the stable
1764 * rbtree. Otherwise stable_node is the chain and
1765 * stable_node_dup is the dup to replace.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001766 */
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001767 if (stable_node_dup == stable_node) {
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001768 VM_BUG_ON(is_stable_node_dup(stable_node_dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001769 /* chain is missing so create it */
1770 stable_node = alloc_stable_node_chain(stable_node_dup,
1771 root);
1772 if (!stable_node)
1773 return NULL;
1774 }
1775 /*
1776 * Add this stable_node dup that was
1777 * migrated to the stable_node chain
1778 * of the current nid for this page
1779 * content.
1780 */
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001781 VM_BUG_ON(!is_stable_node_dup(stable_node_dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001782 VM_BUG_ON(page_node->head != &migrate_nodes);
1783 list_del(&page_node->list);
1784 DO_NUMA(page_node->nid = nid);
1785 stable_node_chain_add_dup(page_node, stable_node);
1786 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001787}
1788
1789/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001790 * stable_tree_insert - insert stable tree node pointing to new ksm page
Izik Eidus31dbd012009-09-21 17:02:03 -07001791 * into the stable tree.
1792 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001793 * This function returns the stable tree node just allocated on success,
1794 * NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001795 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001796static struct stable_node *stable_tree_insert(struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001797{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001798 int nid;
1799 unsigned long kpfn;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001800 struct rb_root *root;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001801 struct rb_node **new;
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001802 struct rb_node *parent;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001803 struct stable_node *stable_node, *stable_node_dup, *stable_node_any;
1804 bool need_chain = false;
Izik Eidus31dbd012009-09-21 17:02:03 -07001805
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001806 kpfn = page_to_pfn(kpage);
1807 nid = get_kpfn_nid(kpfn);
Hugh Dickinsef53d162013-02-22 16:36:12 -08001808 root = root_stable_tree + nid;
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001809again:
1810 parent = NULL;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001811 new = &root->rb_node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001812
Izik Eidus31dbd012009-09-21 17:02:03 -07001813 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001814 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001815 int ret;
1816
Hugh Dickins08beca42009-12-14 17:59:21 -08001817 cond_resched();
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001818 stable_node = rb_entry(*new, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001819 stable_node_any = NULL;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001820 tree_page = chain(&stable_node_dup, stable_node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001821 if (!stable_node_dup) {
1822 /*
1823 * Either all stable_node dups were full in
1824 * this stable_node chain, or this chain was
1825 * empty and should be rb_erased.
1826 */
1827 stable_node_any = stable_node_dup_any(stable_node,
1828 root);
1829 if (!stable_node_any) {
1830 /* rb_erase just run */
1831 goto again;
1832 }
1833 /*
1834 * Take any of the stable_node dups page of
1835 * this stable_node chain to let the tree walk
1836 * continue. All KSM pages belonging to the
1837 * stable_node dups in a stable_node chain
1838 * have the same content and they're
Ethon Paul457aef92020-06-04 16:49:01 -07001839 * write protected at all times. Any will work
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001840 * fine to continue the walk.
1841 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001842 tree_page = get_ksm_page(stable_node_any,
1843 GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001844 }
1845 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001846 if (!tree_page) {
1847 /*
1848 * If we walked over a stale stable_node,
1849 * get_ksm_page() will call rb_erase() and it
1850 * may rebalance the tree from under us. So
1851 * restart the search from scratch. Returning
1852 * NULL would be safe too, but we'd generate
1853 * false negative insertions just because some
1854 * stable_node was stale.
1855 */
1856 goto again;
1857 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001858
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001859 ret = memcmp_pages(kpage, tree_page);
1860 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001861
1862 parent = *new;
1863 if (ret < 0)
1864 new = &parent->rb_left;
1865 else if (ret > 0)
1866 new = &parent->rb_right;
1867 else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001868 need_chain = true;
1869 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07001870 }
1871 }
1872
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001873 stable_node_dup = alloc_stable_node();
1874 if (!stable_node_dup)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001875 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001876
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001877 INIT_HLIST_HEAD(&stable_node_dup->hlist);
1878 stable_node_dup->kpfn = kpfn;
1879 set_page_stable_node(kpage, stable_node_dup);
1880 stable_node_dup->rmap_hlist_len = 0;
1881 DO_NUMA(stable_node_dup->nid = nid);
1882 if (!need_chain) {
1883 rb_link_node(&stable_node_dup->node, parent, new);
1884 rb_insert_color(&stable_node_dup->node, root);
1885 } else {
1886 if (!is_stable_node_chain(stable_node)) {
1887 struct stable_node *orig = stable_node;
1888 /* chain is missing so create it */
1889 stable_node = alloc_stable_node_chain(orig, root);
1890 if (!stable_node) {
1891 free_stable_node(stable_node_dup);
1892 return NULL;
1893 }
1894 }
1895 stable_node_chain_add_dup(stable_node_dup, stable_node);
1896 }
Hugh Dickins08beca42009-12-14 17:59:21 -08001897
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001898 return stable_node_dup;
Izik Eidus31dbd012009-09-21 17:02:03 -07001899}
1900
1901/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001902 * unstable_tree_search_insert - search for identical page,
1903 * else insert rmap_item into the unstable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07001904 *
1905 * This function searches for a page in the unstable tree identical to the
1906 * page currently being scanned; and if no identical page is found in the
1907 * tree, we insert rmap_item as a new object into the unstable tree.
1908 *
1909 * This function returns pointer to rmap_item found to be identical
1910 * to the currently scanned page, NULL otherwise.
1911 *
1912 * This function does both searching and inserting, because they share
1913 * the same walking algorithm in an rbtree.
1914 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001915static
1916struct rmap_item *unstable_tree_search_insert(struct rmap_item *rmap_item,
1917 struct page *page,
1918 struct page **tree_pagep)
Izik Eidus31dbd012009-09-21 17:02:03 -07001919{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001920 struct rb_node **new;
1921 struct rb_root *root;
Izik Eidus31dbd012009-09-21 17:02:03 -07001922 struct rb_node *parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001923 int nid;
1924
1925 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickinsef53d162013-02-22 16:36:12 -08001926 root = root_unstable_tree + nid;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001927 new = &root->rb_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001928
1929 while (*new) {
1930 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001931 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001932 int ret;
1933
Hugh Dickinsd178f272009-11-09 15:58:23 +00001934 cond_resched();
Izik Eidus31dbd012009-09-21 17:02:03 -07001935 tree_rmap_item = rb_entry(*new, struct rmap_item, node);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001936 tree_page = get_mergeable_page(tree_rmap_item);
Andrea Arcangelic8f95ed2015-11-05 18:49:19 -08001937 if (!tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001938 return NULL;
1939
1940 /*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001941 * Don't substitute a ksm page for a forked page.
Izik Eidus31dbd012009-09-21 17:02:03 -07001942 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001943 if (page == tree_page) {
1944 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001945 return NULL;
1946 }
1947
Hugh Dickins8dd35572009-12-14 17:59:18 -08001948 ret = memcmp_pages(page, tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001949
1950 parent = *new;
1951 if (ret < 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001952 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001953 new = &parent->rb_left;
1954 } else if (ret > 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001955 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001956 new = &parent->rb_right;
Hugh Dickinsb599cbd2013-02-22 16:36:05 -08001957 } else if (!ksm_merge_across_nodes &&
1958 page_to_nid(tree_page) != nid) {
1959 /*
1960 * If tree_page has been migrated to another NUMA node,
1961 * it will be flushed out and put in the right unstable
1962 * tree next time: only merge with it when across_nodes.
1963 */
1964 put_page(tree_page);
1965 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001966 } else {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001967 *tree_pagep = tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001968 return tree_rmap_item;
1969 }
1970 }
1971
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001972 rmap_item->address |= UNSTABLE_FLAG;
Izik Eidus31dbd012009-09-21 17:02:03 -07001973 rmap_item->address |= (ksm_scan.seqnr & SEQNR_MASK);
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001974 DO_NUMA(rmap_item->nid = nid);
Izik Eidus31dbd012009-09-21 17:02:03 -07001975 rb_link_node(&rmap_item->node, parent, new);
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001976 rb_insert_color(&rmap_item->node, root);
Izik Eidus31dbd012009-09-21 17:02:03 -07001977
Hugh Dickins473b0ce2009-09-21 17:02:11 -07001978 ksm_pages_unshared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07001979 return NULL;
1980}
1981
1982/*
1983 * stable_tree_append - add another rmap_item to the linked list of
1984 * rmap_items hanging off a given node of the stable tree, all sharing
1985 * the same ksm page.
1986 */
1987static void stable_tree_append(struct rmap_item *rmap_item,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001988 struct stable_node *stable_node,
1989 bool max_page_sharing_bypass)
Izik Eidus31dbd012009-09-21 17:02:03 -07001990{
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001991 /*
1992 * rmap won't find this mapping if we don't insert the
1993 * rmap_item in the right stable_node
1994 * duplicate. page_migration could break later if rmap breaks,
1995 * so we can as well crash here. We really need to check for
1996 * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check
Ethon Paul457aef92020-06-04 16:49:01 -07001997 * for other negative values as an underflow if detected here
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001998 * for the first time (and not when decreasing rmap_hlist_len)
1999 * would be sign of memory corruption in the stable_node.
2000 */
2001 BUG_ON(stable_node->rmap_hlist_len < 0);
2002
2003 stable_node->rmap_hlist_len++;
2004 if (!max_page_sharing_bypass)
2005 /* possibly non fatal but unexpected overflow, only warn */
2006 WARN_ON_ONCE(stable_node->rmap_hlist_len >
2007 ksm_max_page_sharing);
2008
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002009 rmap_item->head = stable_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07002010 rmap_item->address |= STABLE_FLAG;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002011 hlist_add_head(&rmap_item->hlist, &stable_node->hlist);
Hugh Dickinse178dfd2009-09-21 17:02:10 -07002012
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002013 if (rmap_item->hlist.next)
2014 ksm_pages_sharing++;
2015 else
2016 ksm_pages_shared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07002017}
2018
2019/*
Hugh Dickins81464e302009-09-21 17:02:15 -07002020 * cmp_and_merge_page - first see if page can be merged into the stable tree;
2021 * if not, compare checksum to previous and if it's the same, see if page can
2022 * be inserted into the unstable tree, or merged with a page already there and
2023 * both transferred to the stable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07002024 *
2025 * @page: the page that we are searching identical page to.
2026 * @rmap_item: the reverse mapping into the virtual address of this page
2027 */
2028static void cmp_and_merge_page(struct page *page, struct rmap_item *rmap_item)
2029{
Kirill Tkhai4b229272017-10-03 16:14:27 -07002030 struct mm_struct *mm = rmap_item->mm;
Izik Eidus31dbd012009-09-21 17:02:03 -07002031 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08002032 struct page *tree_page = NULL;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002033 struct stable_node *stable_node;
Hugh Dickins8dd35572009-12-14 17:59:18 -08002034 struct page *kpage;
Izik Eidus31dbd012009-09-21 17:02:03 -07002035 unsigned int checksum;
2036 int err;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002037 bool max_page_sharing_bypass = false;
Izik Eidus31dbd012009-09-21 17:02:03 -07002038
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002039 stable_node = page_stable_node(page);
2040 if (stable_node) {
2041 if (stable_node->head != &migrate_nodes &&
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002042 get_kpfn_nid(READ_ONCE(stable_node->kpfn)) !=
2043 NUMA(stable_node->nid)) {
2044 stable_node_dup_del(stable_node);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002045 stable_node->head = &migrate_nodes;
2046 list_add(&stable_node->list, stable_node->head);
2047 }
2048 if (stable_node->head != &migrate_nodes &&
2049 rmap_item->head == stable_node)
2050 return;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002051 /*
2052 * If it's a KSM fork, allow it to go over the sharing limit
2053 * without warnings.
2054 */
2055 if (!is_page_sharing_candidate(stable_node))
2056 max_page_sharing_bypass = true;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002057 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002058
2059 /* We first start with searching the page inside the stable tree */
Hugh Dickins62b61f62009-12-14 17:59:33 -08002060 kpage = stable_tree_search(page);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002061 if (kpage == page && rmap_item->head == stable_node) {
2062 put_page(kpage);
2063 return;
2064 }
2065
2066 remove_rmap_item_from_tree(rmap_item);
2067
Hugh Dickins62b61f62009-12-14 17:59:33 -08002068 if (kpage) {
Yang Shi2cee57d12019-03-05 15:48:12 -08002069 if (PTR_ERR(kpage) == -EBUSY)
2070 return;
2071
Hugh Dickins08beca42009-12-14 17:59:21 -08002072 err = try_to_merge_with_ksm_page(rmap_item, page, kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07002073 if (!err) {
2074 /*
2075 * The page was successfully merged:
2076 * add its rmap_item to the stable tree.
2077 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08002078 lock_page(kpage);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002079 stable_tree_append(rmap_item, page_stable_node(kpage),
2080 max_page_sharing_bypass);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002081 unlock_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07002082 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08002083 put_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07002084 return;
2085 }
2086
2087 /*
Hugh Dickins4035c07a2009-12-14 17:59:27 -08002088 * If the hash value of the page has changed from the last time
2089 * we calculated it, this page is changing frequently: therefore we
2090 * don't want to insert it in the unstable tree, and we don't want
2091 * to waste our time searching for something identical to it there.
Izik Eidus31dbd012009-09-21 17:02:03 -07002092 */
2093 checksum = calc_checksum(page);
2094 if (rmap_item->oldchecksum != checksum) {
2095 rmap_item->oldchecksum = checksum;
2096 return;
2097 }
2098
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002099 /*
2100 * Same checksum as an empty page. We attempt to merge it with the
2101 * appropriate zero page if the user enabled this via sysfs.
2102 */
2103 if (ksm_use_zero_pages && (checksum == zero_checksum)) {
2104 struct vm_area_struct *vma;
2105
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002106 mmap_read_lock(mm);
Kirill Tkhai4b229272017-10-03 16:14:27 -07002107 vma = find_mergeable_vma(mm, rmap_item->address);
Muchun Song56df70a2020-04-20 18:14:04 -07002108 if (vma) {
2109 err = try_to_merge_one_page(vma, page,
2110 ZERO_PAGE(rmap_item->address));
2111 } else {
2112 /*
2113 * If the vma is out of date, we do not need to
2114 * continue.
2115 */
2116 err = 0;
2117 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002118 mmap_read_unlock(mm);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002119 /*
2120 * In case of failure, the page was not really empty, so we
2121 * need to continue. Otherwise we're done.
2122 */
2123 if (!err)
2124 return;
2125 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08002126 tree_rmap_item =
2127 unstable_tree_search_insert(rmap_item, page, &tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002128 if (tree_rmap_item) {
Claudio Imbrenda77da2ba2018-04-05 16:25:41 -07002129 bool split;
2130
Hugh Dickins8dd35572009-12-14 17:59:18 -08002131 kpage = try_to_merge_two_pages(rmap_item, page,
2132 tree_rmap_item, tree_page);
Claudio Imbrenda77da2ba2018-04-05 16:25:41 -07002133 /*
2134 * If both pages we tried to merge belong to the same compound
2135 * page, then we actually ended up increasing the reference
2136 * count of the same compound page twice, and split_huge_page
2137 * failed.
2138 * Here we set a flag if that happened, and we use it later to
2139 * try split_huge_page again. Since we call put_page right
2140 * afterwards, the reference count will be correct and
2141 * split_huge_page should succeed.
2142 */
2143 split = PageTransCompound(page)
2144 && compound_head(page) == compound_head(tree_page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08002145 put_page(tree_page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08002146 if (kpage) {
Hugh Dickinsbc566202013-02-22 16:36:06 -08002147 /*
2148 * The pages were successfully merged: insert new
2149 * node in the stable tree and add both rmap_items.
2150 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08002151 lock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002152 stable_node = stable_tree_insert(kpage);
2153 if (stable_node) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002154 stable_tree_append(tree_rmap_item, stable_node,
2155 false);
2156 stable_tree_append(rmap_item, stable_node,
2157 false);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002158 }
Hugh Dickins5ad64682009-12-14 17:59:24 -08002159 unlock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002160
Izik Eidus31dbd012009-09-21 17:02:03 -07002161 /*
2162 * If we fail to insert the page into the stable tree,
2163 * we will have 2 virtual addresses that are pointing
2164 * to a ksm page left outside the stable tree,
2165 * in which case we need to break_cow on both.
2166 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002167 if (!stable_node) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08002168 break_cow(tree_rmap_item);
2169 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002170 }
Claudio Imbrenda77da2ba2018-04-05 16:25:41 -07002171 } else if (split) {
2172 /*
2173 * We are here if we tried to merge two pages and
2174 * failed because they both belonged to the same
2175 * compound page. We will split the page now, but no
2176 * merging will take place.
2177 * We do not want to add the cost of a full lock; if
2178 * the page is locked, it is better to skip it and
2179 * perhaps try again later.
2180 */
2181 if (!trylock_page(page))
2182 return;
2183 split_huge_page(page);
2184 unlock_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002185 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002186 }
2187}
2188
2189static struct rmap_item *get_next_rmap_item(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08002190 struct rmap_item **rmap_list,
Izik Eidus31dbd012009-09-21 17:02:03 -07002191 unsigned long addr)
2192{
2193 struct rmap_item *rmap_item;
2194
Hugh Dickins6514d512009-12-14 17:59:19 -08002195 while (*rmap_list) {
2196 rmap_item = *rmap_list;
Hugh Dickins93d17712009-12-14 17:59:16 -08002197 if ((rmap_item->address & PAGE_MASK) == addr)
Izik Eidus31dbd012009-09-21 17:02:03 -07002198 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07002199 if (rmap_item->address > addr)
2200 break;
Hugh Dickins6514d512009-12-14 17:59:19 -08002201 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002202 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002203 free_rmap_item(rmap_item);
2204 }
2205
2206 rmap_item = alloc_rmap_item();
2207 if (rmap_item) {
2208 /* It has already been zeroed */
2209 rmap_item->mm = mm_slot->mm;
2210 rmap_item->address = addr;
Hugh Dickins6514d512009-12-14 17:59:19 -08002211 rmap_item->rmap_list = *rmap_list;
2212 *rmap_list = rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07002213 }
2214 return rmap_item;
2215}
2216
2217static struct rmap_item *scan_get_next_rmap_item(struct page **page)
2218{
2219 struct mm_struct *mm;
2220 struct mm_slot *slot;
2221 struct vm_area_struct *vma;
2222 struct rmap_item *rmap_item;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002223 int nid;
Izik Eidus31dbd012009-09-21 17:02:03 -07002224
2225 if (list_empty(&ksm_mm_head.mm_list))
2226 return NULL;
2227
2228 slot = ksm_scan.mm_slot;
2229 if (slot == &ksm_mm_head) {
Hugh Dickins2919bfd2011-01-13 15:47:29 -08002230 /*
2231 * A number of pages can hang around indefinitely on per-cpu
2232 * pagevecs, raised page count preventing write_protect_page
2233 * from merging them. Though it doesn't really matter much,
2234 * it is puzzling to see some stuck in pages_volatile until
2235 * other activity jostles them out, and they also prevented
2236 * LTP's KSM test from succeeding deterministically; so drain
2237 * them here (here rather than on entry to ksm_do_scan(),
2238 * so we don't IPI too often when pages_to_scan is set low).
2239 */
2240 lru_add_drain_all();
2241
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002242 /*
2243 * Whereas stale stable_nodes on the stable_tree itself
2244 * get pruned in the regular course of stable_tree_search(),
2245 * those moved out to the migrate_nodes list can accumulate:
2246 * so prune them once before each full scan.
2247 */
2248 if (!ksm_merge_across_nodes) {
Geliang Tang03640412016-01-14 15:20:54 -08002249 struct stable_node *stable_node, *next;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002250 struct page *page;
2251
Geliang Tang03640412016-01-14 15:20:54 -08002252 list_for_each_entry_safe(stable_node, next,
2253 &migrate_nodes, list) {
Yang Shi2cee57d12019-03-05 15:48:12 -08002254 page = get_ksm_page(stable_node,
2255 GET_KSM_PAGE_NOLOCK);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002256 if (page)
2257 put_page(page);
2258 cond_resched();
2259 }
2260 }
2261
Hugh Dickinsef53d162013-02-22 16:36:12 -08002262 for (nid = 0; nid < ksm_nr_node_ids; nid++)
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002263 root_unstable_tree[nid] = RB_ROOT;
Izik Eidus31dbd012009-09-21 17:02:03 -07002264
2265 spin_lock(&ksm_mmlist_lock);
2266 slot = list_entry(slot->mm_list.next, struct mm_slot, mm_list);
2267 ksm_scan.mm_slot = slot;
2268 spin_unlock(&ksm_mmlist_lock);
Hugh Dickins2b472612011-06-15 15:08:58 -07002269 /*
2270 * Although we tested list_empty() above, a racing __ksm_exit
2271 * of the last mm on the list may have removed it since then.
2272 */
2273 if (slot == &ksm_mm_head)
2274 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07002275next_mm:
2276 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08002277 ksm_scan.rmap_list = &slot->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002278 }
2279
2280 mm = slot->mm;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002281 mmap_read_lock(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002282 if (ksm_test_exit(mm))
2283 vma = NULL;
2284 else
2285 vma = find_vma(mm, ksm_scan.address);
2286
2287 for (; vma; vma = vma->vm_next) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002288 if (!(vma->vm_flags & VM_MERGEABLE))
2289 continue;
2290 if (ksm_scan.address < vma->vm_start)
2291 ksm_scan.address = vma->vm_start;
2292 if (!vma->anon_vma)
2293 ksm_scan.address = vma->vm_end;
2294
2295 while (ksm_scan.address < vma->vm_end) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002296 if (ksm_test_exit(mm))
2297 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07002298 *page = follow_page(vma, ksm_scan.address, FOLL_GET);
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08002299 if (IS_ERR_OR_NULL(*page)) {
2300 ksm_scan.address += PAGE_SIZE;
2301 cond_resched();
2302 continue;
2303 }
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08002304 if (PageAnon(*page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002305 flush_anon_page(vma, *page, ksm_scan.address);
2306 flush_dcache_page(*page);
2307 rmap_item = get_next_rmap_item(slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08002308 ksm_scan.rmap_list, ksm_scan.address);
Izik Eidus31dbd012009-09-21 17:02:03 -07002309 if (rmap_item) {
Hugh Dickins6514d512009-12-14 17:59:19 -08002310 ksm_scan.rmap_list =
2311 &rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002312 ksm_scan.address += PAGE_SIZE;
2313 } else
2314 put_page(*page);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002315 mmap_read_unlock(mm);
Izik Eidus31dbd012009-09-21 17:02:03 -07002316 return rmap_item;
2317 }
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08002318 put_page(*page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002319 ksm_scan.address += PAGE_SIZE;
2320 cond_resched();
2321 }
2322 }
2323
Hugh Dickins9ba69292009-09-21 17:02:20 -07002324 if (ksm_test_exit(mm)) {
2325 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08002326 ksm_scan.rmap_list = &slot->rmap_list;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002327 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002328 /*
2329 * Nuke all the rmap_items that are above this current rmap:
2330 * because there were no VM_MERGEABLE vmas with such addresses.
2331 */
Chengyang Fan420be4e2021-05-04 18:37:48 -07002332 remove_trailing_rmap_items(ksm_scan.rmap_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07002333
2334 spin_lock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002335 ksm_scan.mm_slot = list_entry(slot->mm_list.next,
2336 struct mm_slot, mm_list);
2337 if (ksm_scan.address == 0) {
2338 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002339 * We've completed a full scan of all vmas, holding mmap_lock
Hugh Dickinscd551f92009-09-21 17:02:17 -07002340 * throughout, and found no VM_MERGEABLE: so do the same as
2341 * __ksm_exit does to remove this mm from all our lists now.
Hugh Dickins9ba69292009-09-21 17:02:20 -07002342 * This applies either when cleaning up after __ksm_exit
2343 * (but beware: we can reach here even before __ksm_exit),
2344 * or when all VM_MERGEABLE areas have been unmapped (and
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002345 * mmap_lock then protects against race with MADV_MERGEABLE).
Hugh Dickinscd551f92009-09-21 17:02:17 -07002346 */
Sasha Levin4ca3a692013-02-22 16:32:28 -08002347 hash_del(&slot->link);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002348 list_del(&slot->mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002349 spin_unlock(&ksm_mmlist_lock);
2350
Hugh Dickinscd551f92009-09-21 17:02:17 -07002351 free_mm_slot(slot);
2352 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002353 mmap_read_unlock(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002354 mmdrop(mm);
2355 } else {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002356 mmap_read_unlock(mm);
Zhou Chengming7496fea2016-05-12 15:42:21 -07002357 /*
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002358 * mmap_read_unlock(mm) first because after
Zhou Chengming7496fea2016-05-12 15:42:21 -07002359 * spin_unlock(&ksm_mmlist_lock) run, the "mm" may
2360 * already have been freed under us by __ksm_exit()
2361 * because the "mm_slot" is still hashed and
2362 * ksm_scan.mm_slot doesn't point to it anymore.
2363 */
2364 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002365 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002366
2367 /* Repeat until we've completed scanning the whole list */
Hugh Dickinscd551f92009-09-21 17:02:17 -07002368 slot = ksm_scan.mm_slot;
Izik Eidus31dbd012009-09-21 17:02:03 -07002369 if (slot != &ksm_mm_head)
2370 goto next_mm;
2371
Izik Eidus31dbd012009-09-21 17:02:03 -07002372 ksm_scan.seqnr++;
2373 return NULL;
2374}
2375
2376/**
2377 * ksm_do_scan - the ksm scanner main worker function.
Mike Rapoportb7701a52018-02-06 15:42:13 -08002378 * @scan_npages: number of pages we want to scan before we return.
Izik Eidus31dbd012009-09-21 17:02:03 -07002379 */
2380static void ksm_do_scan(unsigned int scan_npages)
2381{
2382 struct rmap_item *rmap_item;
Kees Cook3f649ab2020-06-03 13:09:38 -07002383 struct page *page;
Izik Eidus31dbd012009-09-21 17:02:03 -07002384
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002385 while (scan_npages-- && likely(!freezing(current))) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002386 cond_resched();
2387 rmap_item = scan_get_next_rmap_item(&page);
2388 if (!rmap_item)
2389 return;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002390 cmp_and_merge_page(page, rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002391 put_page(page);
2392 }
2393}
2394
Hugh Dickins6e1583842009-09-21 17:02:14 -07002395static int ksmd_should_run(void)
2396{
2397 return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.mm_list);
2398}
2399
Izik Eidus31dbd012009-09-21 17:02:03 -07002400static int ksm_scan_thread(void *nothing)
2401{
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -08002402 unsigned int sleep_ms;
2403
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002404 set_freezable();
Izik Eidus339aa622009-09-21 17:02:07 -07002405 set_user_nice(current, 5);
Izik Eidus31dbd012009-09-21 17:02:03 -07002406
2407 while (!kthread_should_stop()) {
Hugh Dickins6e1583842009-09-21 17:02:14 -07002408 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002409 wait_while_offlining();
Hugh Dickins6e1583842009-09-21 17:02:14 -07002410 if (ksmd_should_run())
Izik Eidus31dbd012009-09-21 17:02:03 -07002411 ksm_do_scan(ksm_thread_pages_to_scan);
Hugh Dickins6e1583842009-09-21 17:02:14 -07002412 mutex_unlock(&ksm_thread_mutex);
2413
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002414 try_to_freeze();
2415
Hugh Dickins6e1583842009-09-21 17:02:14 -07002416 if (ksmd_should_run()) {
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -08002417 sleep_ms = READ_ONCE(ksm_thread_sleep_millisecs);
2418 wait_event_interruptible_timeout(ksm_iter_wait,
2419 sleep_ms != READ_ONCE(ksm_thread_sleep_millisecs),
2420 msecs_to_jiffies(sleep_ms));
Izik Eidus31dbd012009-09-21 17:02:03 -07002421 } else {
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002422 wait_event_freezable(ksm_thread_wait,
Hugh Dickins6e1583842009-09-21 17:02:14 -07002423 ksmd_should_run() || kthread_should_stop());
Izik Eidus31dbd012009-09-21 17:02:03 -07002424 }
2425 }
2426 return 0;
2427}
2428
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002429int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
2430 unsigned long end, int advice, unsigned long *vm_flags)
2431{
2432 struct mm_struct *mm = vma->vm_mm;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002433 int err;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002434
2435 switch (advice) {
2436 case MADV_MERGEABLE:
2437 /*
2438 * Be somewhat over-protective for now!
2439 */
2440 if (*vm_flags & (VM_MERGEABLE | VM_SHARED | VM_MAYSHARE |
2441 VM_PFNMAP | VM_IO | VM_DONTEXPAND |
Kirill A. Shutemov0661a332015-02-10 14:10:04 -08002442 VM_HUGETLB | VM_MIXEDMAP))
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002443 return 0; /* just ignore the advice */
2444
Dave Jiange1fb4a02018-08-17 15:43:40 -07002445 if (vma_is_dax(vma))
2446 return 0;
2447
Shawn Anastasio12564482020-08-21 13:55:56 -05002448#ifdef VM_SAO
2449 if (*vm_flags & VM_SAO)
2450 return 0;
2451#endif
Khalid Aziz74a04962018-02-23 15:46:41 -07002452#ifdef VM_SPARC_ADI
2453 if (*vm_flags & VM_SPARC_ADI)
2454 return 0;
2455#endif
Konstantin Khlebnikovcc2383e2012-10-08 16:28:37 -07002456
Hugh Dickinsd952b792009-09-21 17:02:16 -07002457 if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
2458 err = __ksm_enter(mm);
2459 if (err)
2460 return err;
2461 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002462
2463 *vm_flags |= VM_MERGEABLE;
2464 break;
2465
2466 case MADV_UNMERGEABLE:
2467 if (!(*vm_flags & VM_MERGEABLE))
2468 return 0; /* just ignore the advice */
2469
Hugh Dickinsd952b792009-09-21 17:02:16 -07002470 if (vma->anon_vma) {
2471 err = unmerge_ksm_pages(vma, start, end);
2472 if (err)
2473 return err;
2474 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002475
2476 *vm_flags &= ~VM_MERGEABLE;
2477 break;
2478 }
2479
2480 return 0;
2481}
Bharata B Rao33cf1702019-11-25 08:36:25 +05302482EXPORT_SYMBOL_GPL(ksm_madvise);
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002483
2484int __ksm_enter(struct mm_struct *mm)
2485{
Hugh Dickins6e1583842009-09-21 17:02:14 -07002486 struct mm_slot *mm_slot;
2487 int needs_wakeup;
2488
2489 mm_slot = alloc_mm_slot();
Izik Eidus31dbd012009-09-21 17:02:03 -07002490 if (!mm_slot)
2491 return -ENOMEM;
2492
Hugh Dickins6e1583842009-09-21 17:02:14 -07002493 /* Check ksm_run too? Would need tighter locking */
2494 needs_wakeup = list_empty(&ksm_mm_head.mm_list);
2495
Izik Eidus31dbd012009-09-21 17:02:03 -07002496 spin_lock(&ksm_mmlist_lock);
2497 insert_to_mm_slots_hash(mm, mm_slot);
2498 /*
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002499 * When KSM_RUN_MERGE (or KSM_RUN_STOP),
2500 * insert just behind the scanning cursor, to let the area settle
Izik Eidus31dbd012009-09-21 17:02:03 -07002501 * down a little; when fork is followed by immediate exec, we don't
2502 * want ksmd to waste time setting up and tearing down an rmap_list.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002503 *
2504 * But when KSM_RUN_UNMERGE, it's important to insert ahead of its
2505 * scanning cursor, otherwise KSM pages in newly forked mms will be
2506 * missed: then we might as well insert at the end of the list.
Izik Eidus31dbd012009-09-21 17:02:03 -07002507 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002508 if (ksm_run & KSM_RUN_UNMERGE)
2509 list_add_tail(&mm_slot->mm_list, &ksm_mm_head.mm_list);
2510 else
2511 list_add_tail(&mm_slot->mm_list, &ksm_scan.mm_slot->mm_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07002512 spin_unlock(&ksm_mmlist_lock);
2513
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002514 set_bit(MMF_VM_MERGEABLE, &mm->flags);
Vegard Nossumf1f10072017-02-27 14:30:07 -08002515 mmgrab(mm);
Hugh Dickins6e1583842009-09-21 17:02:14 -07002516
2517 if (needs_wakeup)
2518 wake_up_interruptible(&ksm_thread_wait);
2519
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002520 return 0;
2521}
2522
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07002523void __ksm_exit(struct mm_struct *mm)
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002524{
Hugh Dickinscd551f92009-09-21 17:02:17 -07002525 struct mm_slot *mm_slot;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002526 int easy_to_free = 0;
Hugh Dickinscd551f92009-09-21 17:02:17 -07002527
Izik Eidus31dbd012009-09-21 17:02:03 -07002528 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -07002529 * This process is exiting: if it's straightforward (as is the
2530 * case when ksmd was never running), free mm_slot immediately.
2531 * But if it's at the cursor or has rmap_items linked to it, use
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002532 * mmap_lock to synchronize with any break_cows before pagetables
Hugh Dickins9ba69292009-09-21 17:02:20 -07002533 * are freed, and leave the mm_slot on the list for ksmd to free.
2534 * Beware: ksm may already have noticed it exiting and freed the slot.
Izik Eidus31dbd012009-09-21 17:02:03 -07002535 */
Hugh Dickins9ba69292009-09-21 17:02:20 -07002536
Hugh Dickinscd551f92009-09-21 17:02:17 -07002537 spin_lock(&ksm_mmlist_lock);
2538 mm_slot = get_mm_slot(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002539 if (mm_slot && ksm_scan.mm_slot != mm_slot) {
Hugh Dickins6514d512009-12-14 17:59:19 -08002540 if (!mm_slot->rmap_list) {
Sasha Levin4ca3a692013-02-22 16:32:28 -08002541 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002542 list_del(&mm_slot->mm_list);
2543 easy_to_free = 1;
2544 } else {
2545 list_move(&mm_slot->mm_list,
2546 &ksm_scan.mm_slot->mm_list);
2547 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07002548 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07002549 spin_unlock(&ksm_mmlist_lock);
2550
Hugh Dickins9ba69292009-09-21 17:02:20 -07002551 if (easy_to_free) {
2552 free_mm_slot(mm_slot);
2553 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
2554 mmdrop(mm);
2555 } else if (mm_slot) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002556 mmap_write_lock(mm);
2557 mmap_write_unlock(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002558 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002559}
Izik Eidus31dbd012009-09-21 17:02:03 -07002560
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002561struct page *ksm_might_need_to_copy(struct page *page,
Hugh Dickins5ad64682009-12-14 17:59:24 -08002562 struct vm_area_struct *vma, unsigned long address)
2563{
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002564 struct anon_vma *anon_vma = page_anon_vma(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002565 struct page *new_page;
2566
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002567 if (PageKsm(page)) {
2568 if (page_stable_node(page) &&
2569 !(ksm_run & KSM_RUN_UNMERGE))
2570 return page; /* no need to copy it */
2571 } else if (!anon_vma) {
2572 return page; /* no need to copy it */
2573 } else if (anon_vma->root == vma->anon_vma->root &&
2574 page->index == linear_page_index(vma, address)) {
2575 return page; /* still no need to copy it */
2576 }
2577 if (!PageUptodate(page))
2578 return page; /* let do_swap_page report the error */
2579
Hugh Dickins5ad64682009-12-14 17:59:24 -08002580 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
Hugh Dickins62fdb162020-09-18 21:20:03 -07002581 if (new_page && mem_cgroup_charge(new_page, vma->vm_mm, GFP_KERNEL)) {
2582 put_page(new_page);
2583 new_page = NULL;
2584 }
Hugh Dickins5ad64682009-12-14 17:59:24 -08002585 if (new_page) {
2586 copy_user_highpage(new_page, page, address, vma);
2587
2588 SetPageDirty(new_page);
2589 __SetPageUptodate(new_page);
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08002590 __SetPageLocked(new_page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002591 }
2592
Hugh Dickins5ad64682009-12-14 17:59:24 -08002593 return new_page;
2594}
2595
Minchan Kim1df631a2017-05-03 14:54:23 -07002596void rmap_walk_ksm(struct page *page, struct rmap_walk_control *rwc)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002597{
2598 struct stable_node *stable_node;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002599 struct rmap_item *rmap_item;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002600 int search_new_forks = 0;
2601
Sasha Levin309381fea2014-01-23 15:52:54 -08002602 VM_BUG_ON_PAGE(!PageKsm(page), page);
Joonsoo Kim9f326242014-01-21 15:49:53 -08002603
2604 /*
2605 * Rely on the page lock to protect against concurrent modifications
2606 * to that page's node of the stable tree.
2607 */
Sasha Levin309381fea2014-01-23 15:52:54 -08002608 VM_BUG_ON_PAGE(!PageLocked(page), page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002609
2610 stable_node = page_stable_node(page);
2611 if (!stable_node)
Minchan Kim1df631a2017-05-03 14:54:23 -07002612 return;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002613again:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002614 hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002615 struct anon_vma *anon_vma = rmap_item->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002616 struct anon_vma_chain *vmac;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002617 struct vm_area_struct *vma;
2618
Andrea Arcangeliad126952015-11-05 18:49:07 -08002619 cond_resched();
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002620 anon_vma_lock_read(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002621 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
2622 0, ULONG_MAX) {
Jia He1105a2f2018-06-14 15:26:14 -07002623 unsigned long addr;
2624
Andrea Arcangeliad126952015-11-05 18:49:07 -08002625 cond_resched();
Rik van Riel5beb4932010-03-05 13:42:07 -08002626 vma = vmac->vma;
Jia He1105a2f2018-06-14 15:26:14 -07002627
2628 /* Ignore the stable/unstable/sqnr flags */
Miaohe Lincd7fae22021-05-04 18:37:42 -07002629 addr = rmap_item->address & PAGE_MASK;
Jia He1105a2f2018-06-14 15:26:14 -07002630
2631 if (addr < vma->vm_start || addr >= vma->vm_end)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002632 continue;
2633 /*
2634 * Initially we examine only the vma which covers this
2635 * rmap_item; but later, if there is still work to do,
2636 * we examine covering vmas in other mms: in case they
2637 * were forked from the original since ksmd passed.
2638 */
2639 if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
2640 continue;
2641
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002642 if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
2643 continue;
2644
Jia He1105a2f2018-06-14 15:26:14 -07002645 if (!rwc->rmap_one(page, vma, addr, rwc->arg)) {
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002646 anon_vma_unlock_read(anon_vma);
Minchan Kim1df631a2017-05-03 14:54:23 -07002647 return;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002648 }
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002649 if (rwc->done && rwc->done(page)) {
2650 anon_vma_unlock_read(anon_vma);
Minchan Kim1df631a2017-05-03 14:54:23 -07002651 return;
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002652 }
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002653 }
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002654 anon_vma_unlock_read(anon_vma);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002655 }
2656 if (!search_new_forks++)
2657 goto again;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002658}
2659
Joonsoo Kim52629502014-01-21 15:49:50 -08002660#ifdef CONFIG_MIGRATION
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002661void ksm_migrate_page(struct page *newpage, struct page *oldpage)
2662{
2663 struct stable_node *stable_node;
2664
Sasha Levin309381fea2014-01-23 15:52:54 -08002665 VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage);
2666 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
2667 VM_BUG_ON_PAGE(newpage->mapping != oldpage->mapping, newpage);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002668
2669 stable_node = page_stable_node(newpage);
2670 if (stable_node) {
Sasha Levin309381fea2014-01-23 15:52:54 -08002671 VM_BUG_ON_PAGE(stable_node->kpfn != page_to_pfn(oldpage), oldpage);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002672 stable_node->kpfn = page_to_pfn(newpage);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08002673 /*
2674 * newpage->mapping was set in advance; now we need smp_wmb()
2675 * to make sure that the new stable_node->kpfn is visible
2676 * to get_ksm_page() before it can see that oldpage->mapping
2677 * has gone stale (or that PageSwapCache has been cleared).
2678 */
2679 smp_wmb();
2680 set_page_stable_node(oldpage, NULL);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002681 }
2682}
2683#endif /* CONFIG_MIGRATION */
2684
Hugh Dickins62b61f62009-12-14 17:59:33 -08002685#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002686static void wait_while_offlining(void)
2687{
2688 while (ksm_run & KSM_RUN_OFFLINE) {
2689 mutex_unlock(&ksm_thread_mutex);
2690 wait_on_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE),
NeilBrown74316202014-07-07 15:16:04 +10002691 TASK_UNINTERRUPTIBLE);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002692 mutex_lock(&ksm_thread_mutex);
2693 }
2694}
2695
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002696static bool stable_node_dup_remove_range(struct stable_node *stable_node,
2697 unsigned long start_pfn,
2698 unsigned long end_pfn)
2699{
2700 if (stable_node->kpfn >= start_pfn &&
2701 stable_node->kpfn < end_pfn) {
2702 /*
2703 * Don't get_ksm_page, page has already gone:
2704 * which is why we keep kpfn instead of page*
2705 */
2706 remove_node_from_stable_tree(stable_node);
2707 return true;
2708 }
2709 return false;
2710}
2711
2712static bool stable_node_chain_remove_range(struct stable_node *stable_node,
2713 unsigned long start_pfn,
2714 unsigned long end_pfn,
2715 struct rb_root *root)
2716{
2717 struct stable_node *dup;
2718 struct hlist_node *hlist_safe;
2719
2720 if (!is_stable_node_chain(stable_node)) {
2721 VM_BUG_ON(is_stable_node_dup(stable_node));
2722 return stable_node_dup_remove_range(stable_node, start_pfn,
2723 end_pfn);
2724 }
2725
2726 hlist_for_each_entry_safe(dup, hlist_safe,
2727 &stable_node->hlist, hlist_dup) {
2728 VM_BUG_ON(!is_stable_node_dup(dup));
2729 stable_node_dup_remove_range(dup, start_pfn, end_pfn);
2730 }
2731 if (hlist_empty(&stable_node->hlist)) {
2732 free_stable_node_chain(stable_node, root);
2733 return true; /* notify caller that tree was rebalanced */
2734 } else
2735 return false;
2736}
2737
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002738static void ksm_check_stable_tree(unsigned long start_pfn,
2739 unsigned long end_pfn)
Hugh Dickins62b61f62009-12-14 17:59:33 -08002740{
Geliang Tang03640412016-01-14 15:20:54 -08002741 struct stable_node *stable_node, *next;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002742 struct rb_node *node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002743 int nid;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002744
Hugh Dickinsef53d162013-02-22 16:36:12 -08002745 for (nid = 0; nid < ksm_nr_node_ids; nid++) {
2746 node = rb_first(root_stable_tree + nid);
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002747 while (node) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002748 stable_node = rb_entry(node, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002749 if (stable_node_chain_remove_range(stable_node,
2750 start_pfn, end_pfn,
2751 root_stable_tree +
2752 nid))
Hugh Dickinsef53d162013-02-22 16:36:12 -08002753 node = rb_first(root_stable_tree + nid);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002754 else
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002755 node = rb_next(node);
2756 cond_resched();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002757 }
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002758 }
Geliang Tang03640412016-01-14 15:20:54 -08002759 list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002760 if (stable_node->kpfn >= start_pfn &&
2761 stable_node->kpfn < end_pfn)
2762 remove_node_from_stable_tree(stable_node);
2763 cond_resched();
2764 }
Hugh Dickins62b61f62009-12-14 17:59:33 -08002765}
2766
2767static int ksm_memory_callback(struct notifier_block *self,
2768 unsigned long action, void *arg)
2769{
2770 struct memory_notify *mn = arg;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002771
2772 switch (action) {
2773 case MEM_GOING_OFFLINE:
2774 /*
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002775 * Prevent ksm_do_scan(), unmerge_and_remove_all_rmap_items()
2776 * and remove_all_stable_nodes() while memory is going offline:
2777 * it is unsafe for them to touch the stable tree at this time.
2778 * But unmerge_ksm_pages(), rmap lookups and other entry points
2779 * which do not need the ksm_thread_mutex are all safe.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002780 */
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002781 mutex_lock(&ksm_thread_mutex);
2782 ksm_run |= KSM_RUN_OFFLINE;
2783 mutex_unlock(&ksm_thread_mutex);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002784 break;
2785
2786 case MEM_OFFLINE:
2787 /*
2788 * Most of the work is done by page migration; but there might
2789 * be a few stable_nodes left over, still pointing to struct
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002790 * pages which have been offlined: prune those from the tree,
2791 * otherwise get_ksm_page() might later try to access a
2792 * non-existent struct page.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002793 */
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002794 ksm_check_stable_tree(mn->start_pfn,
2795 mn->start_pfn + mn->nr_pages);
Joe Perchese4a9bc52020-04-06 20:08:39 -07002796 fallthrough;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002797 case MEM_CANCEL_OFFLINE:
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002798 mutex_lock(&ksm_thread_mutex);
2799 ksm_run &= ~KSM_RUN_OFFLINE;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002800 mutex_unlock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002801
2802 smp_mb(); /* wake_up_bit advises this */
2803 wake_up_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE));
Hugh Dickins62b61f62009-12-14 17:59:33 -08002804 break;
2805 }
2806 return NOTIFY_OK;
2807}
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002808#else
2809static void wait_while_offlining(void)
2810{
2811}
Hugh Dickins62b61f62009-12-14 17:59:33 -08002812#endif /* CONFIG_MEMORY_HOTREMOVE */
2813
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002814#ifdef CONFIG_SYSFS
2815/*
2816 * This all compiles without CONFIG_SYSFS, but is a waste of space.
2817 */
2818
Izik Eidus31dbd012009-09-21 17:02:03 -07002819#define KSM_ATTR_RO(_name) \
2820 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
2821#define KSM_ATTR(_name) \
2822 static struct kobj_attribute _name##_attr = \
2823 __ATTR(_name, 0644, _name##_show, _name##_store)
2824
2825static ssize_t sleep_millisecs_show(struct kobject *kobj,
2826 struct kobj_attribute *attr, char *buf)
2827{
Joe Perchesae7a9272020-12-14 19:14:42 -08002828 return sysfs_emit(buf, "%u\n", ksm_thread_sleep_millisecs);
Izik Eidus31dbd012009-09-21 17:02:03 -07002829}
2830
2831static ssize_t sleep_millisecs_store(struct kobject *kobj,
2832 struct kobj_attribute *attr,
2833 const char *buf, size_t count)
2834{
Alexey Dobriyandfefd222020-12-14 19:15:03 -08002835 unsigned int msecs;
Izik Eidus31dbd012009-09-21 17:02:03 -07002836 int err;
2837
Alexey Dobriyandfefd222020-12-14 19:15:03 -08002838 err = kstrtouint(buf, 10, &msecs);
2839 if (err)
Izik Eidus31dbd012009-09-21 17:02:03 -07002840 return -EINVAL;
2841
2842 ksm_thread_sleep_millisecs = msecs;
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -08002843 wake_up_interruptible(&ksm_iter_wait);
Izik Eidus31dbd012009-09-21 17:02:03 -07002844
2845 return count;
2846}
2847KSM_ATTR(sleep_millisecs);
2848
2849static ssize_t pages_to_scan_show(struct kobject *kobj,
2850 struct kobj_attribute *attr, char *buf)
2851{
Joe Perchesae7a9272020-12-14 19:14:42 -08002852 return sysfs_emit(buf, "%u\n", ksm_thread_pages_to_scan);
Izik Eidus31dbd012009-09-21 17:02:03 -07002853}
2854
2855static ssize_t pages_to_scan_store(struct kobject *kobj,
2856 struct kobj_attribute *attr,
2857 const char *buf, size_t count)
2858{
Alexey Dobriyandfefd222020-12-14 19:15:03 -08002859 unsigned int nr_pages;
Izik Eidus31dbd012009-09-21 17:02:03 -07002860 int err;
Izik Eidus31dbd012009-09-21 17:02:03 -07002861
Alexey Dobriyandfefd222020-12-14 19:15:03 -08002862 err = kstrtouint(buf, 10, &nr_pages);
2863 if (err)
Izik Eidus31dbd012009-09-21 17:02:03 -07002864 return -EINVAL;
2865
2866 ksm_thread_pages_to_scan = nr_pages;
2867
2868 return count;
2869}
2870KSM_ATTR(pages_to_scan);
2871
2872static ssize_t run_show(struct kobject *kobj, struct kobj_attribute *attr,
2873 char *buf)
2874{
Joe Perchesae7a9272020-12-14 19:14:42 -08002875 return sysfs_emit(buf, "%lu\n", ksm_run);
Izik Eidus31dbd012009-09-21 17:02:03 -07002876}
2877
2878static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr,
2879 const char *buf, size_t count)
2880{
Alexey Dobriyandfefd222020-12-14 19:15:03 -08002881 unsigned int flags;
Izik Eidus31dbd012009-09-21 17:02:03 -07002882 int err;
Izik Eidus31dbd012009-09-21 17:02:03 -07002883
Alexey Dobriyandfefd222020-12-14 19:15:03 -08002884 err = kstrtouint(buf, 10, &flags);
2885 if (err)
Izik Eidus31dbd012009-09-21 17:02:03 -07002886 return -EINVAL;
2887 if (flags > KSM_RUN_UNMERGE)
2888 return -EINVAL;
2889
2890 /*
2891 * KSM_RUN_MERGE sets ksmd running, and 0 stops it running.
2892 * KSM_RUN_UNMERGE stops it running and unmerges all rmap_items,
Hugh Dickinsd0f209f2009-12-14 17:59:34 -08002893 * breaking COW to free the pages_shared (but leaves mm_slots
2894 * on the list for when ksmd may be set running again).
Izik Eidus31dbd012009-09-21 17:02:03 -07002895 */
2896
2897 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002898 wait_while_offlining();
Izik Eidus31dbd012009-09-21 17:02:03 -07002899 if (ksm_run != flags) {
2900 ksm_run = flags;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002901 if (flags & KSM_RUN_UNMERGE) {
David Rientjese1e12d22012-12-11 16:02:56 -08002902 set_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002903 err = unmerge_and_remove_all_rmap_items();
David Rientjese1e12d22012-12-11 16:02:56 -08002904 clear_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002905 if (err) {
2906 ksm_run = KSM_RUN_STOP;
2907 count = err;
2908 }
2909 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002910 }
2911 mutex_unlock(&ksm_thread_mutex);
2912
2913 if (flags & KSM_RUN_MERGE)
2914 wake_up_interruptible(&ksm_thread_wait);
2915
2916 return count;
2917}
2918KSM_ATTR(run);
2919
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002920#ifdef CONFIG_NUMA
2921static ssize_t merge_across_nodes_show(struct kobject *kobj,
Joe Perchesae7a9272020-12-14 19:14:42 -08002922 struct kobj_attribute *attr, char *buf)
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002923{
Joe Perchesae7a9272020-12-14 19:14:42 -08002924 return sysfs_emit(buf, "%u\n", ksm_merge_across_nodes);
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002925}
2926
2927static ssize_t merge_across_nodes_store(struct kobject *kobj,
2928 struct kobj_attribute *attr,
2929 const char *buf, size_t count)
2930{
2931 int err;
2932 unsigned long knob;
2933
2934 err = kstrtoul(buf, 10, &knob);
2935 if (err)
2936 return err;
2937 if (knob > 1)
2938 return -EINVAL;
2939
2940 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002941 wait_while_offlining();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002942 if (ksm_merge_across_nodes != knob) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002943 if (ksm_pages_shared || remove_all_stable_nodes())
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002944 err = -EBUSY;
Hugh Dickinsef53d162013-02-22 16:36:12 -08002945 else if (root_stable_tree == one_stable_tree) {
2946 struct rb_root *buf;
2947 /*
2948 * This is the first time that we switch away from the
2949 * default of merging across nodes: must now allocate
2950 * a buffer to hold as many roots as may be needed.
2951 * Allocate stable and unstable together:
2952 * MAXSMP NODES_SHIFT 10 will use 16kB.
2953 */
Joe Perchesbafe1e12013-11-12 15:07:10 -08002954 buf = kcalloc(nr_node_ids + nr_node_ids, sizeof(*buf),
2955 GFP_KERNEL);
Hugh Dickinsef53d162013-02-22 16:36:12 -08002956 /* Let us assume that RB_ROOT is NULL is zero */
2957 if (!buf)
2958 err = -ENOMEM;
2959 else {
2960 root_stable_tree = buf;
2961 root_unstable_tree = buf + nr_node_ids;
2962 /* Stable tree is empty but not the unstable */
2963 root_unstable_tree[0] = one_unstable_tree[0];
2964 }
2965 }
2966 if (!err) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002967 ksm_merge_across_nodes = knob;
Hugh Dickinsef53d162013-02-22 16:36:12 -08002968 ksm_nr_node_ids = knob ? 1 : nr_node_ids;
2969 }
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002970 }
2971 mutex_unlock(&ksm_thread_mutex);
2972
2973 return err ? err : count;
2974}
2975KSM_ATTR(merge_across_nodes);
2976#endif
2977
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002978static ssize_t use_zero_pages_show(struct kobject *kobj,
Joe Perchesae7a9272020-12-14 19:14:42 -08002979 struct kobj_attribute *attr, char *buf)
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002980{
Joe Perchesae7a9272020-12-14 19:14:42 -08002981 return sysfs_emit(buf, "%u\n", ksm_use_zero_pages);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002982}
2983static ssize_t use_zero_pages_store(struct kobject *kobj,
2984 struct kobj_attribute *attr,
2985 const char *buf, size_t count)
2986{
2987 int err;
2988 bool value;
2989
2990 err = kstrtobool(buf, &value);
2991 if (err)
2992 return -EINVAL;
2993
2994 ksm_use_zero_pages = value;
2995
2996 return count;
2997}
2998KSM_ATTR(use_zero_pages);
2999
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003000static ssize_t max_page_sharing_show(struct kobject *kobj,
3001 struct kobj_attribute *attr, char *buf)
3002{
Joe Perchesae7a9272020-12-14 19:14:42 -08003003 return sysfs_emit(buf, "%u\n", ksm_max_page_sharing);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003004}
3005
3006static ssize_t max_page_sharing_store(struct kobject *kobj,
3007 struct kobj_attribute *attr,
3008 const char *buf, size_t count)
3009{
3010 int err;
3011 int knob;
3012
3013 err = kstrtoint(buf, 10, &knob);
3014 if (err)
3015 return err;
3016 /*
3017 * When a KSM page is created it is shared by 2 mappings. This
3018 * being a signed comparison, it implicitly verifies it's not
3019 * negative.
3020 */
3021 if (knob < 2)
3022 return -EINVAL;
3023
3024 if (READ_ONCE(ksm_max_page_sharing) == knob)
3025 return count;
3026
3027 mutex_lock(&ksm_thread_mutex);
3028 wait_while_offlining();
3029 if (ksm_max_page_sharing != knob) {
3030 if (ksm_pages_shared || remove_all_stable_nodes())
3031 err = -EBUSY;
3032 else
3033 ksm_max_page_sharing = knob;
3034 }
3035 mutex_unlock(&ksm_thread_mutex);
3036
3037 return err ? err : count;
3038}
3039KSM_ATTR(max_page_sharing);
3040
Hugh Dickinsb4028262009-09-21 17:02:09 -07003041static ssize_t pages_shared_show(struct kobject *kobj,
3042 struct kobj_attribute *attr, char *buf)
3043{
Joe Perchesae7a9272020-12-14 19:14:42 -08003044 return sysfs_emit(buf, "%lu\n", ksm_pages_shared);
Hugh Dickinsb4028262009-09-21 17:02:09 -07003045}
3046KSM_ATTR_RO(pages_shared);
3047
3048static ssize_t pages_sharing_show(struct kobject *kobj,
3049 struct kobj_attribute *attr, char *buf)
3050{
Joe Perchesae7a9272020-12-14 19:14:42 -08003051 return sysfs_emit(buf, "%lu\n", ksm_pages_sharing);
Hugh Dickinsb4028262009-09-21 17:02:09 -07003052}
3053KSM_ATTR_RO(pages_sharing);
3054
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003055static ssize_t pages_unshared_show(struct kobject *kobj,
3056 struct kobj_attribute *attr, char *buf)
3057{
Joe Perchesae7a9272020-12-14 19:14:42 -08003058 return sysfs_emit(buf, "%lu\n", ksm_pages_unshared);
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003059}
3060KSM_ATTR_RO(pages_unshared);
3061
3062static ssize_t pages_volatile_show(struct kobject *kobj,
3063 struct kobj_attribute *attr, char *buf)
3064{
3065 long ksm_pages_volatile;
3066
3067 ksm_pages_volatile = ksm_rmap_items - ksm_pages_shared
3068 - ksm_pages_sharing - ksm_pages_unshared;
3069 /*
3070 * It was not worth any locking to calculate that statistic,
3071 * but it might therefore sometimes be negative: conceal that.
3072 */
3073 if (ksm_pages_volatile < 0)
3074 ksm_pages_volatile = 0;
Joe Perchesae7a9272020-12-14 19:14:42 -08003075 return sysfs_emit(buf, "%ld\n", ksm_pages_volatile);
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003076}
3077KSM_ATTR_RO(pages_volatile);
3078
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003079static ssize_t stable_node_dups_show(struct kobject *kobj,
3080 struct kobj_attribute *attr, char *buf)
3081{
Joe Perchesae7a9272020-12-14 19:14:42 -08003082 return sysfs_emit(buf, "%lu\n", ksm_stable_node_dups);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003083}
3084KSM_ATTR_RO(stable_node_dups);
3085
3086static ssize_t stable_node_chains_show(struct kobject *kobj,
3087 struct kobj_attribute *attr, char *buf)
3088{
Joe Perchesae7a9272020-12-14 19:14:42 -08003089 return sysfs_emit(buf, "%lu\n", ksm_stable_node_chains);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003090}
3091KSM_ATTR_RO(stable_node_chains);
3092
3093static ssize_t
3094stable_node_chains_prune_millisecs_show(struct kobject *kobj,
3095 struct kobj_attribute *attr,
3096 char *buf)
3097{
Joe Perchesae7a9272020-12-14 19:14:42 -08003098 return sysfs_emit(buf, "%u\n", ksm_stable_node_chains_prune_millisecs);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003099}
3100
3101static ssize_t
3102stable_node_chains_prune_millisecs_store(struct kobject *kobj,
3103 struct kobj_attribute *attr,
3104 const char *buf, size_t count)
3105{
Zhansaya Bagdauletkyzy584ff0d2021-09-02 15:00:51 -07003106 unsigned int msecs;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003107 int err;
3108
Zhansaya Bagdauletkyzy584ff0d2021-09-02 15:00:51 -07003109 err = kstrtouint(buf, 10, &msecs);
3110 if (err)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003111 return -EINVAL;
3112
3113 ksm_stable_node_chains_prune_millisecs = msecs;
3114
3115 return count;
3116}
3117KSM_ATTR(stable_node_chains_prune_millisecs);
3118
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003119static ssize_t full_scans_show(struct kobject *kobj,
3120 struct kobj_attribute *attr, char *buf)
3121{
Joe Perchesae7a9272020-12-14 19:14:42 -08003122 return sysfs_emit(buf, "%lu\n", ksm_scan.seqnr);
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003123}
3124KSM_ATTR_RO(full_scans);
3125
Izik Eidus31dbd012009-09-21 17:02:03 -07003126static struct attribute *ksm_attrs[] = {
3127 &sleep_millisecs_attr.attr,
3128 &pages_to_scan_attr.attr,
3129 &run_attr.attr,
Hugh Dickinsb4028262009-09-21 17:02:09 -07003130 &pages_shared_attr.attr,
3131 &pages_sharing_attr.attr,
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003132 &pages_unshared_attr.attr,
3133 &pages_volatile_attr.attr,
3134 &full_scans_attr.attr,
Petr Holasek90bd6fd2013-02-22 16:35:00 -08003135#ifdef CONFIG_NUMA
3136 &merge_across_nodes_attr.attr,
3137#endif
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003138 &max_page_sharing_attr.attr,
3139 &stable_node_chains_attr.attr,
3140 &stable_node_dups_attr.attr,
3141 &stable_node_chains_prune_millisecs_attr.attr,
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08003142 &use_zero_pages_attr.attr,
Izik Eidus31dbd012009-09-21 17:02:03 -07003143 NULL,
3144};
3145
Arvind Yadavf907c262017-09-06 16:21:53 -07003146static const struct attribute_group ksm_attr_group = {
Izik Eidus31dbd012009-09-21 17:02:03 -07003147 .attrs = ksm_attrs,
3148 .name = "ksm",
3149};
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003150#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07003151
3152static int __init ksm_init(void)
3153{
3154 struct task_struct *ksm_thread;
3155 int err;
3156
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08003157 /* The correct value depends on page size and endianness */
3158 zero_checksum = calc_checksum(ZERO_PAGE(0));
3159 /* Default to false for backwards compatibility */
3160 ksm_use_zero_pages = false;
3161
Izik Eidus31dbd012009-09-21 17:02:03 -07003162 err = ksm_slab_init();
3163 if (err)
3164 goto out;
3165
Izik Eidus31dbd012009-09-21 17:02:03 -07003166 ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd");
3167 if (IS_ERR(ksm_thread)) {
Paul McQuade25acde32014-10-09 15:29:09 -07003168 pr_err("ksm: creating kthread failed\n");
Izik Eidus31dbd012009-09-21 17:02:03 -07003169 err = PTR_ERR(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07003170 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07003171 }
3172
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003173#ifdef CONFIG_SYSFS
Izik Eidus31dbd012009-09-21 17:02:03 -07003174 err = sysfs_create_group(mm_kobj, &ksm_attr_group);
3175 if (err) {
Paul McQuade25acde32014-10-09 15:29:09 -07003176 pr_err("ksm: register sysfs failed\n");
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003177 kthread_stop(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07003178 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07003179 }
Hugh Dickinsc73602a2009-10-07 16:32:22 -07003180#else
3181 ksm_run = KSM_RUN_MERGE; /* no way for user to start it */
3182
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003183#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07003184
Hugh Dickins62b61f62009-12-14 17:59:33 -08003185#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08003186 /* There is no significance to this priority 100 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08003187 hotplug_memory_notifier(ksm_memory_callback, 100);
3188#endif
Izik Eidus31dbd012009-09-21 17:02:03 -07003189 return 0;
3190
Lai Jiangshand9f89842010-08-09 17:20:02 -07003191out_free:
Izik Eidus31dbd012009-09-21 17:02:03 -07003192 ksm_slab_free();
3193out:
3194 return err;
3195}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003196subsys_initcall(ksm_init);