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
{
28 struct timespec mtime
;
32 struct fscache_netfs ceph_cache_netfs
= {
37 static uint16_t ceph_fscache_session_get_key(const void *cookie_netfs_data
,
38 void *buffer
, uint16_t maxbuf
)
40 const struct ceph_fs_client
* fsc
= cookie_netfs_data
;
43 klen
= sizeof(fsc
->client
->fsid
);
47 memcpy(buffer
, &fsc
->client
->fsid
, klen
);
51 static const struct fscache_cookie_def ceph_fscache_fsid_object_def
= {
53 .type
= FSCACHE_COOKIE_TYPE_INDEX
,
54 .get_key
= ceph_fscache_session_get_key
,
57 int ceph_fscache_register(void)
59 return fscache_register_netfs(&ceph_cache_netfs
);
62 void ceph_fscache_unregister(void)
64 fscache_unregister_netfs(&ceph_cache_netfs
);
67 int ceph_fscache_register_fs(struct ceph_fs_client
* fsc
)
69 fsc
->fscache
= fscache_acquire_cookie(ceph_cache_netfs
.primary_index
,
70 &ceph_fscache_fsid_object_def
,
73 if (fsc
->fscache
== NULL
) {
74 pr_err("Unable to resgister fsid: %p fscache cookie", fsc
);
78 fsc
->revalidate_wq
= alloc_workqueue("ceph-revalidate", 0, 1);
79 if (fsc
->revalidate_wq
== NULL
)
85 static uint16_t ceph_fscache_inode_get_key(const void *cookie_netfs_data
,
86 void *buffer
, uint16_t maxbuf
)
88 const struct ceph_inode_info
* ci
= cookie_netfs_data
;
91 /* use ceph virtual inode (id + snaphot) */
92 klen
= sizeof(ci
->i_vino
);
96 memcpy(buffer
, &ci
->i_vino
, klen
);
100 static uint16_t ceph_fscache_inode_get_aux(const void *cookie_netfs_data
,
101 void *buffer
, uint16_t bufmax
)
103 struct ceph_aux_inode aux
;
104 const struct ceph_inode_info
* ci
= cookie_netfs_data
;
105 const struct inode
* inode
= &ci
->vfs_inode
;
107 memset(&aux
, 0, sizeof(aux
));
108 aux
.mtime
= inode
->i_mtime
;
109 aux
.size
= inode
->i_size
;
111 memcpy(buffer
, &aux
, sizeof(aux
));
116 static void ceph_fscache_inode_get_attr(const void *cookie_netfs_data
,
119 const struct ceph_inode_info
* ci
= cookie_netfs_data
;
120 const struct inode
* inode
= &ci
->vfs_inode
;
122 *size
= inode
->i_size
;
125 static enum fscache_checkaux
ceph_fscache_inode_check_aux(
126 void *cookie_netfs_data
, const void *data
, uint16_t dlen
)
128 struct ceph_aux_inode aux
;
129 struct ceph_inode_info
* ci
= cookie_netfs_data
;
130 struct inode
* inode
= &ci
->vfs_inode
;
132 if (dlen
!= sizeof(aux
))
133 return FSCACHE_CHECKAUX_OBSOLETE
;
135 memset(&aux
, 0, sizeof(aux
));
136 aux
.mtime
= inode
->i_mtime
;
137 aux
.size
= inode
->i_size
;
139 if (memcmp(data
, &aux
, sizeof(aux
)) != 0)
140 return FSCACHE_CHECKAUX_OBSOLETE
;
142 dout("ceph inode 0x%p cached okay", ci
);
143 return FSCACHE_CHECKAUX_OKAY
;
146 static void ceph_fscache_inode_now_uncached(void* cookie_netfs_data
)
148 struct ceph_inode_info
* ci
= cookie_netfs_data
;
153 pagevec_init(&pvec
, 0);
156 dout("ceph inode 0x%p now uncached", ci
);
159 nr_pages
= pagevec_lookup(&pvec
, ci
->vfs_inode
.i_mapping
, first
,
160 PAGEVEC_SIZE
- pagevec_count(&pvec
));
165 for (loop
= 0; loop
< nr_pages
; loop
++)
166 ClearPageFsCache(pvec
.pages
[loop
]);
168 first
= pvec
.pages
[nr_pages
- 1]->index
+ 1;
171 pagevec_release(&pvec
);
176 static const struct fscache_cookie_def ceph_fscache_inode_object_def
= {
177 .name
= "CEPH.inode",
178 .type
= FSCACHE_COOKIE_TYPE_DATAFILE
,
179 .get_key
= ceph_fscache_inode_get_key
,
180 .get_attr
= ceph_fscache_inode_get_attr
,
181 .get_aux
= ceph_fscache_inode_get_aux
,
182 .check_aux
= ceph_fscache_inode_check_aux
,
183 .now_uncached
= ceph_fscache_inode_now_uncached
,
186 void ceph_fscache_register_inode_cookie(struct ceph_fs_client
* fsc
,
187 struct ceph_inode_info
* ci
)
189 struct inode
* inode
= &ci
->vfs_inode
;
191 /* No caching for filesystem */
192 if (fsc
->fscache
== NULL
)
195 /* Only cache for regular files that are read only */
196 if ((ci
->vfs_inode
.i_mode
& S_IFREG
) == 0)
199 /* Avoid multiple racing open requests */
200 mutex_lock(&inode
->i_mutex
);
205 ci
->fscache
= fscache_acquire_cookie(fsc
->fscache
,
206 &ceph_fscache_inode_object_def
,
208 fscache_check_consistency(ci
->fscache
);
210 mutex_unlock(&inode
->i_mutex
);
214 void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info
* ci
)
216 struct fscache_cookie
* cookie
;
218 if ((cookie
= ci
->fscache
) == NULL
)
223 fscache_uncache_all_inode_pages(cookie
, &ci
->vfs_inode
);
224 fscache_relinquish_cookie(cookie
, 0);
227 static void ceph_vfs_readpage_complete(struct page
*page
, void *data
, int error
)
230 SetPageUptodate(page
);
233 static void ceph_vfs_readpage_complete_unlock(struct page
*page
, void *data
, int error
)
236 SetPageUptodate(page
);
241 static inline int cache_valid(struct ceph_inode_info
*ci
)
243 return ((ceph_caps_issued(ci
) & CEPH_CAP_FILE_CACHE
) &&
244 (ci
->i_fscache_gen
== ci
->i_rdcache_gen
));
248 /* Atempt to read from the fscache,
250 * This function is called from the readpage_nounlock context. DO NOT attempt to
251 * unlock the page here (or in the callback).
253 int ceph_readpage_from_fscache(struct inode
*inode
, struct page
*page
)
255 struct ceph_inode_info
*ci
= ceph_inode(inode
);
258 if (!cache_valid(ci
))
261 ret
= fscache_read_or_alloc_page(ci
->fscache
, page
,
262 ceph_vfs_readpage_complete
, NULL
,
266 case 0: /* Page found */
267 dout("page read submitted\n");
269 case -ENOBUFS
: /* Pages were not found, and can't be */
270 case -ENODATA
: /* Pages were not found */
271 dout("page/inode not in cache\n");
274 dout("%s: unknown error ret = %i\n", __func__
, ret
);
279 int ceph_readpages_from_fscache(struct inode
*inode
,
280 struct address_space
*mapping
,
281 struct list_head
*pages
,
284 struct ceph_inode_info
*ci
= ceph_inode(inode
);
287 if (!cache_valid(ci
))
290 ret
= fscache_read_or_alloc_pages(ci
->fscache
, mapping
, pages
, nr_pages
,
291 ceph_vfs_readpage_complete_unlock
,
292 NULL
, mapping_gfp_mask(mapping
));
295 case 0: /* All pages found */
296 dout("all-page read submitted\n");
298 case -ENOBUFS
: /* Some pages were not found, and can't be */
299 case -ENODATA
: /* some pages were not found */
300 dout("page/inode not in cache\n");
303 dout("%s: unknown error ret = %i\n", __func__
, ret
);
308 void ceph_readpage_to_fscache(struct inode
*inode
, struct page
*page
)
310 struct ceph_inode_info
*ci
= ceph_inode(inode
);
313 if (!PageFsCache(page
))
316 if (!cache_valid(ci
))
319 ret
= fscache_write_page(ci
->fscache
, page
, GFP_KERNEL
);
321 fscache_uncache_page(ci
->fscache
, page
);
324 void ceph_invalidate_fscache_page(struct inode
* inode
, struct page
*page
)
326 struct ceph_inode_info
*ci
= ceph_inode(inode
);
328 if (!PageFsCache(page
))
331 fscache_wait_on_page_write(ci
->fscache
, page
);
332 fscache_uncache_page(ci
->fscache
, page
);
335 void ceph_fscache_unregister_fs(struct ceph_fs_client
* fsc
)
337 if (fsc
->revalidate_wq
)
338 destroy_workqueue(fsc
->revalidate_wq
);
340 fscache_relinquish_cookie(fsc
->fscache
, 0);
344 static void ceph_revalidate_work(struct work_struct
*work
)
348 struct ceph_inode_info
*ci
= container_of(work
, struct ceph_inode_info
,
350 struct inode
*inode
= &ci
->vfs_inode
;
352 spin_lock(&ci
->i_ceph_lock
);
353 issued
= __ceph_caps_issued(ci
, NULL
);
354 orig_gen
= ci
->i_rdcache_gen
;
355 spin_unlock(&ci
->i_ceph_lock
);
357 if (!(issued
& CEPH_CAP_FILE_CACHE
)) {
358 dout("revalidate_work lost cache before validation %p\n",
363 if (!fscache_check_consistency(ci
->fscache
))
364 fscache_invalidate(ci
->fscache
);
366 spin_lock(&ci
->i_ceph_lock
);
367 /* Update the new valid generation (backwards sanity check too) */
368 if (orig_gen
> ci
->i_fscache_gen
) {
369 ci
->i_fscache_gen
= orig_gen
;
371 spin_unlock(&ci
->i_ceph_lock
);
374 iput(&ci
->vfs_inode
);
377 void ceph_queue_revalidate(struct inode
*inode
)
379 struct ceph_fs_client
*fsc
= ceph_sb_to_client(inode
->i_sb
);
380 struct ceph_inode_info
*ci
= ceph_inode(inode
);
382 if (fsc
->revalidate_wq
== NULL
|| ci
->fscache
== NULL
)
387 if (queue_work(ceph_sb_to_client(inode
->i_sb
)->revalidate_wq
,
388 &ci
->i_revalidate_work
)) {
389 dout("ceph_queue_revalidate %p\n", inode
);
391 dout("ceph_queue_revalidate %p failed\n)", inode
);
396 void ceph_fscache_inode_init(struct ceph_inode_info
*ci
)
399 /* The first load is verifed cookie open time */
400 ci
->i_fscache_gen
= 1;
401 INIT_WORK(&ci
->i_revalidate_work
, ceph_revalidate_work
);