2 * Ceph cache definitions.
4 * Copyright (C) 2013 by Adfin Solutions, Inc. All Rights Reserved.
5 * Written by Milosz Tanski (milosz@adfin.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to:
18 * Free Software Foundation
19 * 51 Franklin Street, Fifth Floor
20 * Boston, MA 02111-1301 USA
27 struct ceph_aux_inode
{
29 struct timespec mtime
;
33 struct fscache_netfs ceph_cache_netfs
= {
38 static DEFINE_MUTEX(ceph_fscache_lock
);
39 static LIST_HEAD(ceph_fscache_list
);
41 struct ceph_fscache_entry
{
42 struct list_head list
;
43 struct fscache_cookie
*fscache
;
44 struct ceph_fsid fsid
;
49 static uint16_t ceph_fscache_session_get_key(const void *cookie_netfs_data
,
50 void *buffer
, uint16_t maxbuf
)
52 const struct ceph_fs_client
* fsc
= cookie_netfs_data
;
53 const char *fscache_uniq
= fsc
->mount_options
->fscache_uniq
;
54 uint16_t fsid_len
, uniq_len
;
56 fsid_len
= sizeof(fsc
->client
->fsid
);
57 uniq_len
= fscache_uniq
? strlen(fscache_uniq
) : 0;
58 if (fsid_len
+ uniq_len
> maxbuf
)
61 memcpy(buffer
, &fsc
->client
->fsid
, fsid_len
);
63 memcpy(buffer
+ fsid_len
, fscache_uniq
, uniq_len
);
65 return fsid_len
+ uniq_len
;
68 static const struct fscache_cookie_def ceph_fscache_fsid_object_def
= {
70 .type
= FSCACHE_COOKIE_TYPE_INDEX
,
71 .get_key
= ceph_fscache_session_get_key
,
74 int ceph_fscache_register(void)
76 return fscache_register_netfs(&ceph_cache_netfs
);
79 void ceph_fscache_unregister(void)
81 fscache_unregister_netfs(&ceph_cache_netfs
);
84 int ceph_fscache_register_fs(struct ceph_fs_client
* fsc
)
86 const struct ceph_fsid
*fsid
= &fsc
->client
->fsid
;
87 const char *fscache_uniq
= fsc
->mount_options
->fscache_uniq
;
88 size_t uniq_len
= fscache_uniq
? strlen(fscache_uniq
) : 0;
89 struct ceph_fscache_entry
*ent
;
92 mutex_lock(&ceph_fscache_lock
);
93 list_for_each_entry(ent
, &ceph_fscache_list
, list
) {
94 if (memcmp(&ent
->fsid
, fsid
, sizeof(*fsid
)))
96 if (ent
->uniq_len
!= uniq_len
)
98 if (uniq_len
&& memcmp(ent
->uniquifier
, fscache_uniq
, uniq_len
))
101 pr_err("fscache cookie already registered for fsid %pU\n", fsid
);
102 pr_err(" use fsc=%%s mount option to specify a uniquifier\n");
107 ent
= kzalloc(sizeof(*ent
) + uniq_len
, GFP_KERNEL
);
113 fsc
->fscache
= fscache_acquire_cookie(ceph_cache_netfs
.primary_index
,
114 &ceph_fscache_fsid_object_def
,
118 memcpy(&ent
->fsid
, fsid
, sizeof(*fsid
));
120 memcpy(&ent
->uniquifier
, fscache_uniq
, uniq_len
);
121 ent
->uniq_len
= uniq_len
;
123 ent
->fscache
= fsc
->fscache
;
124 list_add_tail(&ent
->list
, &ceph_fscache_list
);
127 pr_err("unable to register fscache cookie for fsid %pU\n",
129 /* all other fs ignore this error */
132 mutex_unlock(&ceph_fscache_lock
);
136 static uint16_t ceph_fscache_inode_get_key(const void *cookie_netfs_data
,
137 void *buffer
, uint16_t maxbuf
)
139 const struct ceph_inode_info
* ci
= cookie_netfs_data
;
142 /* use ceph virtual inode (id + snapshot) */
143 klen
= sizeof(ci
->i_vino
);
147 memcpy(buffer
, &ci
->i_vino
, klen
);
151 static uint16_t ceph_fscache_inode_get_aux(const void *cookie_netfs_data
,
152 void *buffer
, uint16_t bufmax
)
154 struct ceph_aux_inode aux
;
155 const struct ceph_inode_info
* ci
= cookie_netfs_data
;
156 const struct inode
* inode
= &ci
->vfs_inode
;
158 memset(&aux
, 0, sizeof(aux
));
159 aux
.version
= ci
->i_version
;
160 aux
.mtime
= inode
->i_mtime
;
161 aux
.size
= i_size_read(inode
);
163 memcpy(buffer
, &aux
, sizeof(aux
));
168 static void ceph_fscache_inode_get_attr(const void *cookie_netfs_data
,
171 const struct ceph_inode_info
* ci
= cookie_netfs_data
;
172 *size
= i_size_read(&ci
->vfs_inode
);
175 static enum fscache_checkaux
ceph_fscache_inode_check_aux(
176 void *cookie_netfs_data
, const void *data
, uint16_t dlen
)
178 struct ceph_aux_inode aux
;
179 struct ceph_inode_info
* ci
= cookie_netfs_data
;
180 struct inode
* inode
= &ci
->vfs_inode
;
182 if (dlen
!= sizeof(aux
))
183 return FSCACHE_CHECKAUX_OBSOLETE
;
185 memset(&aux
, 0, sizeof(aux
));
186 aux
.version
= ci
->i_version
;
187 aux
.mtime
= inode
->i_mtime
;
188 aux
.size
= i_size_read(inode
);
190 if (memcmp(data
, &aux
, sizeof(aux
)) != 0)
191 return FSCACHE_CHECKAUX_OBSOLETE
;
193 dout("ceph inode 0x%p cached okay", ci
);
194 return FSCACHE_CHECKAUX_OKAY
;
197 static const struct fscache_cookie_def ceph_fscache_inode_object_def
= {
198 .name
= "CEPH.inode",
199 .type
= FSCACHE_COOKIE_TYPE_DATAFILE
,
200 .get_key
= ceph_fscache_inode_get_key
,
201 .get_attr
= ceph_fscache_inode_get_attr
,
202 .get_aux
= ceph_fscache_inode_get_aux
,
203 .check_aux
= ceph_fscache_inode_check_aux
,
206 void ceph_fscache_register_inode_cookie(struct inode
*inode
)
208 struct ceph_inode_info
*ci
= ceph_inode(inode
);
209 struct ceph_fs_client
*fsc
= ceph_inode_to_client(inode
);
211 /* No caching for filesystem */
215 /* Only cache for regular files that are read only */
216 if (!S_ISREG(inode
->i_mode
))
219 inode_lock_nested(inode
, I_MUTEX_CHILD
);
221 ci
->fscache
= fscache_acquire_cookie(fsc
->fscache
,
222 &ceph_fscache_inode_object_def
,
228 void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info
* ci
)
230 struct fscache_cookie
* cookie
;
232 if ((cookie
= ci
->fscache
) == NULL
)
237 fscache_uncache_all_inode_pages(cookie
, &ci
->vfs_inode
);
238 fscache_relinquish_cookie(cookie
, 0);
241 static bool ceph_fscache_can_enable(void *data
)
243 struct inode
*inode
= data
;
244 return !inode_is_open_for_write(inode
);
247 void ceph_fscache_file_set_cookie(struct inode
*inode
, struct file
*filp
)
249 struct ceph_inode_info
*ci
= ceph_inode(inode
);
251 if (!fscache_cookie_valid(ci
->fscache
))
254 if (inode_is_open_for_write(inode
)) {
255 dout("fscache_file_set_cookie %p %p disabling cache\n",
257 fscache_disable_cookie(ci
->fscache
, false);
258 fscache_uncache_all_inode_pages(ci
->fscache
, inode
);
260 fscache_enable_cookie(ci
->fscache
, ceph_fscache_can_enable
,
262 if (fscache_cookie_enabled(ci
->fscache
)) {
263 dout("fscache_file_set_cookie %p %p enabling cache\n",
269 static void ceph_readpage_from_fscache_complete(struct page
*page
, void *data
, int error
)
272 SetPageUptodate(page
);
277 static inline bool cache_valid(struct ceph_inode_info
*ci
)
279 return ci
->i_fscache_gen
== ci
->i_rdcache_gen
;
283 /* Atempt to read from the fscache,
285 * This function is called from the readpage_nounlock context. DO NOT attempt to
286 * unlock the page here (or in the callback).
288 int ceph_readpage_from_fscache(struct inode
*inode
, struct page
*page
)
290 struct ceph_inode_info
*ci
= ceph_inode(inode
);
293 if (!cache_valid(ci
))
296 ret
= fscache_read_or_alloc_page(ci
->fscache
, page
,
297 ceph_readpage_from_fscache_complete
, NULL
,
301 case 0: /* Page found */
302 dout("page read submitted\n");
304 case -ENOBUFS
: /* Pages were not found, and can't be */
305 case -ENODATA
: /* Pages were not found */
306 dout("page/inode not in cache\n");
309 dout("%s: unknown error ret = %i\n", __func__
, ret
);
314 int ceph_readpages_from_fscache(struct inode
*inode
,
315 struct address_space
*mapping
,
316 struct list_head
*pages
,
319 struct ceph_inode_info
*ci
= ceph_inode(inode
);
322 if (!cache_valid(ci
))
325 ret
= fscache_read_or_alloc_pages(ci
->fscache
, mapping
, pages
, nr_pages
,
326 ceph_readpage_from_fscache_complete
,
327 NULL
, mapping_gfp_mask(mapping
));
330 case 0: /* All pages found */
331 dout("all-page read submitted\n");
333 case -ENOBUFS
: /* Some pages were not found, and can't be */
334 case -ENODATA
: /* some pages were not found */
335 dout("page/inode not in cache\n");
338 dout("%s: unknown error ret = %i\n", __func__
, ret
);
343 void ceph_readpage_to_fscache(struct inode
*inode
, struct page
*page
)
345 struct ceph_inode_info
*ci
= ceph_inode(inode
);
348 if (!PageFsCache(page
))
351 if (!cache_valid(ci
))
354 ret
= fscache_write_page(ci
->fscache
, page
, GFP_KERNEL
);
356 fscache_uncache_page(ci
->fscache
, page
);
359 void ceph_invalidate_fscache_page(struct inode
* inode
, struct page
*page
)
361 struct ceph_inode_info
*ci
= ceph_inode(inode
);
363 if (!PageFsCache(page
))
366 fscache_wait_on_page_write(ci
->fscache
, page
);
367 fscache_uncache_page(ci
->fscache
, page
);
370 void ceph_fscache_unregister_fs(struct ceph_fs_client
* fsc
)
372 if (fscache_cookie_valid(fsc
->fscache
)) {
373 struct ceph_fscache_entry
*ent
;
376 mutex_lock(&ceph_fscache_lock
);
377 list_for_each_entry(ent
, &ceph_fscache_list
, list
) {
378 if (ent
->fscache
== fsc
->fscache
) {
379 list_del(&ent
->list
);
385 WARN_ON_ONCE(!found
);
386 mutex_unlock(&ceph_fscache_lock
);
388 __fscache_relinquish_cookie(fsc
->fscache
, 0);
394 * caller should hold CEPH_CAP_FILE_{RD,CACHE}
396 void ceph_fscache_revalidate_cookie(struct ceph_inode_info
*ci
)
401 /* resue i_truncate_mutex. There should be no pending
402 * truncate while the caller holds CEPH_CAP_FILE_RD */
403 mutex_lock(&ci
->i_truncate_mutex
);
404 if (!cache_valid(ci
)) {
405 if (fscache_check_consistency(ci
->fscache
))
406 fscache_invalidate(ci
->fscache
);
407 spin_lock(&ci
->i_ceph_lock
);
408 ci
->i_fscache_gen
= ci
->i_rdcache_gen
;
409 spin_unlock(&ci
->i_ceph_lock
);
411 mutex_unlock(&ci
->i_truncate_mutex
);