blob: db7eee9c08863cae43a79707afb04ce0b649d5b4 [file] [log] [blame]
Thomas Gleixner7a338472019-06-04 10:11:15 +02001// SPDX-License-Identifier: GPL-2.0-only
Dan Magenheimer077b1f82011-05-26 10:01:36 -06002/*
3 * Cleancache frontend
4 *
5 * This code provides the generic "frontend" layer to call a matching
6 * "backend" driver implementation of cleancache. See
Mike Rapoportad56b732018-03-21 21:22:47 +02007 * Documentation/vm/cleancache.rst for more information.
Dan Magenheimer077b1f82011-05-26 10:01:36 -06008 *
9 * Copyright (C) 2009-2010 Oracle Corp. All rights reserved.
10 * Author: Dan Magenheimer
Dan Magenheimer077b1f82011-05-26 10:01:36 -060011 */
12
13#include <linux/module.h>
14#include <linux/fs.h>
15#include <linux/exportfs.h>
16#include <linux/mm.h>
Dan Magenheimer417fc2c2011-09-21 12:28:04 -040017#include <linux/debugfs.h>
Dan Magenheimer077b1f82011-05-26 10:01:36 -060018#include <linux/cleancache.h>
19
20/*
Vladimir Davydov3cb29d12015-04-14 15:46:48 -070021 * cleancache_ops is set by cleancache_register_ops to contain the pointers
Dan Magenheimer077b1f82011-05-26 10:01:36 -060022 * to the cleancache "backend" implementation functions.
23 */
Julia Lawallb3c6de42016-01-21 16:47:29 +010024static const struct cleancache_ops *cleancache_ops __read_mostly;
Dan Magenheimer077b1f82011-05-26 10:01:36 -060025
Dan Magenheimer417fc2c2011-09-21 12:28:04 -040026/*
Marcin Jabrzyk8fc8f4d2015-01-07 11:14:41 +010027 * Counters available via /sys/kernel/debug/cleancache (if debugfs is
Dan Magenheimer417fc2c2011-09-21 12:28:04 -040028 * properly configured. These are for information only so are not protected
29 * against increment races.
30 */
31static u64 cleancache_succ_gets;
32static u64 cleancache_failed_gets;
33static u64 cleancache_puts;
34static u64 cleancache_invalidates;
Dan Magenheimer077b1f82011-05-26 10:01:36 -060035
Vladimir Davydov3cb29d12015-04-14 15:46:48 -070036static void cleancache_register_ops_sb(struct super_block *sb, void *unused)
37{
38 switch (sb->cleancache_poolid) {
39 case CLEANCACHE_NO_BACKEND:
40 __cleancache_init_fs(sb);
41 break;
42 case CLEANCACHE_NO_BACKEND_SHARED:
43 __cleancache_init_shared_fs(sb);
44 break;
45 }
46}
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070047
48/*
Vladimir Davydov53d85c92015-04-14 15:46:45 -070049 * Register operations for cleancache. Returns 0 on success.
Dan Magenheimer077b1f82011-05-26 10:01:36 -060050 */
Julia Lawallb3c6de42016-01-21 16:47:29 +010051int cleancache_register_ops(const struct cleancache_ops *ops)
Dan Magenheimer077b1f82011-05-26 10:01:36 -060052{
Vladimir Davydov3cb29d12015-04-14 15:46:48 -070053 if (cmpxchg(&cleancache_ops, NULL, ops))
Vladimir Davydov53d85c92015-04-14 15:46:45 -070054 return -EBUSY;
Vladimir Davydov3cb29d12015-04-14 15:46:48 -070055
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070056 /*
Vladimir Davydov3cb29d12015-04-14 15:46:48 -070057 * A cleancache backend can be built as a module and hence loaded after
58 * a cleancache enabled filesystem has called cleancache_init_fs. To
59 * handle such a scenario, here we call ->init_fs or ->init_shared_fs
60 * for each active super block. To differentiate between local and
61 * shared filesystems, we temporarily initialize sb->cleancache_poolid
62 * to CLEANCACHE_NO_BACKEND or CLEANCACHE_NO_BACKEND_SHARED
63 * respectively in case there is no backend registered at the time
64 * cleancache_init_fs or cleancache_init_shared_fs is called.
65 *
66 * Since filesystems can be mounted concurrently with cleancache
67 * backend registration, we have to be careful to guarantee that all
68 * cleancache enabled filesystems that has been mounted by the time
69 * cleancache_register_ops is called has got and all mounted later will
70 * get cleancache_poolid. This is assured by the following statements
71 * tied together:
72 *
73 * a) iterate_supers skips only those super blocks that has started
74 * ->kill_sb
75 *
76 * b) if iterate_supers encounters a super block that has not finished
77 * ->mount yet, it waits until it is finished
78 *
79 * c) cleancache_init_fs is called from ->mount and
80 * cleancache_invalidate_fs is called from ->kill_sb
81 *
82 * d) we call iterate_supers after cleancache_ops has been set
83 *
84 * From a) it follows that if iterate_supers skips a super block, then
85 * either the super block is already dead, in which case we do not need
86 * to bother initializing cleancache for it, or it was mounted after we
87 * initiated iterate_supers. In the latter case, it must have seen
88 * cleancache_ops set according to d) and initialized cleancache from
89 * ->mount by itself according to c). This proves that we call
90 * ->init_fs at least once for each active super block.
91 *
92 * From b) and c) it follows that if iterate_supers encounters a super
93 * block that has already started ->init_fs, it will wait until ->mount
94 * and hence ->init_fs has finished, then check cleancache_poolid, see
95 * that it has already been set and therefore do nothing. This proves
96 * that we call ->init_fs no more than once for each super block.
97 *
98 * Combined together, the last two paragraphs prove the function
99 * correctness.
100 *
101 * Note that various cleancache callbacks may proceed before this
102 * function is called or even concurrently with it, but since
103 * CLEANCACHE_NO_BACKEND is negative, they will all result in a noop
104 * until the corresponding ->init_fs has been actually called and
105 * cleancache_ops has been set.
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700106 */
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700107 iterate_supers(cleancache_register_ops_sb, NULL);
Vladimir Davydov53d85c92015-04-14 15:46:45 -0700108 return 0;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600109}
110EXPORT_SYMBOL(cleancache_register_ops);
111
112/* Called by a cleancache-enabled filesystem at time of mount */
113void __cleancache_init_fs(struct super_block *sb)
114{
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700115 int pool_id = CLEANCACHE_NO_BACKEND;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700116
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700117 if (cleancache_ops) {
118 pool_id = cleancache_ops->init_fs(PAGE_SIZE);
119 if (pool_id < 0)
120 pool_id = CLEANCACHE_NO_POOL;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700121 }
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700122 sb->cleancache_poolid = pool_id;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600123}
124EXPORT_SYMBOL(__cleancache_init_fs);
125
126/* Called by a cleancache-enabled clustered filesystem at time of mount */
Vladimir Davydov9de16262015-04-14 15:46:42 -0700127void __cleancache_init_shared_fs(struct super_block *sb)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600128{
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700129 int pool_id = CLEANCACHE_NO_BACKEND_SHARED;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700130
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700131 if (cleancache_ops) {
Christoph Hellwig85787092017-05-10 15:06:33 +0200132 pool_id = cleancache_ops->init_shared_fs(&sb->s_uuid, PAGE_SIZE);
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700133 if (pool_id < 0)
134 pool_id = CLEANCACHE_NO_POOL;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700135 }
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700136 sb->cleancache_poolid = pool_id;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600137}
138EXPORT_SYMBOL(__cleancache_init_shared_fs);
139
140/*
141 * If the filesystem uses exportable filehandles, use the filehandle as
142 * the key, else use the inode number.
143 */
144static int cleancache_get_key(struct inode *inode,
145 struct cleancache_filekey *key)
146{
Al Virob0b03822012-04-02 14:34:06 -0400147 int (*fhfn)(struct inode *, __u32 *fh, int *, struct inode *);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600148 int len = 0, maxlen = CLEANCACHE_KEY_MAX;
149 struct super_block *sb = inode->i_sb;
150
151 key->u.ino = inode->i_ino;
152 if (sb->s_export_op != NULL) {
153 fhfn = sb->s_export_op->encode_fh;
154 if (fhfn) {
Al Virob0b03822012-04-02 14:34:06 -0400155 len = (*fhfn)(inode, &key->u.fh[0], &maxlen, NULL);
Namjae Jeon94e07a752013-02-17 15:48:11 +0900156 if (len <= FILEID_ROOT || len == FILEID_INVALID)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600157 return -1;
158 if (maxlen > CLEANCACHE_KEY_MAX)
159 return -1;
160 }
161 }
162 return 0;
163}
164
165/*
166 * "Get" data from cleancache associated with the poolid/inode/index
167 * that were specified when the data was put to cleanache and, if
168 * successful, use it to fill the specified page with data and return 0.
169 * The pageframe is unchanged and returns -1 if the get fails.
170 * Page must be locked by caller.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700171 *
172 * The function has two checks before any action is taken - whether
173 * a backend is registered and whether the sb->cleancache_poolid
174 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600175 */
176int __cleancache_get_page(struct page *page)
177{
178 int ret = -1;
179 int pool_id;
180 struct cleancache_filekey key = { .u.key = { 0 } };
181
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700182 if (!cleancache_ops) {
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700183 cleancache_failed_gets++;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600184 goto out;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700185 }
186
Sasha Levin309381fea2014-01-23 15:52:54 -0800187 VM_BUG_ON_PAGE(!PageLocked(page), page);
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700188 pool_id = page->mapping->host->i_sb->cleancache_poolid;
189 if (pool_id < 0)
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700190 goto out;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600191
192 if (cleancache_get_key(page->mapping->host, &key) < 0)
193 goto out;
194
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700195 ret = cleancache_ops->get_page(pool_id, key, page->index, page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600196 if (ret == 0)
197 cleancache_succ_gets++;
198 else
199 cleancache_failed_gets++;
200out:
201 return ret;
202}
203EXPORT_SYMBOL(__cleancache_get_page);
204
205/*
206 * "Put" data from a page to cleancache and associate it with the
207 * (previously-obtained per-filesystem) poolid and the page's,
208 * inode and page index. Page must be locked. Note that a put_page
209 * always "succeeds", though a subsequent get_page may succeed or fail.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700210 *
211 * The function has two checks before any action is taken - whether
212 * a backend is registered and whether the sb->cleancache_poolid
213 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600214 */
215void __cleancache_put_page(struct page *page)
216{
217 int pool_id;
218 struct cleancache_filekey key = { .u.key = { 0 } };
219
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700220 if (!cleancache_ops) {
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700221 cleancache_puts++;
222 return;
223 }
224
Sasha Levin309381fea2014-01-23 15:52:54 -0800225 VM_BUG_ON_PAGE(!PageLocked(page), page);
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700226 pool_id = page->mapping->host->i_sb->cleancache_poolid;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600227 if (pool_id >= 0 &&
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700228 cleancache_get_key(page->mapping->host, &key) >= 0) {
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700229 cleancache_ops->put_page(pool_id, key, page->index, page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600230 cleancache_puts++;
231 }
232}
233EXPORT_SYMBOL(__cleancache_put_page);
234
235/*
Dan Magenheimer31677602011-09-21 11:56:28 -0400236 * Invalidate any data from cleancache associated with the poolid and the
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600237 * page's inode and page index so that a subsequent "get" will fail.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700238 *
239 * The function has two checks before any action is taken - whether
240 * a backend is registered and whether the sb->cleancache_poolid
241 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600242 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400243void __cleancache_invalidate_page(struct address_space *mapping,
244 struct page *page)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600245{
246 /* careful... page->mapping is NULL sometimes when this is called */
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700247 int pool_id = mapping->host->i_sb->cleancache_poolid;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600248 struct cleancache_filekey key = { .u.key = { 0 } };
249
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700250 if (!cleancache_ops)
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700251 return;
252
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700253 if (pool_id >= 0) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800254 VM_BUG_ON_PAGE(!PageLocked(page), page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600255 if (cleancache_get_key(mapping->host, &key) >= 0) {
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700256 cleancache_ops->invalidate_page(pool_id,
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700257 key, page->index);
Dan Magenheimer417fc2c2011-09-21 12:28:04 -0400258 cleancache_invalidates++;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600259 }
260 }
261}
Dan Magenheimer31677602011-09-21 11:56:28 -0400262EXPORT_SYMBOL(__cleancache_invalidate_page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600263
264/*
Dan Magenheimer31677602011-09-21 11:56:28 -0400265 * Invalidate all data from cleancache associated with the poolid and the
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600266 * mappings's inode so that all subsequent gets to this poolid/inode
267 * will fail.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700268 *
269 * The function has two checks before any action is taken - whether
270 * a backend is registered and whether the sb->cleancache_poolid
271 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600272 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400273void __cleancache_invalidate_inode(struct address_space *mapping)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600274{
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700275 int pool_id = mapping->host->i_sb->cleancache_poolid;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600276 struct cleancache_filekey key = { .u.key = { 0 } };
277
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700278 if (!cleancache_ops)
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700279 return;
280
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600281 if (pool_id >= 0 && cleancache_get_key(mapping->host, &key) >= 0)
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700282 cleancache_ops->invalidate_inode(pool_id, key);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600283}
Dan Magenheimer31677602011-09-21 11:56:28 -0400284EXPORT_SYMBOL(__cleancache_invalidate_inode);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600285
286/*
287 * Called by any cleancache-enabled filesystem at time of unmount;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700288 * note that pool_id is surrendered and may be returned by a subsequent
289 * cleancache_init_fs or cleancache_init_shared_fs.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600290 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400291void __cleancache_invalidate_fs(struct super_block *sb)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600292{
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700293 int pool_id;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700294
Vladimir Davydov3cb29d12015-04-14 15:46:48 -0700295 pool_id = sb->cleancache_poolid;
296 sb->cleancache_poolid = CLEANCACHE_NO_POOL;
297
298 if (cleancache_ops && pool_id >= 0)
299 cleancache_ops->invalidate_fs(pool_id);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600300}
Dan Magenheimer31677602011-09-21 11:56:28 -0400301EXPORT_SYMBOL(__cleancache_invalidate_fs);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600302
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600303static int __init init_cleancache(void)
304{
Dan Magenheimer417fc2c2011-09-21 12:28:04 -0400305#ifdef CONFIG_DEBUG_FS
306 struct dentry *root = debugfs_create_dir("cleancache", NULL);
Greg Kroah-Hartmanc4e41342019-01-22 16:21:11 +0100307
Joe Perches0825a6f2018-06-14 15:27:58 -0700308 debugfs_create_u64("succ_gets", 0444, root, &cleancache_succ_gets);
309 debugfs_create_u64("failed_gets", 0444, root, &cleancache_failed_gets);
310 debugfs_create_u64("puts", 0444, root, &cleancache_puts);
311 debugfs_create_u64("invalidates", 0444, root, &cleancache_invalidates);
Dan Magenheimer417fc2c2011-09-21 12:28:04 -0400312#endif
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600313 return 0;
314}
315module_init(init_cleancache)