blob: d17c7d57d0d85648738ed9d38bcb38a72ceceec1 [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
84 * using the same :c:type:`struct stable_node` structure.
85 *
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 */
Jia He1105a2f2018-06-14 15:26:14 -0700218#define KSM_FLAG_MASK (SEQNR_MASK|UNSTABLE_FLAG|STABLE_FLAG)
219 /* to mask all the flags */
Izik Eidus31dbd012009-09-21 17:02:03 -0700220
221/* The stable and unstable tree heads */
Hugh Dickinsef53d162013-02-22 16:36:12 -0800222static struct rb_root one_stable_tree[1] = { RB_ROOT };
223static struct rb_root one_unstable_tree[1] = { RB_ROOT };
224static struct rb_root *root_stable_tree = one_stable_tree;
225static struct rb_root *root_unstable_tree = one_unstable_tree;
Izik Eidus31dbd012009-09-21 17:02:03 -0700226
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800227/* Recently migrated nodes of stable tree, pending proper placement */
228static LIST_HEAD(migrate_nodes);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700229#define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev)
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800230
Sasha Levin4ca3a692013-02-22 16:32:28 -0800231#define MM_SLOTS_HASH_BITS 10
232static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
Izik Eidus31dbd012009-09-21 17:02:03 -0700233
234static struct mm_slot ksm_mm_head = {
235 .mm_list = LIST_HEAD_INIT(ksm_mm_head.mm_list),
236};
237static struct ksm_scan ksm_scan = {
238 .mm_slot = &ksm_mm_head,
239};
240
241static struct kmem_cache *rmap_item_cache;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800242static struct kmem_cache *stable_node_cache;
Izik Eidus31dbd012009-09-21 17:02:03 -0700243static struct kmem_cache *mm_slot_cache;
244
245/* The number of nodes in the stable tree */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700246static unsigned long ksm_pages_shared;
Izik Eidus31dbd012009-09-21 17:02:03 -0700247
Hugh Dickinse178dfd2009-09-21 17:02:10 -0700248/* The number of page slots additionally sharing those nodes */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700249static unsigned long ksm_pages_sharing;
Izik Eidus31dbd012009-09-21 17:02:03 -0700250
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700251/* The number of nodes in the unstable tree */
252static unsigned long ksm_pages_unshared;
253
254/* The number of rmap_items in use: to calculate pages_volatile */
255static unsigned long ksm_rmap_items;
256
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700257/* The number of stable_node chains */
258static unsigned long ksm_stable_node_chains;
259
260/* The number of stable_node dups linked to the stable_node chains */
261static unsigned long ksm_stable_node_dups;
262
263/* Delay in pruning stale stable_node_dups in the stable_node_chains */
264static int ksm_stable_node_chains_prune_millisecs = 2000;
265
266/* Maximum number of page slots sharing a stable node */
267static int ksm_max_page_sharing = 256;
268
Izik Eidus31dbd012009-09-21 17:02:03 -0700269/* Number of pages ksmd should scan in one batch */
Izik Eidus2c6854f2009-09-23 15:56:04 -0700270static unsigned int ksm_thread_pages_to_scan = 100;
Izik Eidus31dbd012009-09-21 17:02:03 -0700271
272/* Milliseconds ksmd should sleep between batches */
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700273static unsigned int ksm_thread_sleep_millisecs = 20;
Izik Eidus31dbd012009-09-21 17:02:03 -0700274
Claudio Imbrendae86c59b2017-02-24 14:55:39 -0800275/* Checksum of an empty (zeroed) page */
276static unsigned int zero_checksum __read_mostly;
277
278/* Whether to merge empty (zeroed) pages with actual zero pages */
279static bool ksm_use_zero_pages __read_mostly;
280
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800281#ifdef CONFIG_NUMA
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800282/* Zeroed when merging across nodes is not allowed */
283static unsigned int ksm_merge_across_nodes = 1;
Hugh Dickinsef53d162013-02-22 16:36:12 -0800284static int ksm_nr_node_ids = 1;
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800285#else
286#define ksm_merge_across_nodes 1U
Hugh Dickinsef53d162013-02-22 16:36:12 -0800287#define ksm_nr_node_ids 1
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800288#endif
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800289
Izik Eidus31dbd012009-09-21 17:02:03 -0700290#define KSM_RUN_STOP 0
291#define KSM_RUN_MERGE 1
292#define KSM_RUN_UNMERGE 2
Hugh Dickinsef4d43a2013-02-22 16:35:16 -0800293#define KSM_RUN_OFFLINE 4
294static unsigned long ksm_run = KSM_RUN_STOP;
295static void wait_while_offlining(void);
Izik Eidus31dbd012009-09-21 17:02:03 -0700296
297static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait);
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -0800298static DECLARE_WAIT_QUEUE_HEAD(ksm_iter_wait);
Izik Eidus31dbd012009-09-21 17:02:03 -0700299static DEFINE_MUTEX(ksm_thread_mutex);
300static DEFINE_SPINLOCK(ksm_mmlist_lock);
301
302#define KSM_KMEM_CACHE(__struct, __flags) kmem_cache_create("ksm_"#__struct,\
303 sizeof(struct __struct), __alignof__(struct __struct),\
304 (__flags), NULL)
305
306static int __init ksm_slab_init(void)
307{
308 rmap_item_cache = KSM_KMEM_CACHE(rmap_item, 0);
309 if (!rmap_item_cache)
310 goto out;
311
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800312 stable_node_cache = KSM_KMEM_CACHE(stable_node, 0);
313 if (!stable_node_cache)
314 goto out_free1;
315
Izik Eidus31dbd012009-09-21 17:02:03 -0700316 mm_slot_cache = KSM_KMEM_CACHE(mm_slot, 0);
317 if (!mm_slot_cache)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800318 goto out_free2;
Izik Eidus31dbd012009-09-21 17:02:03 -0700319
320 return 0;
321
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800322out_free2:
323 kmem_cache_destroy(stable_node_cache);
324out_free1:
Izik Eidus31dbd012009-09-21 17:02:03 -0700325 kmem_cache_destroy(rmap_item_cache);
326out:
327 return -ENOMEM;
328}
329
330static void __init ksm_slab_free(void)
331{
332 kmem_cache_destroy(mm_slot_cache);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800333 kmem_cache_destroy(stable_node_cache);
Izik Eidus31dbd012009-09-21 17:02:03 -0700334 kmem_cache_destroy(rmap_item_cache);
335 mm_slot_cache = NULL;
336}
337
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700338static __always_inline bool is_stable_node_chain(struct stable_node *chain)
339{
340 return chain->rmap_hlist_len == STABLE_NODE_CHAIN;
341}
342
343static __always_inline bool is_stable_node_dup(struct stable_node *dup)
344{
345 return dup->head == STABLE_NODE_DUP_HEAD;
346}
347
348static inline void stable_node_chain_add_dup(struct stable_node *dup,
349 struct stable_node *chain)
350{
351 VM_BUG_ON(is_stable_node_dup(dup));
352 dup->head = STABLE_NODE_DUP_HEAD;
353 VM_BUG_ON(!is_stable_node_chain(chain));
354 hlist_add_head(&dup->hlist_dup, &chain->hlist);
355 ksm_stable_node_dups++;
356}
357
358static inline void __stable_node_dup_del(struct stable_node *dup)
359{
Andrea Arcangelib4fecc62017-07-06 15:36:59 -0700360 VM_BUG_ON(!is_stable_node_dup(dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700361 hlist_del(&dup->hlist_dup);
362 ksm_stable_node_dups--;
363}
364
365static inline void stable_node_dup_del(struct stable_node *dup)
366{
367 VM_BUG_ON(is_stable_node_chain(dup));
368 if (is_stable_node_dup(dup))
369 __stable_node_dup_del(dup);
370 else
371 rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid));
372#ifdef CONFIG_DEBUG_VM
373 dup->head = NULL;
374#endif
375}
376
Izik Eidus31dbd012009-09-21 17:02:03 -0700377static inline struct rmap_item *alloc_rmap_item(void)
378{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700379 struct rmap_item *rmap_item;
380
zhong jiang5b398e42016-09-28 15:22:30 -0700381 rmap_item = kmem_cache_zalloc(rmap_item_cache, GFP_KERNEL |
382 __GFP_NORETRY | __GFP_NOWARN);
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700383 if (rmap_item)
384 ksm_rmap_items++;
385 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -0700386}
387
388static inline void free_rmap_item(struct rmap_item *rmap_item)
389{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700390 ksm_rmap_items--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700391 rmap_item->mm = NULL; /* debug safety */
392 kmem_cache_free(rmap_item_cache, rmap_item);
393}
394
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800395static inline struct stable_node *alloc_stable_node(void)
396{
zhong jiang62130552016-10-07 17:01:19 -0700397 /*
398 * The allocation can take too long with GFP_KERNEL when memory is under
399 * pressure, which may lead to hung task warnings. Adding __GFP_HIGH
400 * grants access to memory reserves, helping to avoid this problem.
401 */
402 return kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800403}
404
405static inline void free_stable_node(struct stable_node *stable_node)
406{
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700407 VM_BUG_ON(stable_node->rmap_hlist_len &&
408 !is_stable_node_chain(stable_node));
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800409 kmem_cache_free(stable_node_cache, stable_node);
410}
411
Izik Eidus31dbd012009-09-21 17:02:03 -0700412static inline struct mm_slot *alloc_mm_slot(void)
413{
414 if (!mm_slot_cache) /* initialization failed */
415 return NULL;
416 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
417}
418
419static inline void free_mm_slot(struct mm_slot *mm_slot)
420{
421 kmem_cache_free(mm_slot_cache, mm_slot);
422}
423
Izik Eidus31dbd012009-09-21 17:02:03 -0700424static struct mm_slot *get_mm_slot(struct mm_struct *mm)
425{
Sasha Levin4ca3a692013-02-22 16:32:28 -0800426 struct mm_slot *slot;
Izik Eidus31dbd012009-09-21 17:02:03 -0700427
Sasha Levinb67bfe02013-02-27 17:06:00 -0800428 hash_for_each_possible(mm_slots_hash, slot, link, (unsigned long)mm)
Sasha Levin4ca3a692013-02-22 16:32:28 -0800429 if (slot->mm == mm)
430 return slot;
431
Izik Eidus31dbd012009-09-21 17:02:03 -0700432 return NULL;
433}
434
435static void insert_to_mm_slots_hash(struct mm_struct *mm,
436 struct mm_slot *mm_slot)
437{
Izik Eidus31dbd012009-09-21 17:02:03 -0700438 mm_slot->mm = mm;
Sasha Levin4ca3a692013-02-22 16:32:28 -0800439 hash_add(mm_slots_hash, &mm_slot->link, (unsigned long)mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700440}
441
Izik Eidus31dbd012009-09-21 17:02:03 -0700442/*
Hugh Dickinsa913e182009-09-21 17:02:26 -0700443 * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's
444 * page tables after it has passed through ksm_exit() - which, if necessary,
445 * takes mmap_sem briefly to serialize against them. ksm_exit() does not set
446 * a special flag: they can just back out as soon as mm_users goes to zero.
447 * ksm_test_exit() is used throughout to make this test for exit: in some
448 * places for correctness, in some places just to avoid unnecessary work.
449 */
450static inline bool ksm_test_exit(struct mm_struct *mm)
451{
452 return atomic_read(&mm->mm_users) == 0;
453}
454
455/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700456 * We use break_ksm to break COW on a ksm page: it's a stripped down
457 *
Dave Hansend4edcf02016-02-12 13:01:56 -0800458 * if (get_user_pages(addr, 1, 1, 1, &page, NULL) == 1)
Izik Eidus31dbd012009-09-21 17:02:03 -0700459 * put_page(page);
460 *
461 * but taking great care only to touch a ksm page, in a VM_MERGEABLE vma,
462 * in case the application has unmapped and remapped mm,addr meanwhile.
463 * Could a ksm page appear anywhere else? Actually yes, in a VM_PFNMAP
464 * mmap of /dev/mem or /dev/kmem, where we would not want to touch it.
Dave Hansen1b2ee122016-02-12 13:02:21 -0800465 *
466 * FAULT_FLAG/FOLL_REMOTE are because we do this outside the context
467 * of the process that owns 'vma'. We also do not want to enforce
468 * protection keys here anyway.
Izik Eidus31dbd012009-09-21 17:02:03 -0700469 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700470static int break_ksm(struct vm_area_struct *vma, unsigned long addr)
Izik Eidus31dbd012009-09-21 17:02:03 -0700471{
472 struct page *page;
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700473 vm_fault_t ret = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700474
475 do {
476 cond_resched();
Dave Hansen1b2ee122016-02-12 13:02:21 -0800477 page = follow_page(vma, addr,
478 FOLL_GET | FOLL_MIGRATION | FOLL_REMOTE);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400479 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700480 break;
481 if (PageKsm(page))
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700482 ret = handle_mm_fault(vma, addr,
483 FAULT_FLAG_WRITE | FAULT_FLAG_REMOTE);
Izik Eidus31dbd012009-09-21 17:02:03 -0700484 else
485 ret = VM_FAULT_WRITE;
486 put_page(page);
Linus Torvalds33692f22015-01-29 10:51:32 -0800487 } while (!(ret & (VM_FAULT_WRITE | VM_FAULT_SIGBUS | VM_FAULT_SIGSEGV | VM_FAULT_OOM)));
Hugh Dickinsd952b792009-09-21 17:02:16 -0700488 /*
489 * We must loop because handle_mm_fault() may back out if there's
490 * any difficulty e.g. if pte accessed bit gets updated concurrently.
491 *
492 * VM_FAULT_WRITE is what we have been hoping for: it indicates that
493 * COW has been broken, even if the vma does not permit VM_WRITE;
494 * but note that a concurrent fault might break PageKsm for us.
495 *
496 * VM_FAULT_SIGBUS could occur if we race with truncation of the
497 * backing file, which also invalidates anonymous pages: that's
498 * okay, that truncation will have unmapped the PageKsm for us.
499 *
500 * VM_FAULT_OOM: at the time of writing (late July 2009), setting
501 * aside mem_cgroup limits, VM_FAULT_OOM would only be set if the
502 * current task has TIF_MEMDIE set, and will be OOM killed on return
503 * to user; and ksmd, having no mm, would never be chosen for that.
504 *
505 * But if the mm is in a limited mem_cgroup, then the fault may fail
506 * with VM_FAULT_OOM even if the current task is not TIF_MEMDIE; and
507 * even ksmd can fail in this way - though it's usually breaking ksm
508 * just to undo a merge it made a moment before, so unlikely to oom.
509 *
510 * That's a pity: we might therefore have more kernel pages allocated
511 * than we're counting as nodes in the stable tree; but ksm_do_scan
512 * will retry to break_cow on each pass, so should recover the page
513 * in due course. The important thing is to not let VM_MERGEABLE
514 * be cleared while any such pages might remain in the area.
515 */
516 return (ret & VM_FAULT_OOM) ? -ENOMEM : 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700517}
518
Bob Liuef694222012-03-21 16:34:11 -0700519static struct vm_area_struct *find_mergeable_vma(struct mm_struct *mm,
520 unsigned long addr)
521{
522 struct vm_area_struct *vma;
523 if (ksm_test_exit(mm))
524 return NULL;
525 vma = find_vma(mm, addr);
526 if (!vma || vma->vm_start > addr)
527 return NULL;
528 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
529 return NULL;
530 return vma;
531}
532
Hugh Dickins8dd35572009-12-14 17:59:18 -0800533static void break_cow(struct rmap_item *rmap_item)
Izik Eidus31dbd012009-09-21 17:02:03 -0700534{
Hugh Dickins8dd35572009-12-14 17:59:18 -0800535 struct mm_struct *mm = rmap_item->mm;
536 unsigned long addr = rmap_item->address;
Izik Eidus31dbd012009-09-21 17:02:03 -0700537 struct vm_area_struct *vma;
538
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800539 /*
540 * It is not an accident that whenever we want to break COW
541 * to undo, we also need to drop a reference to the anon_vma.
542 */
Peter Zijlstra9e601092011-03-22 16:32:46 -0700543 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800544
Hugh Dickins81464e302009-09-21 17:02:15 -0700545 down_read(&mm->mmap_sem);
Bob Liuef694222012-03-21 16:34:11 -0700546 vma = find_mergeable_vma(mm, addr);
547 if (vma)
548 break_ksm(vma, addr);
Izik Eidus31dbd012009-09-21 17:02:03 -0700549 up_read(&mm->mmap_sem);
550}
551
552static struct page *get_mergeable_page(struct rmap_item *rmap_item)
553{
554 struct mm_struct *mm = rmap_item->mm;
555 unsigned long addr = rmap_item->address;
556 struct vm_area_struct *vma;
557 struct page *page;
558
559 down_read(&mm->mmap_sem);
Bob Liuef694222012-03-21 16:34:11 -0700560 vma = find_mergeable_vma(mm, addr);
561 if (!vma)
Izik Eidus31dbd012009-09-21 17:02:03 -0700562 goto out;
563
564 page = follow_page(vma, addr, FOLL_GET);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400565 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700566 goto out;
Kirill A. Shutemovf765f542016-01-15 16:53:03 -0800567 if (PageAnon(page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700568 flush_anon_page(vma, page, addr);
569 flush_dcache_page(page);
570 } else {
571 put_page(page);
Andrea Arcangelic8f95ed2015-11-05 18:49:19 -0800572out:
573 page = NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -0700574 }
575 up_read(&mm->mmap_sem);
576 return page;
577}
578
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800579/*
580 * This helper is used for getting right index into array of tree roots.
581 * When merge_across_nodes knob is set to 1, there are only two rb-trees for
582 * stable and unstable pages from all nodes with roots in index 0. Otherwise,
583 * every node has its own stable and unstable tree.
584 */
585static inline int get_kpfn_nid(unsigned long kpfn)
586{
Hugh Dickinsd8fc16a2013-03-08 12:43:34 -0800587 return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn));
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800588}
589
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700590static struct stable_node *alloc_stable_node_chain(struct stable_node *dup,
591 struct rb_root *root)
592{
593 struct stable_node *chain = alloc_stable_node();
594 VM_BUG_ON(is_stable_node_chain(dup));
595 if (likely(chain)) {
596 INIT_HLIST_HEAD(&chain->hlist);
597 chain->chain_prune_time = jiffies;
598 chain->rmap_hlist_len = STABLE_NODE_CHAIN;
599#if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA)
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800600 chain->nid = NUMA_NO_NODE; /* debug */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700601#endif
602 ksm_stable_node_chains++;
603
604 /*
605 * Put the stable node chain in the first dimension of
606 * the stable tree and at the same time remove the old
607 * stable node.
608 */
609 rb_replace_node(&dup->node, &chain->node, root);
610
611 /*
612 * Move the old stable node to the second dimension
613 * queued in the hlist_dup. The invariant is that all
614 * dup stable_nodes in the chain->hlist point to pages
615 * that are wrprotected and have the exact same
616 * content.
617 */
618 stable_node_chain_add_dup(dup, chain);
619 }
620 return chain;
621}
622
623static inline void free_stable_node_chain(struct stable_node *chain,
624 struct rb_root *root)
625{
626 rb_erase(&chain->node, root);
627 free_stable_node(chain);
628 ksm_stable_node_chains--;
629}
630
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800631static void remove_node_from_stable_tree(struct stable_node *stable_node)
632{
633 struct rmap_item *rmap_item;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800634
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700635 /* check it's not STABLE_NODE_CHAIN or negative */
636 BUG_ON(stable_node->rmap_hlist_len < 0);
637
Sasha Levinb67bfe02013-02-27 17:06:00 -0800638 hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800639 if (rmap_item->hlist.next)
640 ksm_pages_sharing--;
641 else
642 ksm_pages_shared--;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700643 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
644 stable_node->rmap_hlist_len--;
Peter Zijlstra9e601092011-03-22 16:32:46 -0700645 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800646 rmap_item->address &= PAGE_MASK;
647 cond_resched();
648 }
649
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700650 /*
651 * We need the second aligned pointer of the migrate_nodes
652 * list_head to stay clear from the rb_parent_color union
653 * (aligned and different than any node) and also different
654 * from &migrate_nodes. This will verify that future list.h changes
Nick Desaulniers815f0dd2018-08-22 16:37:24 -0700655 * don't break STABLE_NODE_DUP_HEAD. Only recent gcc can handle it.
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700656 */
Nick Desaulniers815f0dd2018-08-22 16:37:24 -0700657#if defined(GCC_VERSION) && GCC_VERSION >= 40903
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700658 BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes);
659 BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1);
660#endif
661
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800662 if (stable_node->head == &migrate_nodes)
663 list_del(&stable_node->list);
664 else
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700665 stable_node_dup_del(stable_node);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800666 free_stable_node(stable_node);
667}
668
Yang Shi2cee57d12019-03-05 15:48:12 -0800669enum get_ksm_page_flags {
670 GET_KSM_PAGE_NOLOCK,
671 GET_KSM_PAGE_LOCK,
672 GET_KSM_PAGE_TRYLOCK
673};
674
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800675/*
676 * get_ksm_page: checks if the page indicated by the stable node
677 * is still its ksm page, despite having held no reference to it.
678 * In which case we can trust the content of the page, and it
679 * returns the gotten page; but if the page has now been zapped,
680 * remove the stale node from the stable tree and return NULL.
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800681 * But beware, the stable node's page might be being migrated.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800682 *
683 * You would expect the stable_node to hold a reference to the ksm page.
684 * But if it increments the page's count, swapping out has to wait for
685 * ksmd to come around again before it can free the page, which may take
686 * seconds or even minutes: much too unresponsive. So instead we use a
687 * "keyhole reference": access to the ksm page from the stable node peeps
688 * out through its keyhole to see if that page still holds the right key,
689 * pointing back to this stable node. This relies on freeing a PageAnon
690 * page to reset its page->mapping to NULL, and relies on no other use of
691 * a page to put something that might look like our key in page->mapping.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800692 * is on its way to being freed; but it is an anomaly to bear in mind.
693 */
Yang Shi2cee57d12019-03-05 15:48:12 -0800694static struct page *get_ksm_page(struct stable_node *stable_node,
695 enum get_ksm_page_flags flags)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800696{
697 struct page *page;
698 void *expected_mapping;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800699 unsigned long kpfn;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800700
Minchan Kimbda807d2016-07-26 15:23:05 -0700701 expected_mapping = (void *)((unsigned long)stable_node |
702 PAGE_MAPPING_KSM);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800703again:
Paul E. McKenney08df4772017-10-09 11:51:45 -0700704 kpfn = READ_ONCE(stable_node->kpfn); /* Address dependency. */
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800705 page = pfn_to_page(kpfn);
Jason Low4db0c3c2015-04-15 16:14:08 -0700706 if (READ_ONCE(page->mapping) != expected_mapping)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800707 goto stale;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800708
709 /*
710 * We cannot do anything with the page while its refcount is 0.
711 * Usually 0 means free, or tail of a higher-order page: in which
712 * case this node is no longer referenced, and should be freed;
Jiang Biao1c4c3b92018-08-21 21:53:13 -0700713 * however, it might mean that the page is under page_ref_freeze().
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800714 * The __remove_mapping() case is easy, again the node is now stale;
Kirill Tkhai52d1e602019-03-05 15:43:06 -0800715 * the same is in reuse_ksm_page() case; but if page is swapcache
716 * in migrate_page_move_mapping(), it might still be our page,
717 * in which case it's essential to keep the node.
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800718 */
719 while (!get_page_unless_zero(page)) {
720 /*
721 * Another check for page->mapping != expected_mapping would
722 * work here too. We have chosen the !PageSwapCache test to
723 * optimize the common case, when the page is or is about to
724 * be freed: PageSwapCache is cleared (under spin_lock_irq)
Jiang Biao1c4c3b92018-08-21 21:53:13 -0700725 * in the ref_freeze section of __remove_mapping(); but Anon
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800726 * page->mapping reset to NULL later, in free_pages_prepare().
727 */
728 if (!PageSwapCache(page))
729 goto stale;
730 cpu_relax();
731 }
732
Jason Low4db0c3c2015-04-15 16:14:08 -0700733 if (READ_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800734 put_page(page);
735 goto stale;
736 }
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800737
Yang Shi2cee57d12019-03-05 15:48:12 -0800738 if (flags == GET_KSM_PAGE_TRYLOCK) {
739 if (!trylock_page(page)) {
740 put_page(page);
741 return ERR_PTR(-EBUSY);
742 }
743 } else if (flags == GET_KSM_PAGE_LOCK)
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800744 lock_page(page);
Yang Shi2cee57d12019-03-05 15:48:12 -0800745
746 if (flags != GET_KSM_PAGE_NOLOCK) {
Jason Low4db0c3c2015-04-15 16:14:08 -0700747 if (READ_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800748 unlock_page(page);
749 put_page(page);
750 goto stale;
751 }
752 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800753 return page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800754
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800755stale:
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800756 /*
757 * We come here from above when page->mapping or !PageSwapCache
758 * suggests that the node is stale; but it might be under migration.
759 * We need smp_rmb(), matching the smp_wmb() in ksm_migrate_page(),
760 * before checking whether node->kpfn has been changed.
761 */
762 smp_rmb();
Jason Low4db0c3c2015-04-15 16:14:08 -0700763 if (READ_ONCE(stable_node->kpfn) != kpfn)
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800764 goto again;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800765 remove_node_from_stable_tree(stable_node);
766 return NULL;
767}
768
Izik Eidus31dbd012009-09-21 17:02:03 -0700769/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700770 * Removing rmap_item from stable or unstable tree.
771 * This function will clean the information from the stable/unstable tree.
772 */
773static void remove_rmap_item_from_tree(struct rmap_item *rmap_item)
774{
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800775 if (rmap_item->address & STABLE_FLAG) {
776 struct stable_node *stable_node;
Hugh Dickins5ad64682009-12-14 17:59:24 -0800777 struct page *page;
Izik Eidus31dbd012009-09-21 17:02:03 -0700778
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800779 stable_node = rmap_item->head;
Yang Shi2cee57d12019-03-05 15:48:12 -0800780 page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800781 if (!page)
782 goto out;
783
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800784 hlist_del(&rmap_item->hlist);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800785 unlock_page(page);
786 put_page(page);
Hugh Dickins08beca42009-12-14 17:59:21 -0800787
Andrea Arcangeli98666f8a2015-11-05 18:49:13 -0800788 if (!hlist_empty(&stable_node->hlist))
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800789 ksm_pages_sharing--;
790 else
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800791 ksm_pages_shared--;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700792 VM_BUG_ON(stable_node->rmap_hlist_len <= 0);
793 stable_node->rmap_hlist_len--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700794
Peter Zijlstra9e601092011-03-22 16:32:46 -0700795 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins93d17712009-12-14 17:59:16 -0800796 rmap_item->address &= PAGE_MASK;
Izik Eidus31dbd012009-09-21 17:02:03 -0700797
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800798 } else if (rmap_item->address & UNSTABLE_FLAG) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700799 unsigned char age;
800 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -0700801 * Usually ksmd can and must skip the rb_erase, because
Izik Eidus31dbd012009-09-21 17:02:03 -0700802 * root_unstable_tree was already reset to RB_ROOT.
Hugh Dickins9ba69292009-09-21 17:02:20 -0700803 * But be careful when an mm is exiting: do the rb_erase
804 * if this rmap_item was inserted by this scan, rather
805 * than left over from before.
Izik Eidus31dbd012009-09-21 17:02:03 -0700806 */
807 age = (unsigned char)(ksm_scan.seqnr - rmap_item->address);
Hugh Dickinscd551f92009-09-21 17:02:17 -0700808 BUG_ON(age > 1);
Izik Eidus31dbd012009-09-21 17:02:03 -0700809 if (!age)
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800810 rb_erase(&rmap_item->node,
Hugh Dickinsef53d162013-02-22 16:36:12 -0800811 root_unstable_tree + NUMA(rmap_item->nid));
Hugh Dickins93d17712009-12-14 17:59:16 -0800812 ksm_pages_unshared--;
813 rmap_item->address &= PAGE_MASK;
814 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800815out:
Izik Eidus31dbd012009-09-21 17:02:03 -0700816 cond_resched(); /* we're called from many long loops */
817}
818
Izik Eidus31dbd012009-09-21 17:02:03 -0700819static void remove_trailing_rmap_items(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -0800820 struct rmap_item **rmap_list)
Izik Eidus31dbd012009-09-21 17:02:03 -0700821{
Hugh Dickins6514d512009-12-14 17:59:19 -0800822 while (*rmap_list) {
823 struct rmap_item *rmap_item = *rmap_list;
824 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700825 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -0700826 free_rmap_item(rmap_item);
827 }
828}
829
830/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800831 * Though it's very tempting to unmerge rmap_items from stable tree rather
Izik Eidus31dbd012009-09-21 17:02:03 -0700832 * than check every pte of a given vma, the locking doesn't quite work for
833 * that - an rmap_item is assigned to the stable tree after inserting ksm
834 * page and upping mmap_sem. Nor does it fit with the way we skip dup'ing
835 * rmap_items from parent to child at fork time (so as not to waste time
836 * if exit comes before the next scan reaches it).
Hugh Dickins81464e302009-09-21 17:02:15 -0700837 *
838 * Similarly, although we'd like to remove rmap_items (so updating counts
839 * and freeing memory) when unmerging an area, it's easier to leave that
840 * to the next pass of ksmd - consider, for example, how ksmd might be
841 * in cmp_and_merge_page on one of the rmap_items we would be removing.
Izik Eidus31dbd012009-09-21 17:02:03 -0700842 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700843static int unmerge_ksm_pages(struct vm_area_struct *vma,
844 unsigned long start, unsigned long end)
Izik Eidus31dbd012009-09-21 17:02:03 -0700845{
846 unsigned long addr;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700847 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700848
Hugh Dickinsd952b792009-09-21 17:02:16 -0700849 for (addr = start; addr < end && !err; addr += PAGE_SIZE) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700850 if (ksm_test_exit(vma->vm_mm))
851 break;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700852 if (signal_pending(current))
853 err = -ERESTARTSYS;
854 else
855 err = break_ksm(vma, addr);
856 }
857 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -0700858}
859
Mike Rapoport88484822018-06-07 17:07:11 -0700860static inline struct stable_node *page_stable_node(struct page *page)
861{
862 return PageKsm(page) ? page_rmapping(page) : NULL;
863}
864
865static inline void set_page_stable_node(struct page *page,
866 struct stable_node *stable_node)
867{
868 page->mapping = (void *)((unsigned long)stable_node | PAGE_MAPPING_KSM);
869}
870
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700871#ifdef CONFIG_SYSFS
872/*
873 * Only called through the sysfs control interface:
874 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800875static int remove_stable_node(struct stable_node *stable_node)
876{
877 struct page *page;
878 int err;
879
Yang Shi2cee57d12019-03-05 15:48:12 -0800880 page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK);
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800881 if (!page) {
882 /*
883 * get_ksm_page did remove_node_from_stable_tree itself.
884 */
885 return 0;
886 }
887
Andrey Ryabinin9a632362019-11-21 17:54:01 -0800888 /*
889 * Page could be still mapped if this races with __mmput() running in
890 * between ksm_exit() and exit_mmap(). Just refuse to let
891 * merge_across_nodes/max_page_sharing be switched.
892 */
893 err = -EBUSY;
894 if (!page_mapped(page)) {
Hugh Dickins8fdb3db2013-02-22 16:36:03 -0800895 /*
896 * The stable node did not yet appear stale to get_ksm_page(),
897 * since that allows for an unmapped ksm page to be recognized
898 * right up until it is freed; but the node is safe to remove.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800899 * This page might be in a pagevec waiting to be freed,
900 * or it might be PageSwapCache (perhaps under writeback),
901 * or it might have been removed from swapcache a moment ago.
902 */
903 set_page_stable_node(page, NULL);
904 remove_node_from_stable_tree(stable_node);
905 err = 0;
906 }
907
908 unlock_page(page);
909 put_page(page);
910 return err;
911}
912
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700913static int remove_stable_node_chain(struct stable_node *stable_node,
914 struct rb_root *root)
915{
916 struct stable_node *dup;
917 struct hlist_node *hlist_safe;
918
919 if (!is_stable_node_chain(stable_node)) {
920 VM_BUG_ON(is_stable_node_dup(stable_node));
921 if (remove_stable_node(stable_node))
922 return true;
923 else
924 return false;
925 }
926
927 hlist_for_each_entry_safe(dup, hlist_safe,
928 &stable_node->hlist, hlist_dup) {
929 VM_BUG_ON(!is_stable_node_dup(dup));
930 if (remove_stable_node(dup))
931 return true;
932 }
933 BUG_ON(!hlist_empty(&stable_node->hlist));
934 free_stable_node_chain(stable_node, root);
935 return false;
936}
937
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800938static int remove_all_stable_nodes(void)
939{
Geliang Tang03640412016-01-14 15:20:54 -0800940 struct stable_node *stable_node, *next;
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800941 int nid;
942 int err = 0;
943
Hugh Dickinsef53d162013-02-22 16:36:12 -0800944 for (nid = 0; nid < ksm_nr_node_ids; nid++) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800945 while (root_stable_tree[nid].rb_node) {
946 stable_node = rb_entry(root_stable_tree[nid].rb_node,
947 struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700948 if (remove_stable_node_chain(stable_node,
949 root_stable_tree + nid)) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800950 err = -EBUSY;
951 break; /* proceed to next nid */
952 }
953 cond_resched();
954 }
955 }
Geliang Tang03640412016-01-14 15:20:54 -0800956 list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800957 if (remove_stable_node(stable_node))
958 err = -EBUSY;
959 cond_resched();
960 }
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800961 return err;
962}
963
Hugh Dickinsd952b792009-09-21 17:02:16 -0700964static int unmerge_and_remove_all_rmap_items(void)
Izik Eidus31dbd012009-09-21 17:02:03 -0700965{
966 struct mm_slot *mm_slot;
967 struct mm_struct *mm;
968 struct vm_area_struct *vma;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700969 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700970
Hugh Dickinsd952b792009-09-21 17:02:16 -0700971 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700972 ksm_scan.mm_slot = list_entry(ksm_mm_head.mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700973 struct mm_slot, mm_list);
974 spin_unlock(&ksm_mmlist_lock);
975
Hugh Dickins9ba69292009-09-21 17:02:20 -0700976 for (mm_slot = ksm_scan.mm_slot;
977 mm_slot != &ksm_mm_head; mm_slot = ksm_scan.mm_slot) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700978 mm = mm_slot->mm;
979 down_read(&mm->mmap_sem);
980 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700981 if (ksm_test_exit(mm))
982 break;
Izik Eidus31dbd012009-09-21 17:02:03 -0700983 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
984 continue;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700985 err = unmerge_ksm_pages(vma,
986 vma->vm_start, vma->vm_end);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700987 if (err)
988 goto error;
Izik Eidus31dbd012009-09-21 17:02:03 -0700989 }
Hugh Dickins9ba69292009-09-21 17:02:20 -0700990
Hugh Dickins6514d512009-12-14 17:59:19 -0800991 remove_trailing_rmap_items(mm_slot, &mm_slot->rmap_list);
Zhou Chengming7496fea2016-05-12 15:42:21 -0700992 up_read(&mm->mmap_sem);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700993
994 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700995 ksm_scan.mm_slot = list_entry(mm_slot->mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700996 struct mm_slot, mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700997 if (ksm_test_exit(mm)) {
Sasha Levin4ca3a692013-02-22 16:32:28 -0800998 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700999 list_del(&mm_slot->mm_list);
1000 spin_unlock(&ksm_mmlist_lock);
1001
1002 free_mm_slot(mm_slot);
1003 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001004 mmdrop(mm);
Zhou Chengming7496fea2016-05-12 15:42:21 -07001005 } else
Hugh Dickins9ba69292009-09-21 17:02:20 -07001006 spin_unlock(&ksm_mmlist_lock);
Izik Eidus31dbd012009-09-21 17:02:03 -07001007 }
1008
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001009 /* Clean up stable nodes, but don't worry if some are still busy */
1010 remove_all_stable_nodes();
Hugh Dickinsd952b792009-09-21 17:02:16 -07001011 ksm_scan.seqnr = 0;
Hugh Dickins9ba69292009-09-21 17:02:20 -07001012 return 0;
1013
1014error:
1015 up_read(&mm->mmap_sem);
Izik Eidus31dbd012009-09-21 17:02:03 -07001016 spin_lock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -07001017 ksm_scan.mm_slot = &ksm_mm_head;
Izik Eidus31dbd012009-09-21 17:02:03 -07001018 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -07001019 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -07001020}
Hugh Dickins2ffd8672009-09-21 17:02:23 -07001021#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07001022
Izik Eidus31dbd012009-09-21 17:02:03 -07001023static u32 calc_checksum(struct page *page)
1024{
1025 u32 checksum;
Cong Wang9b04c5f2011-11-25 23:14:39 +08001026 void *addr = kmap_atomic(page);
Timofey Titovets59e1a2f42018-12-28 00:34:05 -08001027 checksum = xxhash(addr, PAGE_SIZE, 0);
Cong Wang9b04c5f2011-11-25 23:14:39 +08001028 kunmap_atomic(addr);
Izik Eidus31dbd012009-09-21 17:02:03 -07001029 return checksum;
1030}
1031
Izik Eidus31dbd012009-09-21 17:02:03 -07001032static int write_protect_page(struct vm_area_struct *vma, struct page *page,
1033 pte_t *orig_pte)
1034{
1035 struct mm_struct *mm = vma->vm_mm;
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001036 struct page_vma_mapped_walk pvmw = {
1037 .page = page,
1038 .vma = vma,
1039 };
Izik Eidus31dbd012009-09-21 17:02:03 -07001040 int swapped;
1041 int err = -EFAULT;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001042 struct mmu_notifier_range range;
Izik Eidus31dbd012009-09-21 17:02:03 -07001043
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001044 pvmw.address = page_address_in_vma(page, vma);
1045 if (pvmw.address == -EFAULT)
Izik Eidus31dbd012009-09-21 17:02:03 -07001046 goto out;
1047
Andrea Arcangeli29ad7682011-01-13 15:47:19 -08001048 BUG_ON(PageTransCompound(page));
Haggai Eran6bdb9132012-10-08 16:33:35 -07001049
Jérôme Glisse7269f992019-05-13 17:20:53 -07001050 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001051 pvmw.address,
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001052 pvmw.address + PAGE_SIZE);
1053 mmu_notifier_invalidate_range_start(&range);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001054
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001055 if (!page_vma_mapped_walk(&pvmw))
Haggai Eran6bdb9132012-10-08 16:33:35 -07001056 goto out_mn;
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001057 if (WARN_ONCE(!pvmw.pte, "Unexpected PMD mapping?"))
1058 goto out_unlock;
Izik Eidus31dbd012009-09-21 17:02:03 -07001059
Aneesh Kumar K.V595cd8f2017-02-24 14:59:19 -08001060 if (pte_write(*pvmw.pte) || pte_dirty(*pvmw.pte) ||
Minchan Kimb3a81d02017-08-10 15:24:15 -07001061 (pte_protnone(*pvmw.pte) && pte_savedwrite(*pvmw.pte)) ||
1062 mm_tlb_flush_pending(mm)) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001063 pte_t entry;
1064
1065 swapped = PageSwapCache(page);
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001066 flush_cache_page(vma, pvmw.address, page_to_pfn(page));
Izik Eidus31dbd012009-09-21 17:02:03 -07001067 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001068 * Ok this is tricky, when get_user_pages_fast() run it doesn't
Izik Eidus31dbd012009-09-21 17:02:03 -07001069 * take any lock, therefore the check that we are going to make
1070 * with the pagecount against the mapcount is racey and
1071 * O_DIRECT can happen right after the check.
1072 * So we clear the pte and flush the tlb before the check
1073 * this assure us that no O_DIRECT can happen after the check
1074 * or in the middle of the check.
Jérôme Glisse0f108512017-11-15 17:34:07 -08001075 *
1076 * No need to notify as we are downgrading page table to read
1077 * only not changing it to point to a new page.
1078 *
Mike Rapoportad56b732018-03-21 21:22:47 +02001079 * See Documentation/vm/mmu_notifier.rst
Izik Eidus31dbd012009-09-21 17:02:03 -07001080 */
Jérôme Glisse0f108512017-11-15 17:34:07 -08001081 entry = ptep_clear_flush(vma, pvmw.address, pvmw.pte);
Izik Eidus31dbd012009-09-21 17:02:03 -07001082 /*
1083 * Check that no O_DIRECT or similar I/O is in progress on the
1084 * page
1085 */
Hugh Dickins31e855e2009-12-14 17:59:17 -08001086 if (page_mapcount(page) + 1 + swapped != page_count(page)) {
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001087 set_pte_at(mm, pvmw.address, pvmw.pte, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -07001088 goto out_unlock;
1089 }
Hugh Dickins4e316352010-10-02 17:49:08 -07001090 if (pte_dirty(entry))
1091 set_page_dirty(page);
Aneesh Kumar K.V595cd8f2017-02-24 14:59:19 -08001092
1093 if (pte_protnone(entry))
1094 entry = pte_mkclean(pte_clear_savedwrite(entry));
1095 else
1096 entry = pte_mkclean(pte_wrprotect(entry));
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001097 set_pte_at_notify(mm, pvmw.address, pvmw.pte, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -07001098 }
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001099 *orig_pte = *pvmw.pte;
Izik Eidus31dbd012009-09-21 17:02:03 -07001100 err = 0;
1101
1102out_unlock:
Kirill A. Shutemov36eaff32017-02-24 14:58:04 -08001103 page_vma_mapped_walk_done(&pvmw);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001104out_mn:
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001105 mmu_notifier_invalidate_range_end(&range);
Izik Eidus31dbd012009-09-21 17:02:03 -07001106out:
1107 return err;
1108}
1109
1110/**
1111 * replace_page - replace page in vma by new ksm page
Hugh Dickins8dd35572009-12-14 17:59:18 -08001112 * @vma: vma that holds the pte pointing to page
1113 * @page: the page we are replacing by kpage
1114 * @kpage: the ksm page we replace page by
Izik Eidus31dbd012009-09-21 17:02:03 -07001115 * @orig_pte: the original value of the pte
1116 *
1117 * Returns 0 on success, -EFAULT on failure.
1118 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001119static int replace_page(struct vm_area_struct *vma, struct page *page,
1120 struct page *kpage, pte_t orig_pte)
Izik Eidus31dbd012009-09-21 17:02:03 -07001121{
1122 struct mm_struct *mm = vma->vm_mm;
Izik Eidus31dbd012009-09-21 17:02:03 -07001123 pmd_t *pmd;
1124 pte_t *ptep;
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001125 pte_t newpte;
Izik Eidus31dbd012009-09-21 17:02:03 -07001126 spinlock_t *ptl;
1127 unsigned long addr;
Izik Eidus31dbd012009-09-21 17:02:03 -07001128 int err = -EFAULT;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001129 struct mmu_notifier_range range;
Izik Eidus31dbd012009-09-21 17:02:03 -07001130
Hugh Dickins8dd35572009-12-14 17:59:18 -08001131 addr = page_address_in_vma(page, vma);
Izik Eidus31dbd012009-09-21 17:02:03 -07001132 if (addr == -EFAULT)
1133 goto out;
1134
Bob Liu62190492012-12-11 16:00:37 -08001135 pmd = mm_find_pmd(mm, addr);
1136 if (!pmd)
Izik Eidus31dbd012009-09-21 17:02:03 -07001137 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001138
Jérôme Glisse7269f992019-05-13 17:20:53 -07001139 mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, addr,
Jérôme Glisse6f4f13e2019-05-13 17:20:49 -07001140 addr + PAGE_SIZE);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001141 mmu_notifier_invalidate_range_start(&range);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001142
Izik Eidus31dbd012009-09-21 17:02:03 -07001143 ptep = pte_offset_map_lock(mm, pmd, addr, &ptl);
1144 if (!pte_same(*ptep, orig_pte)) {
1145 pte_unmap_unlock(ptep, ptl);
Haggai Eran6bdb9132012-10-08 16:33:35 -07001146 goto out_mn;
Izik Eidus31dbd012009-09-21 17:02:03 -07001147 }
1148
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001149 /*
1150 * No need to check ksm_use_zero_pages here: we can only have a
1151 * zero_page here if ksm_use_zero_pages was enabled alreaady.
1152 */
1153 if (!is_zero_pfn(page_to_pfn(kpage))) {
1154 get_page(kpage);
1155 page_add_anon_rmap(kpage, vma, addr, false);
1156 newpte = mk_pte(kpage, vma->vm_page_prot);
1157 } else {
1158 newpte = pte_mkspecial(pfn_pte(page_to_pfn(kpage),
1159 vma->vm_page_prot));
Claudio Imbrendaa38c0152018-04-10 16:29:41 -07001160 /*
1161 * We're replacing an anonymous page with a zero page, which is
1162 * not anonymous. We need to do proper accounting otherwise we
1163 * will get wrong values in /proc, and a BUG message in dmesg
1164 * when tearing down the mm.
1165 */
1166 dec_mm_counter(mm, MM_ANONPAGES);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001167 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001168
1169 flush_cache_page(vma, addr, pte_pfn(*ptep));
Jérôme Glisse0f108512017-11-15 17:34:07 -08001170 /*
1171 * No need to notify as we are replacing a read only page with another
1172 * read only page with the same content.
1173 *
Mike Rapoportad56b732018-03-21 21:22:47 +02001174 * See Documentation/vm/mmu_notifier.rst
Jérôme Glisse0f108512017-11-15 17:34:07 -08001175 */
1176 ptep_clear_flush(vma, addr, ptep);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08001177 set_pte_at_notify(mm, addr, ptep, newpte);
Izik Eidus31dbd012009-09-21 17:02:03 -07001178
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001179 page_remove_rmap(page, false);
Hugh Dickinsae52a2a2011-01-13 15:46:28 -08001180 if (!page_mapped(page))
1181 try_to_free_swap(page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001182 put_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001183
1184 pte_unmap_unlock(ptep, ptl);
1185 err = 0;
Haggai Eran6bdb9132012-10-08 16:33:35 -07001186out_mn:
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08001187 mmu_notifier_invalidate_range_end(&range);
Izik Eidus31dbd012009-09-21 17:02:03 -07001188out:
1189 return err;
1190}
1191
1192/*
1193 * try_to_merge_one_page - take two pages and merge them into one
Hugh Dickins8dd35572009-12-14 17:59:18 -08001194 * @vma: the vma that holds the pte pointing to page
1195 * @page: the PageAnon page that we want to replace with kpage
Hugh Dickins80e148222009-12-14 17:59:29 -08001196 * @kpage: the PageKsm page that we want to map instead of page,
1197 * or NULL the first time when we want to use page as kpage.
Izik Eidus31dbd012009-09-21 17:02:03 -07001198 *
1199 * This function returns 0 if the pages were merged, -EFAULT otherwise.
1200 */
1201static int try_to_merge_one_page(struct vm_area_struct *vma,
Hugh Dickins8dd35572009-12-14 17:59:18 -08001202 struct page *page, struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001203{
1204 pte_t orig_pte = __pte(0);
1205 int err = -EFAULT;
1206
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001207 if (page == kpage) /* ksm page forked */
1208 return 0;
1209
Hugh Dickins8dd35572009-12-14 17:59:18 -08001210 if (!PageAnon(page))
Izik Eidus31dbd012009-09-21 17:02:03 -07001211 goto out;
1212
Izik Eidus31dbd012009-09-21 17:02:03 -07001213 /*
1214 * We need the page lock to read a stable PageSwapCache in
1215 * write_protect_page(). We use trylock_page() instead of
1216 * lock_page() because we don't want to wait here - we
1217 * prefer to continue scanning and merging different pages,
1218 * then come back to this page when it is unlocked.
1219 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001220 if (!trylock_page(page))
Hugh Dickins31e855e2009-12-14 17:59:17 -08001221 goto out;
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001222
1223 if (PageTransCompound(page)) {
Andrea Arcangelia7306c32017-06-02 14:46:11 -07001224 if (split_huge_page(page))
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001225 goto out_unlock;
1226 }
1227
Izik Eidus31dbd012009-09-21 17:02:03 -07001228 /*
1229 * If this anonymous page is mapped only here, its pte may need
1230 * to be write-protected. If it's mapped elsewhere, all of its
1231 * ptes are necessarily already write-protected. But in either
1232 * case, we need to lock and check page_count is not raised.
1233 */
Hugh Dickins80e148222009-12-14 17:59:29 -08001234 if (write_protect_page(vma, page, &orig_pte) == 0) {
1235 if (!kpage) {
1236 /*
1237 * While we hold page lock, upgrade page from
1238 * PageAnon+anon_vma to PageKsm+NULL stable_node:
1239 * stable_tree_insert() will update stable_node.
1240 */
1241 set_page_stable_node(page, NULL);
1242 mark_page_accessed(page);
Minchan Kim337ed7e2016-01-15 16:55:15 -08001243 /*
1244 * Page reclaim just frees a clean page with no dirty
1245 * ptes: make sure that the ksm page would be swapped.
1246 */
1247 if (!PageDirty(page))
1248 SetPageDirty(page);
Hugh Dickins80e148222009-12-14 17:59:29 -08001249 err = 0;
1250 } else if (pages_identical(page, kpage))
1251 err = replace_page(vma, page, kpage, orig_pte);
1252 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001253
Hugh Dickins80e148222009-12-14 17:59:29 -08001254 if ((vma->vm_flags & VM_LOCKED) && kpage && !err) {
Hugh Dickins73848b42009-12-14 17:59:22 -08001255 munlock_vma_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001256 if (!PageMlocked(kpage)) {
1257 unlock_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001258 lock_page(kpage);
1259 mlock_vma_page(kpage);
1260 page = kpage; /* for final unlock */
1261 }
1262 }
Hugh Dickins73848b42009-12-14 17:59:22 -08001263
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08001264out_unlock:
Hugh Dickins8dd35572009-12-14 17:59:18 -08001265 unlock_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001266out:
1267 return err;
1268}
1269
1270/*
Hugh Dickins81464e302009-09-21 17:02:15 -07001271 * try_to_merge_with_ksm_page - like try_to_merge_two_pages,
1272 * but no new kernel page is allocated: kpage must already be a ksm page.
Hugh Dickins8dd35572009-12-14 17:59:18 -08001273 *
1274 * This function returns 0 if the pages were merged, -EFAULT otherwise.
Hugh Dickins81464e302009-09-21 17:02:15 -07001275 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001276static int try_to_merge_with_ksm_page(struct rmap_item *rmap_item,
1277 struct page *page, struct page *kpage)
Hugh Dickins81464e302009-09-21 17:02:15 -07001278{
Hugh Dickins8dd35572009-12-14 17:59:18 -08001279 struct mm_struct *mm = rmap_item->mm;
Hugh Dickins81464e302009-09-21 17:02:15 -07001280 struct vm_area_struct *vma;
1281 int err = -EFAULT;
1282
Hugh Dickins8dd35572009-12-14 17:59:18 -08001283 down_read(&mm->mmap_sem);
Andrea Arcangeli85c6e8d2015-11-05 18:49:16 -08001284 vma = find_mergeable_vma(mm, rmap_item->address);
1285 if (!vma)
Hugh Dickins9ba69292009-09-21 17:02:20 -07001286 goto out;
1287
Hugh Dickins8dd35572009-12-14 17:59:18 -08001288 err = try_to_merge_one_page(vma, page, kpage);
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001289 if (err)
1290 goto out;
1291
Hugh Dickinsbc566202013-02-22 16:36:06 -08001292 /* Unstable nid is in union with stable anon_vma: remove first */
1293 remove_rmap_item_from_tree(rmap_item);
1294
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001295 /* Must get reference to anon_vma while still holding mmap_sem */
Peter Zijlstra9e601092011-03-22 16:32:46 -07001296 rmap_item->anon_vma = vma->anon_vma;
1297 get_anon_vma(vma->anon_vma);
Hugh Dickins81464e302009-09-21 17:02:15 -07001298out:
Hugh Dickins8dd35572009-12-14 17:59:18 -08001299 up_read(&mm->mmap_sem);
Hugh Dickins81464e302009-09-21 17:02:15 -07001300 return err;
1301}
1302
1303/*
Izik Eidus31dbd012009-09-21 17:02:03 -07001304 * try_to_merge_two_pages - take two identical pages and prepare them
1305 * to be merged into one page.
1306 *
Hugh Dickins8dd35572009-12-14 17:59:18 -08001307 * This function returns the kpage if we successfully merged two identical
1308 * pages into one ksm page, NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001309 *
Hugh Dickins80e148222009-12-14 17:59:29 -08001310 * Note that this function upgrades page to ksm page: if one of the pages
Izik Eidus31dbd012009-09-21 17:02:03 -07001311 * is already a ksm page, try_to_merge_with_ksm_page should be used.
1312 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001313static struct page *try_to_merge_two_pages(struct rmap_item *rmap_item,
1314 struct page *page,
1315 struct rmap_item *tree_rmap_item,
1316 struct page *tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001317{
Hugh Dickins80e148222009-12-14 17:59:29 -08001318 int err;
Izik Eidus31dbd012009-09-21 17:02:03 -07001319
Hugh Dickins80e148222009-12-14 17:59:29 -08001320 err = try_to_merge_with_ksm_page(rmap_item, page, NULL);
Izik Eidus31dbd012009-09-21 17:02:03 -07001321 if (!err) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001322 err = try_to_merge_with_ksm_page(tree_rmap_item,
Hugh Dickins80e148222009-12-14 17:59:29 -08001323 tree_page, page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001324 /*
Hugh Dickins81464e302009-09-21 17:02:15 -07001325 * If that fails, we have a ksm page with only one pte
1326 * pointing to it: so break it.
Izik Eidus31dbd012009-09-21 17:02:03 -07001327 */
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001328 if (err)
Hugh Dickins8dd35572009-12-14 17:59:18 -08001329 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001330 }
Hugh Dickins80e148222009-12-14 17:59:29 -08001331 return err ? NULL : page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001332}
1333
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001334static __always_inline
1335bool __is_page_sharing_candidate(struct stable_node *stable_node, int offset)
1336{
1337 VM_BUG_ON(stable_node->rmap_hlist_len < 0);
1338 /*
1339 * Check that at least one mapping still exists, otherwise
1340 * there's no much point to merge and share with this
1341 * stable_node, as the underlying tree_page of the other
1342 * sharer is going to be freed soon.
1343 */
1344 return stable_node->rmap_hlist_len &&
1345 stable_node->rmap_hlist_len + offset < ksm_max_page_sharing;
1346}
1347
1348static __always_inline
1349bool is_page_sharing_candidate(struct stable_node *stable_node)
1350{
1351 return __is_page_sharing_candidate(stable_node, 0);
1352}
1353
Colin Ian Kingc01f0b52018-04-05 16:22:01 -07001354static struct page *stable_node_dup(struct stable_node **_stable_node_dup,
1355 struct stable_node **_stable_node,
1356 struct rb_root *root,
1357 bool prune_stale_stable_nodes)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001358{
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001359 struct stable_node *dup, *found = NULL, *stable_node = *_stable_node;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001360 struct hlist_node *hlist_safe;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001361 struct page *_tree_page, *tree_page = NULL;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001362 int nr = 0;
1363 int found_rmap_hlist_len;
1364
1365 if (!prune_stale_stable_nodes ||
1366 time_before(jiffies, stable_node->chain_prune_time +
1367 msecs_to_jiffies(
1368 ksm_stable_node_chains_prune_millisecs)))
1369 prune_stale_stable_nodes = false;
1370 else
1371 stable_node->chain_prune_time = jiffies;
1372
1373 hlist_for_each_entry_safe(dup, hlist_safe,
1374 &stable_node->hlist, hlist_dup) {
1375 cond_resched();
1376 /*
1377 * We must walk all stable_node_dup to prune the stale
1378 * stable nodes during lookup.
1379 *
1380 * get_ksm_page can drop the nodes from the
1381 * stable_node->hlist if they point to freed pages
1382 * (that's why we do a _safe walk). The "dup"
1383 * stable_node parameter itself will be freed from
1384 * under us if it returns NULL.
1385 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001386 _tree_page = get_ksm_page(dup, GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001387 if (!_tree_page)
1388 continue;
1389 nr += 1;
1390 if (is_page_sharing_candidate(dup)) {
1391 if (!found ||
1392 dup->rmap_hlist_len > found_rmap_hlist_len) {
1393 if (found)
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001394 put_page(tree_page);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001395 found = dup;
1396 found_rmap_hlist_len = found->rmap_hlist_len;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001397 tree_page = _tree_page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001398
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001399 /* skip put_page for found dup */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001400 if (!prune_stale_stable_nodes)
1401 break;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001402 continue;
1403 }
1404 }
1405 put_page(_tree_page);
1406 }
1407
Andrea Arcangeli80b18df2017-07-06 15:37:08 -07001408 if (found) {
1409 /*
1410 * nr is counting all dups in the chain only if
1411 * prune_stale_stable_nodes is true, otherwise we may
1412 * break the loop at nr == 1 even if there are
1413 * multiple entries.
1414 */
1415 if (prune_stale_stable_nodes && nr == 1) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001416 /*
1417 * If there's not just one entry it would
1418 * corrupt memory, better BUG_ON. In KSM
1419 * context with no lock held it's not even
1420 * fatal.
1421 */
1422 BUG_ON(stable_node->hlist.first->next);
1423
1424 /*
1425 * There's just one entry and it is below the
1426 * deduplication limit so drop the chain.
1427 */
1428 rb_replace_node(&stable_node->node, &found->node,
1429 root);
1430 free_stable_node(stable_node);
1431 ksm_stable_node_chains--;
1432 ksm_stable_node_dups--;
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001433 /*
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001434 * NOTE: the caller depends on the stable_node
1435 * to be equal to stable_node_dup if the chain
1436 * was collapsed.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001437 */
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001438 *_stable_node = found;
1439 /*
1440 * Just for robustneess as stable_node is
1441 * otherwise left as a stable pointer, the
1442 * compiler shall optimize it away at build
1443 * time.
1444 */
1445 stable_node = NULL;
Andrea Arcangeli80b18df2017-07-06 15:37:08 -07001446 } else if (stable_node->hlist.first != &found->hlist_dup &&
1447 __is_page_sharing_candidate(found, 1)) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001448 /*
Andrea Arcangeli80b18df2017-07-06 15:37:08 -07001449 * If the found stable_node dup can accept one
1450 * more future merge (in addition to the one
1451 * that is underway) and is not at the head of
1452 * the chain, put it there so next search will
1453 * be quicker in the !prune_stale_stable_nodes
1454 * case.
1455 *
1456 * NOTE: it would be inaccurate to use nr > 1
1457 * instead of checking the hlist.first pointer
1458 * directly, because in the
1459 * prune_stale_stable_nodes case "nr" isn't
1460 * the position of the found dup in the chain,
1461 * but the total number of dups in the chain.
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001462 */
1463 hlist_del(&found->hlist_dup);
1464 hlist_add_head(&found->hlist_dup,
1465 &stable_node->hlist);
1466 }
1467 }
1468
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001469 *_stable_node_dup = found;
1470 return tree_page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001471}
1472
1473static struct stable_node *stable_node_dup_any(struct stable_node *stable_node,
1474 struct rb_root *root)
1475{
1476 if (!is_stable_node_chain(stable_node))
1477 return stable_node;
1478 if (hlist_empty(&stable_node->hlist)) {
1479 free_stable_node_chain(stable_node, root);
1480 return NULL;
1481 }
1482 return hlist_entry(stable_node->hlist.first,
1483 typeof(*stable_node), hlist_dup);
1484}
1485
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001486/*
1487 * Like for get_ksm_page, this function can free the *_stable_node and
1488 * *_stable_node_dup if the returned tree_page is NULL.
1489 *
1490 * It can also free and overwrite *_stable_node with the found
1491 * stable_node_dup if the chain is collapsed (in which case
1492 * *_stable_node will be equal to *_stable_node_dup like if the chain
1493 * never existed). It's up to the caller to verify tree_page is not
1494 * NULL before dereferencing *_stable_node or *_stable_node_dup.
1495 *
1496 * *_stable_node_dup is really a second output parameter of this
1497 * function and will be overwritten in all cases, the caller doesn't
1498 * need to initialize it.
1499 */
1500static struct page *__stable_node_chain(struct stable_node **_stable_node_dup,
1501 struct stable_node **_stable_node,
1502 struct rb_root *root,
1503 bool prune_stale_stable_nodes)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001504{
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001505 struct stable_node *stable_node = *_stable_node;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001506 if (!is_stable_node_chain(stable_node)) {
1507 if (is_page_sharing_candidate(stable_node)) {
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001508 *_stable_node_dup = stable_node;
Yang Shi2cee57d12019-03-05 15:48:12 -08001509 return get_ksm_page(stable_node, GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001510 }
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001511 /*
1512 * _stable_node_dup set to NULL means the stable_node
1513 * reached the ksm_max_page_sharing limit.
1514 */
1515 *_stable_node_dup = NULL;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001516 return NULL;
1517 }
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001518 return stable_node_dup(_stable_node_dup, _stable_node, root,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001519 prune_stale_stable_nodes);
1520}
1521
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001522static __always_inline struct page *chain_prune(struct stable_node **s_n_d,
1523 struct stable_node **s_n,
1524 struct rb_root *root)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001525{
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001526 return __stable_node_chain(s_n_d, s_n, root, true);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001527}
1528
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001529static __always_inline struct page *chain(struct stable_node **s_n_d,
1530 struct stable_node *s_n,
1531 struct rb_root *root)
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001532{
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001533 struct stable_node *old_stable_node = s_n;
1534 struct page *tree_page;
1535
1536 tree_page = __stable_node_chain(s_n_d, &s_n, root, false);
1537 /* not pruning dups so s_n cannot have changed */
1538 VM_BUG_ON(s_n != old_stable_node);
1539 return tree_page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001540}
1541
Izik Eidus31dbd012009-09-21 17:02:03 -07001542/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001543 * stable_tree_search - search for page inside the stable tree
Izik Eidus31dbd012009-09-21 17:02:03 -07001544 *
1545 * This function checks if there is a page inside the stable tree
1546 * with identical content to the page that we are scanning right now.
1547 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001548 * This function returns the stable tree node of identical content if found,
Izik Eidus31dbd012009-09-21 17:02:03 -07001549 * NULL otherwise.
1550 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001551static struct page *stable_tree_search(struct page *page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001552{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001553 int nid;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001554 struct rb_root *root;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001555 struct rb_node **new;
1556 struct rb_node *parent;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001557 struct stable_node *stable_node, *stable_node_dup, *stable_node_any;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001558 struct stable_node *page_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001559
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001560 page_node = page_stable_node(page);
1561 if (page_node && page_node->head != &migrate_nodes) {
1562 /* ksm page forked */
Hugh Dickins08beca42009-12-14 17:59:21 -08001563 get_page(page);
Hugh Dickins62b61f62009-12-14 17:59:33 -08001564 return page;
Hugh Dickins08beca42009-12-14 17:59:21 -08001565 }
1566
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001567 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickinsef53d162013-02-22 16:36:12 -08001568 root = root_stable_tree + nid;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001569again:
Hugh Dickinsef53d162013-02-22 16:36:12 -08001570 new = &root->rb_node;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001571 parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001572
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001573 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001574 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001575 int ret;
1576
Hugh Dickins08beca42009-12-14 17:59:21 -08001577 cond_resched();
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001578 stable_node = rb_entry(*new, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001579 stable_node_any = NULL;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001580 tree_page = chain_prune(&stable_node_dup, &stable_node, root);
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001581 /*
1582 * NOTE: stable_node may have been freed by
1583 * chain_prune() if the returned stable_node_dup is
1584 * not NULL. stable_node_dup may have been inserted in
1585 * the rbtree instead as a regular stable_node (in
1586 * order to collapse the stable_node chain if a single
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001587 * stable_node dup was found in it). In such case the
1588 * stable_node is overwritten by the calleee to point
1589 * to the stable_node_dup that was collapsed in the
1590 * stable rbtree and stable_node will be equal to
1591 * stable_node_dup like if the chain never existed.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001592 */
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001593 if (!stable_node_dup) {
1594 /*
1595 * Either all stable_node dups were full in
1596 * this stable_node chain, or this chain was
1597 * empty and should be rb_erased.
1598 */
1599 stable_node_any = stable_node_dup_any(stable_node,
1600 root);
1601 if (!stable_node_any) {
1602 /* rb_erase just run */
1603 goto again;
1604 }
1605 /*
1606 * Take any of the stable_node dups page of
1607 * this stable_node chain to let the tree walk
1608 * continue. All KSM pages belonging to the
1609 * stable_node dups in a stable_node chain
1610 * have the same content and they're
1611 * wrprotected at all times. Any will work
1612 * fine to continue the walk.
1613 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001614 tree_page = get_ksm_page(stable_node_any,
1615 GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001616 }
1617 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001618 if (!tree_page) {
1619 /*
1620 * If we walked over a stale stable_node,
1621 * get_ksm_page() will call rb_erase() and it
1622 * may rebalance the tree from under us. So
1623 * restart the search from scratch. Returning
1624 * NULL would be safe too, but we'd generate
1625 * false negative insertions just because some
1626 * stable_node was stale.
1627 */
1628 goto again;
1629 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001630
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001631 ret = memcmp_pages(page, tree_page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001632 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001633
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001634 parent = *new;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001635 if (ret < 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001636 new = &parent->rb_left;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001637 else if (ret > 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001638 new = &parent->rb_right;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001639 else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001640 if (page_node) {
1641 VM_BUG_ON(page_node->head != &migrate_nodes);
1642 /*
1643 * Test if the migrated page should be merged
1644 * into a stable node dup. If the mapcount is
1645 * 1 we can migrate it with another KSM page
1646 * without adding it to the chain.
1647 */
1648 if (page_mapcount(page) > 1)
1649 goto chain_append;
1650 }
1651
1652 if (!stable_node_dup) {
1653 /*
1654 * If the stable_node is a chain and
1655 * we got a payload match in memcmp
1656 * but we cannot merge the scanned
1657 * page in any of the existing
1658 * stable_node dups because they're
1659 * all full, we need to wait the
1660 * scanned page to find itself a match
1661 * in the unstable tree to create a
1662 * brand new KSM page to add later to
1663 * the dups of this stable_node.
1664 */
1665 return NULL;
1666 }
1667
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001668 /*
1669 * Lock and unlock the stable_node's page (which
1670 * might already have been migrated) so that page
1671 * migration is sure to notice its raised count.
1672 * It would be more elegant to return stable_node
1673 * than kpage, but that involves more changes.
1674 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001675 tree_page = get_ksm_page(stable_node_dup,
1676 GET_KSM_PAGE_TRYLOCK);
1677
1678 if (PTR_ERR(tree_page) == -EBUSY)
1679 return ERR_PTR(-EBUSY);
1680
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001681 if (unlikely(!tree_page))
1682 /*
1683 * The tree may have been rebalanced,
1684 * so re-evaluate parent and new.
1685 */
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001686 goto again;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001687 unlock_page(tree_page);
1688
1689 if (get_kpfn_nid(stable_node_dup->kpfn) !=
1690 NUMA(stable_node_dup->nid)) {
1691 put_page(tree_page);
1692 goto replace;
1693 }
1694 return tree_page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001695 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001696 }
1697
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001698 if (!page_node)
1699 return NULL;
1700
1701 list_del(&page_node->list);
1702 DO_NUMA(page_node->nid = nid);
1703 rb_link_node(&page_node->node, parent, new);
Hugh Dickinsef53d162013-02-22 16:36:12 -08001704 rb_insert_color(&page_node->node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001705out:
1706 if (is_page_sharing_candidate(page_node)) {
1707 get_page(page);
1708 return page;
1709 } else
1710 return NULL;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001711
1712replace:
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001713 /*
1714 * If stable_node was a chain and chain_prune collapsed it,
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001715 * stable_node has been updated to be the new regular
1716 * stable_node. A collapse of the chain is indistinguishable
1717 * from the case there was no chain in the stable
1718 * rbtree. Otherwise stable_node is the chain and
1719 * stable_node_dup is the dup to replace.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001720 */
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001721 if (stable_node_dup == stable_node) {
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001722 VM_BUG_ON(is_stable_node_chain(stable_node_dup));
1723 VM_BUG_ON(is_stable_node_dup(stable_node_dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001724 /* there is no chain */
1725 if (page_node) {
1726 VM_BUG_ON(page_node->head != &migrate_nodes);
1727 list_del(&page_node->list);
1728 DO_NUMA(page_node->nid = nid);
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001729 rb_replace_node(&stable_node_dup->node,
1730 &page_node->node,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001731 root);
1732 if (is_page_sharing_candidate(page_node))
1733 get_page(page);
1734 else
1735 page = NULL;
1736 } else {
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001737 rb_erase(&stable_node_dup->node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001738 page = NULL;
1739 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001740 } else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001741 VM_BUG_ON(!is_stable_node_chain(stable_node));
1742 __stable_node_dup_del(stable_node_dup);
1743 if (page_node) {
1744 VM_BUG_ON(page_node->head != &migrate_nodes);
1745 list_del(&page_node->list);
1746 DO_NUMA(page_node->nid = nid);
1747 stable_node_chain_add_dup(page_node, stable_node);
1748 if (is_page_sharing_candidate(page_node))
1749 get_page(page);
1750 else
1751 page = NULL;
1752 } else {
1753 page = NULL;
1754 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001755 }
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001756 stable_node_dup->head = &migrate_nodes;
1757 list_add(&stable_node_dup->list, stable_node_dup->head);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001758 return page;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001759
1760chain_append:
1761 /* stable_node_dup could be null if it reached the limit */
1762 if (!stable_node_dup)
1763 stable_node_dup = stable_node_any;
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001764 /*
1765 * If stable_node was a chain and chain_prune collapsed it,
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001766 * stable_node has been updated to be the new regular
1767 * stable_node. A collapse of the chain is indistinguishable
1768 * from the case there was no chain in the stable
1769 * rbtree. Otherwise stable_node is the chain and
1770 * stable_node_dup is the dup to replace.
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001771 */
Andrea Arcangeli0ba1d0f2017-07-06 15:37:02 -07001772 if (stable_node_dup == stable_node) {
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001773 VM_BUG_ON(is_stable_node_chain(stable_node_dup));
1774 VM_BUG_ON(is_stable_node_dup(stable_node_dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001775 /* chain is missing so create it */
1776 stable_node = alloc_stable_node_chain(stable_node_dup,
1777 root);
1778 if (!stable_node)
1779 return NULL;
1780 }
1781 /*
1782 * Add this stable_node dup that was
1783 * migrated to the stable_node chain
1784 * of the current nid for this page
1785 * content.
1786 */
Andrea Arcangelib4fecc62017-07-06 15:36:59 -07001787 VM_BUG_ON(!is_stable_node_chain(stable_node));
1788 VM_BUG_ON(!is_stable_node_dup(stable_node_dup));
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001789 VM_BUG_ON(page_node->head != &migrate_nodes);
1790 list_del(&page_node->list);
1791 DO_NUMA(page_node->nid = nid);
1792 stable_node_chain_add_dup(page_node, stable_node);
1793 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001794}
1795
1796/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001797 * stable_tree_insert - insert stable tree node pointing to new ksm page
Izik Eidus31dbd012009-09-21 17:02:03 -07001798 * into the stable tree.
1799 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001800 * This function returns the stable tree node just allocated on success,
1801 * NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001802 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001803static struct stable_node *stable_tree_insert(struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001804{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001805 int nid;
1806 unsigned long kpfn;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001807 struct rb_root *root;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001808 struct rb_node **new;
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001809 struct rb_node *parent;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001810 struct stable_node *stable_node, *stable_node_dup, *stable_node_any;
1811 bool need_chain = false;
Izik Eidus31dbd012009-09-21 17:02:03 -07001812
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001813 kpfn = page_to_pfn(kpage);
1814 nid = get_kpfn_nid(kpfn);
Hugh Dickinsef53d162013-02-22 16:36:12 -08001815 root = root_stable_tree + nid;
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001816again:
1817 parent = NULL;
Hugh Dickinsef53d162013-02-22 16:36:12 -08001818 new = &root->rb_node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001819
Izik Eidus31dbd012009-09-21 17:02:03 -07001820 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001821 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001822 int ret;
1823
Hugh Dickins08beca42009-12-14 17:59:21 -08001824 cond_resched();
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001825 stable_node = rb_entry(*new, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001826 stable_node_any = NULL;
Andrea Arcangeli8dc5ffc2017-07-06 15:37:05 -07001827 tree_page = chain(&stable_node_dup, stable_node, root);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001828 if (!stable_node_dup) {
1829 /*
1830 * Either all stable_node dups were full in
1831 * this stable_node chain, or this chain was
1832 * empty and should be rb_erased.
1833 */
1834 stable_node_any = stable_node_dup_any(stable_node,
1835 root);
1836 if (!stable_node_any) {
1837 /* rb_erase just run */
1838 goto again;
1839 }
1840 /*
1841 * Take any of the stable_node dups page of
1842 * this stable_node chain to let the tree walk
1843 * continue. All KSM pages belonging to the
1844 * stable_node dups in a stable_node chain
1845 * have the same content and they're
1846 * wrprotected at all times. Any will work
1847 * fine to continue the walk.
1848 */
Yang Shi2cee57d12019-03-05 15:48:12 -08001849 tree_page = get_ksm_page(stable_node_any,
1850 GET_KSM_PAGE_NOLOCK);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001851 }
1852 VM_BUG_ON(!stable_node_dup ^ !!stable_node_any);
Andrea Arcangelif2e5ff82015-11-05 18:49:10 -08001853 if (!tree_page) {
1854 /*
1855 * If we walked over a stale stable_node,
1856 * get_ksm_page() will call rb_erase() and it
1857 * may rebalance the tree from under us. So
1858 * restart the search from scratch. Returning
1859 * NULL would be safe too, but we'd generate
1860 * false negative insertions just because some
1861 * stable_node was stale.
1862 */
1863 goto again;
1864 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001865
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001866 ret = memcmp_pages(kpage, tree_page);
1867 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001868
1869 parent = *new;
1870 if (ret < 0)
1871 new = &parent->rb_left;
1872 else if (ret > 0)
1873 new = &parent->rb_right;
1874 else {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001875 need_chain = true;
1876 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07001877 }
1878 }
1879
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001880 stable_node_dup = alloc_stable_node();
1881 if (!stable_node_dup)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001882 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001883
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001884 INIT_HLIST_HEAD(&stable_node_dup->hlist);
1885 stable_node_dup->kpfn = kpfn;
1886 set_page_stable_node(kpage, stable_node_dup);
1887 stable_node_dup->rmap_hlist_len = 0;
1888 DO_NUMA(stable_node_dup->nid = nid);
1889 if (!need_chain) {
1890 rb_link_node(&stable_node_dup->node, parent, new);
1891 rb_insert_color(&stable_node_dup->node, root);
1892 } else {
1893 if (!is_stable_node_chain(stable_node)) {
1894 struct stable_node *orig = stable_node;
1895 /* chain is missing so create it */
1896 stable_node = alloc_stable_node_chain(orig, root);
1897 if (!stable_node) {
1898 free_stable_node(stable_node_dup);
1899 return NULL;
1900 }
1901 }
1902 stable_node_chain_add_dup(stable_node_dup, stable_node);
1903 }
Hugh Dickins08beca42009-12-14 17:59:21 -08001904
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001905 return stable_node_dup;
Izik Eidus31dbd012009-09-21 17:02:03 -07001906}
1907
1908/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001909 * unstable_tree_search_insert - search for identical page,
1910 * else insert rmap_item into the unstable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07001911 *
1912 * This function searches for a page in the unstable tree identical to the
1913 * page currently being scanned; and if no identical page is found in the
1914 * tree, we insert rmap_item as a new object into the unstable tree.
1915 *
1916 * This function returns pointer to rmap_item found to be identical
1917 * to the currently scanned page, NULL otherwise.
1918 *
1919 * This function does both searching and inserting, because they share
1920 * the same walking algorithm in an rbtree.
1921 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001922static
1923struct rmap_item *unstable_tree_search_insert(struct rmap_item *rmap_item,
1924 struct page *page,
1925 struct page **tree_pagep)
Izik Eidus31dbd012009-09-21 17:02:03 -07001926{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001927 struct rb_node **new;
1928 struct rb_root *root;
Izik Eidus31dbd012009-09-21 17:02:03 -07001929 struct rb_node *parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001930 int nid;
1931
1932 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickinsef53d162013-02-22 16:36:12 -08001933 root = root_unstable_tree + nid;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001934 new = &root->rb_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001935
1936 while (*new) {
1937 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001938 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001939 int ret;
1940
Hugh Dickinsd178f272009-11-09 15:58:23 +00001941 cond_resched();
Izik Eidus31dbd012009-09-21 17:02:03 -07001942 tree_rmap_item = rb_entry(*new, struct rmap_item, node);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001943 tree_page = get_mergeable_page(tree_rmap_item);
Andrea Arcangelic8f95ed2015-11-05 18:49:19 -08001944 if (!tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001945 return NULL;
1946
1947 /*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001948 * Don't substitute a ksm page for a forked page.
Izik Eidus31dbd012009-09-21 17:02:03 -07001949 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001950 if (page == tree_page) {
1951 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001952 return NULL;
1953 }
1954
Hugh Dickins8dd35572009-12-14 17:59:18 -08001955 ret = memcmp_pages(page, tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001956
1957 parent = *new;
1958 if (ret < 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001959 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001960 new = &parent->rb_left;
1961 } else if (ret > 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001962 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001963 new = &parent->rb_right;
Hugh Dickinsb599cbd2013-02-22 16:36:05 -08001964 } else if (!ksm_merge_across_nodes &&
1965 page_to_nid(tree_page) != nid) {
1966 /*
1967 * If tree_page has been migrated to another NUMA node,
1968 * it will be flushed out and put in the right unstable
1969 * tree next time: only merge with it when across_nodes.
1970 */
1971 put_page(tree_page);
1972 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001973 } else {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001974 *tree_pagep = tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001975 return tree_rmap_item;
1976 }
1977 }
1978
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001979 rmap_item->address |= UNSTABLE_FLAG;
Izik Eidus31dbd012009-09-21 17:02:03 -07001980 rmap_item->address |= (ksm_scan.seqnr & SEQNR_MASK);
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001981 DO_NUMA(rmap_item->nid = nid);
Izik Eidus31dbd012009-09-21 17:02:03 -07001982 rb_link_node(&rmap_item->node, parent, new);
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001983 rb_insert_color(&rmap_item->node, root);
Izik Eidus31dbd012009-09-21 17:02:03 -07001984
Hugh Dickins473b0ce2009-09-21 17:02:11 -07001985 ksm_pages_unshared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07001986 return NULL;
1987}
1988
1989/*
1990 * stable_tree_append - add another rmap_item to the linked list of
1991 * rmap_items hanging off a given node of the stable tree, all sharing
1992 * the same ksm page.
1993 */
1994static void stable_tree_append(struct rmap_item *rmap_item,
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001995 struct stable_node *stable_node,
1996 bool max_page_sharing_bypass)
Izik Eidus31dbd012009-09-21 17:02:03 -07001997{
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07001998 /*
1999 * rmap won't find this mapping if we don't insert the
2000 * rmap_item in the right stable_node
2001 * duplicate. page_migration could break later if rmap breaks,
2002 * so we can as well crash here. We really need to check for
2003 * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check
2004 * for other negative values as an undeflow if detected here
2005 * for the first time (and not when decreasing rmap_hlist_len)
2006 * would be sign of memory corruption in the stable_node.
2007 */
2008 BUG_ON(stable_node->rmap_hlist_len < 0);
2009
2010 stable_node->rmap_hlist_len++;
2011 if (!max_page_sharing_bypass)
2012 /* possibly non fatal but unexpected overflow, only warn */
2013 WARN_ON_ONCE(stable_node->rmap_hlist_len >
2014 ksm_max_page_sharing);
2015
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002016 rmap_item->head = stable_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07002017 rmap_item->address |= STABLE_FLAG;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002018 hlist_add_head(&rmap_item->hlist, &stable_node->hlist);
Hugh Dickinse178dfd2009-09-21 17:02:10 -07002019
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002020 if (rmap_item->hlist.next)
2021 ksm_pages_sharing++;
2022 else
2023 ksm_pages_shared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07002024}
2025
2026/*
Hugh Dickins81464e302009-09-21 17:02:15 -07002027 * cmp_and_merge_page - first see if page can be merged into the stable tree;
2028 * if not, compare checksum to previous and if it's the same, see if page can
2029 * be inserted into the unstable tree, or merged with a page already there and
2030 * both transferred to the stable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07002031 *
2032 * @page: the page that we are searching identical page to.
2033 * @rmap_item: the reverse mapping into the virtual address of this page
2034 */
2035static void cmp_and_merge_page(struct page *page, struct rmap_item *rmap_item)
2036{
Kirill Tkhai4b229272017-10-03 16:14:27 -07002037 struct mm_struct *mm = rmap_item->mm;
Izik Eidus31dbd012009-09-21 17:02:03 -07002038 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08002039 struct page *tree_page = NULL;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002040 struct stable_node *stable_node;
Hugh Dickins8dd35572009-12-14 17:59:18 -08002041 struct page *kpage;
Izik Eidus31dbd012009-09-21 17:02:03 -07002042 unsigned int checksum;
2043 int err;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002044 bool max_page_sharing_bypass = false;
Izik Eidus31dbd012009-09-21 17:02:03 -07002045
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002046 stable_node = page_stable_node(page);
2047 if (stable_node) {
2048 if (stable_node->head != &migrate_nodes &&
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002049 get_kpfn_nid(READ_ONCE(stable_node->kpfn)) !=
2050 NUMA(stable_node->nid)) {
2051 stable_node_dup_del(stable_node);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002052 stable_node->head = &migrate_nodes;
2053 list_add(&stable_node->list, stable_node->head);
2054 }
2055 if (stable_node->head != &migrate_nodes &&
2056 rmap_item->head == stable_node)
2057 return;
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002058 /*
2059 * If it's a KSM fork, allow it to go over the sharing limit
2060 * without warnings.
2061 */
2062 if (!is_page_sharing_candidate(stable_node))
2063 max_page_sharing_bypass = true;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002064 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002065
2066 /* We first start with searching the page inside the stable tree */
Hugh Dickins62b61f62009-12-14 17:59:33 -08002067 kpage = stable_tree_search(page);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002068 if (kpage == page && rmap_item->head == stable_node) {
2069 put_page(kpage);
2070 return;
2071 }
2072
2073 remove_rmap_item_from_tree(rmap_item);
2074
Hugh Dickins62b61f62009-12-14 17:59:33 -08002075 if (kpage) {
Yang Shi2cee57d12019-03-05 15:48:12 -08002076 if (PTR_ERR(kpage) == -EBUSY)
2077 return;
2078
Hugh Dickins08beca42009-12-14 17:59:21 -08002079 err = try_to_merge_with_ksm_page(rmap_item, page, kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07002080 if (!err) {
2081 /*
2082 * The page was successfully merged:
2083 * add its rmap_item to the stable tree.
2084 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08002085 lock_page(kpage);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002086 stable_tree_append(rmap_item, page_stable_node(kpage),
2087 max_page_sharing_bypass);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002088 unlock_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07002089 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08002090 put_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07002091 return;
2092 }
2093
2094 /*
Hugh Dickins4035c07a2009-12-14 17:59:27 -08002095 * If the hash value of the page has changed from the last time
2096 * we calculated it, this page is changing frequently: therefore we
2097 * don't want to insert it in the unstable tree, and we don't want
2098 * to waste our time searching for something identical to it there.
Izik Eidus31dbd012009-09-21 17:02:03 -07002099 */
2100 checksum = calc_checksum(page);
2101 if (rmap_item->oldchecksum != checksum) {
2102 rmap_item->oldchecksum = checksum;
2103 return;
2104 }
2105
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002106 /*
2107 * Same checksum as an empty page. We attempt to merge it with the
2108 * appropriate zero page if the user enabled this via sysfs.
2109 */
2110 if (ksm_use_zero_pages && (checksum == zero_checksum)) {
2111 struct vm_area_struct *vma;
2112
Kirill Tkhai4b229272017-10-03 16:14:27 -07002113 down_read(&mm->mmap_sem);
2114 vma = find_mergeable_vma(mm, rmap_item->address);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002115 err = try_to_merge_one_page(vma, page,
2116 ZERO_PAGE(rmap_item->address));
Kirill Tkhai4b229272017-10-03 16:14:27 -07002117 up_read(&mm->mmap_sem);
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002118 /*
2119 * In case of failure, the page was not really empty, so we
2120 * need to continue. Otherwise we're done.
2121 */
2122 if (!err)
2123 return;
2124 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08002125 tree_rmap_item =
2126 unstable_tree_search_insert(rmap_item, page, &tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002127 if (tree_rmap_item) {
Claudio Imbrenda77da2ba2018-04-05 16:25:41 -07002128 bool split;
2129
Hugh Dickins8dd35572009-12-14 17:59:18 -08002130 kpage = try_to_merge_two_pages(rmap_item, page,
2131 tree_rmap_item, tree_page);
Claudio Imbrenda77da2ba2018-04-05 16:25:41 -07002132 /*
2133 * If both pages we tried to merge belong to the same compound
2134 * page, then we actually ended up increasing the reference
2135 * count of the same compound page twice, and split_huge_page
2136 * failed.
2137 * Here we set a flag if that happened, and we use it later to
2138 * try split_huge_page again. Since we call put_page right
2139 * afterwards, the reference count will be correct and
2140 * split_huge_page should succeed.
2141 */
2142 split = PageTransCompound(page)
2143 && compound_head(page) == compound_head(tree_page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08002144 put_page(tree_page);
Hugh Dickins8dd35572009-12-14 17:59:18 -08002145 if (kpage) {
Hugh Dickinsbc566202013-02-22 16:36:06 -08002146 /*
2147 * The pages were successfully merged: insert new
2148 * node in the stable tree and add both rmap_items.
2149 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08002150 lock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002151 stable_node = stable_tree_insert(kpage);
2152 if (stable_node) {
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002153 stable_tree_append(tree_rmap_item, stable_node,
2154 false);
2155 stable_tree_append(rmap_item, stable_node,
2156 false);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002157 }
Hugh Dickins5ad64682009-12-14 17:59:24 -08002158 unlock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002159
Izik Eidus31dbd012009-09-21 17:02:03 -07002160 /*
2161 * If we fail to insert the page into the stable tree,
2162 * we will have 2 virtual addresses that are pointing
2163 * to a ksm page left outside the stable tree,
2164 * in which case we need to break_cow on both.
2165 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08002166 if (!stable_node) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08002167 break_cow(tree_rmap_item);
2168 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002169 }
Claudio Imbrenda77da2ba2018-04-05 16:25:41 -07002170 } else if (split) {
2171 /*
2172 * We are here if we tried to merge two pages and
2173 * failed because they both belonged to the same
2174 * compound page. We will split the page now, but no
2175 * merging will take place.
2176 * We do not want to add the cost of a full lock; if
2177 * the page is locked, it is better to skip it and
2178 * perhaps try again later.
2179 */
2180 if (!trylock_page(page))
2181 return;
2182 split_huge_page(page);
2183 unlock_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002184 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002185 }
2186}
2187
2188static struct rmap_item *get_next_rmap_item(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08002189 struct rmap_item **rmap_list,
Izik Eidus31dbd012009-09-21 17:02:03 -07002190 unsigned long addr)
2191{
2192 struct rmap_item *rmap_item;
2193
Hugh Dickins6514d512009-12-14 17:59:19 -08002194 while (*rmap_list) {
2195 rmap_item = *rmap_list;
Hugh Dickins93d17712009-12-14 17:59:16 -08002196 if ((rmap_item->address & PAGE_MASK) == addr)
Izik Eidus31dbd012009-09-21 17:02:03 -07002197 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07002198 if (rmap_item->address > addr)
2199 break;
Hugh Dickins6514d512009-12-14 17:59:19 -08002200 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002201 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002202 free_rmap_item(rmap_item);
2203 }
2204
2205 rmap_item = alloc_rmap_item();
2206 if (rmap_item) {
2207 /* It has already been zeroed */
2208 rmap_item->mm = mm_slot->mm;
2209 rmap_item->address = addr;
Hugh Dickins6514d512009-12-14 17:59:19 -08002210 rmap_item->rmap_list = *rmap_list;
2211 *rmap_list = rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07002212 }
2213 return rmap_item;
2214}
2215
2216static struct rmap_item *scan_get_next_rmap_item(struct page **page)
2217{
2218 struct mm_struct *mm;
2219 struct mm_slot *slot;
2220 struct vm_area_struct *vma;
2221 struct rmap_item *rmap_item;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002222 int nid;
Izik Eidus31dbd012009-09-21 17:02:03 -07002223
2224 if (list_empty(&ksm_mm_head.mm_list))
2225 return NULL;
2226
2227 slot = ksm_scan.mm_slot;
2228 if (slot == &ksm_mm_head) {
Hugh Dickins2919bfd2011-01-13 15:47:29 -08002229 /*
2230 * A number of pages can hang around indefinitely on per-cpu
2231 * pagevecs, raised page count preventing write_protect_page
2232 * from merging them. Though it doesn't really matter much,
2233 * it is puzzling to see some stuck in pages_volatile until
2234 * other activity jostles them out, and they also prevented
2235 * LTP's KSM test from succeeding deterministically; so drain
2236 * them here (here rather than on entry to ksm_do_scan(),
2237 * so we don't IPI too often when pages_to_scan is set low).
2238 */
2239 lru_add_drain_all();
2240
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002241 /*
2242 * Whereas stale stable_nodes on the stable_tree itself
2243 * get pruned in the regular course of stable_tree_search(),
2244 * those moved out to the migrate_nodes list can accumulate:
2245 * so prune them once before each full scan.
2246 */
2247 if (!ksm_merge_across_nodes) {
Geliang Tang03640412016-01-14 15:20:54 -08002248 struct stable_node *stable_node, *next;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002249 struct page *page;
2250
Geliang Tang03640412016-01-14 15:20:54 -08002251 list_for_each_entry_safe(stable_node, next,
2252 &migrate_nodes, list) {
Yang Shi2cee57d12019-03-05 15:48:12 -08002253 page = get_ksm_page(stable_node,
2254 GET_KSM_PAGE_NOLOCK);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002255 if (page)
2256 put_page(page);
2257 cond_resched();
2258 }
2259 }
2260
Hugh Dickinsef53d162013-02-22 16:36:12 -08002261 for (nid = 0; nid < ksm_nr_node_ids; nid++)
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002262 root_unstable_tree[nid] = RB_ROOT;
Izik Eidus31dbd012009-09-21 17:02:03 -07002263
2264 spin_lock(&ksm_mmlist_lock);
2265 slot = list_entry(slot->mm_list.next, struct mm_slot, mm_list);
2266 ksm_scan.mm_slot = slot;
2267 spin_unlock(&ksm_mmlist_lock);
Hugh Dickins2b472612011-06-15 15:08:58 -07002268 /*
2269 * Although we tested list_empty() above, a racing __ksm_exit
2270 * of the last mm on the list may have removed it since then.
2271 */
2272 if (slot == &ksm_mm_head)
2273 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07002274next_mm:
2275 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08002276 ksm_scan.rmap_list = &slot->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002277 }
2278
2279 mm = slot->mm;
2280 down_read(&mm->mmap_sem);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002281 if (ksm_test_exit(mm))
2282 vma = NULL;
2283 else
2284 vma = find_vma(mm, ksm_scan.address);
2285
2286 for (; vma; vma = vma->vm_next) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002287 if (!(vma->vm_flags & VM_MERGEABLE))
2288 continue;
2289 if (ksm_scan.address < vma->vm_start)
2290 ksm_scan.address = vma->vm_start;
2291 if (!vma->anon_vma)
2292 ksm_scan.address = vma->vm_end;
2293
2294 while (ksm_scan.address < vma->vm_end) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002295 if (ksm_test_exit(mm))
2296 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07002297 *page = follow_page(vma, ksm_scan.address, FOLL_GET);
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08002298 if (IS_ERR_OR_NULL(*page)) {
2299 ksm_scan.address += PAGE_SIZE;
2300 cond_resched();
2301 continue;
2302 }
Kirill A. Shutemovf765f542016-01-15 16:53:03 -08002303 if (PageAnon(*page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002304 flush_anon_page(vma, *page, ksm_scan.address);
2305 flush_dcache_page(*page);
2306 rmap_item = get_next_rmap_item(slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08002307 ksm_scan.rmap_list, ksm_scan.address);
Izik Eidus31dbd012009-09-21 17:02:03 -07002308 if (rmap_item) {
Hugh Dickins6514d512009-12-14 17:59:19 -08002309 ksm_scan.rmap_list =
2310 &rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07002311 ksm_scan.address += PAGE_SIZE;
2312 } else
2313 put_page(*page);
2314 up_read(&mm->mmap_sem);
2315 return rmap_item;
2316 }
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08002317 put_page(*page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002318 ksm_scan.address += PAGE_SIZE;
2319 cond_resched();
2320 }
2321 }
2322
Hugh Dickins9ba69292009-09-21 17:02:20 -07002323 if (ksm_test_exit(mm)) {
2324 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08002325 ksm_scan.rmap_list = &slot->rmap_list;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002326 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002327 /*
2328 * Nuke all the rmap_items that are above this current rmap:
2329 * because there were no VM_MERGEABLE vmas with such addresses.
2330 */
Hugh Dickins6514d512009-12-14 17:59:19 -08002331 remove_trailing_rmap_items(slot, ksm_scan.rmap_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07002332
2333 spin_lock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002334 ksm_scan.mm_slot = list_entry(slot->mm_list.next,
2335 struct mm_slot, mm_list);
2336 if (ksm_scan.address == 0) {
2337 /*
2338 * We've completed a full scan of all vmas, holding mmap_sem
2339 * throughout, and found no VM_MERGEABLE: so do the same as
2340 * __ksm_exit does to remove this mm from all our lists now.
Hugh Dickins9ba69292009-09-21 17:02:20 -07002341 * This applies either when cleaning up after __ksm_exit
2342 * (but beware: we can reach here even before __ksm_exit),
2343 * or when all VM_MERGEABLE areas have been unmapped (and
2344 * mmap_sem then protects against race with MADV_MERGEABLE).
Hugh Dickinscd551f92009-09-21 17:02:17 -07002345 */
Sasha Levin4ca3a692013-02-22 16:32:28 -08002346 hash_del(&slot->link);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002347 list_del(&slot->mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002348 spin_unlock(&ksm_mmlist_lock);
2349
Hugh Dickinscd551f92009-09-21 17:02:17 -07002350 free_mm_slot(slot);
2351 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002352 up_read(&mm->mmap_sem);
2353 mmdrop(mm);
2354 } else {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002355 up_read(&mm->mmap_sem);
Zhou Chengming7496fea2016-05-12 15:42:21 -07002356 /*
2357 * up_read(&mm->mmap_sem) first because after
2358 * spin_unlock(&ksm_mmlist_lock) run, the "mm" may
2359 * already have been freed under us by __ksm_exit()
2360 * because the "mm_slot" is still hashed and
2361 * ksm_scan.mm_slot doesn't point to it anymore.
2362 */
2363 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07002364 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002365
2366 /* Repeat until we've completed scanning the whole list */
Hugh Dickinscd551f92009-09-21 17:02:17 -07002367 slot = ksm_scan.mm_slot;
Izik Eidus31dbd012009-09-21 17:02:03 -07002368 if (slot != &ksm_mm_head)
2369 goto next_mm;
2370
Izik Eidus31dbd012009-09-21 17:02:03 -07002371 ksm_scan.seqnr++;
2372 return NULL;
2373}
2374
2375/**
2376 * ksm_do_scan - the ksm scanner main worker function.
Mike Rapoportb7701a52018-02-06 15:42:13 -08002377 * @scan_npages: number of pages we want to scan before we return.
Izik Eidus31dbd012009-09-21 17:02:03 -07002378 */
2379static void ksm_do_scan(unsigned int scan_npages)
2380{
2381 struct rmap_item *rmap_item;
Dan Carpenter22eccdd2010-04-23 13:18:10 -04002382 struct page *uninitialized_var(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07002383
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002384 while (scan_npages-- && likely(!freezing(current))) {
Izik Eidus31dbd012009-09-21 17:02:03 -07002385 cond_resched();
2386 rmap_item = scan_get_next_rmap_item(&page);
2387 if (!rmap_item)
2388 return;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002389 cmp_and_merge_page(page, rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07002390 put_page(page);
2391 }
2392}
2393
Hugh Dickins6e1583842009-09-21 17:02:14 -07002394static int ksmd_should_run(void)
2395{
2396 return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.mm_list);
2397}
2398
Izik Eidus31dbd012009-09-21 17:02:03 -07002399static int ksm_scan_thread(void *nothing)
2400{
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -08002401 unsigned int sleep_ms;
2402
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002403 set_freezable();
Izik Eidus339aa622009-09-21 17:02:07 -07002404 set_user_nice(current, 5);
Izik Eidus31dbd012009-09-21 17:02:03 -07002405
2406 while (!kthread_should_stop()) {
Hugh Dickins6e1583842009-09-21 17:02:14 -07002407 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002408 wait_while_offlining();
Hugh Dickins6e1583842009-09-21 17:02:14 -07002409 if (ksmd_should_run())
Izik Eidus31dbd012009-09-21 17:02:03 -07002410 ksm_do_scan(ksm_thread_pages_to_scan);
Hugh Dickins6e1583842009-09-21 17:02:14 -07002411 mutex_unlock(&ksm_thread_mutex);
2412
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002413 try_to_freeze();
2414
Hugh Dickins6e1583842009-09-21 17:02:14 -07002415 if (ksmd_should_run()) {
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -08002416 sleep_ms = READ_ONCE(ksm_thread_sleep_millisecs);
2417 wait_event_interruptible_timeout(ksm_iter_wait,
2418 sleep_ms != READ_ONCE(ksm_thread_sleep_millisecs),
2419 msecs_to_jiffies(sleep_ms));
Izik Eidus31dbd012009-09-21 17:02:03 -07002420 } else {
Andrea Arcangeli878aee72011-01-13 15:47:10 -08002421 wait_event_freezable(ksm_thread_wait,
Hugh Dickins6e1583842009-09-21 17:02:14 -07002422 ksmd_should_run() || kthread_should_stop());
Izik Eidus31dbd012009-09-21 17:02:03 -07002423 }
2424 }
2425 return 0;
2426}
2427
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002428int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
2429 unsigned long end, int advice, unsigned long *vm_flags)
2430{
2431 struct mm_struct *mm = vma->vm_mm;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002432 int err;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002433
2434 switch (advice) {
2435 case MADV_MERGEABLE:
2436 /*
2437 * Be somewhat over-protective for now!
2438 */
2439 if (*vm_flags & (VM_MERGEABLE | VM_SHARED | VM_MAYSHARE |
2440 VM_PFNMAP | VM_IO | VM_DONTEXPAND |
Kirill A. Shutemov0661a332015-02-10 14:10:04 -08002441 VM_HUGETLB | VM_MIXEDMAP))
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002442 return 0; /* just ignore the advice */
2443
Dave Jiange1fb4a02018-08-17 15:43:40 -07002444 if (vma_is_dax(vma))
2445 return 0;
2446
Konstantin Khlebnikovcc2383e2012-10-08 16:28:37 -07002447#ifdef VM_SAO
2448 if (*vm_flags & VM_SAO)
2449 return 0;
2450#endif
Khalid Aziz74a04962018-02-23 15:46:41 -07002451#ifdef VM_SPARC_ADI
2452 if (*vm_flags & VM_SPARC_ADI)
2453 return 0;
2454#endif
Konstantin Khlebnikovcc2383e2012-10-08 16:28:37 -07002455
Hugh Dickinsd952b792009-09-21 17:02:16 -07002456 if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
2457 err = __ksm_enter(mm);
2458 if (err)
2459 return err;
2460 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002461
2462 *vm_flags |= VM_MERGEABLE;
2463 break;
2464
2465 case MADV_UNMERGEABLE:
2466 if (!(*vm_flags & VM_MERGEABLE))
2467 return 0; /* just ignore the advice */
2468
Hugh Dickinsd952b792009-09-21 17:02:16 -07002469 if (vma->anon_vma) {
2470 err = unmerge_ksm_pages(vma, start, end);
2471 if (err)
2472 return err;
2473 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002474
2475 *vm_flags &= ~VM_MERGEABLE;
2476 break;
2477 }
2478
2479 return 0;
2480}
Bharata B Rao33cf1702019-11-25 08:36:25 +05302481EXPORT_SYMBOL_GPL(ksm_madvise);
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002482
2483int __ksm_enter(struct mm_struct *mm)
2484{
Hugh Dickins6e1583842009-09-21 17:02:14 -07002485 struct mm_slot *mm_slot;
2486 int needs_wakeup;
2487
2488 mm_slot = alloc_mm_slot();
Izik Eidus31dbd012009-09-21 17:02:03 -07002489 if (!mm_slot)
2490 return -ENOMEM;
2491
Hugh Dickins6e1583842009-09-21 17:02:14 -07002492 /* Check ksm_run too? Would need tighter locking */
2493 needs_wakeup = list_empty(&ksm_mm_head.mm_list);
2494
Izik Eidus31dbd012009-09-21 17:02:03 -07002495 spin_lock(&ksm_mmlist_lock);
2496 insert_to_mm_slots_hash(mm, mm_slot);
2497 /*
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002498 * When KSM_RUN_MERGE (or KSM_RUN_STOP),
2499 * insert just behind the scanning cursor, to let the area settle
Izik Eidus31dbd012009-09-21 17:02:03 -07002500 * down a little; when fork is followed by immediate exec, we don't
2501 * want ksmd to waste time setting up and tearing down an rmap_list.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002502 *
2503 * But when KSM_RUN_UNMERGE, it's important to insert ahead of its
2504 * scanning cursor, otherwise KSM pages in newly forked mms will be
2505 * missed: then we might as well insert at the end of the list.
Izik Eidus31dbd012009-09-21 17:02:03 -07002506 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002507 if (ksm_run & KSM_RUN_UNMERGE)
2508 list_add_tail(&mm_slot->mm_list, &ksm_mm_head.mm_list);
2509 else
2510 list_add_tail(&mm_slot->mm_list, &ksm_scan.mm_slot->mm_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07002511 spin_unlock(&ksm_mmlist_lock);
2512
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002513 set_bit(MMF_VM_MERGEABLE, &mm->flags);
Vegard Nossumf1f10072017-02-27 14:30:07 -08002514 mmgrab(mm);
Hugh Dickins6e1583842009-09-21 17:02:14 -07002515
2516 if (needs_wakeup)
2517 wake_up_interruptible(&ksm_thread_wait);
2518
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002519 return 0;
2520}
2521
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07002522void __ksm_exit(struct mm_struct *mm)
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002523{
Hugh Dickinscd551f92009-09-21 17:02:17 -07002524 struct mm_slot *mm_slot;
Hugh Dickins9ba69292009-09-21 17:02:20 -07002525 int easy_to_free = 0;
Hugh Dickinscd551f92009-09-21 17:02:17 -07002526
Izik Eidus31dbd012009-09-21 17:02:03 -07002527 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -07002528 * This process is exiting: if it's straightforward (as is the
2529 * case when ksmd was never running), free mm_slot immediately.
2530 * But if it's at the cursor or has rmap_items linked to it, use
2531 * mmap_sem to synchronize with any break_cows before pagetables
2532 * are freed, and leave the mm_slot on the list for ksmd to free.
2533 * Beware: ksm may already have noticed it exiting and freed the slot.
Izik Eidus31dbd012009-09-21 17:02:03 -07002534 */
Hugh Dickins9ba69292009-09-21 17:02:20 -07002535
Hugh Dickinscd551f92009-09-21 17:02:17 -07002536 spin_lock(&ksm_mmlist_lock);
2537 mm_slot = get_mm_slot(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002538 if (mm_slot && ksm_scan.mm_slot != mm_slot) {
Hugh Dickins6514d512009-12-14 17:59:19 -08002539 if (!mm_slot->rmap_list) {
Sasha Levin4ca3a692013-02-22 16:32:28 -08002540 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002541 list_del(&mm_slot->mm_list);
2542 easy_to_free = 1;
2543 } else {
2544 list_move(&mm_slot->mm_list,
2545 &ksm_scan.mm_slot->mm_list);
2546 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07002547 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07002548 spin_unlock(&ksm_mmlist_lock);
2549
Hugh Dickins9ba69292009-09-21 17:02:20 -07002550 if (easy_to_free) {
2551 free_mm_slot(mm_slot);
2552 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
2553 mmdrop(mm);
2554 } else if (mm_slot) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07002555 down_write(&mm->mmap_sem);
2556 up_write(&mm->mmap_sem);
Hugh Dickins9ba69292009-09-21 17:02:20 -07002557 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07002558}
Izik Eidus31dbd012009-09-21 17:02:03 -07002559
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002560struct page *ksm_might_need_to_copy(struct page *page,
Hugh Dickins5ad64682009-12-14 17:59:24 -08002561 struct vm_area_struct *vma, unsigned long address)
2562{
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002563 struct anon_vma *anon_vma = page_anon_vma(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002564 struct page *new_page;
2565
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002566 if (PageKsm(page)) {
2567 if (page_stable_node(page) &&
2568 !(ksm_run & KSM_RUN_UNMERGE))
2569 return page; /* no need to copy it */
2570 } else if (!anon_vma) {
2571 return page; /* no need to copy it */
2572 } else if (anon_vma->root == vma->anon_vma->root &&
2573 page->index == linear_page_index(vma, address)) {
2574 return page; /* still no need to copy it */
2575 }
2576 if (!PageUptodate(page))
2577 return page; /* let do_swap_page report the error */
2578
Hugh Dickins5ad64682009-12-14 17:59:24 -08002579 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
2580 if (new_page) {
2581 copy_user_highpage(new_page, page, address, vma);
2582
2583 SetPageDirty(new_page);
2584 __SetPageUptodate(new_page);
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08002585 __SetPageLocked(new_page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08002586 }
2587
Hugh Dickins5ad64682009-12-14 17:59:24 -08002588 return new_page;
2589}
2590
Minchan Kim1df631a2017-05-03 14:54:23 -07002591void rmap_walk_ksm(struct page *page, struct rmap_walk_control *rwc)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002592{
2593 struct stable_node *stable_node;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002594 struct rmap_item *rmap_item;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002595 int search_new_forks = 0;
2596
Sasha Levin309381fea2014-01-23 15:52:54 -08002597 VM_BUG_ON_PAGE(!PageKsm(page), page);
Joonsoo Kim9f326242014-01-21 15:49:53 -08002598
2599 /*
2600 * Rely on the page lock to protect against concurrent modifications
2601 * to that page's node of the stable tree.
2602 */
Sasha Levin309381fea2014-01-23 15:52:54 -08002603 VM_BUG_ON_PAGE(!PageLocked(page), page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002604
2605 stable_node = page_stable_node(page);
2606 if (!stable_node)
Minchan Kim1df631a2017-05-03 14:54:23 -07002607 return;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002608again:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002609 hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) {
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002610 struct anon_vma *anon_vma = rmap_item->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002611 struct anon_vma_chain *vmac;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002612 struct vm_area_struct *vma;
2613
Andrea Arcangeliad126952015-11-05 18:49:07 -08002614 cond_resched();
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002615 anon_vma_lock_read(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002616 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
2617 0, ULONG_MAX) {
Jia He1105a2f2018-06-14 15:26:14 -07002618 unsigned long addr;
2619
Andrea Arcangeliad126952015-11-05 18:49:07 -08002620 cond_resched();
Rik van Riel5beb4932010-03-05 13:42:07 -08002621 vma = vmac->vma;
Jia He1105a2f2018-06-14 15:26:14 -07002622
2623 /* Ignore the stable/unstable/sqnr flags */
2624 addr = rmap_item->address & ~KSM_FLAG_MASK;
2625
2626 if (addr < vma->vm_start || addr >= vma->vm_end)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002627 continue;
2628 /*
2629 * Initially we examine only the vma which covers this
2630 * rmap_item; but later, if there is still work to do,
2631 * we examine covering vmas in other mms: in case they
2632 * were forked from the original since ksmd passed.
2633 */
2634 if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
2635 continue;
2636
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002637 if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
2638 continue;
2639
Jia He1105a2f2018-06-14 15:26:14 -07002640 if (!rwc->rmap_one(page, vma, addr, rwc->arg)) {
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002641 anon_vma_unlock_read(anon_vma);
Minchan Kim1df631a2017-05-03 14:54:23 -07002642 return;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002643 }
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002644 if (rwc->done && rwc->done(page)) {
2645 anon_vma_unlock_read(anon_vma);
Minchan Kim1df631a2017-05-03 14:54:23 -07002646 return;
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08002647 }
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002648 }
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002649 anon_vma_unlock_read(anon_vma);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002650 }
2651 if (!search_new_forks++)
2652 goto again;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002653}
2654
Kirill Tkhai52d1e602019-03-05 15:43:06 -08002655bool reuse_ksm_page(struct page *page,
2656 struct vm_area_struct *vma,
2657 unsigned long address)
2658{
2659#ifdef CONFIG_DEBUG_VM
2660 if (WARN_ON(is_zero_pfn(page_to_pfn(page))) ||
2661 WARN_ON(!page_mapped(page)) ||
2662 WARN_ON(!PageLocked(page))) {
2663 dump_page(page, "reuse_ksm_page");
2664 return false;
2665 }
2666#endif
2667
2668 if (PageSwapCache(page) || !page_stable_node(page))
2669 return false;
2670 /* Prohibit parallel get_ksm_page() */
2671 if (!page_ref_freeze(page, 1))
2672 return false;
2673
2674 page_move_anon_rmap(page, vma);
2675 page->index = linear_page_index(vma, address);
2676 page_ref_unfreeze(page, 1);
2677
2678 return true;
2679}
Joonsoo Kim52629502014-01-21 15:49:50 -08002680#ifdef CONFIG_MIGRATION
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002681void ksm_migrate_page(struct page *newpage, struct page *oldpage)
2682{
2683 struct stable_node *stable_node;
2684
Sasha Levin309381fea2014-01-23 15:52:54 -08002685 VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage);
2686 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
2687 VM_BUG_ON_PAGE(newpage->mapping != oldpage->mapping, newpage);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002688
2689 stable_node = page_stable_node(newpage);
2690 if (stable_node) {
Sasha Levin309381fea2014-01-23 15:52:54 -08002691 VM_BUG_ON_PAGE(stable_node->kpfn != page_to_pfn(oldpage), oldpage);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002692 stable_node->kpfn = page_to_pfn(newpage);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08002693 /*
2694 * newpage->mapping was set in advance; now we need smp_wmb()
2695 * to make sure that the new stable_node->kpfn is visible
2696 * to get_ksm_page() before it can see that oldpage->mapping
2697 * has gone stale (or that PageSwapCache has been cleared).
2698 */
2699 smp_wmb();
2700 set_page_stable_node(oldpage, NULL);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002701 }
2702}
2703#endif /* CONFIG_MIGRATION */
2704
Hugh Dickins62b61f62009-12-14 17:59:33 -08002705#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002706static void wait_while_offlining(void)
2707{
2708 while (ksm_run & KSM_RUN_OFFLINE) {
2709 mutex_unlock(&ksm_thread_mutex);
2710 wait_on_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE),
NeilBrown74316202014-07-07 15:16:04 +10002711 TASK_UNINTERRUPTIBLE);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002712 mutex_lock(&ksm_thread_mutex);
2713 }
2714}
2715
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002716static bool stable_node_dup_remove_range(struct stable_node *stable_node,
2717 unsigned long start_pfn,
2718 unsigned long end_pfn)
2719{
2720 if (stable_node->kpfn >= start_pfn &&
2721 stable_node->kpfn < end_pfn) {
2722 /*
2723 * Don't get_ksm_page, page has already gone:
2724 * which is why we keep kpfn instead of page*
2725 */
2726 remove_node_from_stable_tree(stable_node);
2727 return true;
2728 }
2729 return false;
2730}
2731
2732static bool stable_node_chain_remove_range(struct stable_node *stable_node,
2733 unsigned long start_pfn,
2734 unsigned long end_pfn,
2735 struct rb_root *root)
2736{
2737 struct stable_node *dup;
2738 struct hlist_node *hlist_safe;
2739
2740 if (!is_stable_node_chain(stable_node)) {
2741 VM_BUG_ON(is_stable_node_dup(stable_node));
2742 return stable_node_dup_remove_range(stable_node, start_pfn,
2743 end_pfn);
2744 }
2745
2746 hlist_for_each_entry_safe(dup, hlist_safe,
2747 &stable_node->hlist, hlist_dup) {
2748 VM_BUG_ON(!is_stable_node_dup(dup));
2749 stable_node_dup_remove_range(dup, start_pfn, end_pfn);
2750 }
2751 if (hlist_empty(&stable_node->hlist)) {
2752 free_stable_node_chain(stable_node, root);
2753 return true; /* notify caller that tree was rebalanced */
2754 } else
2755 return false;
2756}
2757
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002758static void ksm_check_stable_tree(unsigned long start_pfn,
2759 unsigned long end_pfn)
Hugh Dickins62b61f62009-12-14 17:59:33 -08002760{
Geliang Tang03640412016-01-14 15:20:54 -08002761 struct stable_node *stable_node, *next;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002762 struct rb_node *node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002763 int nid;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002764
Hugh Dickinsef53d162013-02-22 16:36:12 -08002765 for (nid = 0; nid < ksm_nr_node_ids; nid++) {
2766 node = rb_first(root_stable_tree + nid);
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002767 while (node) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002768 stable_node = rb_entry(node, struct stable_node, node);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002769 if (stable_node_chain_remove_range(stable_node,
2770 start_pfn, end_pfn,
2771 root_stable_tree +
2772 nid))
Hugh Dickinsef53d162013-02-22 16:36:12 -08002773 node = rb_first(root_stable_tree + nid);
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07002774 else
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002775 node = rb_next(node);
2776 cond_resched();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002777 }
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002778 }
Geliang Tang03640412016-01-14 15:20:54 -08002779 list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) {
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002780 if (stable_node->kpfn >= start_pfn &&
2781 stable_node->kpfn < end_pfn)
2782 remove_node_from_stable_tree(stable_node);
2783 cond_resched();
2784 }
Hugh Dickins62b61f62009-12-14 17:59:33 -08002785}
2786
2787static int ksm_memory_callback(struct notifier_block *self,
2788 unsigned long action, void *arg)
2789{
2790 struct memory_notify *mn = arg;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002791
2792 switch (action) {
2793 case MEM_GOING_OFFLINE:
2794 /*
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002795 * Prevent ksm_do_scan(), unmerge_and_remove_all_rmap_items()
2796 * and remove_all_stable_nodes() while memory is going offline:
2797 * it is unsafe for them to touch the stable tree at this time.
2798 * But unmerge_ksm_pages(), rmap lookups and other entry points
2799 * which do not need the ksm_thread_mutex are all safe.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002800 */
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002801 mutex_lock(&ksm_thread_mutex);
2802 ksm_run |= KSM_RUN_OFFLINE;
2803 mutex_unlock(&ksm_thread_mutex);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002804 break;
2805
2806 case MEM_OFFLINE:
2807 /*
2808 * Most of the work is done by page migration; but there might
2809 * be a few stable_nodes left over, still pointing to struct
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002810 * pages which have been offlined: prune those from the tree,
2811 * otherwise get_ksm_page() might later try to access a
2812 * non-existent struct page.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002813 */
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002814 ksm_check_stable_tree(mn->start_pfn,
2815 mn->start_pfn + mn->nr_pages);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002816 /* fallthrough */
2817
2818 case MEM_CANCEL_OFFLINE:
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002819 mutex_lock(&ksm_thread_mutex);
2820 ksm_run &= ~KSM_RUN_OFFLINE;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002821 mutex_unlock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002822
2823 smp_mb(); /* wake_up_bit advises this */
2824 wake_up_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE));
Hugh Dickins62b61f62009-12-14 17:59:33 -08002825 break;
2826 }
2827 return NOTIFY_OK;
2828}
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002829#else
2830static void wait_while_offlining(void)
2831{
2832}
Hugh Dickins62b61f62009-12-14 17:59:33 -08002833#endif /* CONFIG_MEMORY_HOTREMOVE */
2834
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002835#ifdef CONFIG_SYSFS
2836/*
2837 * This all compiles without CONFIG_SYSFS, but is a waste of space.
2838 */
2839
Izik Eidus31dbd012009-09-21 17:02:03 -07002840#define KSM_ATTR_RO(_name) \
2841 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
2842#define KSM_ATTR(_name) \
2843 static struct kobj_attribute _name##_attr = \
2844 __ATTR(_name, 0644, _name##_show, _name##_store)
2845
2846static ssize_t sleep_millisecs_show(struct kobject *kobj,
2847 struct kobj_attribute *attr, char *buf)
2848{
2849 return sprintf(buf, "%u\n", ksm_thread_sleep_millisecs);
2850}
2851
2852static ssize_t sleep_millisecs_store(struct kobject *kobj,
2853 struct kobj_attribute *attr,
2854 const char *buf, size_t count)
2855{
2856 unsigned long msecs;
2857 int err;
2858
Jingoo Han3dbb95f2013-09-11 14:20:25 -07002859 err = kstrtoul(buf, 10, &msecs);
Izik Eidus31dbd012009-09-21 17:02:03 -07002860 if (err || msecs > UINT_MAX)
2861 return -EINVAL;
2862
2863 ksm_thread_sleep_millisecs = msecs;
Kirill Tkhaifcf9a0e2018-12-28 00:38:40 -08002864 wake_up_interruptible(&ksm_iter_wait);
Izik Eidus31dbd012009-09-21 17:02:03 -07002865
2866 return count;
2867}
2868KSM_ATTR(sleep_millisecs);
2869
2870static ssize_t pages_to_scan_show(struct kobject *kobj,
2871 struct kobj_attribute *attr, char *buf)
2872{
2873 return sprintf(buf, "%u\n", ksm_thread_pages_to_scan);
2874}
2875
2876static ssize_t pages_to_scan_store(struct kobject *kobj,
2877 struct kobj_attribute *attr,
2878 const char *buf, size_t count)
2879{
2880 int err;
2881 unsigned long nr_pages;
2882
Jingoo Han3dbb95f2013-09-11 14:20:25 -07002883 err = kstrtoul(buf, 10, &nr_pages);
Izik Eidus31dbd012009-09-21 17:02:03 -07002884 if (err || nr_pages > UINT_MAX)
2885 return -EINVAL;
2886
2887 ksm_thread_pages_to_scan = nr_pages;
2888
2889 return count;
2890}
2891KSM_ATTR(pages_to_scan);
2892
2893static ssize_t run_show(struct kobject *kobj, struct kobj_attribute *attr,
2894 char *buf)
2895{
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002896 return sprintf(buf, "%lu\n", ksm_run);
Izik Eidus31dbd012009-09-21 17:02:03 -07002897}
2898
2899static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr,
2900 const char *buf, size_t count)
2901{
2902 int err;
2903 unsigned long flags;
2904
Jingoo Han3dbb95f2013-09-11 14:20:25 -07002905 err = kstrtoul(buf, 10, &flags);
Izik Eidus31dbd012009-09-21 17:02:03 -07002906 if (err || flags > UINT_MAX)
2907 return -EINVAL;
2908 if (flags > KSM_RUN_UNMERGE)
2909 return -EINVAL;
2910
2911 /*
2912 * KSM_RUN_MERGE sets ksmd running, and 0 stops it running.
2913 * KSM_RUN_UNMERGE stops it running and unmerges all rmap_items,
Hugh Dickinsd0f209f2009-12-14 17:59:34 -08002914 * breaking COW to free the pages_shared (but leaves mm_slots
2915 * on the list for when ksmd may be set running again).
Izik Eidus31dbd012009-09-21 17:02:03 -07002916 */
2917
2918 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002919 wait_while_offlining();
Izik Eidus31dbd012009-09-21 17:02:03 -07002920 if (ksm_run != flags) {
2921 ksm_run = flags;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002922 if (flags & KSM_RUN_UNMERGE) {
David Rientjese1e12d22012-12-11 16:02:56 -08002923 set_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002924 err = unmerge_and_remove_all_rmap_items();
David Rientjese1e12d22012-12-11 16:02:56 -08002925 clear_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002926 if (err) {
2927 ksm_run = KSM_RUN_STOP;
2928 count = err;
2929 }
2930 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002931 }
2932 mutex_unlock(&ksm_thread_mutex);
2933
2934 if (flags & KSM_RUN_MERGE)
2935 wake_up_interruptible(&ksm_thread_wait);
2936
2937 return count;
2938}
2939KSM_ATTR(run);
2940
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002941#ifdef CONFIG_NUMA
2942static ssize_t merge_across_nodes_show(struct kobject *kobj,
2943 struct kobj_attribute *attr, char *buf)
2944{
2945 return sprintf(buf, "%u\n", ksm_merge_across_nodes);
2946}
2947
2948static ssize_t merge_across_nodes_store(struct kobject *kobj,
2949 struct kobj_attribute *attr,
2950 const char *buf, size_t count)
2951{
2952 int err;
2953 unsigned long knob;
2954
2955 err = kstrtoul(buf, 10, &knob);
2956 if (err)
2957 return err;
2958 if (knob > 1)
2959 return -EINVAL;
2960
2961 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002962 wait_while_offlining();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002963 if (ksm_merge_across_nodes != knob) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002964 if (ksm_pages_shared || remove_all_stable_nodes())
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002965 err = -EBUSY;
Hugh Dickinsef53d162013-02-22 16:36:12 -08002966 else if (root_stable_tree == one_stable_tree) {
2967 struct rb_root *buf;
2968 /*
2969 * This is the first time that we switch away from the
2970 * default of merging across nodes: must now allocate
2971 * a buffer to hold as many roots as may be needed.
2972 * Allocate stable and unstable together:
2973 * MAXSMP NODES_SHIFT 10 will use 16kB.
2974 */
Joe Perchesbafe1e12013-11-12 15:07:10 -08002975 buf = kcalloc(nr_node_ids + nr_node_ids, sizeof(*buf),
2976 GFP_KERNEL);
Hugh Dickinsef53d162013-02-22 16:36:12 -08002977 /* Let us assume that RB_ROOT is NULL is zero */
2978 if (!buf)
2979 err = -ENOMEM;
2980 else {
2981 root_stable_tree = buf;
2982 root_unstable_tree = buf + nr_node_ids;
2983 /* Stable tree is empty but not the unstable */
2984 root_unstable_tree[0] = one_unstable_tree[0];
2985 }
2986 }
2987 if (!err) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002988 ksm_merge_across_nodes = knob;
Hugh Dickinsef53d162013-02-22 16:36:12 -08002989 ksm_nr_node_ids = knob ? 1 : nr_node_ids;
2990 }
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002991 }
2992 mutex_unlock(&ksm_thread_mutex);
2993
2994 return err ? err : count;
2995}
2996KSM_ATTR(merge_across_nodes);
2997#endif
2998
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08002999static ssize_t use_zero_pages_show(struct kobject *kobj,
3000 struct kobj_attribute *attr, char *buf)
3001{
3002 return sprintf(buf, "%u\n", ksm_use_zero_pages);
3003}
3004static ssize_t use_zero_pages_store(struct kobject *kobj,
3005 struct kobj_attribute *attr,
3006 const char *buf, size_t count)
3007{
3008 int err;
3009 bool value;
3010
3011 err = kstrtobool(buf, &value);
3012 if (err)
3013 return -EINVAL;
3014
3015 ksm_use_zero_pages = value;
3016
3017 return count;
3018}
3019KSM_ATTR(use_zero_pages);
3020
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003021static ssize_t max_page_sharing_show(struct kobject *kobj,
3022 struct kobj_attribute *attr, char *buf)
3023{
3024 return sprintf(buf, "%u\n", ksm_max_page_sharing);
3025}
3026
3027static ssize_t max_page_sharing_store(struct kobject *kobj,
3028 struct kobj_attribute *attr,
3029 const char *buf, size_t count)
3030{
3031 int err;
3032 int knob;
3033
3034 err = kstrtoint(buf, 10, &knob);
3035 if (err)
3036 return err;
3037 /*
3038 * When a KSM page is created it is shared by 2 mappings. This
3039 * being a signed comparison, it implicitly verifies it's not
3040 * negative.
3041 */
3042 if (knob < 2)
3043 return -EINVAL;
3044
3045 if (READ_ONCE(ksm_max_page_sharing) == knob)
3046 return count;
3047
3048 mutex_lock(&ksm_thread_mutex);
3049 wait_while_offlining();
3050 if (ksm_max_page_sharing != knob) {
3051 if (ksm_pages_shared || remove_all_stable_nodes())
3052 err = -EBUSY;
3053 else
3054 ksm_max_page_sharing = knob;
3055 }
3056 mutex_unlock(&ksm_thread_mutex);
3057
3058 return err ? err : count;
3059}
3060KSM_ATTR(max_page_sharing);
3061
Hugh Dickinsb4028262009-09-21 17:02:09 -07003062static ssize_t pages_shared_show(struct kobject *kobj,
3063 struct kobj_attribute *attr, char *buf)
3064{
3065 return sprintf(buf, "%lu\n", ksm_pages_shared);
3066}
3067KSM_ATTR_RO(pages_shared);
3068
3069static ssize_t pages_sharing_show(struct kobject *kobj,
3070 struct kobj_attribute *attr, char *buf)
3071{
Hugh Dickinse178dfd2009-09-21 17:02:10 -07003072 return sprintf(buf, "%lu\n", ksm_pages_sharing);
Hugh Dickinsb4028262009-09-21 17:02:09 -07003073}
3074KSM_ATTR_RO(pages_sharing);
3075
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003076static ssize_t pages_unshared_show(struct kobject *kobj,
3077 struct kobj_attribute *attr, char *buf)
3078{
3079 return sprintf(buf, "%lu\n", ksm_pages_unshared);
3080}
3081KSM_ATTR_RO(pages_unshared);
3082
3083static ssize_t pages_volatile_show(struct kobject *kobj,
3084 struct kobj_attribute *attr, char *buf)
3085{
3086 long ksm_pages_volatile;
3087
3088 ksm_pages_volatile = ksm_rmap_items - ksm_pages_shared
3089 - ksm_pages_sharing - ksm_pages_unshared;
3090 /*
3091 * It was not worth any locking to calculate that statistic,
3092 * but it might therefore sometimes be negative: conceal that.
3093 */
3094 if (ksm_pages_volatile < 0)
3095 ksm_pages_volatile = 0;
3096 return sprintf(buf, "%ld\n", ksm_pages_volatile);
3097}
3098KSM_ATTR_RO(pages_volatile);
3099
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003100static ssize_t stable_node_dups_show(struct kobject *kobj,
3101 struct kobj_attribute *attr, char *buf)
3102{
3103 return sprintf(buf, "%lu\n", ksm_stable_node_dups);
3104}
3105KSM_ATTR_RO(stable_node_dups);
3106
3107static ssize_t stable_node_chains_show(struct kobject *kobj,
3108 struct kobj_attribute *attr, char *buf)
3109{
3110 return sprintf(buf, "%lu\n", ksm_stable_node_chains);
3111}
3112KSM_ATTR_RO(stable_node_chains);
3113
3114static ssize_t
3115stable_node_chains_prune_millisecs_show(struct kobject *kobj,
3116 struct kobj_attribute *attr,
3117 char *buf)
3118{
3119 return sprintf(buf, "%u\n", ksm_stable_node_chains_prune_millisecs);
3120}
3121
3122static ssize_t
3123stable_node_chains_prune_millisecs_store(struct kobject *kobj,
3124 struct kobj_attribute *attr,
3125 const char *buf, size_t count)
3126{
3127 unsigned long msecs;
3128 int err;
3129
3130 err = kstrtoul(buf, 10, &msecs);
3131 if (err || msecs > UINT_MAX)
3132 return -EINVAL;
3133
3134 ksm_stable_node_chains_prune_millisecs = msecs;
3135
3136 return count;
3137}
3138KSM_ATTR(stable_node_chains_prune_millisecs);
3139
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003140static ssize_t full_scans_show(struct kobject *kobj,
3141 struct kobj_attribute *attr, char *buf)
3142{
3143 return sprintf(buf, "%lu\n", ksm_scan.seqnr);
3144}
3145KSM_ATTR_RO(full_scans);
3146
Izik Eidus31dbd012009-09-21 17:02:03 -07003147static struct attribute *ksm_attrs[] = {
3148 &sleep_millisecs_attr.attr,
3149 &pages_to_scan_attr.attr,
3150 &run_attr.attr,
Hugh Dickinsb4028262009-09-21 17:02:09 -07003151 &pages_shared_attr.attr,
3152 &pages_sharing_attr.attr,
Hugh Dickins473b0ce2009-09-21 17:02:11 -07003153 &pages_unshared_attr.attr,
3154 &pages_volatile_attr.attr,
3155 &full_scans_attr.attr,
Petr Holasek90bd6fd2013-02-22 16:35:00 -08003156#ifdef CONFIG_NUMA
3157 &merge_across_nodes_attr.attr,
3158#endif
Andrea Arcangeli2c653d02017-07-06 15:36:55 -07003159 &max_page_sharing_attr.attr,
3160 &stable_node_chains_attr.attr,
3161 &stable_node_dups_attr.attr,
3162 &stable_node_chains_prune_millisecs_attr.attr,
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08003163 &use_zero_pages_attr.attr,
Izik Eidus31dbd012009-09-21 17:02:03 -07003164 NULL,
3165};
3166
Arvind Yadavf907c262017-09-06 16:21:53 -07003167static const struct attribute_group ksm_attr_group = {
Izik Eidus31dbd012009-09-21 17:02:03 -07003168 .attrs = ksm_attrs,
3169 .name = "ksm",
3170};
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003171#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07003172
3173static int __init ksm_init(void)
3174{
3175 struct task_struct *ksm_thread;
3176 int err;
3177
Claudio Imbrendae86c59b2017-02-24 14:55:39 -08003178 /* The correct value depends on page size and endianness */
3179 zero_checksum = calc_checksum(ZERO_PAGE(0));
3180 /* Default to false for backwards compatibility */
3181 ksm_use_zero_pages = false;
3182
Izik Eidus31dbd012009-09-21 17:02:03 -07003183 err = ksm_slab_init();
3184 if (err)
3185 goto out;
3186
Izik Eidus31dbd012009-09-21 17:02:03 -07003187 ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd");
3188 if (IS_ERR(ksm_thread)) {
Paul McQuade25acde32014-10-09 15:29:09 -07003189 pr_err("ksm: creating kthread failed\n");
Izik Eidus31dbd012009-09-21 17:02:03 -07003190 err = PTR_ERR(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07003191 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07003192 }
3193
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003194#ifdef CONFIG_SYSFS
Izik Eidus31dbd012009-09-21 17:02:03 -07003195 err = sysfs_create_group(mm_kobj, &ksm_attr_group);
3196 if (err) {
Paul McQuade25acde32014-10-09 15:29:09 -07003197 pr_err("ksm: register sysfs failed\n");
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003198 kthread_stop(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07003199 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07003200 }
Hugh Dickinsc73602a2009-10-07 16:32:22 -07003201#else
3202 ksm_run = KSM_RUN_MERGE; /* no way for user to start it */
3203
Hugh Dickins2ffd8672009-09-21 17:02:23 -07003204#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07003205
Hugh Dickins62b61f62009-12-14 17:59:33 -08003206#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08003207 /* There is no significance to this priority 100 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08003208 hotplug_memory_notifier(ksm_memory_callback, 100);
3209#endif
Izik Eidus31dbd012009-09-21 17:02:03 -07003210 return 0;
3211
Lai Jiangshand9f89842010-08-09 17:20:02 -07003212out_free:
Izik Eidus31dbd012009-09-21 17:02:03 -07003213 ksm_slab_free();
3214out:
3215 return err;
3216}
Paul Gortmakera64fb3c2014-01-23 15:53:30 -08003217subsys_initcall(ksm_init);