1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/module.h>
15#include <linux/fs.h>
16#include <linux/exportfs.h>
17#include <linux/mm.h>
18#include <linux/debugfs.h>
19#include <linux/cleancache.h>
20
21
22
23
24
25static const struct cleancache_ops *cleancache_ops __read_mostly;
26
27
28
29
30
31
32static u64 cleancache_succ_gets;
33static u64 cleancache_failed_gets;
34static u64 cleancache_puts;
35static u64 cleancache_invalidates;
36
37static void cleancache_register_ops_sb(struct super_block *sb, void *unused)
38{
39 switch (sb->cleancache_poolid) {
40 case CLEANCACHE_NO_BACKEND:
41 __cleancache_init_fs(sb);
42 break;
43 case CLEANCACHE_NO_BACKEND_SHARED:
44 __cleancache_init_shared_fs(sb);
45 break;
46 }
47}
48
49
50
51
52int cleancache_register_ops(const struct cleancache_ops *ops)
53{
54 if (cmpxchg(&cleancache_ops, NULL, ops))
55 return -EBUSY;
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108 iterate_supers(cleancache_register_ops_sb, NULL);
109 return 0;
110}
111EXPORT_SYMBOL(cleancache_register_ops);
112
113
114void __cleancache_init_fs(struct super_block *sb)
115{
116 int pool_id = CLEANCACHE_NO_BACKEND;
117
118 if (cleancache_ops) {
119 pool_id = cleancache_ops->init_fs(PAGE_SIZE);
120 if (pool_id < 0)
121 pool_id = CLEANCACHE_NO_POOL;
122 }
123 sb->cleancache_poolid = pool_id;
124}
125EXPORT_SYMBOL(__cleancache_init_fs);
126
127
128void __cleancache_init_shared_fs(struct super_block *sb)
129{
130 int pool_id = CLEANCACHE_NO_BACKEND_SHARED;
131
132 if (cleancache_ops) {
133 pool_id = cleancache_ops->init_shared_fs(&sb->s_uuid, PAGE_SIZE);
134 if (pool_id < 0)
135 pool_id = CLEANCACHE_NO_POOL;
136 }
137 sb->cleancache_poolid = pool_id;
138}
139EXPORT_SYMBOL(__cleancache_init_shared_fs);
140
141
142
143
144
145static int cleancache_get_key(struct inode *inode,
146 struct cleancache_filekey *key)
147{
148 int (*fhfn)(struct inode *, __u32 *fh, int *, struct inode *);
149 int len = 0, maxlen = CLEANCACHE_KEY_MAX;
150 struct super_block *sb = inode->i_sb;
151
152 key->u.ino = inode->i_ino;
153 if (sb->s_export_op != NULL) {
154 fhfn = sb->s_export_op->encode_fh;
155 if (fhfn) {
156 len = (*fhfn)(inode, &key->u.fh[0], &maxlen, NULL);
157 if (len <= FILEID_ROOT || len == FILEID_INVALID)
158 return -1;
159 if (maxlen > CLEANCACHE_KEY_MAX)
160 return -1;
161 }
162 }
163 return 0;
164}
165
166
167
168
169
170
171
172
173
174
175
176
177int __cleancache_get_page(struct page *page)
178{
179 int ret = -1;
180 int pool_id;
181 struct cleancache_filekey key = { .u.key = { 0 } };
182
183 if (!cleancache_ops) {
184 cleancache_failed_gets++;
185 goto out;
186 }
187
188 VM_BUG_ON_PAGE(!PageLocked(page), page);
189 pool_id = page->mapping->host->i_sb->cleancache_poolid;
190 if (pool_id < 0)
191 goto out;
192
193 if (cleancache_get_key(page->mapping->host, &key) < 0)
194 goto out;
195
196 ret = cleancache_ops->get_page(pool_id, key, page->index, page);
197 if (ret == 0)
198 cleancache_succ_gets++;
199 else
200 cleancache_failed_gets++;
201out:
202 return ret;
203}
204EXPORT_SYMBOL(__cleancache_get_page);
205
206
207
208
209
210
211
212
213
214
215
216void __cleancache_put_page(struct page *page)
217{
218 int pool_id;
219 struct cleancache_filekey key = { .u.key = { 0 } };
220
221 if (!cleancache_ops) {
222 cleancache_puts++;
223 return;
224 }
225
226 VM_BUG_ON_PAGE(!PageLocked(page), page);
227 pool_id = page->mapping->host->i_sb->cleancache_poolid;
228 if (pool_id >= 0 &&
229 cleancache_get_key(page->mapping->host, &key) >= 0) {
230 cleancache_ops->put_page(pool_id, key, page->index, page);
231 cleancache_puts++;
232 }
233}
234EXPORT_SYMBOL(__cleancache_put_page);
235
236
237
238
239
240
241
242
243
244void __cleancache_invalidate_page(struct address_space *mapping,
245 struct page *page)
246{
247
248 int pool_id = mapping->host->i_sb->cleancache_poolid;
249 struct cleancache_filekey key = { .u.key = { 0 } };
250
251 if (!cleancache_ops)
252 return;
253
254 if (pool_id >= 0) {
255 VM_BUG_ON_PAGE(!PageLocked(page), page);
256 if (cleancache_get_key(mapping->host, &key) >= 0) {
257 cleancache_ops->invalidate_page(pool_id,
258 key, page->index);
259 cleancache_invalidates++;
260 }
261 }
262}
263EXPORT_SYMBOL(__cleancache_invalidate_page);
264
265
266
267
268
269
270
271
272
273
274void __cleancache_invalidate_inode(struct address_space *mapping)
275{
276 int pool_id = mapping->host->i_sb->cleancache_poolid;
277 struct cleancache_filekey key = { .u.key = { 0 } };
278
279 if (!cleancache_ops)
280 return;
281
282 if (pool_id >= 0 && cleancache_get_key(mapping->host, &key) >= 0)
283 cleancache_ops->invalidate_inode(pool_id, key);
284}
285EXPORT_SYMBOL(__cleancache_invalidate_inode);
286
287
288
289
290
291
292void __cleancache_invalidate_fs(struct super_block *sb)
293{
294 int pool_id;
295
296 pool_id = sb->cleancache_poolid;
297 sb->cleancache_poolid = CLEANCACHE_NO_POOL;
298
299 if (cleancache_ops && pool_id >= 0)
300 cleancache_ops->invalidate_fs(pool_id);
301}
302EXPORT_SYMBOL(__cleancache_invalidate_fs);
303
304static int __init init_cleancache(void)
305{
306#ifdef CONFIG_DEBUG_FS
307 struct dentry *root = debugfs_create_dir("cleancache", NULL);
308 if (root == NULL)
309 return -ENXIO;
310 debugfs_create_u64("succ_gets", 0444, root, &cleancache_succ_gets);
311 debugfs_create_u64("failed_gets", 0444, root, &cleancache_failed_gets);
312 debugfs_create_u64("puts", 0444, root, &cleancache_puts);
313 debugfs_create_u64("invalidates", 0444, root, &cleancache_invalidates);
314#endif
315 return 0;
316}
317module_init(init_cleancache)
318