blob: e44c9cbd1443b836b395ccad6f72078b3bcaeb0e [file] [log] [blame]
Dan Magenheimer29f233c2012-04-09 17:09:27 -06001/*
2 * Frontswap frontend
3 *
4 * This code provides the generic "frontend" layer to call a matching
5 * "backend" driver implementation of frontswap. See
6 * Documentation/vm/frontswap.txt for more information.
7 *
8 * Copyright (C) 2009-2012 Oracle Corp. All rights reserved.
9 * Author: Dan Magenheimer
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2.
12 */
13
Dan Magenheimer29f233c2012-04-09 17:09:27 -060014#include <linux/mman.h>
15#include <linux/swap.h>
16#include <linux/swapops.h>
Dan Magenheimer29f233c2012-04-09 17:09:27 -060017#include <linux/security.h>
Dan Magenheimer29f233c2012-04-09 17:09:27 -060018#include <linux/module.h>
Dan Magenheimer29f233c2012-04-09 17:09:27 -060019#include <linux/debugfs.h>
20#include <linux/frontswap.h>
21#include <linux/swapfile.h>
22
23/*
24 * frontswap_ops is set by frontswap_register_ops to contain the pointers
25 * to the frontswap "backend" implementation functions.
26 */
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -070027static struct frontswap_ops *frontswap_ops __read_mostly;
Dan Magenheimer29f233c2012-04-09 17:09:27 -060028
29/*
30 * This global enablement flag reduces overhead on systems where frontswap_ops
31 * has not been registered, so is preferred to the slower alternative: a
32 * function call that checks a non-global.
33 */
34bool frontswap_enabled __read_mostly;
35EXPORT_SYMBOL(frontswap_enabled);
36
37/*
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -040038 * If enabled, frontswap_store will return failure even on success. As
Dan Magenheimer29f233c2012-04-09 17:09:27 -060039 * a result, the swap subsystem will always write the page to swap, in
40 * effect converting frontswap into a writethrough cache. In this mode,
41 * there is no direct reduction in swap writes, but a frontswap backend
42 * can unilaterally "reclaim" any pages in use with no data loss, thus
43 * providing increases control over maximum memory usage due to frontswap.
44 */
45static bool frontswap_writethrough_enabled __read_mostly;
46
Dan Magenheimere3483a52012-09-20 12:16:52 -070047/*
48 * If enabled, the underlying tmem implementation is capable of doing
49 * exclusive gets, so frontswap_load, on a successful tmem_get must
50 * mark the page as no longer in frontswap AND mark it dirty.
51 */
52static bool frontswap_tmem_exclusive_gets_enabled __read_mostly;
53
Dan Magenheimer29f233c2012-04-09 17:09:27 -060054#ifdef CONFIG_DEBUG_FS
55/*
56 * Counters available via /sys/kernel/debug/frontswap (if debugfs is
57 * properly configured). These are for information only so are not protected
58 * against increment races.
59 */
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -040060static u64 frontswap_loads;
61static u64 frontswap_succ_stores;
62static u64 frontswap_failed_stores;
Dan Magenheimer29f233c2012-04-09 17:09:27 -060063static u64 frontswap_invalidates;
64
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -040065static inline void inc_frontswap_loads(void) {
66 frontswap_loads++;
Dan Magenheimer29f233c2012-04-09 17:09:27 -060067}
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -040068static inline void inc_frontswap_succ_stores(void) {
69 frontswap_succ_stores++;
Dan Magenheimer29f233c2012-04-09 17:09:27 -060070}
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -040071static inline void inc_frontswap_failed_stores(void) {
72 frontswap_failed_stores++;
Dan Magenheimer29f233c2012-04-09 17:09:27 -060073}
74static inline void inc_frontswap_invalidates(void) {
75 frontswap_invalidates++;
76}
77#else
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -040078static inline void inc_frontswap_loads(void) { }
79static inline void inc_frontswap_succ_stores(void) { }
80static inline void inc_frontswap_failed_stores(void) { }
Dan Magenheimer29f233c2012-04-09 17:09:27 -060081static inline void inc_frontswap_invalidates(void) { }
82#endif
Dan Magenheimer905cd0e2013-04-30 15:26:50 -070083
84/*
85 * Due to the asynchronous nature of the backends loading potentially
86 * _after_ the swap system has been activated, we have chokepoints
87 * on all frontswap functions to not call the backend until the backend
88 * has registered.
89 *
90 * Specifically when no backend is registered (nobody called
91 * frontswap_register_ops) all calls to frontswap_init (which is done via
92 * swapon -> enable_swap_info -> frontswap_init) are registered and remembered
93 * (via the setting of need_init bitmap) but fail to create tmem_pools. When a
94 * backend registers with frontswap at some later point the previous
95 * calls to frontswap_init are executed (by iterating over the need_init
96 * bitmap) to create tmem_pools and set the respective poolids. All of that is
97 * guarded by us using atomic bit operations on the 'need_init' bitmap.
98 *
99 * This would not guards us against the user deciding to call swapoff right as
100 * we are calling the backend to initialize (so swapon is in action).
101 * Fortunatly for us, the swapon_mutex has been taked by the callee so we are
102 * OK. The other scenario where calls to frontswap_store (called via
103 * swap_writepage) is racing with frontswap_invalidate_area (called via
104 * swapoff) is again guarded by the swap subsystem.
105 *
106 * While no backend is registered all calls to frontswap_[store|load|
107 * invalidate_area|invalidate_page] are ignored or fail.
108 *
109 * The time between the backend being registered and the swap file system
110 * calling the backend (via the frontswap_* functions) is indeterminate as
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700111 * frontswap_ops is not atomic_t (or a value guarded by a spinlock).
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700112 * That is OK as we are comfortable missing some of these calls to the newly
113 * registered backend.
114 *
115 * Obviously the opposite (unloading the backend) must be done after all
116 * the frontswap_[store|load|invalidate_area|invalidate_page] start
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700117 * ignorning or failing the requests - at which point frontswap_ops
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700118 * would have to be made in some fashion atomic.
119 */
120static DECLARE_BITMAP(need_init, MAX_SWAPFILES);
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700121
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600122/*
123 * Register operations for frontswap, returning previous thus allowing
124 * detection of multiple backends and possible nesting.
125 */
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700126struct frontswap_ops *frontswap_register_ops(struct frontswap_ops *ops)
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600127{
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700128 struct frontswap_ops *old = frontswap_ops;
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700129 int i;
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600130
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600131 frontswap_enabled = true;
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700132
133 for (i = 0; i < MAX_SWAPFILES; i++) {
134 if (test_and_clear_bit(i, need_init))
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700135 ops->init(i);
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700136 }
137 /*
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700138 * We MUST have frontswap_ops set _after_ the frontswap_init's
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700139 * have been called. Otherwise __frontswap_store might fail. Hence
140 * the barrier to make sure compiler does not re-order us.
141 */
142 barrier();
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700143 frontswap_ops = ops;
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600144 return old;
145}
146EXPORT_SYMBOL(frontswap_register_ops);
147
148/*
149 * Enable/disable frontswap writethrough (see above).
150 */
151void frontswap_writethrough(bool enable)
152{
153 frontswap_writethrough_enabled = enable;
154}
155EXPORT_SYMBOL(frontswap_writethrough);
156
157/*
Dan Magenheimere3483a52012-09-20 12:16:52 -0700158 * Enable/disable frontswap exclusive gets (see above).
159 */
160void frontswap_tmem_exclusive_gets(bool enable)
161{
162 frontswap_tmem_exclusive_gets_enabled = enable;
163}
164EXPORT_SYMBOL(frontswap_tmem_exclusive_gets);
165
166/*
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600167 * Called when a swap device is swapon'd.
168 */
169void __frontswap_init(unsigned type)
170{
171 struct swap_info_struct *sis = swap_info[type];
172
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700173 if (frontswap_ops) {
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700174 BUG_ON(sis == NULL);
175 if (sis->frontswap_map == NULL)
176 return;
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700177 frontswap_ops->init(type);
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700178 } else {
179 BUG_ON(type > MAX_SWAPFILES);
180 set_bit(type, need_init);
181 }
182
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600183}
184EXPORT_SYMBOL(__frontswap_init);
185
Sasha Levin611edfe2012-06-10 12:51:07 +0200186static inline void __frontswap_clear(struct swap_info_struct *sis, pgoff_t offset)
187{
188 frontswap_clear(sis, offset);
189 atomic_dec(&sis->frontswap_pages);
190}
191
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600192/*
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400193 * "Store" data from a page to frontswap and associate it with the page's
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600194 * swaptype and offset. Page must be locked and in the swap cache.
195 * If frontswap already contains a page with matching swaptype and
Wanpeng Li1d000152012-06-16 20:37:48 +0800196 * offset, the frontswap implementation may either overwrite the data and
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600197 * return success or invalidate the page from frontswap and return failure.
198 */
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400199int __frontswap_store(struct page *page)
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600200{
201 int ret = -1, dup = 0;
202 swp_entry_t entry = { .val = page_private(page), };
203 int type = swp_type(entry);
204 struct swap_info_struct *sis = swap_info[type];
205 pgoff_t offset = swp_offset(entry);
206
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700207 if (!frontswap_ops) {
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700208 inc_frontswap_failed_stores();
209 return ret;
210 }
211
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600212 BUG_ON(!PageLocked(page));
213 BUG_ON(sis == NULL);
214 if (frontswap_test(sis, offset))
215 dup = 1;
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700216 ret = frontswap_ops->store(type, offset, page);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600217 if (ret == 0) {
218 frontswap_set(sis, offset);
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400219 inc_frontswap_succ_stores();
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600220 if (!dup)
221 atomic_inc(&sis->frontswap_pages);
Sasha Levind9674dd2012-06-10 12:51:04 +0200222 } else {
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600223 /*
224 failed dup always results in automatic invalidate of
225 the (older) page from frontswap
226 */
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400227 inc_frontswap_failed_stores();
Sasha Levin611edfe2012-06-10 12:51:07 +0200228 if (dup)
229 __frontswap_clear(sis, offset);
Sasha Levin4bb3e312012-06-10 12:51:00 +0200230 }
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600231 if (frontswap_writethrough_enabled)
232 /* report failure so swap also writes to swap device */
233 ret = -1;
234 return ret;
235}
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400236EXPORT_SYMBOL(__frontswap_store);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600237
238/*
239 * "Get" data from frontswap associated with swaptype and offset that were
240 * specified when the data was put to frontswap and use it to fill the
241 * specified page with data. Page must be locked and in the swap cache.
242 */
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400243int __frontswap_load(struct page *page)
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600244{
245 int ret = -1;
246 swp_entry_t entry = { .val = page_private(page), };
247 int type = swp_type(entry);
248 struct swap_info_struct *sis = swap_info[type];
249 pgoff_t offset = swp_offset(entry);
250
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700251 if (!frontswap_ops)
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700252 return ret;
253
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600254 BUG_ON(!PageLocked(page));
255 BUG_ON(sis == NULL);
256 if (frontswap_test(sis, offset))
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700257 ret = frontswap_ops->load(type, offset, page);
Dan Magenheimere3483a52012-09-20 12:16:52 -0700258 if (ret == 0) {
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400259 inc_frontswap_loads();
Dan Magenheimere3483a52012-09-20 12:16:52 -0700260 if (frontswap_tmem_exclusive_gets_enabled) {
261 SetPageDirty(page);
262 frontswap_clear(sis, offset);
263 }
264 }
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600265 return ret;
266}
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400267EXPORT_SYMBOL(__frontswap_load);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600268
269/*
270 * Invalidate any data from frontswap associated with the specified swaptype
271 * and offset so that a subsequent "get" will fail.
272 */
273void __frontswap_invalidate_page(unsigned type, pgoff_t offset)
274{
275 struct swap_info_struct *sis = swap_info[type];
276
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700277 if (!frontswap_ops)
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700278 return;
279
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600280 BUG_ON(sis == NULL);
281 if (frontswap_test(sis, offset)) {
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700282 frontswap_ops->invalidate_page(type, offset);
Sasha Levin611edfe2012-06-10 12:51:07 +0200283 __frontswap_clear(sis, offset);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600284 inc_frontswap_invalidates();
285 }
286}
287EXPORT_SYMBOL(__frontswap_invalidate_page);
288
289/*
290 * Invalidate all data from frontswap associated with all offsets for the
291 * specified swaptype.
292 */
293void __frontswap_invalidate_area(unsigned type)
294{
295 struct swap_info_struct *sis = swap_info[type];
296
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700297 if (frontswap_ops) {
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700298 BUG_ON(sis == NULL);
299 if (sis->frontswap_map == NULL)
300 return;
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700301 frontswap_ops->invalidate_area(type);
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700302 atomic_set(&sis->frontswap_pages, 0);
303 memset(sis->frontswap_map, 0, sis->max / sizeof(long));
304 }
305 clear_bit(type, need_init);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600306}
307EXPORT_SYMBOL(__frontswap_invalidate_area);
308
Sasha Levin96253442012-06-10 12:51:01 +0200309static unsigned long __frontswap_curr_pages(void)
310{
311 int type;
312 unsigned long totalpages = 0;
313 struct swap_info_struct *si = NULL;
314
315 assert_spin_locked(&swap_lock);
316 for (type = swap_list.head; type >= 0; type = si->next) {
317 si = swap_info[type];
318 totalpages += atomic_read(&si->frontswap_pages);
319 }
320 return totalpages;
321}
322
Sasha Levinf1166952012-06-10 12:51:02 +0200323static int __frontswap_unuse_pages(unsigned long total, unsigned long *unused,
324 int *swapid)
325{
326 int ret = -EINVAL;
327 struct swap_info_struct *si = NULL;
328 int si_frontswap_pages;
329 unsigned long total_pages_to_unuse = total;
330 unsigned long pages = 0, pages_to_unuse = 0;
331 int type;
332
333 assert_spin_locked(&swap_lock);
334 for (type = swap_list.head; type >= 0; type = si->next) {
335 si = swap_info[type];
336 si_frontswap_pages = atomic_read(&si->frontswap_pages);
337 if (total_pages_to_unuse < si_frontswap_pages) {
338 pages = pages_to_unuse = total_pages_to_unuse;
339 } else {
340 pages = si_frontswap_pages;
341 pages_to_unuse = 0; /* unuse all */
342 }
343 /* ensure there is enough RAM to fetch pages from frontswap */
344 if (security_vm_enough_memory_mm(current->mm, pages)) {
345 ret = -ENOMEM;
346 continue;
347 }
348 vm_unacct_memory(pages);
349 *unused = pages_to_unuse;
350 *swapid = type;
351 ret = 0;
352 break;
353 }
354
355 return ret;
356}
357
Zhenzhong Duana00bb1e2012-09-21 16:40:30 +0800358/*
359 * Used to check if it's necessory and feasible to unuse pages.
360 * Return 1 when nothing to do, 0 when need to shink pages,
361 * error code when there is an error.
362 */
Sasha Levin69217b42012-06-10 12:51:03 +0200363static int __frontswap_shrink(unsigned long target_pages,
364 unsigned long *pages_to_unuse,
365 int *type)
366{
367 unsigned long total_pages = 0, total_pages_to_unuse;
368
369 assert_spin_locked(&swap_lock);
370
371 total_pages = __frontswap_curr_pages();
372 if (total_pages <= target_pages) {
373 /* Nothing to do */
374 *pages_to_unuse = 0;
Zhenzhong Duana00bb1e2012-09-21 16:40:30 +0800375 return 1;
Sasha Levin69217b42012-06-10 12:51:03 +0200376 }
377 total_pages_to_unuse = total_pages - target_pages;
378 return __frontswap_unuse_pages(total_pages_to_unuse, pages_to_unuse, type);
379}
380
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600381/*
382 * Frontswap, like a true swap device, may unnecessarily retain pages
383 * under certain circumstances; "shrink" frontswap is essentially a
384 * "partial swapoff" and works by calling try_to_unuse to attempt to
385 * unuse enough frontswap pages to attempt to -- subject to memory
386 * constraints -- reduce the number of pages in frontswap to the
387 * number given in the parameter target_pages.
388 */
389void frontswap_shrink(unsigned long target_pages)
390{
Sasha Levinf1166952012-06-10 12:51:02 +0200391 unsigned long pages_to_unuse = 0;
Seth Jennings6b982fc2012-07-30 14:47:44 -0500392 int uninitialized_var(type), ret;
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600393
394 /*
395 * we don't want to hold swap_lock while doing a very
396 * lengthy try_to_unuse, but swap_list may change
397 * so restart scan from swap_list.head each time
398 */
399 spin_lock(&swap_lock);
Sasha Levin69217b42012-06-10 12:51:03 +0200400 ret = __frontswap_shrink(target_pages, &pages_to_unuse, &type);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600401 spin_unlock(&swap_lock);
Zhenzhong Duana00bb1e2012-09-21 16:40:30 +0800402 if (ret == 0)
Sasha Levin69217b42012-06-10 12:51:03 +0200403 try_to_unuse(type, true, pages_to_unuse);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600404 return;
405}
406EXPORT_SYMBOL(frontswap_shrink);
407
408/*
409 * Count and return the number of frontswap pages across all
410 * swap devices. This is exported so that backend drivers can
411 * determine current usage without reading debugfs.
412 */
413unsigned long frontswap_curr_pages(void)
414{
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600415 unsigned long totalpages = 0;
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600416
417 spin_lock(&swap_lock);
Sasha Levin96253442012-06-10 12:51:01 +0200418 totalpages = __frontswap_curr_pages();
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600419 spin_unlock(&swap_lock);
Sasha Levin96253442012-06-10 12:51:01 +0200420
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600421 return totalpages;
422}
423EXPORT_SYMBOL(frontswap_curr_pages);
424
425static int __init init_frontswap(void)
426{
427#ifdef CONFIG_DEBUG_FS
428 struct dentry *root = debugfs_create_dir("frontswap", NULL);
429 if (root == NULL)
430 return -ENXIO;
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400431 debugfs_create_u64("loads", S_IRUGO, root, &frontswap_loads);
432 debugfs_create_u64("succ_stores", S_IRUGO, root, &frontswap_succ_stores);
433 debugfs_create_u64("failed_stores", S_IRUGO, root,
434 &frontswap_failed_stores);
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600435 debugfs_create_u64("invalidates", S_IRUGO,
436 root, &frontswap_invalidates);
437#endif
Dan Magenheimer905cd0e2013-04-30 15:26:50 -0700438 frontswap_enabled = 1;
Dan Magenheimer29f233c2012-04-09 17:09:27 -0600439 return 0;
440}
441
442module_init(init_frontswap);