1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/mman.h>
15#include <linux/swap.h>
16#include <linux/swapops.h>
17#include <linux/security.h>
18#include <linux/module.h>
19#include <linux/debugfs.h>
20#include <linux/frontswap.h>
21#include <linux/swapfile.h>
22
23
24
25
26
27static struct frontswap_ops frontswap_ops __read_mostly;
28
29
30
31
32
33
34bool frontswap_enabled __read_mostly;
35EXPORT_SYMBOL(frontswap_enabled);
36
37
38
39
40
41
42
43
44
45static bool frontswap_writethrough_enabled __read_mostly;
46
47
48
49
50
51
52static bool frontswap_tmem_exclusive_gets_enabled __read_mostly;
53
54#ifdef CONFIG_DEBUG_FS
55
56
57
58
59
60static u64 frontswap_loads;
61static u64 frontswap_succ_stores;
62static u64 frontswap_failed_stores;
63static u64 frontswap_invalidates;
64
65static inline void inc_frontswap_loads(void) {
66 frontswap_loads++;
67}
68static inline void inc_frontswap_succ_stores(void) {
69 frontswap_succ_stores++;
70}
71static inline void inc_frontswap_failed_stores(void) {
72 frontswap_failed_stores++;
73}
74static inline void inc_frontswap_invalidates(void) {
75 frontswap_invalidates++;
76}
77#else
78static inline void inc_frontswap_loads(void) { }
79static inline void inc_frontswap_succ_stores(void) { }
80static inline void inc_frontswap_failed_stores(void) { }
81static inline void inc_frontswap_invalidates(void) { }
82#endif
83
84
85
86
87struct frontswap_ops frontswap_register_ops(struct frontswap_ops *ops)
88{
89 struct frontswap_ops old = frontswap_ops;
90
91 frontswap_ops = *ops;
92 frontswap_enabled = true;
93 return old;
94}
95EXPORT_SYMBOL(frontswap_register_ops);
96
97
98
99
100void frontswap_writethrough(bool enable)
101{
102 frontswap_writethrough_enabled = enable;
103}
104EXPORT_SYMBOL(frontswap_writethrough);
105
106
107
108
109void frontswap_tmem_exclusive_gets(bool enable)
110{
111 frontswap_tmem_exclusive_gets_enabled = enable;
112}
113EXPORT_SYMBOL(frontswap_tmem_exclusive_gets);
114
115
116
117
118void __frontswap_init(unsigned type)
119{
120 struct swap_info_struct *sis = swap_info[type];
121
122 BUG_ON(sis == NULL);
123 if (sis->frontswap_map == NULL)
124 return;
125 frontswap_ops.init(type);
126}
127EXPORT_SYMBOL(__frontswap_init);
128
129static inline void __frontswap_clear(struct swap_info_struct *sis, pgoff_t offset)
130{
131 frontswap_clear(sis, offset);
132 atomic_dec(&sis->frontswap_pages);
133}
134
135
136
137
138
139
140
141
142int __frontswap_store(struct page *page)
143{
144 int ret = -1, dup = 0;
145 swp_entry_t entry = { .val = page_private(page), };
146 int type = swp_type(entry);
147 struct swap_info_struct *sis = swap_info[type];
148 pgoff_t offset = swp_offset(entry);
149
150 BUG_ON(!PageLocked(page));
151 BUG_ON(sis == NULL);
152 if (frontswap_test(sis, offset))
153 dup = 1;
154 ret = frontswap_ops.store(type, offset, page);
155 if (ret == 0) {
156 frontswap_set(sis, offset);
157 inc_frontswap_succ_stores();
158 if (!dup)
159 atomic_inc(&sis->frontswap_pages);
160 } else {
161
162
163
164
165 inc_frontswap_failed_stores();
166 if (dup)
167 __frontswap_clear(sis, offset);
168 }
169 if (frontswap_writethrough_enabled)
170
171 ret = -1;
172 return ret;
173}
174EXPORT_SYMBOL(__frontswap_store);
175
176
177
178
179
180
181int __frontswap_load(struct page *page)
182{
183 int ret = -1;
184 swp_entry_t entry = { .val = page_private(page), };
185 int type = swp_type(entry);
186 struct swap_info_struct *sis = swap_info[type];
187 pgoff_t offset = swp_offset(entry);
188
189 BUG_ON(!PageLocked(page));
190 BUG_ON(sis == NULL);
191 if (frontswap_test(sis, offset))
192 ret = frontswap_ops.load(type, offset, page);
193 if (ret == 0) {
194 inc_frontswap_loads();
195 if (frontswap_tmem_exclusive_gets_enabled) {
196 SetPageDirty(page);
197 frontswap_clear(sis, offset);
198 }
199 }
200 return ret;
201}
202EXPORT_SYMBOL(__frontswap_load);
203
204
205
206
207
208void __frontswap_invalidate_page(unsigned type, pgoff_t offset)
209{
210 struct swap_info_struct *sis = swap_info[type];
211
212 BUG_ON(sis == NULL);
213 if (frontswap_test(sis, offset)) {
214 frontswap_ops.invalidate_page(type, offset);
215 __frontswap_clear(sis, offset);
216 inc_frontswap_invalidates();
217 }
218}
219EXPORT_SYMBOL(__frontswap_invalidate_page);
220
221
222
223
224
225void __frontswap_invalidate_area(unsigned type)
226{
227 struct swap_info_struct *sis = swap_info[type];
228
229 BUG_ON(sis == NULL);
230 if (sis->frontswap_map == NULL)
231 return;
232 frontswap_ops.invalidate_area(type);
233 atomic_set(&sis->frontswap_pages, 0);
234 memset(sis->frontswap_map, 0, sis->max / sizeof(long));
235}
236EXPORT_SYMBOL(__frontswap_invalidate_area);
237
238static unsigned long __frontswap_curr_pages(void)
239{
240 int type;
241 unsigned long totalpages = 0;
242 struct swap_info_struct *si = NULL;
243
244 assert_spin_locked(&swap_lock);
245 for (type = swap_list.head; type >= 0; type = si->next) {
246 si = swap_info[type];
247 totalpages += atomic_read(&si->frontswap_pages);
248 }
249 return totalpages;
250}
251
252static int __frontswap_unuse_pages(unsigned long total, unsigned long *unused,
253 int *swapid)
254{
255 int ret = -EINVAL;
256 struct swap_info_struct *si = NULL;
257 int si_frontswap_pages;
258 unsigned long total_pages_to_unuse = total;
259 unsigned long pages = 0, pages_to_unuse = 0;
260 int type;
261
262 assert_spin_locked(&swap_lock);
263 for (type = swap_list.head; type >= 0; type = si->next) {
264 si = swap_info[type];
265 si_frontswap_pages = atomic_read(&si->frontswap_pages);
266 if (total_pages_to_unuse < si_frontswap_pages) {
267 pages = pages_to_unuse = total_pages_to_unuse;
268 } else {
269 pages = si_frontswap_pages;
270 pages_to_unuse = 0;
271 }
272
273 if (security_vm_enough_memory_mm(current->mm, pages)) {
274 ret = -ENOMEM;
275 continue;
276 }
277 vm_unacct_memory(pages);
278 *unused = pages_to_unuse;
279 *swapid = type;
280 ret = 0;
281 break;
282 }
283
284 return ret;
285}
286
287
288
289
290
291
292static int __frontswap_shrink(unsigned long target_pages,
293 unsigned long *pages_to_unuse,
294 int *type)
295{
296 unsigned long total_pages = 0, total_pages_to_unuse;
297
298 assert_spin_locked(&swap_lock);
299
300 total_pages = __frontswap_curr_pages();
301 if (total_pages <= target_pages) {
302
303 *pages_to_unuse = 0;
304 return 1;
305 }
306 total_pages_to_unuse = total_pages - target_pages;
307 return __frontswap_unuse_pages(total_pages_to_unuse, pages_to_unuse, type);
308}
309
310
311
312
313
314
315
316
317
318void frontswap_shrink(unsigned long target_pages)
319{
320 unsigned long pages_to_unuse = 0;
321 int uninitialized_var(type), ret;
322
323
324
325
326
327
328 spin_lock(&swap_lock);
329 ret = __frontswap_shrink(target_pages, &pages_to_unuse, &type);
330 spin_unlock(&swap_lock);
331 if (ret == 0)
332 try_to_unuse(type, true, pages_to_unuse);
333 return;
334}
335EXPORT_SYMBOL(frontswap_shrink);
336
337
338
339
340
341
342unsigned long frontswap_curr_pages(void)
343{
344 unsigned long totalpages = 0;
345
346 spin_lock(&swap_lock);
347 totalpages = __frontswap_curr_pages();
348 spin_unlock(&swap_lock);
349
350 return totalpages;
351}
352EXPORT_SYMBOL(frontswap_curr_pages);
353
354static int __init init_frontswap(void)
355{
356#ifdef CONFIG_DEBUG_FS
357 struct dentry *root = debugfs_create_dir("frontswap", NULL);
358 if (root == NULL)
359 return -ENXIO;
360 debugfs_create_u64("loads", S_IRUGO, root, &frontswap_loads);
361 debugfs_create_u64("succ_stores", S_IRUGO, root, &frontswap_succ_stores);
362 debugfs_create_u64("failed_stores", S_IRUGO, root,
363 &frontswap_failed_stores);
364 debugfs_create_u64("invalidates", S_IRUGO,
365 root, &frontswap_invalidates);
366#endif
367 return 0;
368}
369
370module_init(init_frontswap);
371